blob: a86581c6671a6a5a82eaefc4cc9370b2ff5d715a (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/*
* Rediger denne filen og kopier den som userChrome.css til
* din profilmappe/chrome/
*/
/*
* Denne filen kan brukes til � forandre p� utseendet til Mozillas
* brukergrensesnitt. Om du vil overstyre de forvalgte innstillingene kan
* du bruke !important.
*/
/*
* Ikke fjern @namespace-linjen, den m� v�re tilstede for at ting skal fungere.
*/
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
/*
* Noen mulige regler for � �ke tilgjengeligheten:
*/
/*
* Gj�r alle skriftst�rrelser om til 20 punkter
*
* * {
* font-size: 20pt !important
* }
*/
/*
* Gj�r skriftst�rrelsen i alle menyer om til 15 punkter
*
* menupopup > * {
* font-size: 15pt !important
* }
*/
/*
* Gir adresselinjen en ikke-proporsjonal skrift.
*
* #urlbar {
* font-family: monospace !important;
* }
*/
/*
* Tar bort lastingsanimasjonen
*
* #throbber-box {
* display: none !important;
* }
*/
/*
* G� til http://www.mozilla.org/unix/customizing.html (Engelsk) for flere eksempler
*/
|