many updates
This commit is contained in:
@@ -74,6 +74,12 @@
|
||||
transform: translateX(2px);
|
||||
}
|
||||
|
||||
#main-menu li:focus-visible {
|
||||
border-color: rgba(103, 232, 255, 0.62);
|
||||
transform: translateX(2px);
|
||||
box-shadow: 0 0 0 3px rgba(53, 210, 255, 0.23);
|
||||
}
|
||||
|
||||
#main-menu li.menu-active {
|
||||
border-color: rgba(103, 232, 255, 0.55);
|
||||
background: linear-gradient(135deg, #6fe6ff 0%, #1cc5ff 100%);
|
||||
@@ -321,6 +327,7 @@ nav p {
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#content-interaction .search {
|
||||
@@ -328,6 +335,10 @@ nav p {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.mobile-only-control {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#box-wrapper {
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
@@ -368,6 +379,19 @@ nav p {
|
||||
background-color: rgba(28, 53, 79, 0.5);
|
||||
}
|
||||
|
||||
#content_table tr[tabindex],
|
||||
#content_table td[tabindex] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#content_table tr[tabindex]:focus-visible,
|
||||
#content_table td[tabindex]:focus-visible,
|
||||
.keyboard-clickable:focus-visible {
|
||||
outline: 2px solid #7de5ff;
|
||||
outline-offset: -2px;
|
||||
background-color: rgba(39, 73, 106, 0.56);
|
||||
}
|
||||
|
||||
#content_table td {
|
||||
padding: 7px 8px;
|
||||
vertical-align: middle;
|
||||
@@ -562,6 +586,7 @@ nav p {
|
||||
@media only screen and (max-width: 900px) {
|
||||
#layout {
|
||||
grid-template-columns: 1fr;
|
||||
padding-top: max(10px, env(safe-area-inset-top));
|
||||
}
|
||||
|
||||
#layout-overlay {
|
||||
@@ -582,28 +607,49 @@ nav p {
|
||||
|
||||
.layout-left {
|
||||
position: fixed;
|
||||
left: 12px;
|
||||
top: 12px;
|
||||
bottom: 12px;
|
||||
width: min(300px, calc(100vw - 42px));
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: min(320px, calc(100vw - 34px));
|
||||
max-width: none;
|
||||
z-index: 1100;
|
||||
transform: translateX(-116%);
|
||||
transition: transform 0.25s ease;
|
||||
border-radius: 0 16px 16px 0;
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
body.menu-open .layout-left {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
#main-menu li {
|
||||
min-height: 48px;
|
||||
padding: 10px 12px;
|
||||
}
|
||||
|
||||
#main-menu li p {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.layout-right {
|
||||
min-height: calc(100vh - 24px);
|
||||
}
|
||||
|
||||
#shell-header {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 8;
|
||||
backdrop-filter: blur(8px);
|
||||
}
|
||||
|
||||
#menu-toggle {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 42px;
|
||||
min-width: 92px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
#clientInfo,
|
||||
@@ -614,6 +660,24 @@ nav p {
|
||||
|
||||
#content {
|
||||
padding: 10px;
|
||||
padding-bottom: calc(14px + env(safe-area-inset-bottom));
|
||||
}
|
||||
|
||||
#content-interaction {
|
||||
position: sticky;
|
||||
top: 10px;
|
||||
z-index: 6;
|
||||
margin-bottom: 10px;
|
||||
padding: 8px;
|
||||
border: 1px solid var(--line-soft);
|
||||
border-radius: 12px;
|
||||
background: rgba(9, 22, 36, 0.92);
|
||||
backdrop-filter: blur(6px);
|
||||
}
|
||||
|
||||
#content-interaction input[type=button],
|
||||
#content-interaction select {
|
||||
min-height: 42px;
|
||||
}
|
||||
|
||||
#allStreams {
|
||||
@@ -630,6 +694,118 @@ nav p {
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 760px) {
|
||||
#shell-header {
|
||||
padding: 10px 10px;
|
||||
}
|
||||
|
||||
#clientInfo {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(86px, 34%) 1fr;
|
||||
gap: 7px 8px;
|
||||
border-spacing: 0;
|
||||
white-space: normal;
|
||||
background: rgba(8, 20, 33, 0.44);
|
||||
}
|
||||
|
||||
#clientInfo tr {
|
||||
display: contents;
|
||||
}
|
||||
|
||||
#clientInfo .tdKey {
|
||||
text-align: right;
|
||||
font-size: 9px;
|
||||
letter-spacing: 0.08em;
|
||||
}
|
||||
|
||||
#clientInfo .tdVal {
|
||||
font-size: 11px;
|
||||
min-height: 34px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.dashboard-cards {
|
||||
grid-template-columns: repeat(2, minmax(120px, 1fr));
|
||||
}
|
||||
|
||||
#content_table {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#content_table .content_table_header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#content_table tbody,
|
||||
#content_table tr,
|
||||
#content_table td {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#content_table tr {
|
||||
border: 1px solid var(--line-soft);
|
||||
border-left-width: 3px;
|
||||
border-radius: 12px;
|
||||
margin-bottom: 10px;
|
||||
padding: 6px;
|
||||
background: rgba(11, 24, 39, 0.86);
|
||||
}
|
||||
|
||||
#content_table td {
|
||||
border: 0;
|
||||
border-radius: 10px;
|
||||
margin: 4px 0;
|
||||
padding: 7px 8px;
|
||||
display: grid;
|
||||
grid-template-columns: minmax(92px, 36%) 1fr;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
background: rgba(17, 34, 53, 0.5);
|
||||
}
|
||||
|
||||
#content_table td::before {
|
||||
content: attr(data-label);
|
||||
color: #8bb9d7;
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.06em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#content_table td[data-cell-type="checkbox"],
|
||||
#content_table td[data-cell-type="image"] {
|
||||
grid-template-columns: 1fr;
|
||||
justify-items: start;
|
||||
}
|
||||
|
||||
#content_table td[data-cell-type="checkbox"]::before,
|
||||
#content_table td[data-cell-type="image"]::before {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
#content_table td[data-cell-type="image"] img {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
#content_table input[type=text] {
|
||||
min-width: 0;
|
||||
max-width: none;
|
||||
width: 100%;
|
||||
min-height: 40px;
|
||||
}
|
||||
|
||||
#content_table input[type=checkbox] {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
.mobile-only-control {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 620px) {
|
||||
#layout {
|
||||
padding: 8px;
|
||||
@@ -655,19 +831,10 @@ nav p {
|
||||
}
|
||||
|
||||
#clientInfo {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#clientInfo table,
|
||||
#clientInfo tbody,
|
||||
#clientInfo tr {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.dashboard-cards {
|
||||
grid-template-columns: repeat(2, minmax(120px, 1fr));
|
||||
grid-template-columns: minmax(78px, 32%) 1fr;
|
||||
gap: 6px;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
#content-interaction {
|
||||
@@ -683,6 +850,7 @@ nav p {
|
||||
#content-interaction input[type=button] {
|
||||
width: 100%;
|
||||
margin-right: 0;
|
||||
min-height: 44px;
|
||||
}
|
||||
|
||||
#box {
|
||||
|
||||
Reference in New Issue
Block a user