diff options
Diffstat (limited to 'l10n-cs/suite/profile/chrome')
-rw-r--r-- | l10n-cs/suite/profile/chrome/userChrome-example.css | 57 | ||||
-rw-r--r-- | l10n-cs/suite/profile/chrome/userContent-example.css | 47 |
2 files changed, 104 insertions, 0 deletions
diff --git a/l10n-cs/suite/profile/chrome/userChrome-example.css b/l10n-cs/suite/profile/chrome/userChrome-example.css new file mode 100644 index 0000000000..62b338218e --- /dev/null +++ b/l10n-cs/suite/profile/chrome/userChrome-example.css @@ -0,0 +1,57 @@ +/* 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/. */ + +/* + * Ulozte kopii tohoto souboru jako userChrome.css do adresare chrome + * v adresari s uzivatelskym profilem a upravte dle svych predstav. + */ + +/* + * Tento soubor se pouziva k nastaveni nekterych vychytavek uzivatelskeho + * rozhrani aplikaci Mozilla. Pravidla s deklaraci !important prevazi + * nad vychozimi pravidly. + */ + +/* + * Radku @namespace NEODSTRANUJTE -- je nutna pro spravne fungovani celeho souboru + */ +@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* nastavit vychozi namespace XUL */ + + +/* + * Nektera vylepseni pristupnosti: + */ +/* + * Priklad: nastavit velikost pisma na 20pt + * + * * { + * font-size: 20pt !important; + * } + */ +/* + * Priklad: nastavit velikost pisma v nabidce na 15pt + * + * menupopup > * { + * font-size: 15pt !important; + * } + */ +/* + * Priklad: nastavit v adresnim radku (URL) neproporcionalni pismo s pevnou sirkou + * + * #urlbar { + * font-family: monospace !important; + * } + */ + +/* + * Priklad: skryt pohybujici se kolecko pri nacitani stranky + * + * #throbber-box { + * display: none !important; + * } + */ + +/* + * Vice prikladu naleznete na http://www.mozilla.org/unix/customizing.html + */ diff --git a/l10n-cs/suite/profile/chrome/userContent-example.css b/l10n-cs/suite/profile/chrome/userContent-example.css new file mode 100644 index 0000000000..67dca72699 --- /dev/null +++ b/l10n-cs/suite/profile/chrome/userContent-example.css @@ -0,0 +1,47 @@ +/* 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/. */ + +/* + * Ulozte kopii tohoto souboru jako userContent.css do adresare chrome + * v adresari s uzivatelskym profilem a upravte dle svych predstav. + */ + +/* + * Tento soubor se pouziva k nastaveni uzivatelskych kaskadovych stylu + * na webovych strankach. Pravidla bez deklarace !important budou prepsana + * kaskadovymi styly webove stranky, pokud takova jsou. Pravidla s deklaraci + * !important prevazi nad pravidly na webove strance. + */ + +/* + * Priklad: odstranit blikajici prvky + * + * blink { text-decoration: none !important; } + * + */ + +/* + * Priklad: nastavit vsem tabulkam 2px siroky ramecek + * + * table { border: 2px solid; } + */ + +/* + * Priklad: vypnout pohybujici se texty + * + * marquee { -moz-binding: none; } + * + */ + +/* + * Priklad: nastavit pro vyhledavaci pole na www.mozilla.org bile pozadi a cerny text + * + * @-moz-document url-prefix(http://www.mozilla.org/) { + * #q { background: white !important; color: black !important; } + * } + */ + +/* + * Vice prikladu najdete na http://www.mozilla.org/unix/customizing.html + */ |