-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheditor.less
48 lines (42 loc) · 1018 Bytes
/
editor.less
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
.cts-ui {
.cts-ui-tray {
.cts-ui-editor-page {
padding: 0;
margin: 0;
height: 100%;
width: 100px;
text-align: center;
.cts-ui-editor {
h3 {
padding: 0;
margin: 0;
margin-bottom: 10px;
font-size: 13px;
font-color: black;
text-align: center;
background-color: #D2B0B2;
/* To blend in with background */
-moz-box-shadow: inset -5px 0 5px -2px #888;
-webkit-box-shadow: inset -5px 0 5px -2px #888;
box-shadow: inset -5px 0 5px -2px #888;
}
a.cts-editor-button {
text-align: center;
display: block;
text-decoration: none;
cursor: pointer;
color: #333;
font-size: 11px;
margin-bottom: 10px;
}
a.highlighted {
color: red;
}
a.cts-editor-button i {
font-size: 24px;
display: block;
}
}
}
}
}