2013-11-16 06:21:12 +08:00
|
|
|
|
2020-07-15 20:25:51 +08:00
|
|
|
.UserBackground body {
|
2020-07-13 21:47:19 +08:00
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
2013-12-30 05:13:35 +08:00
|
|
|
}
|
|
|
|
|
2021-04-30 22:39:27 +08:00
|
|
|
#rl-left, #rl-right {
|
2021-02-05 22:31:42 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
border: 0;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
2016-05-01 09:07:10 +08:00
|
|
|
html.rl-mobile {
|
|
|
|
|
2021-01-27 07:26:31 +08:00
|
|
|
&:not(.rl-left-panel-disabled) #rl-right {
|
2016-05-01 09:07:10 +08:00
|
|
|
right: -150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.rl-left-panel-disabled #rl-right {
|
|
|
|
left: 5px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-16 06:21:12 +08:00
|
|
|
#rl-left {
|
2013-12-30 05:13:35 +08:00
|
|
|
width: @rlLeftWidth;
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
|
|
|
|
2020-07-17 19:46:49 +08:00
|
|
|
/*
|
|
|
|
.resizable::after {
|
2020-09-30 20:07:03 +08:00
|
|
|
background-color: #aaa;
|
|
|
|
bottom: 0;
|
|
|
|
content: '';
|
|
|
|
height: 22px;
|
|
|
|
pointer-events: none;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
text-align: center;
|
|
|
|
width: 20px;
|
2020-07-17 19:46:49 +08:00
|
|
|
}
|
|
|
|
.resizable::-webkit-resizer {
|
2020-09-30 20:07:03 +08:00
|
|
|
background: #aaa;
|
2020-07-17 19:46:49 +08:00
|
|
|
background: rgba(255,255,255,0.5);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
.resizable > .resizer {
|
|
|
|
background: #aaa;
|
|
|
|
background: rgba(255,255,255,0.5);
|
|
|
|
display: none;
|
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 102;
|
|
|
|
}
|
|
|
|
.resizable > .resizer:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2020-07-17 01:49:56 +08:00
|
|
|
html:not(.rl-left-panel-disabled) #rl-left.resizable {
|
|
|
|
resize: horizontal;
|
|
|
|
overflow: hidden;
|
|
|
|
min-width: 155px;
|
|
|
|
max-width: 350px;
|
|
|
|
}
|
2020-07-17 19:46:49 +08:00
|
|
|
#rl-left > .resizer {
|
|
|
|
cursor: ew-resize;
|
|
|
|
height: 100%;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 5px;
|
|
|
|
}
|
|
|
|
|
2021-03-22 20:46:03 +08:00
|
|
|
.g-ui-menu {
|
|
|
|
max-height: 60vh;
|
|
|
|
max-width: 90vw;
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
.e-link {
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--dropdown-menu-color, #333);
|
|
|
|
background-color: var(--dropdown-menu-bg-color, #fff);
|
|
|
|
}
|
|
|
|
|
|
|
|
.e-item.selected > .e-link {
|
|
|
|
background-color: var(--dropdown-menu-selected-bg-color, #eee);
|
|
|
|
}
|
|
|
|
|
|
|
|
.e-item:not(.disabled) > .e-link:focus,
|
|
|
|
.e-item:not(.disabled) > .e-link:hover {
|
|
|
|
background-color: var(--dropdown-menu-hover-bg-color, #444);
|
|
|
|
background-image: none;
|
|
|
|
color: var(--dropdown-menu-hover-color, #eee);
|
|
|
|
}
|
|
|
|
|
|
|
|
.e-item.disabled > .e-link {
|
|
|
|
cursor: not-allowed;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.g-ui-table {
|
|
|
|
|
|
|
|
display: table;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.e-row {
|
|
|
|
display: table-row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.e-cell {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: top;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-17 01:49:56 +08:00
|
|
|
.b-message-list-wrapper.resizable {
|
|
|
|
resize: vertical;
|
|
|
|
overflow: hidden;
|
|
|
|
min-height: 200px;
|
|
|
|
max-height: 500px;
|
|
|
|
}
|
2020-07-17 19:46:49 +08:00
|
|
|
.b-message-list-wrapper > .resizer {
|
|
|
|
cursor: ns-resize;
|
|
|
|
height: 5px;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
html:not(.rl-left-panel-disabled) #rl-left.resizable > .resizer,
|
|
|
|
.b-message-list-wrapper > .resizer {
|
|
|
|
display: block;
|
|
|
|
}
|
2020-07-17 01:49:56 +08:00
|
|
|
|
2013-11-16 06:21:12 +08:00
|
|
|
#rl-right {
|
|
|
|
z-index: 1;
|
2013-12-30 05:13:35 +08:00
|
|
|
left: @rlLeftWidth;
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
|
|
|
|
2013-12-30 05:13:35 +08:00
|
|
|
#rl-sub-left {
|
2013-11-16 06:21:12 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2021-03-05 23:46:40 +08:00
|
|
|
width: 50%;
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
|
|
|
|
2013-12-30 05:13:35 +08:00
|
|
|
#rl-sub-right {
|
2013-11-16 06:21:12 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
2021-03-05 23:46:40 +08:00
|
|
|
left: 50%;
|
2017-03-02 02:38:18 +08:00
|
|
|
|
|
|
|
.b-message-view-backdrop {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background: rgba(0, 0, 0, .4);
|
|
|
|
z-index: 10;
|
2021-02-16 21:40:11 +08:00
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
.backdrop-message {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
color: white;
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 30px;
|
|
|
|
background: rgba(0, 0, 0, .6);
|
|
|
|
padding: 15px;
|
|
|
|
border-radius: 5px;
|
|
|
|
text-shadow: 0 1px 1px #000;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
top: 50%;
|
2017-03-02 02:38:18 +08:00
|
|
|
}
|
|
|
|
}
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
|
|
|
|
2020-09-02 23:06:35 +08:00
|
|
|
/*
|
|
|
|
#rl-popups > dialog {
|
|
|
|
top: 0;
|
|
|
|
margin: 10px auto;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
#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);
|
|
|
|
}
|
|
|
|
|
2021-04-30 22:39:27 +08:00
|
|
|
#rl-settings-subscreen {
|
|
|
|
padding:20px;
|
2021-03-05 23:46:40 +08:00
|
|
|
}
|
|
|
|
|
2021-03-22 20:46:03 +08:00
|
|
|
.dropdown-menu * + .dividerbar {
|
|
|
|
margin-top: 9px;
|
|
|
|
padding-top: 9px;
|
|
|
|
border-top: 1px solid #e5e5e5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown.colored-toggle.open .btn.dropdown-toggle {
|
|
|
|
color: #BD362F;
|
|
|
|
|
|
|
|
.caret {
|
|
|
|
border-top-color: #BD362F;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-group > .btn.single {
|
2021-05-18 20:28:56 +08:00
|
|
|
border-radius: 3px !important;
|
2021-03-22 20:46:03 +08:00
|
|
|
}
|
|
|
|
|
2021-03-05 23:46:40 +08:00
|
|
|
/* desktop */
|
|
|
|
@media screen and (min-width: 1000px) {
|
|
|
|
}
|
|
|
|
|
2020-09-20 18:33:33 +08:00
|
|
|
/* desktop-large */
|
|
|
|
@media screen and (min-width: 1401px) {
|
2013-12-30 05:13:35 +08:00
|
|
|
#rl-left {
|
|
|
|
width: @rlLeftWidth + 20;
|
|
|
|
}
|
|
|
|
|
|
|
|
#rl-right {
|
|
|
|
left: @rlLeftWidth + 20;
|
|
|
|
}
|
|
|
|
|
|
|
|
#rl-sub-left {
|
2021-03-05 23:46:40 +08:00
|
|
|
width: 40%;
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
2013-12-30 05:13:35 +08:00
|
|
|
|
|
|
|
#rl-sub-right {
|
2021-03-05 23:46:40 +08:00
|
|
|
left: 40%;
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
2013-12-30 05:13:35 +08:00
|
|
|
}
|
|
|
|
|
2020-09-20 18:33:33 +08:00
|
|
|
/* mobile and tablet */
|
|
|
|
@media screen and (max-width: 999px) {
|
2014-04-28 23:53:16 +08:00
|
|
|
#rl-left {
|
|
|
|
width: 155px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#rl-right {
|
|
|
|
left: 155px;
|
|
|
|
}
|
|
|
|
|
2021-04-30 22:39:27 +08:00
|
|
|
#rl-settings-subscreen {
|
|
|
|
padding: 10px;
|
2014-04-28 23:53:16 +08:00
|
|
|
}
|
2021-03-22 20:46:03 +08:00
|
|
|
|
|
|
|
.dropdown-menu a {
|
|
|
|
line-height: 2.5;
|
|
|
|
}
|
2014-04-29 19:49:30 +08:00
|
|
|
}
|
|
|
|
|
2020-10-01 17:10:40 +08:00
|
|
|
html:not(.rl-ctrl-key-pressed) .visible-on-ctrl-btn,
|
|
|
|
html.rl-ctrl-key-pressed .hidden-on-ctrl-btn,
|
2014-05-08 06:20:17 +08:00
|
|
|
.show-on-panel-disabled {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-04-27 08:54:22 +08:00
|
|
|
html.rl-left-panel-disabled {
|
2014-05-13 16:29:36 +08:00
|
|
|
|
2013-12-30 05:13:35 +08:00
|
|
|
#rl-left {
|
2014-05-13 16:29:36 +08:00
|
|
|
width: 60px !important;
|
2014-05-08 06:20:17 +08:00
|
|
|
|
|
|
|
.show-on-panel-disabled {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2021-04-30 22:39:27 +08:00
|
|
|
.b-content {
|
2014-08-28 23:27:30 +08:00
|
|
|
opacity: 0.3;
|
2014-05-08 06:20:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.hide-on-panel-disabled {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-12-30 05:13:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#rl-right {
|
2014-05-13 16:29:36 +08:00
|
|
|
left: 60px !important;
|
2013-12-30 05:13:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-15 23:05:38 +08:00
|
|
|
html.rl-mobile,
|
2013-11-16 06:21:12 +08:00
|
|
|
html.rl-no-preview-pane {
|
|
|
|
|
2013-12-30 05:13:35 +08:00
|
|
|
#rl-sub-left {
|
2013-11-16 06:21:12 +08:00
|
|
|
right: @rlBottomMargin !important;
|
|
|
|
width: inherit;
|
|
|
|
}
|
|
|
|
|
2013-12-30 05:13:35 +08:00
|
|
|
#rl-sub-right {
|
2013-11-16 06:21:12 +08:00
|
|
|
left: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-22 22:16:33 +08:00
|
|
|
html.rl-mobile #rl-left > .resizer,
|
2021-02-15 23:05:38 +08:00
|
|
|
html.rl-side-preview-pane:not(.rl-mobile) #rl-right .resizer {
|
2015-01-09 07:31:31 +08:00
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2021-02-15 23:05:38 +08:00
|
|
|
html.rl-bottom-preview-pane:not(.rl-mobile) {
|
2015-01-05 03:30:07 +08:00
|
|
|
|
|
|
|
#rl-sub-left {
|
|
|
|
right: @rlBottomMargin !important;
|
|
|
|
width: inherit;
|
|
|
|
|
|
|
|
.b-message-list-wrapper {
|
|
|
|
bottom: inherit;
|
|
|
|
height: 300px;
|
|
|
|
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#rl-sub-right {
|
|
|
|
|
|
|
|
left: 0 !important;
|
|
|
|
|
|
|
|
.b-message-view-wrapper {
|
|
|
|
top: 356px;
|
|
|
|
left: 0;
|
|
|
|
right: 5px;
|
|
|
|
box-shadow: none;
|
2021-02-07 06:37:53 +08:00
|
|
|
background-color: var(--message-bg-color, #fff);
|
2015-01-05 03:30:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-15 22:20:22 +08:00
|
|
|
html.rl-mobile .hide-mobile,
|
|
|
|
html:not(.rl-mobile) .show-mobile {
|
2016-05-01 19:51:49 +08:00
|
|
|
display: none !important;
|
2016-05-01 09:07:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
html.rl-mobile .width100-on-mobile {
|
2016-05-01 19:51:49 +08:00
|
|
|
width: 100% !important;
|
2016-05-01 09:07:10 +08:00
|
|
|
}
|
2021-07-20 22:45:55 +08:00
|
|
|
|
|
|
|
.e-paginator {
|
|
|
|
|
|
|
|
.e-page {
|
|
|
|
opacity: 0.5;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 22px;
|
|
|
|
padding: 3px;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.current {
|
|
|
|
opacity: 1;
|
|
|
|
font-size: 25px;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|