blob: 1827db5cf48806c4c219e371fdefbe6b6013605f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
.flowview-image {
text-align: center;
img {
max-width: 100%;
max-height: 100%;
}
}
.edit-flow-container {
position: relative;
}
.edit-flow {
cursor: pointer;
position: absolute;
right: 0;
top: 5px;
height: 40px;
width: 40px;
border-radius: 20px;
z-index: 10000;
background-color: rgba(255, 255, 255, 0.7);
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;
}
|