mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 17:13:38 +08:00
1ac96c93d6
Removed unused CSS
136 lines
1.9 KiB
Text
136 lines
1.9 KiB
Text
|
|
label.inline, span.inline {
|
|
display: inline-block;
|
|
}
|
|
|
|
.legend {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 0;
|
|
margin-bottom: @baseLineHeight;
|
|
font-size: @baseFontSize * 1.5;
|
|
line-height: @baseLineHeight * 2;
|
|
color: @grayDark;
|
|
border: 0;
|
|
border-bottom: 1px solid #e5e5e5;
|
|
|
|
small {
|
|
font-size: @baseLineHeight * .75;
|
|
color: @grayLight;
|
|
}
|
|
}
|
|
|
|
.legend + .control-group {
|
|
margin-top: @baseLineHeight;
|
|
-webkit-margin-top-collapse: separate;
|
|
}
|
|
|
|
.btn-small.btn-small-small {
|
|
font-size: 11px;
|
|
line-height: 11px;
|
|
}
|
|
|
|
.btn.btn-thin {
|
|
padding: 4px 9px;
|
|
}
|
|
|
|
.btn.btn-thin-2 {
|
|
padding: 4px 7px;
|
|
}
|
|
|
|
.btn.btn-transparent {
|
|
background: none !important;
|
|
border-color: transparent !important;
|
|
text-shadow: none !important;
|
|
box-shadow: none !important;
|
|
opacity: .6;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.btn-group.open .btn.btn-transparent.dropdown-toggle {
|
|
color: #BD362F;
|
|
.caret {
|
|
border-top-color: #BD362F;
|
|
}
|
|
}
|
|
|
|
.dropdown-menu * + .dividerbar {
|
|
margin-top: 9px;
|
|
padding-top: 9px;
|
|
border-top: 1px solid #e5e5e5;
|
|
}
|
|
|
|
.btn-group > .btn.single {
|
|
border-radius: @btnBorderRadius !important;
|
|
}
|
|
|
|
.dropdown.colored-toggle.open .btn.dropdown-toggle {
|
|
color: #BD362F;
|
|
|
|
.caret {
|
|
border-top-color: #BD362F;
|
|
}
|
|
}
|
|
|
|
.alert a {
|
|
text-decoration: underline;
|
|
color: #c09853;
|
|
}
|
|
|
|
.alert.alert-info a {
|
|
color: #3a87ad;
|
|
}
|
|
|
|
.alert.alert-error a {
|
|
color: #b94a48;
|
|
}
|
|
|
|
.form-horizontal.long-label .control-group {
|
|
.control-label {
|
|
width: 160px;
|
|
}
|
|
}
|
|
|
|
/* mobile and tablet */
|
|
@media screen and (max-width: 999px) {
|
|
|
|
#rl-popups .modal {
|
|
width: calc(~'100% - 20px') !important;
|
|
}
|
|
|
|
.form-horizontal {
|
|
.control-group {
|
|
.control-label {
|
|
text-align: left;
|
|
}
|
|
.controls {
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.close-input-wrp {
|
|
display: inline-block;
|
|
position: relative;
|
|
|
|
input {
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.close {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 5px;
|
|
margin: 0 7px;
|
|
z-index: 100;
|
|
vertical-align: middle;
|
|
opacity: .4;
|
|
&:hover {
|
|
opacity: .6;
|
|
}
|
|
}
|
|
}
|