@atlassian/aui 9.9.6 → 9.9.8

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.
Files changed (288) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +7 -9
  3. package/dist/aui/aui-css-deprecations.js.map +1 -1
  4. package/dist/aui/aui-prototyping-browserfocus.css +2 -651
  5. package/dist/aui/aui-prototyping-browserfocus.css.map +1 -0
  6. package/dist/aui/aui-prototyping-darkmode.css +2 -285
  7. package/dist/aui/aui-prototyping-darkmode.css.map +1 -0
  8. package/dist/aui/aui-prototyping-design-tokens-api-full.js +2 -2
  9. package/dist/aui/aui-prototyping-design-tokens-api-full.js.map +1 -1
  10. package/dist/aui/aui-prototyping-design-tokens-api.js +1 -1
  11. package/dist/aui/aui-prototyping-design-tokens-api.js.map +1 -1
  12. package/dist/aui/aui-prototyping-design-tokens-base-themes-css.css +2 -2
  13. package/dist/aui/aui-prototyping-design-tokens-base-themes-css.css.map +1 -1
  14. package/dist/aui/aui-prototyping-design-tokens-base-themes-css.js +1 -1
  15. package/dist/aui/aui-prototyping-design-tokens-base-themes.js +1 -1
  16. package/dist/aui/aui-prototyping-design-tokens-compatibility.css +2 -115
  17. package/dist/aui/aui-prototyping-design-tokens-compatibility.css.map +1 -0
  18. package/dist/aui/aui-prototyping.css +10 -10
  19. package/dist/aui/aui-prototyping.css.map +1 -1
  20. package/dist/aui/aui-prototyping.js +8 -10
  21. package/dist/aui/aui-prototyping.js.map +1 -1
  22. package/dist/aui/aui-prototyping.nodeps.css +10 -10
  23. package/dist/aui/aui-prototyping.nodeps.css.map +1 -1
  24. package/dist/aui/aui-prototyping.nodeps.js +12 -14
  25. package/dist/aui/aui-prototyping.nodeps.js.map +1 -1
  26. package/dist/aui/fonts/adgs-icons.eot +0 -0
  27. package/dist/aui/fonts/adgs-icons.ttf +0 -0
  28. package/dist/aui/fonts/adgs-icons.woff +0 -0
  29. package/entry/aui.batch.components.js +23 -23
  30. package/entry/aui.batch.page.js +3 -3
  31. package/entry/aui.batch.patterns.js +20 -20
  32. package/entry/aui.batch.prototyping.js +3 -11
  33. package/entry/aui.component.nav.js +1 -1
  34. package/entry/aui.component.progressbar.js +4 -1
  35. package/entry/aui.side-effects.js +2 -2
  36. package/entry/behaviours/aui.behaviour.format.js +1 -1
  37. package/entry/behaviours/aui.behaviour.i18n.js +1 -1
  38. package/entry/behaviours/aui.behaviour.keyboard-shortcuts.js +1 -1
  39. package/entry/behaviours/aui.behaviour.progressive-data-set.js +1 -1
  40. package/entry/behaviours/aui.behaviour.version.js +1 -1
  41. package/entry/deprecated/aui.component.inline-dialog1.js +1 -1
  42. package/entry/styles/aui-design-tokens-compatibility.less +114 -115
  43. package/package.json +3 -7
  44. package/src/js/aui/alphanum.js +1 -1
  45. package/src/js/aui/avatar-badged.js +4 -5
  46. package/src/js/aui/avatar-group.js +58 -28
  47. package/src/js/aui/avatar.js +16 -14
  48. package/src/js/aui/banner.js +5 -4
  49. package/src/js/aui/blanket.js +11 -14
  50. package/src/js/aui/button.js +5 -5
  51. package/src/js/aui/checkbox-multiselect.js +79 -76
  52. package/src/js/aui/clone.js +1 -1
  53. package/src/js/aui/close-button.js +2 -6
  54. package/src/js/aui/contain-dropdown.js +5 -5
  55. package/src/js/aui/contains.js +1 -1
  56. package/src/js/aui/cookie.js +12 -16
  57. package/src/js/aui/date-picker.js +84 -69
  58. package/src/js/aui/debounce.js +5 -8
  59. package/src/js/aui/design-tokens/design-tokens-full.js +4 -13
  60. package/src/js/aui/design-tokens/design-tokens-init.js +3 -5
  61. package/src/js/aui/design-tokens/design-tokens-testing-theme.js +15 -21
  62. package/src/js/aui/design-tokens/design-tokens.js +2 -4
  63. package/src/js/aui/dialog.js +206 -172
  64. package/src/js/aui/dialog2.js +36 -25
  65. package/src/js/aui/dropdown2.js +221 -189
  66. package/src/js/aui/escape-html.js +2 -2
  67. package/src/js/aui/escape.js +1 -1
  68. package/src/js/aui/event.js +4 -8
  69. package/src/js/aui/expander.js +15 -13
  70. package/src/js/aui/flag.js +14 -16
  71. package/src/js/aui/focus-manager.js +19 -18
  72. package/src/js/aui/form-notification.js +15 -14
  73. package/src/js/aui/form-validation/basic-validators.js +39 -30
  74. package/src/js/aui/form-validation/validator-register.js +9 -5
  75. package/src/js/aui/form-validation.js +12 -13
  76. package/src/js/aui/format.js +9 -6
  77. package/src/js/aui/forms/create-forms-component-body.js +6 -9
  78. package/src/js/aui/forms/custom-checkbox.js +2 -6
  79. package/src/js/aui/forms/custom-radio.js +2 -6
  80. package/src/js/aui/forms.js +4 -8
  81. package/src/js/aui/header-async.js +1 -1
  82. package/src/js/aui/header.js +2 -2
  83. package/src/js/aui/i18n.js +2 -5
  84. package/src/js/aui/index-of.js +1 -1
  85. package/src/js/aui/inline-dialog.js +171 -117
  86. package/src/js/aui/inline-dialog2.js +40 -33
  87. package/src/js/aui/internal/add-id.js +1 -1
  88. package/src/js/aui/internal/alignment.js +57 -49
  89. package/src/js/aui/internal/amdify.js +0 -1
  90. package/src/js/aui/internal/animation.js +2 -5
  91. package/src/js/aui/internal/attributes.js +2 -3
  92. package/src/js/aui/internal/browser.js +5 -6
  93. package/src/js/aui/internal/constants.js +1 -3
  94. package/src/js/aui/internal/deduplicateIDs.js +8 -7
  95. package/src/js/aui/internal/deprecation/deprecated-adg2-icons.js +132 -132
  96. package/src/js/aui/internal/deprecation.js +53 -31
  97. package/src/js/aui/internal/detect-children-change.js +3 -2
  98. package/src/js/aui/internal/elements.js +2 -5
  99. package/src/js/aui/internal/enforcer.js +11 -13
  100. package/src/js/aui/internal/globalize.js +3 -3
  101. package/src/js/aui/internal/has-touch.js +1 -2
  102. package/src/js/aui/internal/header/create-header.js +54 -30
  103. package/src/js/aui/internal/i18n/aui.js +10 -6
  104. package/src/js/aui/internal/i18n/aui_af.js +31 -31
  105. package/src/js/aui/internal/i18n/aui_ar.js +31 -31
  106. package/src/js/aui/internal/i18n/aui_ar_DZ.js +31 -31
  107. package/src/js/aui/internal/i18n/aui_az.js +31 -31
  108. package/src/js/aui/internal/i18n/aui_bg.js +31 -31
  109. package/src/js/aui/internal/i18n/aui_bs.js +31 -31
  110. package/src/js/aui/internal/i18n/aui_ca.js +31 -31
  111. package/src/js/aui/internal/i18n/aui_cs.js +31 -31
  112. package/src/js/aui/internal/i18n/aui_da.js +31 -31
  113. package/src/js/aui/internal/i18n/aui_de.js +31 -31
  114. package/src/js/aui/internal/i18n/aui_el.js +31 -31
  115. package/src/js/aui/internal/i18n/aui_en_AU.js +31 -31
  116. package/src/js/aui/internal/i18n/aui_en_GB.js +31 -31
  117. package/src/js/aui/internal/i18n/aui_en_NZ.js +31 -31
  118. package/src/js/aui/internal/i18n/aui_eo.js +31 -31
  119. package/src/js/aui/internal/i18n/aui_es.js +31 -31
  120. package/src/js/aui/internal/i18n/aui_et.js +31 -31
  121. package/src/js/aui/internal/i18n/aui_eu.js +31 -31
  122. package/src/js/aui/internal/i18n/aui_fa.js +31 -31
  123. package/src/js/aui/internal/i18n/aui_fi.js +31 -31
  124. package/src/js/aui/internal/i18n/aui_fo.js +31 -31
  125. package/src/js/aui/internal/i18n/aui_fr.js +31 -31
  126. package/src/js/aui/internal/i18n/aui_fr_CH.js +31 -31
  127. package/src/js/aui/internal/i18n/aui_gl.js +31 -31
  128. package/src/js/aui/internal/i18n/aui_he.js +31 -31
  129. package/src/js/aui/internal/i18n/aui_hr.js +31 -31
  130. package/src/js/aui/internal/i18n/aui_hu.js +31 -31
  131. package/src/js/aui/internal/i18n/aui_hy.js +31 -31
  132. package/src/js/aui/internal/i18n/aui_id.js +31 -31
  133. package/src/js/aui/internal/i18n/aui_is.js +31 -31
  134. package/src/js/aui/internal/i18n/aui_it.js +31 -31
  135. package/src/js/aui/internal/i18n/aui_ja.js +31 -31
  136. package/src/js/aui/internal/i18n/aui_ko.js +31 -31
  137. package/src/js/aui/internal/i18n/aui_kz.js +31 -31
  138. package/src/js/aui/internal/i18n/aui_lt.js +31 -31
  139. package/src/js/aui/internal/i18n/aui_lv.js +31 -31
  140. package/src/js/aui/internal/i18n/aui_ml.js +31 -31
  141. package/src/js/aui/internal/i18n/aui_ms.js +31 -31
  142. package/src/js/aui/internal/i18n/aui_nl.js +31 -31
  143. package/src/js/aui/internal/i18n/aui_no.js +31 -31
  144. package/src/js/aui/internal/i18n/aui_pl.js +31 -31
  145. package/src/js/aui/internal/i18n/aui_pt.js +31 -31
  146. package/src/js/aui/internal/i18n/aui_pt_BR.js +31 -31
  147. package/src/js/aui/internal/i18n/aui_rm.js +31 -31
  148. package/src/js/aui/internal/i18n/aui_ro.js +31 -31
  149. package/src/js/aui/internal/i18n/aui_ru.js +31 -31
  150. package/src/js/aui/internal/i18n/aui_sk.js +31 -31
  151. package/src/js/aui/internal/i18n/aui_sl.js +31 -31
  152. package/src/js/aui/internal/i18n/aui_sq.js +31 -31
  153. package/src/js/aui/internal/i18n/aui_sr.js +31 -31
  154. package/src/js/aui/internal/i18n/aui_sr_SR.js +31 -31
  155. package/src/js/aui/internal/i18n/aui_sv.js +31 -31
  156. package/src/js/aui/internal/i18n/aui_ta.js +31 -31
  157. package/src/js/aui/internal/i18n/aui_th.js +31 -31
  158. package/src/js/aui/internal/i18n/aui_tj.js +31 -31
  159. package/src/js/aui/internal/i18n/aui_tr.js +31 -31
  160. package/src/js/aui/internal/i18n/aui_uk.js +31 -31
  161. package/src/js/aui/internal/i18n/aui_vi.js +31 -31
  162. package/src/js/aui/internal/i18n/aui_zh_CN.js +31 -31
  163. package/src/js/aui/internal/i18n/aui_zh_HK.js +31 -31
  164. package/src/js/aui/internal/i18n/aui_zh_TW.js +31 -31
  165. package/src/js/aui/internal/log.js +2 -6
  166. package/src/js/aui/internal/mediaQuery.js +2 -3
  167. package/src/js/aui/internal/select/option.js +3 -3
  168. package/src/js/aui/internal/select/suggestion-model.js +1 -1
  169. package/src/js/aui/internal/select/suggestions-model.js +4 -5
  170. package/src/js/aui/internal/select/suggestions-view.js +17 -12
  171. package/src/js/aui/internal/state.js +2 -3
  172. package/src/js/aui/is-clipped.js +2 -2
  173. package/src/js/aui/key-code.js +1 -1
  174. package/src/js/aui/label.js +6 -6
  175. package/src/js/aui/layer.js +101 -89
  176. package/src/js/aui/messages.js +57 -41
  177. package/src/js/aui/navigation.js +7 -9
  178. package/src/js/aui/on-text-resize.js +7 -5
  179. package/src/js/aui/params.js +11 -8
  180. package/src/js/aui/polyfills/custom-event.js +7 -7
  181. package/src/js/aui/polyfills/placeholder.js +4 -4
  182. package/src/js/aui/populate-parameters.js +4 -4
  183. package/src/js/aui/progress-indicator.js +35 -27
  184. package/src/js/aui/progressive-data-set.js +13 -8
  185. package/src/js/aui/query-input.js +1 -1
  186. package/src/js/aui/restful-table/class-names.js +1 -1
  187. package/src/js/aui/restful-table/data-keys.js +1 -1
  188. package/src/js/aui/restful-table/edit-row.js +63 -63
  189. package/src/js/aui/restful-table/entry-model.js +6 -13
  190. package/src/js/aui/restful-table/event-handlers.js +4 -8
  191. package/src/js/aui/restful-table/event-names.js +1 -1
  192. package/src/js/aui/restful-table/row.js +41 -23
  193. package/src/js/aui/restful-table.js +101 -72
  194. package/src/js/aui/result-set.js +5 -5
  195. package/src/js/aui/results-list.js +3 -3
  196. package/src/js/aui/select.js +72 -51
  197. package/src/js/aui/select2.js +16 -8
  198. package/src/js/aui/sidebar.js +81 -51
  199. package/src/js/aui/spin.js +61 -49
  200. package/src/js/aui/spinner.js +11 -12
  201. package/src/js/aui/tables-sortable.js +21 -10
  202. package/src/js/aui/tabs.js +108 -77
  203. package/src/js/aui/to-init.js +1 -1
  204. package/src/js/aui/toggle.js +55 -43
  205. package/src/js/aui/tooltip.js +35 -34
  206. package/src/js/aui/trigger.js +20 -18
  207. package/src/js/aui/truncating-progressive-data-set.js +1 -1
  208. package/src/js/aui/unbind-text-resize.js +1 -1
  209. package/src/js/aui/unique-id.js +1 -1
  210. package/src/js/aui/when-i-type.js +66 -39
  211. package/src/js/aui-css-deprecations.js +52 -51
  212. package/src/js/jquery/jquery.hotkeys.js +124 -49
  213. package/src/js/jquery/jquery.moveto.js +18 -12
  214. package/src/less/adg-fancy-file-input.less +2 -3
  215. package/src/less/adg-header-quicksearch.less +4 -1
  216. package/src/less/adg-iconfont.less +242 -242
  217. package/src/less/adgs-icons.less +262 -262
  218. package/src/less/aui-appheader.less +11 -7
  219. package/src/less/aui-avatars.less +2 -2
  220. package/src/less/aui-banner.less +2 -1
  221. package/src/less/aui-buttons.less +6 -5
  222. package/src/less/aui-dark-mode.less +1 -1
  223. package/src/less/aui-date-picker.less +9 -6
  224. package/src/less/aui-experimental-expander.less +3 -3
  225. package/src/less/aui-experimental-labels.less +1 -1
  226. package/src/less/aui-experimental-progress-indicator.less +10 -4
  227. package/src/less/aui-experimental-progress-tracker.less +9 -6
  228. package/src/less/aui-experimental-restfultable.less +11 -3
  229. package/src/less/aui-experimental-tables-sortable.less +5 -3
  230. package/src/less/aui-experimental-tooltip.less +1 -1
  231. package/src/less/aui-link.less +0 -1
  232. package/src/less/aui-lozenge.less +6 -3
  233. package/src/less/aui-navigation.less +13 -13
  234. package/src/less/aui-page-layout.less +3 -4
  235. package/src/less/aui-page-typography.less +8 -3
  236. package/src/less/aui-reset.less +22 -6
  237. package/src/less/aui-select2.less +11 -8
  238. package/src/less/aui-sidebar-badges.less +1 -2
  239. package/src/less/aui-sidebar-config.less +7 -2
  240. package/src/less/aui-sidebar-grouping.less +16 -6
  241. package/src/less/aui-sidebar-navigation.less +7 -5
  242. package/src/less/aui-sidebar-skeleton.less +12 -7
  243. package/src/less/aui-skip-link.less +2 -1
  244. package/src/less/aui-spinner.less +2 -2
  245. package/src/less/aui-toggle.less +2 -2
  246. package/src/less/aui-toolbar2.less +1 -1
  247. package/src/less/checkbox-multiselect.less +13 -13
  248. package/src/less/dialog.less +3 -3
  249. package/src/less/dialog2.less +11 -10
  250. package/src/less/dropdown2-temp.css +4 -4
  251. package/src/less/dropdown2.less +4 -4
  252. package/src/less/flag.less +2 -2
  253. package/src/less/form-notification.less +10 -6
  254. package/src/less/forms-current.less +6 -5
  255. package/src/less/forms-legacy.less +4 -2
  256. package/src/less/forms-radios-and-checkboxes.less +18 -16
  257. package/src/less/forms.less +2 -4
  258. package/src/less/iconfont-mixin.less +7 -4
  259. package/src/less/imports/aui-theme/adg/adg-colors.less +40 -40
  260. package/src/less/imports/aui-theme/adg/adg-neutral-dark.less +20 -20
  261. package/src/less/imports/aui-theme/adg/adg-neutral-light.less +20 -20
  262. package/src/less/imports/aui-theme/components/buttons.less +5 -1
  263. package/src/less/imports/aui-theme/components/dropdown.less +3 -1
  264. package/src/less/imports/aui-theme/components/flag.less +1 -1
  265. package/src/less/imports/aui-theme/components/form-notification.less +2 -1
  266. package/src/less/imports/aui-theme/components/forms.less +20 -3
  267. package/src/less/imports/aui-theme/components/inline-dialog2.less +1 -1
  268. package/src/less/imports/aui-theme/components/navigation.less +3 -3
  269. package/src/less/imports/aui-theme/components/progress-tracker.less +6 -2
  270. package/src/less/imports/aui-theme/components/tables.less +3 -2
  271. package/src/less/imports/aui-theme/components/toggle.less +8 -3
  272. package/src/less/imports/aui-theme/core/colors.less +6 -3
  273. package/src/less/imports/aui-theme/core/icons.less +22 -22
  274. package/src/less/imports/aui-theme/core/spaces.less +1 -1
  275. package/src/less/imports/aui-theme/core/text.less +6 -3
  276. package/src/less/imports/aui-theme/theme.less +1 -3
  277. package/src/less/imports/mixins/dropdown2-trigger-chevron-icon.less +0 -1
  278. package/src/less/imports/mixins/focus.less +12 -4
  279. package/src/less/imports/mixins/media-queries.less +2 -2
  280. package/src/less/imports/mixins/shadows.less +3 -1
  281. package/src/less/imports/mixins/tab-indicator.less +2 -2
  282. package/src/less/imports/mixins.less +11 -4
  283. package/src/less/inline-dialog.less +21 -19
  284. package/src/less/layer.less +0 -2
  285. package/src/less/messages.less +2 -1
  286. package/src/less/single-select.less +15 -10
  287. package/src/less/tables.less +3 -2
  288. package/src/less/tabs.less +4 -3
