mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Replaced bootstrap switch with css only version!
This commit is contained in:
parent
bafb742141
commit
6636b77489
10 changed files with 89 additions and 804 deletions
|
@ -32,7 +32,6 @@ https://github.com/ghinda/css-toggle-switch
|
|||
.toggle label {
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
@ -48,11 +47,9 @@ https://github.com/ghinda/css-toggle-switch
|
|||
.toggle p {
|
||||
position: absolute;
|
||||
left: -100px;
|
||||
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding-right: 100px;
|
||||
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
|
@ -61,12 +58,11 @@ https://github.com/ghinda/css-toggle-switch
|
|||
top: 0;
|
||||
left: 0;
|
||||
z-index: 5;
|
||||
|
||||
display: block;
|
||||
width: 50%;
|
||||
margin-left: 100px;
|
||||
|
||||
text-align: center;
|
||||
color: #F5F5F5;
|
||||
}
|
||||
|
||||
.toggle p span:last-child {
|
||||
|
@ -78,8 +74,7 @@ https://github.com/ghinda/css-toggle-switch
|
|||
right: 0;
|
||||
top: 0;
|
||||
z-index: 4;
|
||||
|
||||
display: block;
|
||||
display: inline;
|
||||
width: 50%;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
|
@ -198,11 +193,11 @@ https://github.com/ghinda/css-toggle-switch
|
|||
.toggle .slide-button {
|
||||
display: block;
|
||||
|
||||
-webkit-transition: all 0.3s ease-out;
|
||||
-moz-transition: all 0.3s ease-out;
|
||||
-ms-transition: all 0.3s ease-out;
|
||||
-o-transition: all 0.3s ease-out;
|
||||
transition: all 0.3s ease-out;
|
||||
-webkit-transition: all 0.3s ease-in 0s;
|
||||
-moz-transition: all 0.3s ease-in 0s;
|
||||
-ms-transition: all 0.3s ease-in 0s;
|
||||
-o-transition: all 0.3s ease-in 0s;
|
||||
transition: all 0.3s ease-in 0s;
|
||||
}
|
||||
|
||||
.toggle label,
|
||||
|
@ -217,10 +212,11 @@ https://github.com/ghinda/css-toggle-switch
|
|||
}
|
||||
|
||||
/* Outline the toggles when the inputs are focused */
|
||||
.toggle input:focus ~ .slide-button,
|
||||
.switch input:focus + label {
|
||||
outline: 1px dotted #888;
|
||||
}
|
||||
/*.toggle input:focus ~ .slide-button,*/
|
||||
/* WHY?! It looks awful and it seems to bug out in FF */
|
||||
/*.switch input:focus + label {*/
|
||||
/*outline: 1px dotted #888;*/
|
||||
/*}*/
|
||||
|
||||
/* Bugfix for older Webkit, including mobile Webkit. Adapted from:
|
||||
* http://css-tricks.com/webkit-sibling-bug/
|
||||
|
@ -230,192 +226,4 @@ https://github.com/ghinda/css-toggle-switch
|
|||
}
|
||||
|
||||
@-webkit-keyframes bugfix { from { position: relative; } to { position: relative; } }
|
||||
|
||||
|
||||
/* Standalone Themes */
|
||||
|
||||
|
||||
/* Candy Theme
|
||||
* Based on the "Sort Switches / Toggles (PSD)" by Ormal Clarck
|
||||
* http://www.premiumpixels.com/freebies/sort-switches-toggles-psd/
|
||||
*/
|
||||
|
||||
.candy {
|
||||
background-color: #2d3035;
|
||||
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
text-shadow: 1px 1px 1px #191b1e;
|
||||
|
||||
border-radius: 3px;
|
||||
|
||||
box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3), 0 1px 0px rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
.candy input:checked + label {
|
||||
color: #333;
|
||||
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
|
||||
}
|
||||
|
||||
.candy .slide-button {
|
||||
border: 1px solid #333;
|
||||
|
||||
background-color: #70c66b;
|
||||
|
||||
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
|
||||
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
|
||||
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
|
||||
background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
|
||||
background-image: linear-gradient(top, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
|
||||
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.45);
|
||||
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.candy p {
|
||||
color: #333;
|
||||
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.candy span {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.candy.blue .slide-button {
|
||||
background-color: #38a3d4;
|
||||
}
|
||||
|
||||
.candy.yellow .slide-button {
|
||||
background-color: #f5e560;
|
||||
}
|
||||
|
||||
/* Android Theme
|
||||
* Based on Holo
|
||||
*/
|
||||
|
||||
.android {
|
||||
background-color: #b6b6b6;
|
||||
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.android.toggle {
|
||||
border: 2px solid #b6b6b6;
|
||||
}
|
||||
|
||||
.android.switch {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.android.switch .slide-button {
|
||||
background-color: #279fca;
|
||||
|
||||
-webkit-transform: skew(20deg) translateX(10px);
|
||||
-moz-transform: skew(20deg) translateX(10px);
|
||||
-ms-transform: skew(20deg) translateX(10px);
|
||||
-o-transform: skew(20deg) translateX(10px);
|
||||
transform: skew(20deg);
|
||||
}
|
||||
|
||||
.android.toggle .slide-button {
|
||||
border-radius: 2px;
|
||||
|
||||
background-color: #848484;
|
||||
}
|
||||
|
||||
/* Selected ON toggle */
|
||||
.android.toggle input:first-of-type:checked ~ .slide-button {
|
||||
background-color: #279fca;
|
||||
}
|
||||
|
||||
.android.switch input:first-of-type:checked ~ .slide-button {
|
||||
-webkit-transform: skew(20deg) translateX(-10px);
|
||||
-moz-transform: skew(20deg) translateX(-10px);
|
||||
-ms-transform: skew(20deg) translateX(-10px);
|
||||
-o-transform: skew(20deg) translateX(-10px);
|
||||
transform: skew(20deg) translateX(-10px);
|
||||
}
|
||||
|
||||
.android p {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.android span {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.android.switch,
|
||||
.android span {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/* iOS Theme
|
||||
* Similar to iOS but more accessible
|
||||
*/
|
||||
|
||||
.ios {
|
||||
background: -webkit-linear-gradient(top, #cfcfcf, #efefef 50%, #f9f9f9 50%, #fefefe);
|
||||
background: -moz-linear-gradient(top, #cfcfcf, #efefef 50%, #f9f9f9 50%, #fefefe);
|
||||
background: -o-linear-gradient(top, #cfcfcf, #efefef 50%, #f9f9f9 50%, #fefefe);
|
||||
background: -ms-linear-gradient(top, #cfcfcf, #efefef 50%, #f9f9f9 50%, #fefefe);
|
||||
background: linear-gradient(top, #cfcfcf, #efefef 50%, #f9f9f9 50%, #fefefe);
|
||||
|
||||
-webkit-box-shadow: inset 0 2px 2px #b6b6b6, inset 3px 0 3px #b6b6b6;
|
||||
box-shadow: inset 0 2px 2px #b6b6b6, inset 3px 0 3px #b6b6b6;
|
||||
|
||||
border: 1px solid #efefef;
|
||||
border-radius: 3px;
|
||||
|
||||
color: #7f7f7f;
|
||||
font: bold 14px sans-serif;
|
||||
text-align: center;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.ios.toggle .slide-button {
|
||||
border: 1px solid #919191;
|
||||
background: -webkit-linear-gradient(top, #cdcdcd, #fbfbfb);
|
||||
background: -moz-linear-gradient(top, #cdcdcd, #fbfbfb);
|
||||
background: -o-linear-gradient(top, #cdcdcd, #fbfbfb);
|
||||
background: -ms-linear-gradient(top, #cdcdcd, #fbfbfb);
|
||||
background: linear-gradient(top, #cdcdcd, #fbfbfb);
|
||||
|
||||
border-radius: 3px;
|
||||
|
||||
-webkit-box-shadow: inset 0 1px 0 #f0f0f0;
|
||||
box-shadow: inset 0 1px 0 #f0f0f0;
|
||||
}
|
||||
|
||||
/* Selected ON toggle */
|
||||
.ios.toggle input:first-of-type:checked ~ p span:first-child,
|
||||
.ios.switch input:checked + label {
|
||||
color: #fff;
|
||||
text-shadow: 0 -1px 0 #1b3b6f;
|
||||
}
|
||||
|
||||
.ios.toggle input:first-of-type:checked ~ .slide-button,
|
||||
.ios.switch .slide-button {
|
||||
background: -webkit-linear-gradient(top, #3672dc, #4085ec 50%, #4d8fef 50%, #76adfc);
|
||||
background: -moz-linear-gradient(top, #3672dc, #4085ec 50%, #4d8fef 50%, #76adfc);
|
||||
background: -o-linear-gradient(top, #3672dc, #4085ec 50%, #4d8fef 50%, #76adfc);
|
||||
background: -ms-linear-gradient(top, #3672dc, #4085ec 50%, #4d8fef 50%, #76adfc);
|
||||
background: linear-gradient(top, #3672dc, #4085ec 50%, #4d8fef 50%, #76adfc);
|
||||
|
||||
border-radius: 3px;
|
||||
border: 1px solid #1654b5;
|
||||
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
|
||||
font: bold 14px sans-serif;
|
||||
text-shadow: 0 -1px 0 #1b3b6f;
|
||||
}
|
||||
|
||||
.ios.toggle p span {
|
||||
color: #7f7f7f;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue