merge v0.23.0-rc changes

This commit is contained in:
Gani Georgiev
2024-09-29 19:23:19 +03:00
parent ad92992324
commit 844f18cac3
753 changed files with 85141 additions and 63396 deletions

View File

@@ -433,6 +433,7 @@ button {
}
}
input,
select,
textarea {
@@ -442,6 +443,9 @@ input {
// Safari and GNOME Web has a default height and ignores the min-height
height: var(--inputHeight);
}
input[list]::-webkit-calendar-picker-indicator {
display: none !important; // hide the default list input arrow
}
input:-webkit-autofill {
-webkit-text-fill-color: var(--txtPrimaryColor);
-webkit-box-shadow: inset 0 0 0 50px var(--baseAlt1Color);
@@ -508,7 +512,8 @@ select {
border: 0;
border-top-left-radius: var(--baseRadius);
border-top-right-radius: var(--baseRadius);
& ~ %input {
& ~ %input,
& ~ div %input {
border-top: 0;
padding-top: 2px;
padding-bottom: 8px;
@@ -761,6 +766,17 @@ select {
}
}
.form-field-addon {
position: relative;
right: auto;
left: auto;
top: auto;
bottom: auto;
min-height: 0;
vertical-align: middle;
margin-left: 5px;
}
input[type="radio"],
input[type="checkbox"] {
& ~ label {
@@ -831,22 +847,20 @@ select {
&:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
> label {
border-top-left-radius: 0;
}
> label,
> %input,
> .select .selected-container {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
}
&:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
> label {
border-top-right-radius: 0;
}
> label,
> %input,
> .select .selected-container {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
}