mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-04 05:52:44 +08:00
1ac96c93d6
Removed unused CSS
125 lines
2 KiB
Text
125 lines
2 KiB
Text
|
|
.b-settins-left {
|
|
|
|
.b-toolbar {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
height: 34px;
|
|
padding: 8px 0 0 @rlLowMargin;
|
|
}
|
|
|
|
.b-footer {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
right: 0;
|
|
left: 0;
|
|
height: 20px;
|
|
padding: 0 10px 0 5px;
|
|
z-index: 101;
|
|
}
|
|
|
|
.b-content {
|
|
position: absolute;
|
|
top: 50px + @rlLowMargin + 10px;
|
|
bottom: @rlLowMargin;
|
|
left: 0;
|
|
right: 0;
|
|
overflow: hidden;
|
|
|
|
.content {
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
}
|
|
}
|
|
|
|
.b-settings-menu {
|
|
|
|
.e-item {
|
|
overflow: hidden;
|
|
text-decoration: none;
|
|
outline: 0;
|
|
}
|
|
|
|
.e-link {
|
|
position: relative;
|
|
display: block;
|
|
height: 30px;
|
|
line-height: 29px;
|
|
font-size: 18px;
|
|
z-index: 1;
|
|
cursor: default;
|
|
|
|
background-color: transparent;
|
|
color: var(--settings-menu-disabled-color, #666);
|
|
|
|
padding: 4px 10px;
|
|
|
|
outline: 0;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.e-item.selectable .e-link {
|
|
cursor: pointer;
|
|
color: var(--settings-menu-color, #333);
|
|
}
|
|
|
|
.e-item.selectable {
|
|
&:hover .e-link{
|
|
background-color: var(--settings-menu-hover-bg-color, #333);
|
|
color: var(--settings-menu-hover-color, #eee);
|
|
}
|
|
&.selected .e-link {
|
|
background-color: var(--settings-menu-selected-bg-color, #333);
|
|
color: var(--settings-menu-selected-color, #eee);
|
|
}
|
|
}
|
|
}
|
|
|
|
.b-settins-right {
|
|
|
|
.b-toolbar {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
height: 34px;
|
|
padding: 8px 5px;
|
|
color: #fff;
|
|
}
|
|
|
|
.b-content {
|
|
position: absolute;
|
|
top: 50px;
|
|
bottom: @rlLowMargin;
|
|
left: 0;
|
|
right: @rlLowMargin;
|
|
overflow-y: auto;
|
|
z-index: 2;
|
|
scroll-behavior: smooth;
|
|
|
|
background-color: #fff;
|
|
border: @rlMainBorderSize solid @rlMainDarkColor;
|
|
box-shadow: @rlMainShadow;
|
|
border-radius: @rlMainBorderRadius;
|
|
|
|
.content {
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
}
|
|
|
|
td {
|
|
padding: 4px 8px;
|
|
line-height: 30px;
|
|
}
|
|
}
|
|
|
|
html.rl-mobile .rl-settings-view-model {
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.firefox-drag .b-settins-right .b-content,
|
|
.firefox-drag .modal-body {
|
|
overflow: hidden;
|
|
}
|