Skip to content

Commit

Permalink
settings dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Leozard committed Jan 29, 2023
1 parent f8ff989 commit 2b539ac
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 12 deletions.
3 changes: 3 additions & 0 deletions lib/selectors/selectorPlaceholders.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3791,6 +3791,9 @@ pre {
.item-1TA5qI {
@extend %radioItem !optional;
}
.disabled-WBmOu_ {
@extend %radioItemDisabled !optional;
}
.radioBar-1XgZqD {
@extend %radioBar !optional;
}
Expand Down
2 changes: 1 addition & 1 deletion src/general/radioGroup.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
background-color: transparent;
color: #fff;
&:hover {
&:not([aria-checked=true]) {
&:not([aria-checked=true]):not(%radioItemDisabled) {
background-color: transparent;
color: #fff;
}
Expand Down
31 changes: 31 additions & 0 deletions src/settings/content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,35 @@
%bg {
animation: cv-shake 0.5s ease-in;
}
}

// DROP DOWN
.lookFilled-GPyucw.select-Zz0IcO {
background-color: hsla(0, 0%, 100%, .07);
border-color: hsla(0, 0%, 100%, .09);
}
.popout-15UxD6 {
background-color: rgba(0, 0, 0, 0.8);
border: none;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.option-Uc12mm {
&:hover,
&:focus,
&.focused-10mbp- {
background-color: hsla(0, 0%, 100%, 0.05);
border: hsla(0, 0%, 100%, 0.07);
}
&[aria-selected=true]:not(.option-Uc12mm.multi-2vPqc4) {
background-color: $main-color;
.selectedIcon-122rMx {
circle {
fill: $main-color;
}
}
path {
fill: #fff;
}
}
}
11 changes: 0 additions & 11 deletions src/settings/userSettings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -280,15 +280,4 @@
border: hsla(0, 0%, 100%, 0.07);
}
}
}
.option-2eIyOn {
&:hover,
&:focus,
&.focused-ODgjnC {
background-color: hsla(0, 0%, 100%, 0.05);
border: hsla(0, 0%, 100%, 0.07);
}
&[aria-selected='true']:not(.option-2eIyOn.multi-1HXDiv) {
background-color: $main-color !important;
}
}

0 comments on commit 2b539ac

Please sign in to comment.