@@ -39,7 +39,7 @@ form.aui .checkbox[disabled] {
39
39
  }
40
40
 
41
41
  // Fixing Safari search fields (https://ecosystem.atlassian.net/browse/AUI-4062)
42
- form.aui .text[type=search] {
42
+ form.aui .text[type='search'] {
43
43
  -webkit-appearance: textfield;
44
44
  outline-width: 5px;
45
45
  outline-offset: -2px;
@@ -80,7 +80,7 @@ form.aui .group:before,
80
80
  form.aui .group:after,
81
81
  form.aui .date-select:before,
82
82
  form.aui .date-select:after {
83
- content: " ";
83
+ content: ' ';
84
84
  display: table;
85
85
  }
86
86
 
@@ -178,7 +178,6 @@ form.aui.long-label .date-select .field-group {
178
178
 
179
179
  /* End Long Labels */
180
180
 
181
-
182
181
  /* Top Labels
183
182
  * add top-label class to form eg: <form class="aui top-label">
184
183
  * display all forms with top-labels for screen sizes < 768px
@@ -226,7 +225,6 @@ form.aui.long-label .date-select .field-group {
226
225
  .buttons-container {
227
226
  padding-left: 0;
228
227
  }
229
-
230
228
  }
231
229
 
232
230
  form.aui.top-label {
@@ -6,10 +6,13 @@
6
6
  @font-face {
7
7
  font-family: @family;
8
8
  src: url('~@atlassian/adg-server-iconfont/dist/fonts/@{filename}.eot');
9
- src: url('~@atlassian/adg-server-iconfont/dist/fonts/@{filename}.eot?#iefix') format('embedded-opentype'),
10
- url('~@atlassian/adg-server-iconfont/dist/fonts/@{filename}.woff') format('woff'),
11
- url('~@atlassian/adg-server-iconfont/dist/fonts/@{filename}.ttf') format('truetype'),
12
- url('~@atlassian/adg-server-iconfont/dist/fonts/@{filename}.svg#@{fontId}') format('svg');
9
+ src:
10
+ url('~@atlassian/adg-server-iconfont/dist/fonts/@{filename}.eot?#iefix')
11
+ format('embedded-opentype'),
12
+ url('~@atlassian/adg-server-iconfont/dist/fonts/@{filename}.woff') format('woff'),
13
+ url('~@atlassian/adg-server-iconfont/dist/fonts/@{filename}.ttf') format('truetype'),
14
+ url('~@atlassian/adg-server-iconfont/dist/fonts/@{filename}.svg#@{fontId}')
15
+ format('svg');
13
16
  font-weight: @weight;
14
17
  font-style: @style;
15
18
  }
@@ -3,56 +3,56 @@
3
3
  //
4
4
 
5
5
  // Reds
6
- @ak-color-R50: #FFEBE6;
7
- @ak-color-R75: #FFBDAD;
8
- @ak-color-R100: #FF8F73;
9
- @ak-color-R200: #FF7452;
10
- @ak-color-R300: #FF5630;
11
- @ak-color-R400: #DE350B;
12
- @ak-color-R500: #BF2600;
6
+ @ak-color-R50: #ffebe6;
7
+ @ak-color-R75: #ffbdad;
8
+ @ak-color-R100: #ff8f73;
9
+ @ak-color-R200: #ff7452;
10
+ @ak-color-R300: #ff5630;
11
+ @ak-color-R400: #de350b;
12
+ @ak-color-R500: #bf2600;
13
13
 
14
14
  // Yellows
15
- @ak-color-Y50: #FFFAE6;
16
- @ak-color-Y75: #FFF0B3;
17
- @ak-color-Y100: #FFE380;
18
- @ak-color-Y200: #FFC400;
19
- @ak-color-Y300: #FFAB00;
20
- @ak-color-Y400: #FF991F;
21
- @ak-color-Y500: #FF8B00;
15
+ @ak-color-Y50: #fffae6;
16
+ @ak-color-Y75: #fff0b3;
17
+ @ak-color-Y100: #ffe380;
18
+ @ak-color-Y200: #ffc400;
19
+ @ak-color-Y300: #ffab00;
20
+ @ak-color-Y400: #ff991f;
21
+ @ak-color-Y500: #ff8b00;
22
22
 
23
23
  // Greens
24
- @ak-color-G50: #E3FCEF;
25
- @ak-color-G75: #ABF5D1;
26
- @ak-color-G100: #79F2C0;
27
- @ak-color-G200: #57D9A3;
28
- @ak-color-G300: #36B37E;
29
- @ak-color-G400: #00875A;
24
+ @ak-color-G50: #e3fcef;
25
+ @ak-color-G75: #abf5d1;
26
+ @ak-color-G100: #79f2c0;
27
+ @ak-color-G200: #57d9a3;
28
+ @ak-color-G300: #36b37e;
29
+ @ak-color-G400: #00875a;
30
30
  @ak-color-G500: #006644;
31
31
 
32
32
  // Blues
33
- @ak-color-B50: #DEEBFF;
34
- @ak-color-B75: #B3D4FF;
33
+ @ak-color-B50: #deebff;
34
+ @ak-color-B75: #b3d4ff;
35
35
  @ak-color-B90: #60a4ff;
36
- @ak-color-B100: #4C9AFF;
37
- @ak-color-B200: #2684FF;
38
- @ak-color-B300: #0065FF;
39
- @ak-color-B400: #0052CC;
40
- @ak-color-B500: #0747A6;
36
+ @ak-color-B100: #4c9aff;
37
+ @ak-color-B200: #2684ff;
38
+ @ak-color-B300: #0065ff;
39
+ @ak-color-B400: #0052cc;
40
+ @ak-color-B500: #0747a6;
41
41
 
42
42
  // Purples
43
- @ak-color-P50: #EAE6FF;
44
- @ak-color-P75: #C0B6F2;
45
- @ak-color-P100: #998DD9;
46
- @ak-color-P200: #8777D9;
47
- @ak-color-P300: #6554C0;
48
- @ak-color-P400: #5243AA;
43
+ @ak-color-P50: #eae6ff;
44
+ @ak-color-P75: #c0b6f2;
45
+ @ak-color-P100: #998dd9;
46
+ @ak-color-P200: #8777d9;
47
+ @ak-color-P300: #6554c0;
48
+ @ak-color-P400: #5243aa;
49
49
  @ak-color-P500: #403294;
50
50
 
51
51
  // Teals
52
- @ak-color-T50: #E6FCFF;
53
- @ak-color-T75: #B3F5FF;
54
- @ak-color-T100: #79E2F2;
55
- @ak-color-T200: #00C7E6;
56
- @ak-color-T300: #00B8D9;
57
- @ak-color-T400: #00A3BF;
58
- @ak-color-T500: #008DA6;
52
+ @ak-color-T50: #e6fcff;
53
+ @ak-color-T75: #b3f5ff;
54
+ @ak-color-T100: #79e2f2;
55
+ @ak-color-T200: #00c7e6;
56
+ @ak-color-T300: #00b8d9;
57
+ @ak-color-T400: #00a3bf;
58
+ @ak-color-T500: #008da6;
@@ -1,27 +1,27 @@
1
- @ak-color-N2K: #F6F7F8; // note: this colour doesn't exist in the ADG palette.
2
- @ak-color-N1K: #E8EAEE; // note: this colour doesn't exist in the ADG palette.
3
- @ak-color-N900: #D9DDE3;
4
- @ak-color-N800: #C7CED6;
5
- @ak-color-N700: #B5BEC9;
6
- @ak-color-N600: #A3AEBD;
7
- @ak-color-N500: #929FB0;
8
- @ak-color-N400: #8392A5;
1
+ @ak-color-N2K: #f6f7f8; // note: this colour doesn't exist in the ADG palette.
2
+ @ak-color-N1K: #e8eaee; // note: this colour doesn't exist in the ADG palette.
3
+ @ak-color-N900: #d9dde3;
4
+ @ak-color-N800: #c7ced6;
5
+ @ak-color-N700: #b5bec9;
6
+ @ak-color-N600: #a3aebd;
7
+ @ak-color-N500: #929fb0;
8
+ @ak-color-N400: #8392a5;
9
9
  @ak-color-N300: #718298;
10
- @ak-color-N200: #65758B;
11
- @ak-color-N100: #5A697C;
12
- @ak-color-N90: #515F70;
10
+ @ak-color-N200: #65758b;
11
+ @ak-color-N100: #5a697c;
12
+ @ak-color-N90: #515f70;
13
13
  @ak-color-N80: #475262;
14
- @ak-color-N70: #3F4855;
15
- @ak-color-N60: #373F49;
16
- @ak-color-N50: #2F353D;
17
- @ak-color-N40: #262B31;
14
+ @ak-color-N70: #3f4855;
15
+ @ak-color-N60: #373f49;
16
+ @ak-color-N50: #2f353d;
17
+ @ak-color-N40: #262b31;
18
18
  @ak-color-N30: #202328;
19
- @ak-color-N20: #17191C;
19
+ @ak-color-N20: #17191c;
20
20
  @ak-color-N10: #101213;
21
- @ak-color-N0: #090A0B;
21
+ @ak-color-N0: #090a0b;
22
22
  // Each tint is made of N0 and an alpha channel.
23
23
  // ak-color-NXXXA: rgba(@ak-color-N0, ALPHA);
24
- @ak-color-N900A: rgba(@ak-color-N0, 1.00);
24
+ @ak-color-N900A: rgba(@ak-color-N0, 1);
25
25
  @ak-color-N800A: rgba(@ak-color-N0, 0.97);
26
26
  @ak-color-N700A: rgba(@ak-color-N0, 0.95);
27
27
  @ak-color-N600A: rgba(@ak-color-N0, 0.92);
@@ -33,10 +33,10 @@
33
33
  @ak-color-N90A: rgba(@ak-color-N0, 0.63);
34
34
  @ak-color-N80A: rgba(@ak-color-N0, 0.53);
35
35
  @ak-color-N70A: rgba(@ak-color-N0, 0.48);
36
- @ak-color-N60A: rgba(@ak-color-N0, 0.40);
36
+ @ak-color-N60A: rgba(@ak-color-N0, 0.4);
37
37
  @ak-color-N50A: rgba(@ak-color-N0, 0.36);
38
38
  @ak-color-N40A: rgba(@ak-color-N0, 0.29);
39
39
  @ak-color-N30A: rgba(@ak-color-N0, 0.18);
40
40
  @ak-color-N20A: rgba(@ak-color-N0, 0.14);
41
41
  @ak-color-N10A: rgba(@ak-color-N0, 0.06);
42
- @ak-color-N0A: rgba(@ak-color-N0, 0.00);
42
+ @ak-color-N0A: rgba(@ak-color-N0, 0);
@@ -1,25 +1,25 @@
1
- @ak-color-N0: #FFFFFF;
2
- @ak-color-N10: #FAFBFC;
3
- @ak-color-N20: #F4F5F7;
4
- @ak-color-N30: #EBECF1;
5
- @ak-color-N40: #DFE1E6;
6
- @ak-color-N50: #C1C7D0;
7
- @ak-color-N60: #B3BAC5;
8
- @ak-color-N70: #A5ADBA;
9
- @ak-color-N80: #97A0AF;
10
- @ak-color-N90: #8993A4;
11
- @ak-color-N100: #7A869A;
12
- @ak-color-N200: #6B778C;
13
- @ak-color-N300: #5E6C84;
14
- @ak-color-N400: #505F79;
15
- @ak-color-N500: #42526E;
1
+ @ak-color-N0: #ffffff;
2
+ @ak-color-N10: #fafbfc;
3
+ @ak-color-N20: #f4f5f7;
4
+ @ak-color-N30: #ebecf1;
5
+ @ak-color-N40: #dfe1e6;
6
+ @ak-color-N50: #c1c7d0;
7
+ @ak-color-N60: #b3bac5;
8
+ @ak-color-N70: #a5adba;
9
+ @ak-color-N80: #97a0af;
10
+ @ak-color-N90: #8993a4;
11
+ @ak-color-N100: #7a869a;
12
+ @ak-color-N200: #6b778c;
13
+ @ak-color-N300: #5e6c84;
14
+ @ak-color-N400: #505f79;
15
+ @ak-color-N500: #42526e;
16
16
  @ak-color-N600: #344563;
17
17
  @ak-color-N700: #253858;
18
- @ak-color-N800: #172B4D;
19
- @ak-color-N900: #091E42;
18
+ @ak-color-N800: #172b4d;
19
+ @ak-color-N900: #091e42;
20
20
  // Each tint is made of N900 and an alpha channel.
21
21
  // ak-color-NXXXA: rgba(@ak-color-N900, ALPHA);
22
- @ak-color-N0A: rgba(@ak-color-N900, 0.00);
22
+ @ak-color-N0A: rgba(@ak-color-N900, 0);
23
23
  @ak-color-N10A: rgba(@ak-color-N900, 0.02);
24
24
  @ak-color-N20A: rgba(@ak-color-N900, 0.04);
25
25
  @ak-color-N30A: rgba(@ak-color-N900, 0.08);
@@ -30,11 +30,11 @@
30
30
  @ak-color-N80A: rgba(@ak-color-N900, 0.42);
31
31
  @ak-color-N90A: rgba(@ak-color-N900, 0.48);
32
32
  @ak-color-N100A: rgba(@ak-color-N900, 0.54);
33
- @ak-color-N200A: rgba(@ak-color-N900, 0.60);
33
+ @ak-color-N200A: rgba(@ak-color-N900, 0.6);
34
34
  @ak-color-N300A: rgba(@ak-color-N900, 0.66);
35
35
  @ak-color-N400A: rgba(@ak-color-N900, 0.71);
36
36
  @ak-color-N500A: rgba(@ak-color-N900, 0.77);
37
37
  @ak-color-N600A: rgba(@ak-color-N900, 0.82);
38
38
  @ak-color-N700A: rgba(@ak-color-N900, 0.89);
39
39
  @ak-color-N800A: rgba(@ak-color-N900, 0.95);
40
- @ak-color-N900A: rgba(@ak-color-N900, 1.00);
40
+ @ak-color-N900A: rgba(@ak-color-N900, 1);
@@ -12,7 +12,11 @@
12
12
  @aui-button-height: unit(@aui-button-effective-height / @aui-button-font-size, em);
13
13
  @aui-button-padding-x: 10px;
14
14
  @aui-button-padding-y: 4px;
15
- @aui-button-line-height: unit((@aui-button-effective-height - (@aui-button-border-width + @aui-button-padding-y) *2) / @aui-button-font-size, em);
15
+ @aui-button-line-height: unit(
16
+ (@aui-button-effective-height - (@aui-button-border-width + @aui-button-padding-y) * 2) /
17
+ @aui-button-font-size,
18
+ em
19
+ );
16
20
 
17
21
  // Default button
18
22
  @aui-button-default-bg-color: var(--aui-button-default-bg-color);
@@ -10,7 +10,9 @@
10
10
  @aui-dropdown-group-spacing: 3px;
11
11
 
12
12
  @aui-dropdown-bg-color: var(--aui-dropdown-bg-color);
13
- @aui-dropdown-border-color: var(--aui-dropdown-border-color); // to match the lightness of the faux border in the "z200" shadow
13
+ @aui-dropdown-border-color: var(
14
+ --aui-dropdown-border-color
15
+ ); // to match the lightness of the faux border in the "z200" shadow
14
16
  @aui-dropdown-heading-text-color: var(--aui-itemheading-text);
15
17
 
16
18
  #aui-dropdowns {
@@ -9,4 +9,4 @@
9
9
 
10
10
  @aui-flag-padding: @aui-space-250;
11
11
  @aui-flag-gap-mobile: @aui-space-150;
12
- @aui-flag-gap-desktop: @aui-space-250;
12
+ @aui-flag-gap-desktop: @aui-space-250;
@@ -8,7 +8,8 @@
8
8
  @aui-notification-arrow-border: 1px;
9
9
 
10
10
  @aui-notification-arrow-size: 6px;
11
- @aui-notification-arrow-and-border-size: @aui-notification-arrow-size + @aui-notification-arrow-border;
11
+ @aui-notification-arrow-and-border-size: @aui-notification-arrow-size +
12
+ @aui-notification-arrow-border;
12
13
  @aui-notification-arrow-bottom-right-position: 10px;
13
14
 
14
15
  @aui-notification-tipsy-padding: 4px;
@@ -33,7 +33,10 @@
33
33
  @aui-form-field-width-medium-long: 350px;
34
34
  @aui-form-field-width-long: 500px;
35
35
  @aui-form-field-width-full: none;
36
- @aui-form-field-height: unit(30px / @aui-font-size-medium, em); // 30px - using ems so the fields increase in line with user specified font-sizes
36
+ @aui-form-field-height: unit(
37
+ 30px / @aui-font-size-medium,
38
+ em
39
+ ); // 30px - using ems so the fields increase in line with user specified font-sizes
37
40
 
38
41
  @aui-form-transition-time: 0.2s;
39
42
 
@@ -57,6 +60,12 @@
57
60
  .aui-input-field-style(focus) {
58
61
  background-color: @aui-form-field-focus-bg-color;
59
62
  color: @aui-text-color;
63
+
64
+ // DCA11Y-1726 - in chrome v136 the !important property was removed from select:focus option:checked (https://chromium.googlesource.com/chromium/src/+/c6f0a72627a705bfb972950b4fc2097171978b9a), which caused lack of initial highlight of the selected options
65
+ option:checked {
66
+ background-color: SelectedItem !important;
67
+ color: SelectedItemText !important;
68
+ }
60
69
  }
61
70
 
62
71
  .aui-select2-input-field-style(normal) {
@@ -78,8 +87,10 @@
78
87
 
79
88
  .aui-radio-checkbox-outline-size() {
80
89
  display: inline-block;
81
- width: @aui-form-button-size + @aui-form-button-border-width * 2 + (@aui-form-radio-checkbox-outline-padding-space * 2);
82
- height: @aui-form-button-size + @aui-form-button-border-width * 2 + (@aui-form-radio-checkbox-outline-padding-space * 2);
90
+ width: @aui-form-button-size + @aui-form-button-border-width * 2 +
91
+ (@aui-form-radio-checkbox-outline-padding-space * 2);
92
+ height: @aui-form-button-size + @aui-form-button-border-width * 2 +
93
+ (@aui-form-radio-checkbox-outline-padding-space * 2);
83
94
  }
84
95
  }
85
96
 
@@ -114,6 +125,12 @@
114
125
  .aui-input-field-style(focus) {
115
126
  background-color: @aui-form-field-focus-bg-color;
116
127
  color: @aui-text-color;
128
+
129
+ // DCA11Y-1726 - in chrome v136 the !important property was removed from select:focus option:checked (https://chromium.googlesource.com/chromium/src/+/c6f0a72627a705bfb972950b4fc2097171978b9a), which caused lack of initial highlight of the selected options
130
+ option:checked {
131
+ background-color: SelectedItem !important;
132
+ color: SelectedItemText !important;
133
+ }
117
134
  }
118
135
 
119
136
  .aui-radio-checkbox-size() {
@@ -1,4 +1,4 @@
1
1
  @aui-inline-dialog2-offset-default: 10px;
2
2
  @aui-inline-dialog2-arrow-edge-offset: 2px;
3
3
  @aui-inline-dialog2-arrow-side-length: 8px;
4
- @aui-inline-dialog2-arrow-border-width: 1px;
4
+ @aui-inline-dialog2-arrow-border-width: 1px;
@@ -34,7 +34,6 @@
34
34
  @aui-nav-pagination-text-color: var(--aui-nav-pagination-text-color);
35
35
  @aui-nav-pagination-active-text-color: var(--aui-nav-pagination-active-text-color);
36
36
 
37
-
38
37
  #aui-nav {
39
38
  // See also: #aui-dropdowns.aui-dropdown-option-base();
40
39
  .item-base(@height: @aui-nav-link-effective-height) {
@@ -48,7 +47,9 @@
48
47
  // but the inner content box is only 16px tall. This enables things like
49
48
  // lozenges and small icons to line up correctly with the text, without explicit treatment.
50
49
  // this is assumed and exploited in places like the sidebar's navigation.
51
- line-height: unit((@height - (2 * @aui-nav-link-spacing-vertical)) / @aui-nav-actions-list-item-font-size);
50
+ line-height: unit(
51
+ (@height - (2 * @aui-nav-link-spacing-vertical)) / @aui-nav-actions-list-item-font-size
52
+ );
52
53
  padding: @aui-nav-link-spacing-vertical @aui-nav-link-spacing-horizontal;
53
54
  }
54
55
 
@@ -89,5 +90,4 @@
89
90
  cursor: not-allowed;
90
91
  text-decoration: none;
91
92
  }
92
-
93
93
  }
@@ -3,7 +3,11 @@
3
3
  @aui-progress-tracker-current-step-color: var(--aui-progress-tracker-current-step-color);
4
4
  @aui-progress-tracker-current-step-text-color: var(--aui-progress-tracker-current-step-text-color);
5
5
  @aui-progress-tracker-visited-step-text-color: var(--aui-progress-tracker-visited-step-text-color);
6
- @aui-progress-tracker-visited-step-hover-text-color: var(--aui-progress-tracker-visited-step-hover-text-color);
7
- @aui-progress-tracker-visited-step-active-text-color: var(--aui-progress-tracker-visited-step-active-text-color);
6
+ @aui-progress-tracker-visited-step-hover-text-color: var(
7
+ --aui-progress-tracker-visited-step-hover-text-color
8
+ );
9
+ @aui-progress-tracker-visited-step-active-text-color: var(
10
+ --aui-progress-tracker-visited-step-active-text-color
11
+ );
8
12
  @aui-progress-tracker-step-color: var(--aui-progress-tracker-future-step-color);
9
13
  @aui-progress-tracker-step-text-color: var(--aui-progress-tracker-future-step-text-color);
@@ -5,7 +5,7 @@
5
5
  @aui-table-text-align: left;
6
6
  @aui-table-vertical-align: top;
7
7
  @aui-table-padding-x: @aui-grid;
8
- @aui-table-padding-y: (@aui-grid * .7);
8
+ @aui-table-padding-y: (@aui-grid * 0.7);
9
9
 
10
10
  @aui-table-caption-bg-color: var(--aui-table-caption-bg-color);
11
11
  @aui-table-caption-text-color: var(--aui-table-caption-text-color);
@@ -17,7 +17,8 @@
17
17
  @aui-table-header-divider-width: 2px;
18
18
 
19
19
  @aui-border-tables: @aui-border-width @aui-border-type var(--aui-table-border-color);
20
- @aui-border-tables-header: @aui-table-header-divider-width @aui-border-type var(--aui-table-border-color);
20
+ @aui-border-tables-header: @aui-table-header-divider-width @aui-border-type
21
+ var(--aui-table-border-color);
21
22
 
22
23
  // ### Sortable
23
24
 
@@ -14,12 +14,17 @@
14
14
  @aui-toggle-vertical-padding: 6px;
15
15
  @aui-toggle-icon-size: 16px;
16
16
  @aui-toggle-font-size: @aui-font-size-small;
17
- @aui-toggle-width: (@aui-toggle-border-width * 2 + @aui-toggle-horizontal-padding * 3 + @aui-toggle-icon-size * 2);
17
+ @aui-toggle-width: (
18
+ @aui-toggle-border-width * 2 + @aui-toggle-horizontal-padding * 3 + @aui-toggle-icon-size * 2
19
+ );
18
20
 
19
21
  @aui-toggle-effective-height: 26px;
20
- @aui-toggle-height: unit(@aui-toggle-effective-height / @aui-toggle-font-size, em); // note: this is the same as a compact AUI button.
22
+ @aui-toggle-height: unit(
23
+ @aui-toggle-effective-height / @aui-toggle-font-size,
24
+ em
25
+ ); // note: this is the same as a compact AUI button.
21
26
  @aui-toggle-icon-top: unit((@aui-toggle-effective-height - @aui-toggle-icon-size) / 2, px);
22
- @aui-toggle-handle-width: .odd(@aui-toggle-icon-size + @aui-toggle-horizontal-padding)[@result]; // circles work better with odd numbers
27
+ @aui-toggle-handle-width: .odd(@aui-toggle-icon-size + @aui-toggle-horizontal-padding) [ @result]; // circles work better with odd numbers
23
28
  @aui-toggle-slide-width: (@aui-toggle-icon-size * 2);
24
29
 
25
30
  @aui-toggle-default-bg-color: var(--aui-toggle-default-bg-color);
@@ -68,7 +68,8 @@
68
68
 
69
69
  // Avatars
70
70
  --aui-avatar-outline: @ak-color-N0;
71
- --aui-avatar-text: @ak-color-N100;
71
+ --aui-avatar-text: var(--aui-button-default-text-color);
72
+ --aui-avatar-background: var(--aui-button-default-bg-color);
72
73
 
73
74
  // Lozenges
74
75
  --aui-lozenge-bg-color: @ak-color-N500;
@@ -419,7 +420,8 @@
419
420
 
420
421
  // Avatars
421
422
  --aui-avatar-outline: @ak-color-N0;
422
- --aui-avatar-text: @ak-color-N100;
423
+ --aui-avatar-text: var(--aui-button-default-text-color);
424
+ --aui-avatar-background: var(--aui-button-default-bg-color);
423
425
 
424
426
  // Lozenges
425
427
  --aui-lozenge-bg-color: @ak-color-N500;
@@ -769,7 +771,8 @@
769
771
 
770
772
  // Avatars
771
773
  --aui-avatar-outline: var(--ds-border-inverse, @ak-color-N0);
772
- --aui-avatar-text: var(--ds-text-inverse, @ak-color-N100);
774
+ --aui-avatar-text: var(--aui-button-default-text-color);
775
+ --aui-avatar-background: var(--aui-button-default-bg-color);
773
776
 
774
777
  // Lozenges
775
778
  --aui-lozenge-bg-color: var(--ds-background-neutral-bold, @ak-color-N500);
@@ -1,26 +1,26 @@
1
- @aui-old-icon-font-family: "Atlassian Icons";
2
- @aui-old-icon-font-file: "atlassian-icons";
3
- @aui-old-icon-font-id: "atlassian-icons";
1
+ @aui-old-icon-font-family: 'Atlassian Icons';
2
+ @aui-old-icon-font-file: 'atlassian-icons';
3
+ @aui-old-icon-font-id: 'atlassian-icons';
4
4
 
5
- @aui-icon-font-family: "Adgs Icons";
6
- @aui-icon-font-file: "adgs-icons";
7
- @aui-icon-font-id: "adgs-icons";
5
+ @aui-icon-font-family: 'Adgs Icons';
6
+ @aui-icon-font-file: 'adgs-icons';
7
+ @aui-icon-font-id: 'adgs-icons';
8
8
 
9
9
  // glyphs
10
- @aui-glyph-check: "\f194";
11
- @aui-glyph-check-circle: "\f104";
12
- @aui-glyph-chevron-down: "\f15b";
13
- @aui-glyph-chevron-right: "\f11c";
14
- @aui-glyph-close: "\f11b";
15
- @aui-glyph-exclamation-triangle: "\f1b3";
16
- @aui-glyph-exclamation-circle: "\f15a";
17
- @aui-glyph-question-circle: "\F255";
18
- @aui-glyph-info-circle: "\f234";
19
- @aui-glyph-more-actions: "\f17f"; // the "more" icon; should be three dots.
20
- @aui-glyph-search: "\f18c";
21
- @aui-glyph-search-small: "\f18d";
22
- @aui-glyph-radio: "\f500";
23
- @aui-glyph-remove: "\f188";
10
+ @aui-glyph-check: '\f194';
11
+ @aui-glyph-check-circle: '\f104';
12
+ @aui-glyph-chevron-down: '\f15b';
13
+ @aui-glyph-chevron-right: '\f11c';
14
+ @aui-glyph-close: '\f11b';
15
+ @aui-glyph-exclamation-triangle: '\f1b3';
16
+ @aui-glyph-exclamation-circle: '\f15a';
17
+ @aui-glyph-question-circle: '\F255';
18
+ @aui-glyph-info-circle: '\f234';
19
+ @aui-glyph-more-actions: '\f17f'; // the "more" icon; should be three dots.
20
+ @aui-glyph-search: '\f18c';
21
+ @aui-glyph-search-small: '\f18d';
22
+ @aui-glyph-radio: '\f500';
23
+ @aui-glyph-remove: '\f188';
24
24
 
25
- @aui-glyph-sorted-ascending: "\f1ac";
26
- @aui-glyph-sorted-descending: "\f140";
25
+ @aui-glyph-sorted-ascending: '\f1ac';
26
+ @aui-glyph-sorted-descending: '\f140';
@@ -11,4 +11,4 @@
11
11
  @aui-space-500: var(--ds-space-500, 40px);
12
12
  @aui-space-600: var(--ds-space-600, 48px);
13
13
  @aui-space-800: var(--ds-space-800, 64px);
14
- @aui-space-1000: var(--ds-space-1000, 80px);
14
+ @aui-space-1000: var(--ds-space-1000, 80px);
@@ -2,9 +2,12 @@
2
2
 
3
3
  // ### Fonts
4
4
  // Stacks
5
- @aui-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
6
- @aui-font-family-ja: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "MS Pゴシック", Verdana, Arial, sans-serif;
7
- @aui-code-font-family: "SFMono-Medium", "SF Mono", "Segoe UI Mono", "Roboto Mono", "Ubuntu Mono", Menlo, Courier, monospace;
5
+ @aui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
6
+ 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
7
+ @aui-font-family-ja: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo,
8
+ 'MS Pゴシック', Verdana, Arial, sans-serif;
9
+ @aui-code-font-family: 'SFMono-Medium', 'SF Mono', 'Segoe UI Mono', 'Roboto Mono', 'Ubuntu Mono',
10
+ Menlo, Courier, monospace;
8
11
 
9
12
  // Sizes and line heights
10
13
  @aui-font-size-xxxlarge: 29px;
@@ -17,13 +17,11 @@
17
17
  @design-tokens-light-theme-enabled: ~'@{design-tokens-mode-enabled}@{light-mode-enabled}';
18
18
  @design-tokens-dark-theme-enabled: ~'@{design-tokens-mode-enabled}@{dark-mode-enabled}';
19
19
 
20
-
21
20
  @{design-tokens-mode-enabled} {
22
21
  #aui-themes.design-tokens();
23
- };
22
+ }
24
23
 
25
24
  #aui-themes {
26
-
27
25
  // The mixins are intended to apply certain styles only when the light or
28
26
  // dark color mode is on. They support both the classic approach to the
29
27
  // themes and the new recommended design-tokens one. `data-color-mode`
@@ -2,7 +2,6 @@
2
2
 
3
3
  #aui {
4
4
  .aui-dropdown2-trigger-chevron-icon(@glyphsize: @aui-icon-size-small; @canvassize: @aui-icon-size-small-canvas) {
5
-
6
5
  #aui.icon-pseudoelement(@aui-icon-font-family);
7
6
  content: @aui-glyph-chevron-down;
8
7
  font-size: @glyphsize;
@@ -46,14 +46,22 @@
46
46
  // Remove default focus styles for mouse users ONLY if
47
47
  // :focus-visible (or its polyfill) is supported on this platform.
48
48
  // The selectors are discrete because CSS ignores an entire ruleset if one selector is invalid.
49
- html:not(.aui-no-focusvisible).js-focus-visible &:focus:not(.focus-visible) { .hide-outline(); }
50
- html:not(.aui-no-focusvisible) &:focus:not(:focus-visible) { .hide-outline(); }
49
+ html:not(.aui-no-focusvisible).js-focus-visible &:focus:not(.focus-visible) {
50
+ .hide-outline();
51
+ }
52
+ html:not(.aui-no-focusvisible) &:focus:not(:focus-visible) {
53
+ .hide-outline();
54
+ }
51
55
 
52
56
  // Affect the potential CSS standard pseudo-selector
53
57
  // Its mozilla-specific implementation, and
54
58
  // a CSS class added by the WICG polyfill.
55
59
  // The selectors are discrete because CSS ignores an entire ruleset if one selector is invalid.
56
- html:not(.aui-no-focusvisible).js-focus-visible &.focus-visible { @rules(); }
57
- html:not(.aui-no-focusvisible) &:focus-visible { @rules(); }
60
+ html:not(.aui-no-focusvisible).js-focus-visible &.focus-visible {
61
+ @rules();
62
+ }
63
+ html:not(.aui-no-focusvisible) &:focus-visible {
64
+ @rules();
65
+ }
58
66
  }
59
67
  }
@@ -11,13 +11,13 @@
11
11
  }
12
12
 
13
13
  .legacy-edge(@rules) {
14
- @supports (-ms-accelerator:true) or (-ms-ime-align:auto) {
14
+ @supports (-ms-accelerator: true) or (-ms-ime-align: auto) {
15
15
  @rules();
16
16
  }
17
17
  }
18
18
 
19
19
  .firefox(@rules) {
20
- @media all and (min--moz-device-pixel-ratio:0) {
20
+ @media all and (min--moz-device-pixel-ratio: 0) {
21
21
  @rules();
22
22
  }
23
23
  }
@@ -35,7 +35,9 @@
35
35
 
36
36
  // Internal use only
37
37
  .z-base(@shadow) {
38
- box-shadow: @shadow, 0 0 1px var(--aui-shadow2);
38
+ box-shadow:
39
+ @shadow,
40
+ 0 0 1px var(--aui-shadow2);
39
41
  // Improve legibility of the element's "border" in Legacy Edge.
40
42
  .legacy-edge({
41
43
  box-shadow: @shadow,