@gitlab/ui 38.11.0 → 38.12.0

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "38.11.0",
3
+ "version": "38.12.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -173,14 +173,6 @@ export default {
173
173
  :class="{ 'gl-alert-icon': true, 'gl-alert-icon-no-title': !title }"
174
174
  />
175
175
 
176
- <close-button
177
- v-if="dismissible"
178
- ref="dismiss"
179
- class="gl-dismiss-btn"
180
- :label="dismissLabel"
181
- @click="onDismiss"
182
- />
183
-
184
176
  <div class="gl-alert-content" role="alert">
185
177
  <h4 v-if="title" class="gl-alert-title">{{ title }}</h4>
186
178
 
@@ -204,5 +196,13 @@ export default {
204
196
  </slot>
205
197
  </div>
206
198
  </div>
199
+
200
+ <close-button
201
+ v-if="dismissible"
202
+ ref="dismiss"
203
+ class="gl-dismiss-btn"
204
+ :label="dismissLabel"
205
+ @click="onDismiss"
206
+ />
207
207
  </div>
208
208
  </template>
@@ -43,9 +43,11 @@
43
43
  }
44
44
 
45
45
  .form-check-input:disabled,
46
- .form-check-input:disabled ~ .form-check-label {
46
+ .form-check-input:disabled ~ .form-check-label,
47
+ .custom-control-input:disabled,
48
+ .custom-control-input:disabled ~ .custom-control-label {
47
49
  @include gl-cursor-not-allowed;
48
- @include gl-text-gray-500;
50
+ @include gl-text-gray-400;
49
51
  }
50
52
 
51
53
  &.custom-control {