|
|
@@ -20,6 +20,7 @@
|
|
|
html {
|
|
|
scroll-behavior: smooth;
|
|
|
scrollbar-gutter: stable;
|
|
|
+ background: var(--bg);
|
|
|
}
|
|
|
|
|
|
body {
|
|
|
@@ -1342,6 +1343,8 @@ textarea {
|
|
|
|
|
|
.book-card {
|
|
|
overflow: hidden;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
}
|
|
|
|
|
|
.book-cover {
|
|
|
@@ -1377,10 +1380,14 @@ textarea {
|
|
|
}
|
|
|
|
|
|
.book-body {
|
|
|
+ flex: 1;
|
|
|
padding: 18px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
}
|
|
|
|
|
|
.book-body p {
|
|
|
+ flex: 1;
|
|
|
color: var(--muted);
|
|
|
line-height: 1.7;
|
|
|
}
|
|
|
@@ -1462,12 +1469,18 @@ textarea {
|
|
|
radial-gradient(circle at top left, rgba(255, 240, 220, 0.3), transparent 28%),
|
|
|
linear-gradient(180deg, #dcd6ce 0%, #d4cec5 100%);
|
|
|
overflow: auto;
|
|
|
+ scrollbar-width: none;
|
|
|
+ -ms-overflow-style: none;
|
|
|
display: flex;
|
|
|
align-items: stretch;
|
|
|
justify-content: center;
|
|
|
position: relative;
|
|
|
}
|
|
|
|
|
|
+.reader-stage::-webkit-scrollbar {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
.reader-desktop-layout {
|
|
|
width: fit-content;
|
|
|
max-width: 100%;
|
|
|
@@ -1479,6 +1492,7 @@ textarea {
|
|
|
}
|
|
|
|
|
|
.reader-qq-shell {
|
|
|
+ grid-column: 2;
|
|
|
width: var(--reader-shell-width, min(980px, calc(100vw - 280px)));
|
|
|
min-height: 100vh;
|
|
|
overflow: visible;
|
|
|
@@ -1491,7 +1505,7 @@ textarea {
|
|
|
}
|
|
|
|
|
|
.reader-qq-paper {
|
|
|
- min-height: 100%;
|
|
|
+ min-height: 100vh;
|
|
|
background: #f7f0e4;
|
|
|
box-shadow: 0 22px 60px rgba(54, 33, 21, 0.08);
|
|
|
display: flex;
|
|
|
@@ -1539,16 +1553,22 @@ textarea {
|
|
|
}
|
|
|
|
|
|
.reader-float {
|
|
|
- position: sticky;
|
|
|
+ position: fixed;
|
|
|
top: 160px;
|
|
|
z-index: 15;
|
|
|
display: grid;
|
|
|
gap: 10px;
|
|
|
+ width: 78px;
|
|
|
+}
|
|
|
+
|
|
|
+.reader-float--left {
|
|
|
+ grid-column: 1;
|
|
|
+ left: max(8px, calc(50vw - var(--reader-shell-width, min(980px, calc(100vw - 280px))) / 2 - 96px));
|
|
|
}
|
|
|
|
|
|
-.reader-float--left,
|
|
|
.reader-float--right {
|
|
|
- width: 78px;
|
|
|
+ grid-column: 3;
|
|
|
+ right: max(20px, calc(50vw - var(--reader-shell-width, min(980px, calc(100vw - 280px))) / 2 - 96px));
|
|
|
}
|
|
|
|
|
|
.reader-progress-rail {
|
|
|
@@ -1608,7 +1628,7 @@ textarea {
|
|
|
}
|
|
|
|
|
|
.reader-catalog-inline {
|
|
|
- min-height: 100%;
|
|
|
+ min-height: 100vh;
|
|
|
background: #e1d6c8;
|
|
|
padding: 28px 40px 36px;
|
|
|
box-shadow: 0 22px 60px rgba(54, 33, 21, 0.08);
|
|
|
@@ -1659,7 +1679,7 @@ textarea {
|
|
|
}
|
|
|
|
|
|
.reader-catalog__section-title strong {
|
|
|
- font-size: 1.02rem;
|
|
|
+ font-size: 1.25rem;
|
|
|
font-weight: 700;
|
|
|
}
|
|
|
|
|
|
@@ -1799,7 +1819,7 @@ textarea {
|
|
|
.chat-wechat-page {
|
|
|
min-height: calc(100vh - 74px);
|
|
|
height: calc(100vh - 74px);
|
|
|
- padding: 0 0 24px;
|
|
|
+ padding: 24px 0;
|
|
|
overflow: hidden;
|
|
|
overscroll-behavior: none;
|
|
|
display: grid;
|
|
|
@@ -1813,10 +1833,9 @@ textarea {
|
|
|
|
|
|
.chat-wechat-shell {
|
|
|
width: 100%;
|
|
|
- margin-top: 44px;
|
|
|
+ margin-top: 0;
|
|
|
min-height: 0;
|
|
|
- min-height: calc(100vh - 210px);
|
|
|
- height: calc(100vh - 210px);
|
|
|
+ height: calc(100vh - 74px - 48px);
|
|
|
border-radius: 30px;
|
|
|
overflow: hidden;
|
|
|
border: 1px solid rgba(255, 255, 255, 0.72);
|
|
|
@@ -2466,8 +2485,7 @@ textarea {
|
|
|
display: grid;
|
|
|
gap: 0;
|
|
|
padding: 10px 14px;
|
|
|
- background: var(--reader-page);
|
|
|
- backdrop-filter: blur(14px);
|
|
|
+ background: var(--reader-page, #f7f0e4);
|
|
|
}
|
|
|
|
|
|
.reader-mobile-bar--top {
|
|
|
@@ -2572,10 +2590,10 @@ textarea {
|
|
|
position: fixed;
|
|
|
left: 0;
|
|
|
right: 0;
|
|
|
- bottom: calc(76px + env(safe-area-inset-bottom));
|
|
|
+ bottom: 0;
|
|
|
display: block;
|
|
|
- max-height: min(calc(74dvh - env(safe-area-inset-bottom)), 620px);
|
|
|
- padding: 18px 18px 18px;
|
|
|
+ max-height: min(74dvh, 620px);
|
|
|
+ padding: 0 0 calc(76px + env(safe-area-inset-bottom));
|
|
|
border-radius: 26px 26px 0 0;
|
|
|
box-shadow: 0 -20px 40px rgba(28, 21, 16, 0.2);
|
|
|
transform: translateY(102%);
|
|
|
@@ -2593,8 +2611,13 @@ textarea {
|
|
|
.reader-catalog-mobile-sheet .reader-catalog__header {
|
|
|
position: sticky;
|
|
|
top: 0;
|
|
|
- z-index: 1;
|
|
|
+ z-index: 10;
|
|
|
background: inherit;
|
|
|
+ padding: 18px 18px 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .reader-catalog-mobile-sheet .reader-catalog-groups {
|
|
|
+ padding: 0 18px;
|
|
|
}
|
|
|
|
|
|
.reader-catalog-mobile-sheet .reader-catalog__grid {
|
|
|
@@ -2963,11 +2986,26 @@ textarea {
|
|
|
}
|
|
|
|
|
|
.agents-monitor-summary {
|
|
|
- grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
+ grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
|
+ gap: 6px;
|
|
|
}
|
|
|
|
|
|
.agents-monitor-summary__item:first-child {
|
|
|
- grid-column: span 2;
|
|
|
+ grid-column: unset;
|
|
|
+ }
|
|
|
+
|
|
|
+ .agents-monitor-summary__item {
|
|
|
+ min-height: 48px;
|
|
|
+ min-width: 0;
|
|
|
+ padding: 6px 8px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .agents-monitor-summary__item strong {
|
|
|
+ font-size: 1rem;
|
|
|
+ }
|
|
|
+
|
|
|
+ .agents-monitor-summary__item span {
|
|
|
+ font-size: 0.72rem;
|
|
|
}
|
|
|
|
|
|
.agents-worklist {
|
|
|
@@ -3171,9 +3209,17 @@ textarea {
|
|
|
}
|
|
|
|
|
|
.reader-catalog-mobile-sheet {
|
|
|
- bottom: calc(74px + env(safe-area-inset-bottom));
|
|
|
- max-height: calc(76dvh - env(safe-area-inset-bottom));
|
|
|
- padding: 16px 16px 16px;
|
|
|
+ bottom: 0;
|
|
|
+ max-height: 76dvh;
|
|
|
+ padding: 0 0 calc(74px + env(safe-area-inset-bottom));
|
|
|
+ }
|
|
|
+
|
|
|
+ .reader-catalog-mobile-sheet .reader-catalog__header {
|
|
|
+ padding: 16px 16px 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .reader-catalog-mobile-sheet .reader-catalog-groups {
|
|
|
+ padding: 0 16px;
|
|
|
}
|
|
|
}
|
|
|
|