-
Notifications
You must be signed in to change notification settings - Fork 6
/
AdminBar.css
executable file
·126 lines (107 loc) · 2.11 KB
/
AdminBar.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
/*
*
* Do not edit this file - if you want to change look and feel of your AdminBar,
* please add AdminBarCustom.css to your /modules/AdminBar/ folder.
*
* And if you do customize, remember to add #adminbar, #ab-modal or #ab-pagesaved
* to your selectors. We don't have namespaces in css yet ;)
*
* -apeisa
*
*/
html {
padding-top: 40px;
}
#adminbar {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 40px;
margin: 0;
padding: 0;
background: white url(sprite.png) repeat-x 0px 2px;
z-index: 999;
}
#adminbar li {
display: block;
float: left;
list-style: none;
margin: 0;
padding: 0;
height: 40px;
border-right: 1px solid #dbdbdb;
}
#adminbar li a, #adminbar li span {
display: block;
float: left;
height: 40px;
line-height: 42px;
padding: 0 10px 0 36px;
font-family: arial, sans-serif;
color: #505050;
text-decoration: none;
}
#adminbar li a:hover {
text-decoration: none;
}
#adminbar .active, #adminbar li.active:hover {
background: url(sprite.png) repeat-x 0px -380px;
}
#adminbar li.admin, #adminbar li.admin:hover {
float: right;
background: url(sprite.png) no-repeat -50px -42px;
}
#adminbar .admin a {
padding: 0 10px;
border-left: 1px solid #bebebe;
}
#adminbar .admin a:hover {
text-decoration: underline;
}
#adminbar .browse {
border-left: 1px solid #cecece;
}
#adminbar .browse a {
background: transparent url(sprite.png) 10px -182px;
}
#adminbar .edit a {
background: transparent url(sprite.png) 12px -97px;
}
#adminbar .add-page a {
background: transparent url(sprite.png) 12px -140px;
}
#adminbar .permissions span {
background: transparent url(sprite.png) 12px -327px;
}
#adminbar li:hover {
background: #dde1e4;
}
#adminbar li.permissions:hover {
background: inherit;
}
#ab-modal {
z-index: 998;
background: white;
position: fixed;
top: 40px;
left: 0px;
right: 0px;
}
#ab-modal.hidden {
border: none;
}
#ab-modal.loading {
background: white url(loading.gif) 13px 6px no-repeat;
}
#ab-pagesaved {
background: white;
position: absolute;
top: 0px;
left: 0px;
right: 0px;
height: 40px;
line-height: 40px;
text-align: center;
border-bottom: 1px solid #cecece;
}