feat: complete heaven readings and screener publication
This commit is contained in:
+173
@@ -313,6 +313,10 @@
|
||||
|
||||
@media (max-width: 720px) {
|
||||
#screenerView.mobile-results [data-screener-panel]:not([hidden]) {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
#screenerView.mobile-results [data-screener-panel]:not([hidden]) > :not([data-screener-results-slot]) {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
@@ -6431,3 +6435,172 @@ body[data-active-view="screenerView"] .overview-strip {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
}
|
||||
|
||||
#screenerView .screener-result-tools {
|
||||
min-width: 0;
|
||||
|
||||
display: flex;
|
||||
|
||||
align-items: center;
|
||||
|
||||
justify-content: flex-end;
|
||||
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
#screenerView .screener-archive-tabs {
|
||||
min-height: 30px;
|
||||
|
||||
height: 30px;
|
||||
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
#screenerView .screener-archive-tabs .segment {
|
||||
min-height: 26px;
|
||||
|
||||
padding: 0 9px;
|
||||
}
|
||||
|
||||
#screenerView .screener-batch-notice {
|
||||
min-height: 38px;
|
||||
|
||||
display: flex;
|
||||
|
||||
align-items: center;
|
||||
|
||||
gap: 12px;
|
||||
|
||||
padding: 8px 14px;
|
||||
|
||||
border-top: 1px solid var(--r2-line-soft);
|
||||
|
||||
background: var(--r2-card);
|
||||
|
||||
color: var(--r2-faint);
|
||||
|
||||
font-size: 11.5px;
|
||||
}
|
||||
|
||||
#screenerView .screener-batch-notice strong {
|
||||
flex: 0 0 auto;
|
||||
|
||||
color: var(--r2-ink);
|
||||
|
||||
font-size: 11.5px;
|
||||
}
|
||||
|
||||
#screenerView .screener-batch-notice.warning {
|
||||
background: var(--warning-soft);
|
||||
|
||||
color: var(--warning-color);
|
||||
}
|
||||
|
||||
#screenerView .screener-archive-table {
|
||||
min-width: 840px;
|
||||
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
#screenerView .screener-archive-table th:nth-child(1) {
|
||||
width: 112px;
|
||||
}
|
||||
|
||||
#screenerView .screener-archive-table th:nth-child(2) {
|
||||
width: 132px;
|
||||
}
|
||||
|
||||
#screenerView .screener-archive-table th:nth-child(3) {
|
||||
width: 110px;
|
||||
}
|
||||
|
||||
#screenerView .screener-archive-table th:nth-child(4) {
|
||||
width: 92px;
|
||||
}
|
||||
|
||||
#screenerView .screener-archive-table th:nth-child(6) {
|
||||
width: 94px;
|
||||
}
|
||||
|
||||
#screenerView .screener-archive-table th:nth-child(7) {
|
||||
width: 190px;
|
||||
}
|
||||
|
||||
#screenerView .screener-archive-table :is(th, td):nth-child(-n+3),
|
||||
#screenerView .screener-archive-table :is(th, td):last-child {
|
||||
position: static;
|
||||
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#screenerView .screener-archive-strategies {
|
||||
overflow: hidden;
|
||||
|
||||
color: var(--r2-sub);
|
||||
|
||||
text-overflow: ellipsis;
|
||||
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#screenerView .screener-signal-status {
|
||||
display: inline-flex;
|
||||
|
||||
align-items: center;
|
||||
|
||||
min-height: 22px;
|
||||
|
||||
padding: 0 7px;
|
||||
|
||||
border-radius: 5px;
|
||||
|
||||
background: var(--surface-muted);
|
||||
|
||||
color: var(--text-secondary);
|
||||
|
||||
font-size: 10.5px;
|
||||
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
#screenerView .screener-signal-status.active {
|
||||
background: var(--market-up-soft);
|
||||
|
||||
color: var(--market-up);
|
||||
}
|
||||
|
||||
:root[data-theme="dark"] #screenerView :is(.screener-batch-notice, .screener-archive-tabs) {
|
||||
border-color: var(--border);
|
||||
|
||||
background: var(--surface);
|
||||
}
|
||||
|
||||
:root[data-theme="dark"] #screenerView .screener-batch-notice.warning {
|
||||
background: var(--warning-soft);
|
||||
|
||||
color: var(--warning-color);
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
#screenerView .result-toolbar {
|
||||
align-items: flex-start;
|
||||
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#screenerView .screener-result-tools {
|
||||
width: 100%;
|
||||
|
||||
align-items: flex-start;
|
||||
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#screenerView .screener-batch-notice {
|
||||
align-items: flex-start;
|
||||
|
||||
flex-direction: column;
|
||||
|
||||
gap: 3px;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user