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-10 01:25:07 -04:00
|
|
|
|
2026-03-06 18:14:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row {
|
|
|
|
|
flex-shrink: 0;
|
2026-03-07 15:34:32 -05:00
|
|
|
margin-bottom: -1rem;
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#id_applets_container {
|
2026-03-11 14:50:08 -04:00
|
|
|
#id_applet_my_notes {
|
2026-03-07 15:05:49 -05:00
|
|
|
padding: 1.25rem 1.5rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
2026-03-11 14:50:08 -04:00
|
|
|
h2 { flex-shrink: 0; margin-bottom: 0.25rem; }
|
2026-03-07 15:05:49 -05:00
|
|
|
|
2026-03-11 14:50:08 -04:00
|
|
|
.my-notes-container {
|
2026-03-07 15:05:49 -05:00
|
|
|
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-11 14:50:08 -04:00
|
|
|
|
|
|
|
|
#id_applet_wallet {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.25rem;
|
|
|
|
|
|
|
|
|
|
h2 { flex-shrink: 0; margin-bottom: 0; }
|
|
|
|
|
}
|
2026-03-07 15:05:49 -05:00
|
|
|
|
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 {
|
2026-03-07 15:34:32 -05:00
|
|
|
min-width: 0;
|
2026-03-07 15:05:49 -05:00
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2026-03-06 19:14:53 -05:00
|
|
|
}
|
|
|
|
|
|
2026-03-07 15:34:32 -05:00
|
|
|
@media (min-width: 738px) {
|
|
|
|
|
#id_dash_content {
|
|
|
|
|
min-width: 666px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-23 19:50:08 -04:00
|
|
|
@media (orientation: landscape) and (max-width: 1440px) {
|
2026-03-23 01:06:14 -04:00
|
|
|
// Reset the 666px min-width so #id_dash_content shrinks to fit within the
|
|
|
|
|
// sidebar-bounded container rather than overflowing into the footer sidebar.
|
|
|
|
|
#id_dash_content {
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-06 19:14:53 -05:00
|
|
|
@media (max-height: 500px) {
|
|
|
|
|
body.page-dashboard {
|
|
|
|
|
.container {
|
2026-03-07 15:34:32 -05:00
|
|
|
.row {
|
|
|
|
|
padding: 0.25rem 0;
|
|
|
|
|
.col-lg-6 h2 {
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-06 19:14:53 -05:00
|
|
|
}
|
|
|
|
|
}
|
2026-03-06 16:39:05 -05:00
|
|
|
}
|