X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=blobdiff_plain;f=LCARStrek%2Fbrowser%2Fpreferences%2Fcontainers.css;fp=LCARStrek%2Fbrowser%2Fpreferences%2Fcontainers.css;h=270e680aede4324b33bdbd79a4ee0722f6833aeb;hp=0000000000000000000000000000000000000000;hb=1cf9b0825ab3c891686ef5cdcde86e6a8efbf701;hpb=39819724e7ccf708c0bb3a149b5f02749ea81c60 diff --git a/LCARStrek/browser/preferences/containers.css b/LCARStrek/browser/preferences/containers.css new file mode 100644 index 00000000..270e680a --- /dev/null +++ b/LCARStrek/browser/preferences/containers.css @@ -0,0 +1,57 @@ +/* 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/. */ + +@import url("chrome://browser/content/usercontext/usercontext.css"); + +:root { + --preference-selected-color: #008484; + --preference-unselected-color: #9C9CFF; + --preference-active-color: #FF9F00; +} + +.radio-buttons { + display: flex; + margin-inline-start: 0.35rem; +} + +.radio-buttons > radio { + flex: auto; + display: flex; + align-items: center; + justify-content: center; + -moz-user-select: none; + outline: 2px solid transparent; + outline-offset: 4px; + -moz-outline-radius: 100%; + min-block-size: 24px; + min-inline-size: 24px; + border-radius: 50%; + padding: 2px; + margin: 10px; +} + +.icon-buttons > radio > [data-identity-icon] { + fill: #A09090; +} + +.radio-buttons > radio { + padding-inline-start: 2px; +} + +radio > [data-identity-icon] { + inline-size: 22px; + block-size: 22px; +} + +.radio-buttons > radio[selected=true] { + outline-color: var(--preference-unselected-color); +} + +.radio-buttons > radio[focused=true] { + outline-color: var(--preference-selected-color); +} + +.radio-buttons > radio:hover:active { + outline-color: var(--preference-active-color); +}