-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.css
168 lines (145 loc) · 3.31 KB
/
admin.css
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#tree_tree, #tree_tree ol {
list-style: none;
margin: 0px 0px 0px 20px;
}
#tree_tree li {
margin: 0;
}
#tree_tree li > div{
height: 33px;
box-sizing: border-box;
background-color: #999;
}
#tree_tree .dropbutton {
float: right;
clear: both;
}
a.menu_button_dark,
a.menu_button_dark:active
{
margin: 0 0.5em;
color: #fff !important;
background: #333;
padding: 2px 5px;
font-size: 10px;
-moz-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 1px 1px 3px #999;
-webkit-box-shadow: 1px 1px 3px #999;
box-shadow: 1px 1px 3px #999;
text-decoration: none;
font-family: 'Helvetica Neue', Helvetica, 'Lucida Grande', Arial, Verdana, Sans-Serif;
}
a.menu_button_dark:hover {
background: #555;
text-decoration: none;
}
div#menu_form #menuname,
div#menu_form #description {
/* to line up with the tree */
margin-left: 15px;
}
div#menu_item_button_container {
padding: 6px 3px 8px 3px;
background: #999;
margin: 0 0 15px 15px;
}
div#title.formcontrol label,
div#link_name.formcontrol label,
div#link_url.formcontrol label {
width: 70px;
display: inline-block;
font-weight: bold;
}
div#title.formcontrol input,
div#link_name.formcontrol input,
div#link_url.formcontrol input {
width: 350px;
}
div#save.formcontrol {
margin-top: 15px;
}
div#menu_form.container div#menu_vocab em { /* menu description on edit page */
font-style: italic;
color: #BBB;
margin-left: 1em;
}
div#menu_form.container div#menu_vocab { /* box around menu title and description on edit page */
background-color: #666;
border: 1px solid #888;
border-radius: 5px 5px 5px 5px;
color: white;
padding: 10px 15px;
margin: 10px 0px;
font-size: 1.6em;
}
div#menu_form.container div#menu_vocab a.menu_vocab_edit,
div#menu_form.container div#menu_vocab a.menu_vocab_edit:active { /*edit link in box around menu title */
float: right;
margin-right: 0.5em;
color: #000 !important;
background: #DDD;
padding: 3px 8px;
font-size: 13px;
-moz-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 1px 1px 3px #666;
-webkit-box-shadow: 1px 1px 3px #666;
box-shadow: 1px 1px 3px #666;
text-decoration: none;
font-family: 'Helvetica Neue', Helvetica, 'Lucida Grande', Arial, Verdana, Sans-Serif;
}
div#menu_form.container div#menu_vocab a.menu_vocab_edit:hover {
background: #BBB;
color: #333;
}
div#menu_form.container ul a {
text-decoration: none;
}
div.token-input-dropdown {
z-index: 1009 !important;
}
div#menu_form.container form#edit_menu h3 {
margin: 0 0 10px 0;
}
body.page-menus div#menu_form.container {
min-height: 125px;
}
body.page-menus #menu_form.container label {
display: inline-block;
width: 7em;
float: left;
}
ol.tree {
border: 1px solid #999;
}
input[type="submit"] {
display: block;
clear: both;
}
form#menu_item_edit .helptext {
font-style: italic;
color: #999;
clear: both;
margin-left: 25%;
}
.a_button { /* needs a better name. */
padding: 2px 4px 2px 4px;
cursor: pointer;
border-radius: 9px;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
font-size: 10px;
background: transparent url('../../../system/admin/images/button_background.png') repeat-x; /* @TODO fix this url when this goes into core */
border: 1px solid #B3B3B3;
text-align: center;
}
.a_button:hover {
border: 1px solid #555;
background-position: 0 -30px;
}
a.a_button {
text-decoration: none;
display: inline-block;
min-width: 110px;
}