blob: 86749586df15d7af6b6d3f3f35864ffc9b3c6176 (
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
|
#TabsToolbar {
visibility: collapse !important;
}
/* ffffe8 */
/*#navigator-toolbox-background {*/
/*
#nav-bar {
background: #e5e5d0 !important;
}
#nav-bar:-moz-window-inactive {
background: #ffffe8 !important;
}
#urlbar-background {
background: inherit !important;
}
*/
/*
* Replace navigation icons with text
*/
#back-button image,
#forward-button image,
#stop-reload-button image {
display:none !important;
}
#context-navigation .menu-iconic-left{
-moz-margin-start:15px !important; /*adjust this for your OS/theme*/
}
#back-button:after,
#forward-button:after,
#stop-button:after,
#reload-button:after {
content: attr(label) !important;
text-decoration: underline !important;
color: inherit !important;
}
#context-navigation{
-moz-box-orient: vertical !important;
}
#context-navigation > .menuitem-iconic{
-moz-box-pack: start !important;
}
|