@webitel/ui-sdk 24.6.40 → 24.6.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -105,25 +105,25 @@ function atClickaway() {
|
|
|
105
105
|
display: inline-flex;
|
|
106
106
|
align-items: center;
|
|
107
107
|
gap: var(--button-select-buttons-gap);
|
|
108
|
-
}
|
|
109
108
|
|
|
110
|
-
.wt-button-select__button {
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
}
|
|
109
|
+
.wt-button-select__button {
|
|
110
|
+
padding: var(--button-select-button-padding);
|
|
111
|
+
border-radius: var(--border-radius) 0 0 var(--border-radius);
|
|
112
|
+
}
|
|
114
113
|
|
|
115
|
-
.wt-button-select__select-btn {
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
114
|
+
.wt-button-select__select-btn {
|
|
115
|
+
min-width: auto;
|
|
116
|
+
padding: var(--button-select-icon-button-padding);
|
|
117
|
+
border-radius: 0 var(--border-radius) var(--border-radius) 0;
|
|
119
118
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
119
|
+
// OPEN AND SHUT ARROW
|
|
120
|
+
.wt-button-select__select-arrow {
|
|
121
|
+
display: flex;
|
|
122
|
+
transform: rotate(0);
|
|
124
123
|
|
|
125
|
-
|
|
126
|
-
|
|
124
|
+
&--active {
|
|
125
|
+
transform: rotate(180deg);
|
|
126
|
+
}
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
129
|
}
|