mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
quickSettings: Add small border to menu toggles
The slightly lighter background of the menu button turned out to not be quite enough to indicate that it's a separate control from the main toggle. Address this with a small border between the two elements. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/5963 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2632>
This commit is contained in:
parent
cf89a6d01e
commit
45dcbf516f
1 changed files with 9 additions and 3 deletions
|
|
@ -56,12 +56,18 @@
|
|||
|
||||
& .quick-toggle-arrow {
|
||||
padding: $base_padding $base_padding*1.75;
|
||||
border: none;
|
||||
border-width: 0;
|
||||
|
||||
&:checked { @include button(default, $c:$selected_bg_color); }
|
||||
|
||||
&:ltr { border-radius: 0 99px 99px 0; }
|
||||
&:rtl { border-radius: 99px 0 0 99px; }
|
||||
&:ltr {
|
||||
border-radius: 0 99px 99px 0;
|
||||
border-left-width: 1px;
|
||||
}
|
||||
&:rtl {
|
||||
border-radius: 99px 0 0 99px;
|
||||
border-right-width: 1px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue