mirror of
https://git.disroot.org/eudaimon/Simplewaita.git
synced 2026-03-10 04:21:07 +00:00
Improved sliders with marks, sliders in fine-tune
This commit is contained in:
parent
36a201343b
commit
5a0ce409d8
9 changed files with 313 additions and 493 deletions
26
source/common/cursor-handle.scss
Normal file
26
source/common/cursor-handle.scss
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/**********************
|
||||
* Touch Copy & Paste *
|
||||
*********************/
|
||||
//touch selection handlebars for the Popover.osd above
|
||||
cursor-handle {
|
||||
|
||||
//copying slider code, so not DRYing, here...
|
||||
//I don't know how to test this...
|
||||
@include button(normal-alt);
|
||||
|
||||
border: 1px solid darken($alt_borders_color, 3%);
|
||||
border-radius: 100%;
|
||||
transition: $button_transition;
|
||||
transition-property: background, border, box-shadow;
|
||||
min-height: 18px;
|
||||
min-width: 10px;
|
||||
|
||||
&:hover { @include button(hover-alt, $edge: $shadow_color); }
|
||||
|
||||
&:active { border-color: $progress_border_color; }
|
||||
|
||||
&:disabled { @include button(insensitive); }
|
||||
|
||||
&.top:dir(ltr), &.bottom:dir(rtl) {border-radius: 100% 5px 5px 5px;}
|
||||
&.bottom:dir(ltr), &.top:dir(rtl) {border-radius: 5px 100% 5px 5px;}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue