1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-10-16 13:47:28 +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;
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 {
--bhsl-current-hue: var(--bhsl-red-hue);
--bhsl-current-saturation: var(--bhsl-red-saturation);
@ -484,14 +488,14 @@
opacity: 1;
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);
}
.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);
}
.bluelib .input:active,
.bluelib .input:focus {
.bluelib .input:active:not(.property-disabled),
.bluelib .input:focus:not(.property-disabled) {
border-color: hsl(var(--bhsl-current-hue) var(--bhsl-current-saturation) var(--bhsl-current-lightness));
}
.bluelib .input-area {
@ -505,17 +509,23 @@
.bluelib .input-multiselect {
border-left-width: 2px;
}
.bluelib .input-field,
.bluelib .input-area {
.bluelib .input-field:not(.property-disabled),
.bluelib .input-area:not(.property-disabled) {
cursor: text;
}
.bluelib .input-select,
.bluelib .input-multiselect {
.bluelib .input-select:not(.property-disabled),
.bluelib .input-multiselect:not(.property-disabled) {
cursor: vertical-text;
}
.bluelib .input-range {
.bluelib .input-range:not(.property-disabled) {
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-multiselect optgroup {
padding-bottom: 0.25em;
@ -542,7 +552,6 @@
.bluelib .input-radio,
.bluelib .input-checkbox {
appearance: none;
cursor: pointer;
width: 1em;
height: 1em;
padding: 2px;

54
dist/base.root.css vendored
View file

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