128 lines
2.7 KiB
CSS
128 lines
2.7 KiB
CSS
.butterbean-manager-default {
|
|
margin: 25px 0;
|
|
border: 1px solid #e2e4e7;
|
|
min-height: 400px;
|
|
}
|
|
.butterbean-manager-default .butterbean-label {
|
|
font-weight: 600 !important;
|
|
}
|
|
.butterbean-manager-default .butterbean-nav li a {
|
|
color: #555;
|
|
}
|
|
.butterbean-manager-default .butterbean-nav li[aria-selected=true] a {
|
|
font-weight: 400 !important;
|
|
color: #0073aa !important;
|
|
}
|
|
.attesa-mb-field:before,
|
|
.attesa-mb-field:after {
|
|
content: "";
|
|
display: table;
|
|
table-layout: fixed;
|
|
}
|
|
.attesa-mb-field:after {
|
|
clear: both;
|
|
}
|
|
.attesa-mb-field {
|
|
box-sizing: border-box;
|
|
}
|
|
.attesa-mb-field input[type=number],
|
|
.attesa-mb-field input[type=text]:not(.wp-color-picker),
|
|
.attesa-mb-field select {
|
|
border-radius: 4px;
|
|
border: 1px solid #8d96a0;
|
|
min-width: 300px;
|
|
}
|
|
.attesa-mb-field input[type=checkbox] {
|
|
border-radius: 4px;
|
|
border: 1px solid #8d96a0;
|
|
}
|
|
.attesa-extra-single:first-child {
|
|
margin-top: 0;
|
|
}
|
|
.attesa-extra-single:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
.attesa-extra-title-section {
|
|
font-weight: 700;
|
|
display: block;
|
|
background: rgba(0,0,0,0.05);
|
|
padding: 10px;
|
|
margin: 10px 0;
|
|
}
|
|
.attesa-extra-block-first {
|
|
display: inline;
|
|
float: left;
|
|
width: 35%;
|
|
padding: 0 10px;
|
|
box-sizing: border-box;
|
|
}
|
|
body.rtl .attesa-extra-block-first {
|
|
float: right;
|
|
}
|
|
.attesa-extra-block-second {
|
|
display: inline;
|
|
float: left;
|
|
width: 65%;
|
|
padding: 0 10px;
|
|
box-sizing: border-box;
|
|
}
|
|
.attesa-mb-field.onoff .switch {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 45px;
|
|
height: 25px;
|
|
}
|
|
.attesa-mb-field.onoff .switch input {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
.attesa-mb-field.onoff .slider {
|
|
position: absolute;
|
|
border-radius: 34px;
|
|
cursor: pointer;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: rgba(0,0,0,0.1);
|
|
-webkit-transition: .4s;
|
|
transition: .4s;
|
|
}
|
|
.attesa-mb-field.onoff .slider:before {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
content: "";
|
|
height: 18px;
|
|
width: 18px;
|
|
left: 4px;
|
|
bottom: 4px;
|
|
background-color: white;
|
|
-webkit-transition: .4s;
|
|
transition: .4s;
|
|
}
|
|
.attesa-mb-field.onoff .switch input:checked + .slider {
|
|
background-color: #11a0d2;
|
|
}
|
|
|
|
.attesa-mb-field.onoff .switch input:focus + .slider {
|
|
box-shadow: 0 0 1px #11a0d2;
|
|
}
|
|
.attesa-mb-field.onoff .switch input:checked + .slider:before {
|
|
-webkit-transform: translateX(18px);
|
|
-ms-transform: translateX(18px);
|
|
transform: translateX(18px);
|
|
}
|
|
@media all and (max-width: 600px) {
|
|
.attesa-extra-settings {
|
|
padding: 10px;
|
|
}
|
|
.attesa-extra-block-first,
|
|
.attesa-extra-block-second {
|
|
width: 100%;
|
|
padding: 10px 0;
|
|
}
|
|
.attesa-extra-block-second {
|
|
padding: 0;
|
|
}
|
|
} |