mitmproxy/web/src/css/flowview.less

40 lines
669 B
Plaintext
Raw Normal View History

2015-03-21 23:21:38 +00:00
.flowview-image {
2015-03-21 23:28:08 +00:00
text-align: center;
2015-03-21 23:21:38 +00:00
2015-03-21 23:28:08 +00:00
img {
max-width: 100%;
max-height: 100%;
}
2016-07-15 12:41:30 +00:00
}
2016-07-19 10:23:20 +00:00
.edit-flow-container {
position: relative;
}
2016-07-15 12:41:30 +00:00
.edit-flow {
2016-07-21 08:14:55 +00:00
cursor: pointer;
2016-07-15 12:41:30 +00:00
position: absolute;
2016-07-21 08:14:55 +00:00
right: 0;
2016-07-19 10:23:20 +00:00
top: 5px;
2016-07-15 12:41:30 +00:00
height: 40px;
width: 40px;
border-radius: 20px;
2016-07-19 10:23:20 +00:00
z-index: 10000;
2016-07-15 12:41:30 +00:00
2016-07-21 08:14:55 +00:00
background-color: rgba(255, 255, 255, 0.7);
2016-07-15 12:41:30 +00:00
border: solid 2px rgba(248, 145, 59, 0.7);
text-align: center;
font-size: 22px;
line-height: 37px;
transition: all 100ms ease-in-out;
}
.edit-flow:hover {
background-color: rgba(239, 108, 0, 0.7);
color: rgba(0,0,0,0.8);
border: solid 2px transparent;
}