Move into wp-content path
Signed-off-by: Adrian Nöthlich <git@promasu.tech>
This commit is contained in:
237
wp-content/themes/Pirate-Rogue/css/sass/backend/_customizer.scss
Normal file
237
wp-content/themes/Pirate-Rogue/css/sass/backend/_customizer.scss
Normal file
@@ -0,0 +1,237 @@
|
||||
/*-----------------------------------------------------------------------------------*/
|
||||
/* Customizer Settings
|
||||
/*-----------------------------------------------------------------------------------*/
|
||||
$color_customizer_buttons: #0085ba;
|
||||
$color_customizer_bggray: #e9edf2;
|
||||
|
||||
#customize-controls #sub-accordion-section-header_image img {
|
||||
height: 65px;
|
||||
max-height: 65px;
|
||||
max-width: 240px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
#customize-theme-controls {
|
||||
.customize-control-colorlist-radio {
|
||||
// Inspired by https://jsfiddle.net/8uycrv12/
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
margin: 2px;
|
||||
|
||||
input[type="radio"] {
|
||||
// hide ugly default radio icon
|
||||
display: none;
|
||||
}
|
||||
input[type="radio"] + span.colorbox {
|
||||
border-radius: 30%;
|
||||
}
|
||||
|
||||
span.colorbox {
|
||||
background: transparent;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
display: inline-block;
|
||||
border: 2px solid transparent;
|
||||
transition: all .2s linear;
|
||||
}
|
||||
span.reset {
|
||||
padding: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Hover-Effekt */
|
||||
label:hover span.colorbox {
|
||||
border: 2px solid #aaa;
|
||||
}
|
||||
input[type="checkbox"]:checked + span.colorbox,
|
||||
input[type="radio"]:checked + span.colorbox {
|
||||
border: 3px solid #000;
|
||||
}
|
||||
}
|
||||
|
||||
.customize-control-multiple-select {
|
||||
option:checked,
|
||||
option[selected] {
|
||||
background: $color_customizer_bggray;
|
||||
}
|
||||
select[multiple]:focus option:checked {
|
||||
background: $color_customizer_buttons;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.customize-control-range-value {
|
||||
.range-slider {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.range-slider__range {
|
||||
-webkit-appearance: none;
|
||||
width: calc(100% - (95px));
|
||||
height: 10px;
|
||||
border-radius: 5px;
|
||||
background: #d7dcdf;
|
||||
outline: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.range-slider__range::-webkit-slider-thumb {
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border-radius: 50%;
|
||||
background: $color_customizer_buttons;
|
||||
cursor: pointer;
|
||||
-webkit-transition: background .15s ease-in-out;
|
||||
transition: background .15s ease-in-out;
|
||||
}
|
||||
|
||||
.range-slider__range::-webkit-slider-thumb:hover {
|
||||
background: $color_customizer_buttons;
|
||||
}
|
||||
|
||||
.range-slider__range:active::-webkit-slider-thumb {
|
||||
background: $color_customizer_buttons;
|
||||
}
|
||||
|
||||
.range-slider__range::-moz-range-thumb {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border: 0;
|
||||
border-radius: 50%;
|
||||
background: $color_customizer_buttons;
|
||||
cursor: pointer;
|
||||
-webkit-transition: background .15s ease-in-out;
|
||||
transition: background .15s ease-in-out;
|
||||
}
|
||||
|
||||
.range-slider__range::-moz-range-thumb:hover {
|
||||
background: $color_customizer_buttons;
|
||||
}
|
||||
|
||||
.range-slider__range:active::-moz-range-thumb {
|
||||
background: $color_customizer_buttons;
|
||||
}
|
||||
|
||||
.range-slider__value {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
width: 30px;
|
||||
color: #fff;
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
background: $color_customizer_buttons;
|
||||
padding: 2px 5px;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
|
||||
::-moz-range-track {
|
||||
background: #d7dcdf;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
input::-moz-focus-inner, input::-moz-focus-outer {
|
||||
border: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Toggle Switch
|
||||
.toggle-switch-control .customize-control-title {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.toggle-switch {
|
||||
position: relative;
|
||||
width: 64px;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
float: right;
|
||||
|
||||
.toggle-switch-checkbox {
|
||||
display: none;
|
||||
}
|
||||
.toggle-switch-label {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
border: 2px solid #ddd;
|
||||
border-radius: 20px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.toggle-switch-inner {
|
||||
display: block;
|
||||
width: 200%;
|
||||
margin-left: -100%;
|
||||
transition: margin 0.3s ease-in 0s;
|
||||
}
|
||||
|
||||
.toggle-switch-inner:before,
|
||||
.toggle-switch-inner:after {
|
||||
display: block;
|
||||
float: left;
|
||||
width: 50%;
|
||||
height: 22px;
|
||||
padding: 0;
|
||||
line-height: 22px;
|
||||
font-size: 14px;
|
||||
color: white;
|
||||
font-family: Trebuchet, Arial, sans-serif;
|
||||
font-weight: bold;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.toggle-switch-inner:before {
|
||||
content: "An";
|
||||
padding-left: 8px;
|
||||
background-color: #2885bb;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
:lang(en) .toggle-switch-inner:before {
|
||||
content: "ON";
|
||||
}
|
||||
.toggle-switch-inner:after {
|
||||
content: "Aus";
|
||||
padding-right: 8px;
|
||||
background-color: #EEEEEE;
|
||||
color: #999999;
|
||||
text-align: right;
|
||||
}
|
||||
:lang(en) .toggle-switch-inner:after {
|
||||
content: "OFF";
|
||||
}
|
||||
.toggle-switch-switch {
|
||||
display: block;
|
||||
width: 16px;
|
||||
margin: 3px;
|
||||
background: #FFFFFF;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 38px;
|
||||
border: 2px solid #ddd;
|
||||
border-radius: 20px;
|
||||
transition: all 0.3s ease-in 0s;
|
||||
}
|
||||
|
||||
.toggle-switch-checkbox:checked + .toggle-switch-label .toggle-switch-inner {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.toggle-switch-checkbox:checked + .toggle-switch-label .toggle-switch-switch {
|
||||
right: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user