mirror of https://github.com/twbs/ratchet.git
Build mobile apps with simple HTML, CSS, and JS components.
http://goratchet.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
// |
|
// Toggle styles (to be used with toggles.js) |
|
// -------------------------------------------------- |
|
|
|
.toggle { |
|
position: relative; |
|
width: 47px; |
|
height: 30px; |
|
background-color: #fff; |
|
border: 2px solid #e6e6e6; |
|
border-radius: 20px; |
|
@include box-shadow(inset 0 0 0 0 #e1e1e1); |
|
@include transition-property(box-shadow, border); |
|
@include transition-duration(.2s); |
|
|
|
// Sliding handle |
|
.toggle-handle { |
|
position: absolute; |
|
top: -1px; |
|
left: -1px; |
|
z-index: 2; |
|
width: 28px; |
|
height: 28px; |
|
background-color: #fff; |
|
border: 1px solid rgba(0, 0, 0, .2); |
|
border-radius: 100px; |
|
@include box-shadow(0 3px 3px rgba(0,0,0,.08)); |
|
@include transition-property(-webkit-transform, border, width); |
|
@include transition-duration(.1s); |
|
@include transition-timing-function(ease-in-out); |
|
} |
|
|
|
&:active .toggle-handle { |
|
width: 35px; |
|
} |
|
|
|
// Active state for toggle |
|
&.active { |
|
border: 2px solid $positive-color; |
|
@include box-shadow(inset 0 0 0 30px $positive-color); |
|
|
|
.toggle-handle { |
|
border-color: $positive-color; |
|
@include transform(translate3d(17px,0,0)); |
|
} |
|
// Handle when the handle and the container is active |
|
&:active .toggle-handle, |
|
.toggle-handle:active { |
|
@include transform(translate3d(10px,0,0) !important); // Evil important tag is used to overwrite js. |
|
} |
|
} |
|
} |