tgui-core 4.1.2 → 4.1.3
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 +1 -1
- package/styles/components/Button.scss +13 -13
package/package.json
CHANGED
|
@@ -152,19 +152,6 @@
|
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
-
.Button--selected {
|
|
156
|
-
--color: var(--button-background-selected);
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
.Button--disabled {
|
|
160
|
-
cursor: var(--cursor-disabled) !important;
|
|
161
|
-
background-color: var(
|
|
162
|
-
--button-background-disabled,
|
|
163
|
-
var(--button-background)
|
|
164
|
-
) !important;
|
|
165
|
-
opacity: var(--button-disabled-opacity);
|
|
166
|
-
}
|
|
167
|
-
|
|
168
155
|
.Button--color-- {
|
|
169
156
|
&default {
|
|
170
157
|
--color: var(--button-background-default);
|
|
@@ -183,6 +170,19 @@
|
|
|
183
170
|
}
|
|
184
171
|
}
|
|
185
172
|
|
|
173
|
+
.Button--selected {
|
|
174
|
+
--color: var(--button-background-selected);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.Button--disabled {
|
|
178
|
+
cursor: var(--cursor-disabled) !important;
|
|
179
|
+
background-color: var(
|
|
180
|
+
--button-background-disabled,
|
|
181
|
+
var(--button-background)
|
|
182
|
+
) !important;
|
|
183
|
+
opacity: var(--button-disabled-opacity);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
186
|
.Button--flex {
|
|
187
187
|
display: inline-flex; // Inline even for fluid
|
|
188
188
|
flex-direction: column;
|