2021-07-20 22:45:55 +08:00
|
|
|
.UserBackground body {
|
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#rl-left, #rl-right {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
border: 0;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
2014-05-22 09:08:47 +08:00
|
|
|
|
2021-04-30 22:39:27 +08:00
|
|
|
#rl-left {
|
|
|
|
overflow: auto;
|
|
|
|
padding-top: 50px + @rlLowMargin + 10px;
|
2021-07-20 22:45:55 +08:00
|
|
|
width: @rlLeftWidth;
|
2021-04-30 22:39:27 +08:00
|
|
|
|
|
|
|
nav {
|
|
|
|
a {
|
|
|
|
color: var(--settings-menu-color, #333);
|
|
|
|
cursor: pointer;
|
|
|
|
display: block;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 30px;
|
|
|
|
padding: 4px 10px;
|
|
|
|
text-decoration: none;
|
2014-05-22 09:08:47 +08:00
|
|
|
}
|
|
|
|
|
2021-04-30 22:39:27 +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-04-30 22:39:27 +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-07-20 22:45:55 +08:00
|
|
|
#rl-right {
|
|
|
|
z-index: 1;
|
|
|
|
left: @rlLeftWidth;
|
|
|
|
}
|
|
|
|
|
2014-05-22 09:08:47 +08:00
|
|
|
.b-admin-right {
|
|
|
|
|
|
|
|
.b-toolbar {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 34px;
|
2021-02-17 16:33:41 +08:00
|
|
|
padding: 8px @rlLowMargin 8px 0;
|
2014-05-22 09:08:47 +08:00
|
|
|
color: #fff;
|
2020-09-12 19:57:09 +08:00
|
|
|
text-shadow: 0 1px 1px #000;
|
2021-02-17 16:33:41 +08:00
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2014-05-22 09:08:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.b-content {
|
|
|
|
position: absolute;
|
|
|
|
top: 50px + @rlLowMargin;
|
|
|
|
bottom: @rlLowMargin;
|
|
|
|
left: 0;
|
|
|
|
right: @rlLowMargin;
|
|
|
|
overflow-y: auto;
|
|
|
|
z-index: 2;
|
|
|
|
|
|
|
|
background-color: #fff;
|
2021-05-18 20:28:56 +08:00
|
|
|
border: 1px solid @rlMainDarkColor;
|
2014-05-22 09:08:47 +08:00
|
|
|
|
2014-08-28 23:27:30 +08:00
|
|
|
box-shadow: @rlMainShadow;
|
|
|
|
border-radius: @rlMainBorderRadius;
|
2014-05-22 09:08:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2021-02-09 00:37:21 +08:00
|
|
|
|
|
|
|
.btn.btn-logout {
|
|
|
|
padding-left: 12px;
|
|
|
|
padding-right: 12px;
|
|
|
|
}
|
2021-07-20 22:45:55 +08:00
|
|
|
|
|
|
|
#rl-popups > .rl-view-model {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 1100;
|
|
|
|
overflow: auto;
|
|
|
|
background-color: rgba(0,0,0,0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
#rl-settings-subscreen {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* desktop */
|
|
|
|
@media screen and (min-width: 1000px) {
|
|
|
|
.toggleLeft {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* desktop-large */
|
|
|
|
@media screen and (min-width: 1401px) {
|
|
|
|
#rl-left {
|
|
|
|
width: @rlLeftWidth + 20;
|
|
|
|
}
|
|
|
|
|
|
|
|
#rl-right {
|
|
|
|
left: @rlLeftWidth + 20;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mobile and tablet */
|
|
|
|
@media screen and (max-width: 999px) {
|
|
|
|
#rl-settings-subscreen {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
html:not(.rl-left-panel-disabled) #rl-right {
|
|
|
|
right: 5-@rlLeftWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
html.rl-left-panel-disabled {
|
|
|
|
#rl-left {
|
|
|
|
width: 0 !important;
|
|
|
|
}
|
|
|
|
#rl-right {
|
|
|
|
left: 5px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|