2026-03-07 15:05:49 -05:00
|
|
|
html:has(body.page-dashboard) {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-06 18:14:01 -05:00
|
|
|
body.page-dashboard {
|
|
|
|
|
overflow: hidden;
|
2026-03-06 16:39:05 -05:00
|
|
|
|
2026-03-06 18:14:01 -05:00
|
|
|
.container {
|
|
|
|
|
overflow: hidden;
|
2026-03-07 15:05:49 -05:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-height: 0;
|
2026-03-06 18:14:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row {
|
|
|
|
|
flex-shrink: 0;
|
2026-03-06 16:39:05 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-06 18:14:01 -05:00
|
|
|
#id_dash_content {
|
|
|
|
|
flex: 1;
|
2026-03-07 15:05:49 -05:00
|
|
|
min-width: 425px;
|
2026-03-06 18:14:01 -05:00
|
|
|
overflow: hidden;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-06 16:39:05 -05:00
|
|
|
#id_dash_gear {
|
2026-03-06 18:14:01 -05:00
|
|
|
position: absolute;
|
2026-03-07 15:05:49 -05:00
|
|
|
bottom: 0.5rem;
|
2026-03-06 18:14:01 -05:00
|
|
|
right: 0.5rem;
|
2026-03-07 15:05:49 -05:00
|
|
|
padding-bottom: 0.2rem;
|
2026-03-06 18:14:01 -05:00
|
|
|
z-index: 1;
|
2026-03-06 16:39:05 -05:00
|
|
|
background: none;
|
|
|
|
|
border: none;
|
2026-03-07 15:05:49 -05:00
|
|
|
font-size: 2rem;
|
2026-03-06 16:39:05 -05:00
|
|
|
cursor: pointer;
|
2026-03-07 15:05:49 -05:00
|
|
|
color: rgba(var(--secUser), 1);
|
2026-03-06 19:14:53 -05:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-03-07 15:05:49 -05:00
|
|
|
width: 3rem;
|
|
|
|
|
height: 3rem;
|
2026-03-06 19:14:53 -05:00
|
|
|
border-radius: 50%;
|
2026-03-07 15:05:49 -05:00
|
|
|
background-color: rgba(var(--priUser), 1);
|
|
|
|
|
border: 0.15rem solid rgba(var(--secUser), 1);
|
2026-03-06 18:14:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#id_applet_menu {
|
|
|
|
|
position: absolute;
|
2026-03-07 15:05:49 -05:00
|
|
|
bottom: 3rem;
|
2026-03-06 18:14:01 -05:00
|
|
|
right: 0.5rem;
|
|
|
|
|
z-index: 100;
|
|
|
|
|
background-color: rgba(var(--priUser), 0.95);
|
|
|
|
|
border: 0.15rem solid rgba(var(--secUser), 0.5);
|
|
|
|
|
border-radius: 0.75rem;
|
|
|
|
|
padding: 1rem;
|
2026-03-07 15:05:49 -05:00
|
|
|
|
|
|
|
|
.menu-btns {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.25rem;
|
|
|
|
|
margin-top: 0.75rem;
|
|
|
|
|
}
|
2026-03-06 18:14:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#id_applets_container {
|
|
|
|
|
container-type: inline-size;
|
|
|
|
|
--grid-gap: 0.5rem;
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow-y: auto;
|
2026-03-07 15:05:49 -05:00
|
|
|
overflow-x: hidden;
|
2026-03-06 18:14:01 -05:00
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(12, 1fr);
|
2026-03-06 22:31:10 -05:00
|
|
|
grid-auto-rows: 3rem;
|
2026-03-06 18:14:01 -05:00
|
|
|
gap: var(--grid-gap);
|
|
|
|
|
padding: 0.75rem;
|
2026-03-07 15:05:49 -05:00
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
|
mask-image: linear-gradient(
|
|
|
|
|
to bottom,
|
|
|
|
|
transparent 0%,
|
|
|
|
|
black 2%,
|
|
|
|
|
black 98%,
|
|
|
|
|
transparent 100%
|
|
|
|
|
);
|
2026-03-06 18:14:01 -05:00
|
|
|
|
|
|
|
|
section {
|
|
|
|
|
border: 0.2rem solid rgba(var(--secUser), 0.5);
|
|
|
|
|
border-radius: 0.75rem;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
overflow: hidden;
|
2026-03-07 15:05:49 -05:00
|
|
|
min-width: 0;
|
2026-03-06 18:14:01 -05:00
|
|
|
grid-column: span var(--applet-cols, 12);
|
|
|
|
|
grid-row: span var(--applet-rows, 3);
|
|
|
|
|
}
|
2026-03-06 22:31:10 -05:00
|
|
|
|
2026-03-07 15:05:49 -05:00
|
|
|
#id_applet_my_lists {
|
|
|
|
|
padding: 1.25rem 1.5rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
.my-lists-main {
|
|
|
|
|
font-size: 1.6rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my-lists-container {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
&::-webkit-scrollbar { display: none; }
|
|
|
|
|
mask-origin: padding-box;
|
|
|
|
|
mask-clip: padding-box;
|
|
|
|
|
mask-image: linear-gradient(
|
|
|
|
|
to bottom,
|
|
|
|
|
transparent 0%,
|
|
|
|
|
black 5%,
|
|
|
|
|
black 85%,
|
|
|
|
|
transparent 100%
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-06 22:31:10 -05:00
|
|
|
#id_applet_palette {
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
|
|
.palette-scroll {
|
|
|
|
|
display: flex;
|
2026-03-07 15:05:49 -05:00
|
|
|
gap: 3.5rem;
|
2026-03-06 22:31:10 -05:00
|
|
|
overflow-x: auto;
|
2026-03-07 15:05:49 -05:00
|
|
|
padding: 0.75rem 2rem;
|
2026-03-06 22:31:10 -05:00
|
|
|
height: 100%;
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
&::-webkit-scrollbar { display: none; }
|
2026-03-06 23:12:56 -05:00
|
|
|
mask-image: linear-gradient(
|
|
|
|
|
to right,
|
|
|
|
|
transparent 0%,
|
2026-03-07 15:05:49 -05:00
|
|
|
black 2%,
|
|
|
|
|
black 98%,
|
2026-03-06 23:12:56 -05:00
|
|
|
transparent 100%
|
|
|
|
|
);
|
2026-03-06 22:31:10 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#id_applet_username {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-03-07 15:05:49 -05:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
form {
|
|
|
|
|
min-width: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
.save-btn {
|
|
|
|
|
align-self: left;
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-06 22:31:10 -05:00
|
|
|
|
|
|
|
|
.username-field {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: baseline;
|
|
|
|
|
gap: 0.1em;
|
2026-03-07 15:05:49 -05:00
|
|
|
min-width: 0;
|
|
|
|
|
overflow: hidden;
|
2026-03-06 22:31:10 -05:00
|
|
|
|
|
|
|
|
.username-at{
|
|
|
|
|
user-select: none;
|
2026-03-07 15:05:49 -05:00
|
|
|
pointer-events: none;
|
|
|
|
|
font-size: 1.8rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: rgba(var(--secUser), 0.875);
|
|
|
|
|
margin-left: 0.3rem;
|
2026-03-06 22:31:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
font-size: 1.8rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: rgba(var(--secUser), 0.875);;
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
padding: 0;
|
2026-03-07 15:05:49 -05:00
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
2026-03-06 22:31:10 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2026-03-07 00:05:32 -05:00
|
|
|
|
2026-03-07 15:05:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 550px) {
|
|
|
|
|
#id_dash_content {
|
|
|
|
|
min-width: 380px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#id_applets_container {
|
2026-03-07 00:05:32 -05:00
|
|
|
section {
|
|
|
|
|
grid-column: span 12;
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-06 19:14:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-height: 500px) {
|
|
|
|
|
body.page-dashboard {
|
|
|
|
|
height: auto;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
overflow: visible;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#id_dash_content,
|
|
|
|
|
#id_applets_container {
|
|
|
|
|
overflow: visible;
|
|
|
|
|
flex: none;
|
|
|
|
|
}
|
2026-03-06 16:39:05 -05:00
|
|
|
}
|