blob: 51f2d2ab81c01f667f0c76badab082b0c9eed867 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
.presElementBox-item {
padding: 10px;
display: inline-block;
pointer-events: all;
width: 100%;
outline-color: maroon;
outline-style: dashed;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
transition: all .1s;
.documentView-node {
position: absolute;
z-index: 1;
}
}
.presElementBox-item-above {
border-top: black 2px solid;
}
.presElementBox-item-below {
border-bottom: black 2px solid;
}
.presElementBox-item:hover {
transition: all .1s;
background: #AAAAAA;
border-radius: 12px;
}
.presElementBox-selected {
background: gray;
color: black;
border-radius: 12px;
box-shadow: black 2px 2px 5px;
}
.presElementBox-icon {
float: right;
}
.presElementBox-interaction {
color: gray;
float: left;
}
.presElementBox-interaction-selected {
color: white;
float: left;
}
.presElementBox-name {
font-size: 15px;
display: inline-block;
}
.presElementBox-embedded {
position: relative;
margin-top: 15;
}
.presElementBox-embeddedMask {
width:100%;
height:100%;
position: absolute;
left:0;
top:0;
background: transparent;
z-index:2;
}
|