@atlassian/aui 9.5.0 → 9.5.2

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.
@@ -8,6 +8,7 @@
8
8
  border-radius: @aui-border-radius-small;
9
9
  font-size: @aui-font-size-small;
10
10
  line-height: unit(20 / @aui-font-size-small);
11
+ word-wrap: break-word;
11
12
 
12
13
  a,
13
14
  a:visited {
@@ -261,7 +261,7 @@
261
261
  .make-it-fullscreen();
262
262
  }
263
263
 
264
- .aui-dialog2-content {
264
+ & .aui-dialog2-content {
265
265
  height: calc(~"100vh" - @header-footer-combined-height);
266
266
  max-height: none; // otherwise, the footer "creeps up" the dialog and takes up the available space.
267
267
  }
@@ -200,6 +200,21 @@ form.aui:not(.aui-legacy-forms) {
200
200
  .aui-checkbox-disabled-style();
201
201
  }
202
202
  }
203
+
204
+ &:focus + .aui-form-glyph::after {
205
+ .aui-radio-focus-size();
206
+ .aui-radio-focus-position();
207
+
208
+ content: "";
209
+
210
+ border: @button-focus-border;
211
+ border-radius: @aui-form-button-size;
212
+ background-color: transparent;
213
+ }
214
+
215
+ &:focus + .aui-form-glyph::before {
216
+ border-color: @button-focus-border-color;
217
+ }
203
218
  }
204
219
  }
205
220
 
@@ -255,6 +270,10 @@ form.aui:not(.aui-legacy-forms) {
255
270
  .aui-checkbox-disabled-style();
256
271
  }
257
272
  }
273
+
274
+ &:focus + .aui-form-glyph::before {
275
+ border-color: @button-focus-border-color;
276
+ }
258
277
  }
259
278
  }
260
279
 
@@ -273,30 +292,4 @@ form.aui:not(.aui-legacy-forms) {
273
292
  top: @radio-offset-top - 1px;
274
293
  }
275
294
 
276
- .radio {
277
- input {
278
- &:focus + .aui-form-glyph::after {
279
- .aui-radio-focus-size();
280
- .aui-radio-focus-position();
281
-
282
- content: "";
283
-
284
- border: @button-focus-border;
285
- border-radius: @aui-form-button-size;
286
- background-color: transparent;
287
- }
288
-
289
- &:focus + .aui-form-glyph::before {
290
- border-color: @button-focus-border-color;
291
- }
292
- }
293
- }
294
-
295
- .checkbox {
296
- input {
297
- &:focus + .aui-form-glyph::before {
298
- border-color: @button-focus-border-color;
299
- }
300
- }
301
- }
302
295
  }