X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=blobdiff_plain;f=LCARStrek%2Fbrowser%2Fpreferences%2Fpreferences.css;h=38742be5dddf7106b2ff8405a414a02faf1bc0a2;hp=acd50262282d4b6425be9e529bc9dbe64d3630fa;hb=5497455b20bc5f74484137eae68e957a9d3ef722;hpb=46e71434a8715fd5d7590f7b799544961ea0394a diff --git a/LCARStrek/browser/preferences/preferences.css b/LCARStrek/browser/preferences/preferences.css index acd50262..38742be5 100644 --- a/LCARStrek/browser/preferences/preferences.css +++ b/LCARStrek/browser/preferences/preferences.css @@ -27,6 +27,14 @@ radio[pane=paneTabs]:not([selected="true"]):hover { -moz-image-region: rect(32px, 64px, 64px, 32px); } +#BrowserPreferences radio[pane=paneSearch] { + list-style-image: url("chrome://browser/skin/search-pref.png"); +} + +#BrowserPreferences radio[pane=paneSearch]:not([selected="true"]):hover { + list-style-image: url("chrome://browser/skin/search-pref-hover.png"); +} + radio[pane=paneContent] { -moz-image-region: rect(0, 96px, 32px, 64px); } @@ -71,6 +79,7 @@ radio[pane=paneSync] { list-style-image: url("chrome://browser/skin/preferences/Options-sync.png") !important; } +/* These lines should be removed as part of fixing bug 1140495 */ label.small { font-size: smaller; } @@ -79,6 +88,23 @@ label.small { margin: 6px; } +/* General Pane */ + +#useFirefoxSync, +#getStarted { + font-size: 90%; +} + +#isNotDefaultLabel { + font-weight: bold; +} + +/* Content Pane */ +#translationAttributionImage { + width: 70px; + cursor: pointer; +} + /* Applications Pane */ #BrowserPreferences[animated="true"] #handlersView { height: 25em; @@ -182,3 +208,24 @@ label.small { #noFxaAccount > label:first-child { margin-bottom: 0.6em; } + +/** + * Sync migration + */ +#sync-migration { + border: 1px solid #9C9CFF; + background-color: #000000; + color: #A09090; + text-shadow: none; + margin: 5px 0 0 0; + animation: fadein 3000ms; +} + +#sync-migration description { + margin: 8px; +} + +@keyframes fadein { + from { opacity: 0; } + to { opacity: 1; } +}