added select readonly prop and updated the disabled schema field state

This commit is contained in:
Gani Georgiev
2023-04-26 18:35:34 +03:00
parent 1967dcfeba
commit bfb38ab51e
7 changed files with 41 additions and 17 deletions
+4
View File
@@ -955,6 +955,7 @@ select {
&:not(.disabled) .selected-container:hover {
cursor: pointer;
}
&.readonly,
&.disabled {
color: var(--txtHintColor);
pointer-events: none;
@@ -978,6 +979,9 @@ select {
}
}
}
&.disabled {
color: var(--txtDisabledColor);
}
// dropdown
.txt-missing {
+14 -2
View File
@@ -30,7 +30,7 @@
.separator {
width: 1px;
height: $minHeight;
background: var(--baseAlt2Color);
background: rgba(#000, 0.06);
}
.drag-handle-wrapper {
position: absolute;
@@ -81,7 +81,6 @@
@include show();
}
}
}
.schema-field-options {
@@ -111,4 +110,17 @@
}
}
}
&.deleted {
.schema-field-header {
background: var(--bodyColor);
}
.markers,
.separator {
opacity: 0.5;
}
%input {
background: none;
box-shadow: none;
}
}
}