forked from feincms/feincms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree_editor.css
More file actions
91 lines (75 loc) · 1.31 KB
/
tree_editor.css
File metadata and controls
91 lines (75 loc) · 1.31 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* tree editor */
.page_marker {
display: block;
text-align: right;
float: left;
padding: 1px 1px 0 0;
}
tr.cut {
border: 2px dashed black;
opacity: 0.5;
}
.title-column {
width: 400px;
}
#result_list tbody tr:focus {
background-color: #79aec8 !important;
outline: 0px;
color: #ffffff;
}
#result_list tbody tr:focus .field-indented_short_title a {
color: white;
}
.drag_handle {
width: 16px;
height: 16px;
background: url(img/arrow-move.png);
display: inline-block;
vertical-align: middle;
}
.drag_handle:hover {
cursor: move;
}
.drag_order img {
cursor: move;
}
table tr.dragging {
opacity: 0.3;
}
table tr.dragging td {
color: #333;
}
table tr.folded {
background: red;
}
div#drag_line {
position: relative;
height: 3px;
font-size: 0px;
background-color: #417690;
}
div#drag_line div {
position: absolute;
height: 9px;
width: 9px;
background: #417690;
margin: -3px 0 0 -9px;
border-radius: 9px;
}
.page_marker.children {
background: url(img/disclosure-down.png) no-repeat right top;
}
.page_marker.closed {
background: url(img/disclosure-right.png) no-repeat right top;
}
tr.non-editable a:link,
tr.non-editable a:visited,
tr.non-editable td {
color: #aaa;
}
tr.item_inactive {
color: rgb(221, 17, 68);
}
tr.item_inactive th a {
color: rgb(221, 17, 68);
}