This commit is contained in:
TheGiddyLimit
2024-04-02 22:46:42 +01:00
parent d075252329
commit 5e0cc455b9
112 changed files with 2980 additions and 397 deletions

View File

@@ -148,7 +148,7 @@
&stg {
position: fixed;
z-index: vars.$z-hwin;
z-index: vars.$z-card-viewer;
inset: 0;
width: 100vw;
height: 100vh;

View File

@@ -30,7 +30,7 @@ Shared UI components
.ui-list__ {
// TODO refactor all "list" class to use this:
// - add "relative" class to each as required
// - add "overflow-x-hidden" and "overflow-y-auto" classes
// - add "ve-overflow-x-hidden" and "ve-overflow-y-auto" classes
// - convert from ul to div
&wrp {
transform: translateZ(0);

View File

@@ -27,6 +27,16 @@ input[type="radio"]:checked {
font-size: 85% !important;
}
.ve-large {
font-size: 125% !important;
// Additional size bump for small-caps fonts, to visually match size of non-caps text
&.small-caps,
&.dnd-font {
font-size: 140% !important;
}
}
.font-size-24p {
font-size: 24px !important;
}
@@ -57,10 +67,20 @@ i > i {
text-decoration: underline !important;
}
.ve-underline-double {
text-decoration: underline !important;
text-decoration-style: double !important;
}
.no-underline {
text-decoration: none !important;
}
.ve-strike-double {
text-decoration: line-through !important;
text-decoration-style: double !important;
}
.help {
cursor: help !important;
text-decoration: underline !important;
@@ -188,43 +208,43 @@ i > i {
scrollbar-gutter: stable;
}
.overflow-auto {
.ve-overflow-auto {
overflow: auto auto;
}
.overflow-y-auto {
.ve-overflow-y-auto {
overflow-y: auto;
}
.overflow-y-scroll {
.ve-overflow-y-scroll {
overflow-y: scroll;
}
.overflow-y-hidden {
.ve-overflow-y-hidden {
overflow-y: hidden;
}
.overflow-x-auto {
.ve-overflow-x-auto {
overflow-x: auto;
}
.overflow-x-scroll {
.ve-overflow-x-scroll {
overflow-x: scroll;
}
.overflow-x-hidden {
.ve-overflow-x-hidden {
overflow-x: hidden;
}
.overflow-hidden {
.ve-overflow-hidden {
overflow: hidden;
}
.overflow-ellipsis {
.ve-overflow-ellipsis {
@include vars.mix-overflow-dots;
}
.overflow-overlay {
.ve-overflow-overlay {
overflow: auto;
overflow: overlay;
}

View File

@@ -185,6 +185,7 @@ $z-omnisearch: 100;
$z-book-find: 100;
$z-bookmode: 100;
$z-rollerbox-hidden: 100;
$z-card-viewer: 105; // Minimized rollbox should be underneath; active rollbox should be on top, so we can roll dice in cards
$z-rollerbox-active: 110;
// Z-indices 200-300 reserved for hover windows