65 lines
958 B
SCSS
65 lines
958 B
SCSS
.window-settings-social {
|
|
.form-group {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.control-label {
|
|
padding-left: 40px;
|
|
padding-right: 0;
|
|
width: 160px;
|
|
|
|
.fc {
|
|
font-size: 20px;
|
|
margin-right: 12px;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
[data-input-overwrite] {
|
|
display: flex;
|
|
|
|
|
|
.input-group-addon {
|
|
width: auto;
|
|
}
|
|
|
|
.input-group-btn {
|
|
display: flex;
|
|
width: auto;
|
|
|
|
input {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
background-color: #eee;
|
|
color: #555;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0 7px;
|
|
}
|
|
|
|
.icons_visible {
|
|
font-size: 18px;
|
|
}
|
|
|
|
&.active .icons_visible::before {
|
|
color: #40ba9b;
|
|
}
|
|
|
|
&.disabled {
|
|
.icons_visible::before {
|
|
content: $icons_hidden;
|
|
color: $danger;
|
|
}
|
|
|
|
.form-control {
|
|
background-color: #f1f2f6;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|