2014-05-22 09:08:47 +08:00
|
|
|
|
2021-11-08 04:19:48 +08:00
|
|
|
#V-SettingsMenu {
|
2014-05-22 09:08:47 +08:00
|
|
|
|
2014-10-19 01:24:00 +08:00
|
|
|
.b-footer {
|
|
|
|
position: absolute;
|
2021-04-30 22:39:27 +08:00
|
|
|
bottom: 10px;
|
2014-10-19 01:24:00 +08:00
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: 0 10px 0 5px;
|
|
|
|
z-index: 101;
|
|
|
|
}
|
|
|
|
|
2014-05-22 09:08:47 +08:00
|
|
|
.b-content {
|
|
|
|
position: absolute;
|
|
|
|
top: 50px + @rlLowMargin + 10px;
|
|
|
|
bottom: @rlLowMargin;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2021-05-01 16:02:40 +08:00
|
|
|
nav {
|
2014-05-22 09:08:47 +08:00
|
|
|
|
2021-05-01 16:02:40 +08:00
|
|
|
a {
|
|
|
|
background-color: transparent;
|
|
|
|
color: var(--settings-menu-color, #333);
|
|
|
|
cursor: pointer;
|
|
|
|
display: block;
|
|
|
|
font-size: 18px;
|
|
|
|
height: 30px;
|
|
|
|
line-height: 29px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 4px 10px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2014-05-22 09:08:47 +08:00
|
|
|
|
2021-05-01 16:02:40 +08:00
|
|
|
a:focus, a:hover {
|
|
|
|
background-color: var(--settings-menu-hover-bg-color, #333);
|
|
|
|
color: var(--settings-menu-hover-color, #eee);
|
|
|
|
}
|
2014-05-22 09:08:47 +08:00
|
|
|
|
2021-05-01 16:02:40 +08:00
|
|
|
a.selected {
|
|
|
|
background-color: var(--settings-menu-selected-bg-color, #333);
|
|
|
|
color: var(--settings-menu-selected-color, #eee);
|
|
|
|
}
|
2014-05-22 09:08:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-08 04:19:48 +08:00
|
|
|
#V-SettingsPane {
|
|
|
|
height: 100%;
|
2014-05-22 09:08:47 +08:00
|
|
|
|
2021-11-08 04:19:48 +08:00
|
|
|
.btn-toolbar {
|
2014-05-22 09:08:47 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 34px;
|
2021-05-01 16:02:40 +08:00
|
|
|
padding: 8px 0;
|
2014-05-22 09:08:47 +08:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2021-02-08 04:10:05 +08:00
|
|
|
td {
|
|
|
|
padding: 4px 8px;
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-08 04:19:48 +08:00
|
|
|
#rl-settings-subscreen {
|
|
|
|
margin: 50px @rlLowMargin @rlLowMargin 0;
|
|
|
|
overflow-y: auto;
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
padding:20px;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: calc(100% - 50px - @rlLowMargin - @rlLowMargin);
|
|
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
border: 1px solid @rlMainDarkColor;
|
|
|
|
box-shadow: @rlMainShadow;
|
|
|
|
border-radius: @rlMainBorderRadius;
|
|
|
|
}
|
|
|
|
|
|
|
|
.firefox-drag #rl-settings-subscreen,
|
2021-03-05 18:35:00 +08:00
|
|
|
.firefox-drag .modal-body {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|