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.

199 lines
2.8 KiB

10 years ago
@import "_mixins";
10 years ago
.page.settings {
10 years ago
.tab_content {
display: none;
10 years ago
&.active {
display: block;
}
10 years ago
}
10 years ago
fieldset {
border: 0;
margin-bottom: $padding;
10 years ago
h2 {
display: flex;
align-items: baseline;
padding: 0 $padding;
10 years ago
.hint {
margin-left: $padding/2;
font-size: 1rem;
10 years ago
a {
font-weight: 400;
color: $primary_color;
text-decoration: underline;
}
14 years ago
}
}
10 years ago
.ctrlHolder {
padding: $padding/3 $padding;
border-bottom: 1px solid $theme_off;
display: flex;
align-items: center;
&:last-child {
border-bottom: 0;
12 years ago
}
10 years ago
label {
display: inline-block;
10 years ago
min-width: 150px;
}
10 years ago
input, textarea, select {
min-width: 200px;
10 years ago
&[type=checkbox] {
width: auto;
min-width: 0;
}
10 years ago
}
10 years ago
.select_wrapper {
position: relative;
display: flex;
align-items: center;
10 years ago
select {
cursor: pointer;
}
10 years ago
&:before {
pointer-events: none;
position: absolute;
right: $padding/2;
height: 100%;
line-height: 0;
margin-top: -3px;
}
}
10 years ago
.formHint {
opacity: .8;
margin-left: $padding;
10 years ago
a {
font-weight: 400;
color: $primary_color;
text-decoration: underline;
}
12 years ago
}
10 years ago
&.test_button a {
margin: 0;
}
}
10 years ago
.disabled {
.ctrlHolder {
display: none;
}
}
}
10 years ago
fieldset.advanced,
fieldset .ctrlHolder.advanced {
display: none;
color: $primary_color;
}
10 years ago
&.show_advanced {
fieldset.advanced,
fieldset .ctrlHolder.advanced {
display: flex;
}
}
10 years ago
/** Options list **/
.enabler {
display: block;
}
10 years ago
.option_list {
margin-bottom: 20px;
display: flex;
flex-flow: row wrap;
10 years ago
.check {
margin-top: 5px;
}
10 years ago
.enabler {
padding: 0;
10 years ago
margin-left: 5px !important;
10 years ago
h2 .hint {
font-weight: normal;
}
10 years ago
&:not(.disabled) {
margin: 0 0 0 30px;
10 years ago
.ctrlHolder:first-child {
margin: 10px 0 -33px 0;
}
10 years ago
.icon {
display: none;
}
10 years ago
h2 {
font-size: 16px;
font-weight: bold;
border: none;
border-top: 1px solid rgba(255,255,255, 0.15);
box-shadow: 0 -1px 0 #333;
margin: 0;
padding: 10px 0 5px 25px;
}
10 years ago
&:first-child h2 {
border: none;
box-shadow: none;
}
}
10 years ago
&.disabled {
display: inline-block;
10 years ago
padding: 4px 0 5px;
margin: 0;
width: 100px;
vertical-align: top;
10 years ago
h2 {
cursor: pointer;
border: none;
box-shadow: none;
padding: 0 10px 0 0;
font-size: 16px;
position: relative;
left: 25px;
margin-right: 25px;
.hint {
display: none;
}
}
}
}
10 years ago
h3 {
padding: 0;
10 years ago
margin: 10px 5px 0;
text-align: center;
font-weight: normal;
text-shadow: none;
text-transform: uppercase;
font-size: 12px;
background: rgba(255,255,255,0.03);
width: 100%;
}
}
10 years ago
}