1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-12-22 11:34:21 +00:00

Add missing built files

This commit is contained in:
Steffo 2022-10-15 15:23:11 +02:00
parent 09134a0998
commit 250fd65de3
Signed by: steffo
GPG key ID: 6965406171929D01
2 changed files with 51 additions and 32 deletions

29
dist/base.module.css vendored
View file

@ -441,6 +441,10 @@
border-style: dashed; border-style: dashed;
background-color: hsl(var(--bhsl-todo-background-hue) var(--bhsl-todo-background-saturation) var(--bhsl-todo-background-lightness)); background-color: hsl(var(--bhsl-todo-background-hue) var(--bhsl-todo-background-saturation) var(--bhsl-todo-background-lightness));
} }
.bluelib .property-disabled {
border-style: dashed;
cursor: not-allowed;
}
.bluelib .modifier-red { .bluelib .modifier-red {
--bhsl-current-hue: var(--bhsl-red-hue); --bhsl-current-hue: var(--bhsl-red-hue);
--bhsl-current-saturation: var(--bhsl-red-saturation); --bhsl-current-saturation: var(--bhsl-red-saturation);
@ -484,14 +488,14 @@
opacity: 1; opacity: 1;
color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness) / 0.4); color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness) / 0.4);
} }
.bluelib .input:hover { .bluelib .input:hover:not(.property-disabled) {
border-color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness) / 0.7); border-color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness) / 0.7);
} }
.bluelib .input:hover::placeholder { .bluelib .input:hover:not(.property-disabled)::placeholder {
color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness) / 0.7); color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness) / 0.7);
} }
.bluelib .input:active, .bluelib .input:active:not(.property-disabled),
.bluelib .input:focus { .bluelib .input:focus:not(.property-disabled) {
border-color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness)); border-color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness));
} }
.bluelib .input-area { .bluelib .input-area {
@ -505,17 +509,23 @@
.bluelib .input-multiselect { .bluelib .input-multiselect {
border-left-width: 2px; border-left-width: 2px;
} }
.bluelib .input-field, .bluelib .input-field:not(.property-disabled),
.bluelib .input-area { .bluelib .input-area:not(.property-disabled) {
cursor: text; cursor: text;
} }
.bluelib .input-select, .bluelib .input-select:not(.property-disabled),
.bluelib .input-multiselect { .bluelib .input-multiselect:not(.property-disabled) {
cursor: vertical-text; cursor: vertical-text;
} }
.bluelib .input-range { .bluelib .input-range:not(.property-disabled) {
cursor: ew-resize; cursor: ew-resize;
} }
.bluelib .input-radio:not(.property-disabled),
.bluelib .input-checkbox:not(.property-disabled),
.bluelib .input-button:not(.property-disabled),
.bluelib .input-color:not(.property-disabled) {
cursor: pointer;
}
.bluelib .input-select optgroup, .bluelib .input-select optgroup,
.bluelib .input-multiselect optgroup { .bluelib .input-multiselect optgroup {
padding-bottom: 0.25em; padding-bottom: 0.25em;
@ -542,7 +552,6 @@
.bluelib .input-radio, .bluelib .input-radio,
.bluelib .input-checkbox { .bluelib .input-checkbox {
appearance: none; appearance: none;
cursor: pointer;
width: 1em; width: 1em;
height: 1em; height: 1em;
padding: 2px; padding: 2px;

54
dist/base.root.css vendored
View file

@ -441,6 +441,10 @@ body .todo .panel {
border-style: dashed; border-style: dashed;
background-color: hsl(var(--bhsl-todo-background-hue) var(--bhsl-todo-background-saturation) var(--bhsl-todo-background-lightness)); background-color: hsl(var(--bhsl-todo-background-hue) var(--bhsl-todo-background-saturation) var(--bhsl-todo-background-lightness));
} }
body [disabled] {
border-style: dashed;
cursor: not-allowed;
}
body .red { body .red {
--bhsl-current-hue: var(--bhsl-red-hue); --bhsl-current-hue: var(--bhsl-red-hue);
--bhsl-current-saturation: var(--bhsl-red-saturation); --bhsl-current-saturation: var(--bhsl-red-saturation);
@ -490,26 +494,26 @@ body button::placeholder {
opacity: 1; opacity: 1;
color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness) / 0.4); color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness) / 0.4);
} }
body input:hover, body input:hover:not([disabled]),
body textarea:hover, body textarea:hover:not([disabled]),
body select:hover, body select:hover:not([disabled]),
body button:hover { body button:hover:not([disabled]) {
border-color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness) / 0.7); border-color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness) / 0.7);
} }
body input:hover::placeholder, body input:hover:not([disabled])::placeholder,
body textarea:hover::placeholder, body textarea:hover:not([disabled])::placeholder,
body select:hover::placeholder, body select:hover:not([disabled])::placeholder,
body button:hover::placeholder { body button:hover:not([disabled])::placeholder {
color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness) / 0.7); color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness) / 0.7);
} }
body input:active, body input:active:not([disabled]),
body textarea:active, body textarea:active:not([disabled]),
body select:active, body select:active:not([disabled]),
body button:active, body button:active:not([disabled]),
body input:focus, body input:focus:not([disabled]),
body textarea:focus, body textarea:focus:not([disabled]),
body select:focus, body select:focus:not([disabled]),
body button:focus { body button:focus:not([disabled]) {
border-color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness)); border-color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness));
} }
body textarea { body textarea {
@ -539,17 +543,24 @@ body input[type="search"],
body input[type="tel"], body input[type="tel"],
body input[type="datetime-local"], body input[type="datetime-local"],
body input[type="date"], body input[type="date"],
body input[type="time"], body input[type="time"]:not([disabled]),
body textarea { body textarea:not([disabled]) {
cursor: text; cursor: text;
} }
body select:not([multiple]), body select:not([multiple]):not([disabled]),
body select[multiple] { body select[multiple]:not([disabled]) {
cursor: vertical-text; cursor: vertical-text;
} }
body input[type="range"] { body input[type="range"]:not([disabled]) {
cursor: ew-resize; cursor: ew-resize;
} }
body input[type="radio"]:not([disabled]),
body input[type="checkbox"]:not([disabled]),
body input[type="button"],
body button:not([disabled]),
body input[type="color"]:not([disabled]) {
cursor: pointer;
}
body select:not([multiple]) optgroup, body select:not([multiple]) optgroup,
body select[multiple] optgroup { body select[multiple] optgroup {
padding-bottom: 0.25em; padding-bottom: 0.25em;
@ -576,7 +587,6 @@ body select[multiple] option {
body input[type="radio"], body input[type="radio"],
body input[type="checkbox"] { body input[type="checkbox"] {
appearance: none; appearance: none;
cursor: pointer;
width: 1em; width: 1em;
height: 1em; height: 1em;
padding: 2px; padding: 2px;