* feat: improve 2fa styles based on feedback * fix: preferences panes and dialogs electron compatibility * fix: no horizontal line when opening two factor activation * feat: improve two factor activation styles * feat: further 2fa style improvements * feat: padding 2fa widgets * feat: add padding between QR code and content * feat: refresh 2fa after passcode confirmation * feat: don't autocomplete passwords for DecoratedInput
47 lines
786 B
SCSS
47 lines
786 B
SCSS
.preferences-menu-item {
|
|
@extend .border-box;
|
|
@extend .w-auto;
|
|
@extend .h-auto;
|
|
@extend .rounded;
|
|
@extend .min-w-42;
|
|
|
|
@extend .py-2;
|
|
@extend .px-4;
|
|
|
|
@extend .flex;
|
|
@extend .flex-row;
|
|
@extend .items-center;
|
|
@extend .justify-start;
|
|
|
|
@extend .text-sm;
|
|
@extend .cursor-pointer;
|
|
|
|
@extend .border-transparent;
|
|
@extend .border-solid;
|
|
@extend .border-1;
|
|
|
|
.icon {
|
|
color: var(--sn-stylekit-grey-1);
|
|
@extend .text-base;
|
|
}
|
|
|
|
&:hover {
|
|
@extend .border-gray-300;
|
|
@extend .border-solid;
|
|
@extend .border-1;
|
|
@extend .bg-default;
|
|
}
|
|
}
|
|
|
|
.preferences-menu-item.selected {
|
|
@extend .border-info;
|
|
@extend .color-info;
|
|
@extend .font-bold;
|
|
|
|
background-color: var(--sn-stylekit-info-backdrop-color);
|
|
|
|
.icon {
|
|
@extend .color-info;
|
|
}
|
|
}
|