tgui-core 4.1.2 → 4.1.4

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
@@ -68,5 +68,5 @@
68
68
  "test": "bun test"
69
69
  },
70
70
  "type": "module",
71
- "version": "4.1.2"
71
+ "version": "4.1.4"
72
72
  }
@@ -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--disabled {
174
+ cursor: var(--cursor-disabled) !important;
175
+ background-color: var(
176
+ --button-background-disabled,
177
+ var(--button-background)
178
+ ) !important;
179
+ opacity: var(--button-disabled-opacity);
180
+ }
181
+
182
+ .Button--selected {
183
+ --color: var(--button-background-selected) !important;
184
+ }
185
+
186
186
  .Button--flex {
187
187
  display: inline-flex; // Inline even for fluid
188
188
  flex-direction: column;