Hallo pedram, kennst du das AddOn/Erweiterung ChromeEdit Plus von Firefox?
Damit koenntest du solche Sachen wohl hinbekommen, dabei kannst du die userChrome.css, userContent.css oder die user.js bearbeiten.
Ich habe z.Bsp. das Icon Neu Laden und Laden dieser Seite Stoppen damit in einem Icon bekommen.
Das muesste glaube ich der letzte Abschnitt in dieser userChrome.css - Datei sein (.. ist schon etwas her 😉):
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 | /*
* Edit this file and copy it as userChrome.css into your
* profile-directory/chrome/
*/
/*
* This file can be used to customize the look of Mozilla's user interface
* You should consider using !important on rules which you want to
* override default settings.
*/
/*
* Do not remove the @namespace line -- it's required for correct functioning
*/
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
/*
* Some possible accessibility enhancements:
*/
/*
* Make all the default font sizes 20 pt:
*
* * {
* font-size: 20pt !important
* }
*/
/*
* Make menu items in particular 15 pt instead of the default size:
*
* menupopup > * {
* font-size: 15pt !important
* }
*/
/*
* Give the Location (URL) Bar a fixed-width font
*
* #urlbar {
* font-family: monospace !important;
* }
*/
/*
* Eliminate the throbber and its annoying movement:
*
* #throbber-box {
* display: none !important;
* }
*/
/*
* For more examples see http://www.mozilla.org/unix/customizing.html
*/
tabbrowser-tabs .tab-text {
color: #c28008 !important;
}
.toolbarbutton.bookmark-item > .toolbarbutton-text {
color: #c28008 !important;
}
.menubar-text {
color: #c28008 !important;
}
tab{
-moz-appearance: none !important;
}
tab[selected="true"] {
background-color: rgb(188,188,188) !important;
color: black !important;
}
tab:not([selected="true"]) {
background-color: rgb(155,155,155) !important;
color: lightgray !important;
}
.menulist, menu, menuitem {
color: blue !important;
}
menuitem
{color: #35383f !important;}
.toolbarbutton-text {
color: #c28008;
}
.statusbarpanel-text {
color: #c28008 !important;
}
nav-bar {
background-color: #ff6600 !important;
}
#urlbar,
.searchbar-textbox
{-moz-appearance: none !important;
background-color: silver !important;}
#stop-button:not([disabled="true"]) { display: -moz-box !important; }
#stop-button[disabled="true"] { display: none !important; }
#stop-button[disabled="true"] + #reload-button { display: -moz-box !important; }
#stop-button:not([disabled="true"]) + #reload-button { display: none !important; }
/* Display the Tabbar at the bottom */
#content > tabbox {-moz-box-direction: reverse;}
|
Versuch es mal damit hin zu bekommen..😉.
Netten Gruss, xrolly