@itwin/itwinui-css 0.61.0 → 1.0.0-dev.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.
Files changed (194) hide show
  1. package/README.md +1 -4
  2. package/css/alert.css +272 -138
  3. package/css/all.css +4070 -5172
  4. package/css/anchor.css +0 -4
  5. package/css/{user-icon.css → avatar.css} +51 -71
  6. package/css/badge.css +1 -1
  7. package/css/blockquote.css +0 -3
  8. package/css/breadcrumbs.css +59 -132
  9. package/css/button.css +255 -340
  10. package/css/carousel.css +6 -14
  11. package/css/checkbox.css +149 -0
  12. package/css/code.css +2 -10
  13. package/css/color-picker.css +5 -43
  14. package/css/date-picker.css +0 -59
  15. package/css/dialog.css +0 -5
  16. package/css/expandable-block.css +0 -31
  17. package/css/fieldset.css +0 -5
  18. package/css/file-upload.css +0 -15
  19. package/css/footer.css +0 -8
  20. package/css/global.css +8 -63
  21. package/css/header.css +312 -398
  22. package/css/icon.css +0 -30
  23. package/css/information-panel.css +1 -15
  24. package/css/input.css +162 -0
  25. package/css/keyboard.css +1 -5
  26. package/css/location-marker.css +0 -11
  27. package/css/menu.css +0 -16
  28. package/css/progress-indicator.css +1 -93
  29. package/css/radio-tile.css +38 -65
  30. package/css/radio.css +156 -0
  31. package/css/select.css +230 -0
  32. package/css/side-navigation.css +5 -20
  33. package/css/skip-to-content.css +0 -3
  34. package/css/slider.css +2 -14
  35. package/css/stepper.css +141 -0
  36. package/css/surface.css +0 -1
  37. package/css/table.css +251 -338
  38. package/css/tabs.css +6 -49
  39. package/css/tag.css +3 -21
  40. package/css/text.css +0 -2
  41. package/css/textarea.css +96 -0
  42. package/css/tile.css +169 -155
  43. package/css/time-picker.css +0 -12
  44. package/css/{toast-notification.css → toast.css} +1 -43
  45. package/css/toggle-switch.css +13 -60
  46. package/css/tooltip.css +0 -3
  47. package/css/tree.css +0 -14
  48. package/css/utils.css +609 -0
  49. package/css/workflow-diagram.css +67 -0
  50. package/package.json +11 -7
  51. package/scss/alert/alert.scss +50 -44
  52. package/scss/alert/classes.scss +24 -4
  53. package/scss/anchor/anchor.scss +76 -1
  54. package/scss/{user-icon/sizes.scss → avatar/avatar-sizes.scss} +6 -5
  55. package/scss/{user-icon/user-icon.scss → avatar/avatar.scss} +35 -70
  56. package/scss/avatar/classes.scss +27 -0
  57. package/scss/{user-icon → avatar}/index.scss +1 -2
  58. package/scss/badge/badge.scss +4 -2
  59. package/scss/blockquote/blockquote.scss +4 -9
  60. package/scss/breadcrumbs/breadcrumbs.scss +13 -18
  61. package/scss/button/borderless.scss +20 -32
  62. package/scss/button/button-group.scss +15 -7
  63. package/scss/button/button.scss +64 -42
  64. package/scss/button/classes.scss +47 -37
  65. package/scss/button/default.scss +33 -41
  66. package/scss/button/idea.scss +4 -2
  67. package/scss/button/index.scss +3 -6
  68. package/scss/button/split-button.scss +45 -0
  69. package/scss/button/variant.scss +44 -0
  70. package/scss/carousel/carousel.scss +12 -23
  71. package/scss/{inputs → checkbox}/checkbox.scss +50 -2
  72. package/scss/checkbox/classes.scss +7 -0
  73. package/scss/checkbox/index.scss +3 -0
  74. package/scss/classes.scss +10 -6
  75. package/scss/code/code.scss +3 -5
  76. package/scss/code/codeblock.scss +7 -21
  77. package/scss/color-picker/color-picker.scss +32 -61
  78. package/scss/date-picker/date-picker.scss +21 -55
  79. package/scss/dialog/dialog.scss +1 -6
  80. package/scss/expandable-block/block.scss +22 -50
  81. package/scss/fieldset/fieldset.scss +6 -12
  82. package/scss/file-upload/file-upload.scss +13 -23
  83. package/scss/footer/footer.scss +5 -15
  84. package/scss/header/classes.scss +70 -2
  85. package/scss/header/header-buttons.scss +316 -0
  86. package/scss/header/header.scss +40 -408
  87. package/scss/header/index.scss +1 -0
  88. package/scss/icon/{mixins.scss → icon.scss} +5 -15
  89. package/scss/icon/index.scss +1 -2
  90. package/scss/index.scss +10 -6
  91. package/scss/information-panel/information-panel.scss +8 -26
  92. package/scss/input/classes.scss +15 -0
  93. package/scss/input/index.scss +4 -0
  94. package/scss/{inputs → input}/input-with-icon.scss +1 -0
  95. package/scss/{inputs → input}/input.scss +15 -25
  96. package/scss/keyboard/keyboard.scss +5 -9
  97. package/scss/location-marker/data-rich.scss +5 -14
  98. package/scss/location-marker/default.scss +1 -3
  99. package/scss/location-marker/location-marker.scss +1 -3
  100. package/scss/location-marker/me.scss +7 -14
  101. package/scss/menu/menu.scss +16 -36
  102. package/scss/non-ideal-state/non-ideal-state.scss +2 -1
  103. package/scss/progress-indicator/classes.scss +0 -4
  104. package/scss/progress-indicator/linear.scss +9 -27
  105. package/scss/progress-indicator/overlay.scss +4 -10
  106. package/scss/progress-indicator/radial.scss +10 -98
  107. package/scss/radio/classes.scss +7 -0
  108. package/scss/radio/index.scss +3 -0
  109. package/scss/{inputs → radio}/radio.scss +1 -1
  110. package/scss/radio-tile/radio-tile.scss +41 -83
  111. package/scss/select/classes.scss +27 -0
  112. package/scss/select/index.scss +3 -0
  113. package/scss/{inputs → select}/select.scss +7 -15
  114. package/scss/side-navigation/side-navigation.scss +26 -34
  115. package/scss/skip-to-content/skip-to-content.scss +2 -3
  116. package/scss/slider/slider.scss +12 -23
  117. package/scss/stepper/classes.scss +32 -0
  118. package/scss/stepper/index.scss +3 -0
  119. package/scss/stepper/stepper.scss +151 -0
  120. package/scss/style/{variables.scss → global-variables.scss} +3 -1
  121. package/scss/style/global.scss +9 -10
  122. package/scss/{icon/variables.scss → style/icon-sizes.scss} +1 -1
  123. package/scss/style/index.scss +6 -6
  124. package/scss/style/theme.scss +0 -39
  125. package/scss/style/typography.scss +5 -4
  126. package/scss/surface/surface.scss +0 -1
  127. package/scss/table/classes.scss +24 -23
  128. package/scss/table/column-filter.scss +2 -5
  129. package/scss/table/index.scss +1 -2
  130. package/scss/table/paginator.scss +22 -30
  131. package/scss/table/sizes.scss +31 -0
  132. package/scss/table/{variables.scss → table-densities.scss} +2 -1
  133. package/scss/table/table.scss +156 -228
  134. package/scss/tabs/borderless.scss +6 -18
  135. package/scss/tabs/default.scss +8 -21
  136. package/scss/tabs/pill.scss +4 -14
  137. package/scss/tabs/tabs.scss +16 -44
  138. package/scss/tag/classes.scss +1 -0
  139. package/scss/tag/tag.scss +9 -19
  140. package/scss/text/mixins.scss +1 -0
  141. package/scss/text/muted.scss +2 -4
  142. package/scss/text/skeleton.scss +8 -11
  143. package/scss/textarea/classes.scss +7 -0
  144. package/scss/textarea/index.scss +3 -0
  145. package/scss/{inputs → textarea}/textarea.scss +2 -1
  146. package/scss/tile/classes.scss +14 -2
  147. package/scss/tile/tile.scss +99 -80
  148. package/scss/time-picker/time-picker.scss +8 -17
  149. package/scss/{toast-notification → toast}/categories.scss +3 -7
  150. package/scss/{toast-notification → toast}/classes.scss +0 -0
  151. package/scss/{toast-notification → toast}/index.scss +0 -0
  152. package/scss/{toast-notification → toast}/toast.scss +7 -16
  153. package/scss/toggle-switch/toggle-switch.scss +11 -30
  154. package/scss/tooltip/tooltip.scss +4 -5
  155. package/scss/tree/tree.scss +10 -22
  156. package/scss/utils/classes.scss +6 -0
  157. package/scss/utils/index.scss +6 -0
  158. package/scss/{inputs → utils/input-container}/classes.scss +0 -48
  159. package/scss/utils/input-container/index.scss +3 -0
  160. package/scss/{inputs/labeled-inputs.scss → utils/input-container/input-container.scss} +16 -113
  161. package/scss/{style → utils}/mixins.scss +26 -43
  162. package/scss/{notification-marker → utils/notification-marker}/classes.scss +0 -0
  163. package/scss/{notification-marker → utils/notification-marker}/index.scss +0 -0
  164. package/scss/{notification-marker → utils/notification-marker}/notification-marker.scss +11 -19
  165. package/scss/{popover → utils/popover}/classes.scss +0 -0
  166. package/scss/{popover → utils/popover}/index.scss +0 -0
  167. package/scss/{popover → utils/popover}/popover.scss +0 -1
  168. package/scss/workflow-diagram/classes.scss +15 -0
  169. package/scss/workflow-diagram/index.scss +3 -0
  170. package/scss/workflow-diagram/workflow-diagram.scss +64 -0
  171. package/src/index.scss +10 -6
  172. package/css/inputs.css +0 -1339
  173. package/css/notification-marker.css +0 -293
  174. package/css/popover.css +0 -14
  175. package/css/reset-global-styles.css +0 -50
  176. package/css/wizard.css +0 -190
  177. package/scss/button/button-icon.scss +0 -12
  178. package/scss/button/cta.scss +0 -31
  179. package/scss/button/disabled.scss +0 -13
  180. package/scss/button/high-visibility.scss +0 -31
  181. package/scss/button/split-menu.scss +0 -66
  182. package/scss/inputs/checkbox-radio.scss +0 -73
  183. package/scss/inputs/index.scss +0 -10
  184. package/scss/reset-global-styles.scss +0 -33
  185. package/scss/style/anchor.scss +0 -82
  186. package/scss/style/ripple.scss +0 -18
  187. package/scss/table/condensed.scss +0 -15
  188. package/scss/table/extra-condensed.scss +0 -19
  189. package/scss/user-icon/classes.scss +0 -27
  190. package/scss/wizard/classes.scss +0 -27
  191. package/scss/wizard/index.scss +0 -5
  192. package/scss/wizard/long.scss +0 -19
  193. package/scss/wizard/wizard.scss +0 -160
  194. package/scss/wizard/workflow.scss +0 -43
@@ -8,11 +8,8 @@
8
8
 
9
9
  .iui-tab {
10
10
  padding: $iui-xs $iui-m;
11
- box-sizing: border-box;
12
- @include themed {
13
- background-color: t(iui-color-background-2);
14
- border: 1px solid t(iui-color-background-5);
15
- }
11
+ background-color: var(--iui-color-background-2);
12
+ border: 1px solid var(--iui-color-background-5);
16
13
 
17
14
  &::after {
18
15
  top: 0;
@@ -20,21 +17,15 @@
20
17
  }
21
18
 
22
19
  &:hover {
23
- @include themed {
24
- background-color: t(iui-color-background-1);
25
- }
20
+ background-color: var(--iui-color-background-1);
26
21
  }
27
22
 
28
23
  &.iui-active {
29
- @include themed {
30
- background-color: t(iui-color-background-1);
31
- }
24
+ background-color: var(--iui-color-background-1);
32
25
  }
33
26
 
34
27
  &[disabled] {
35
- @include themed {
36
- background-color: t(iui-color-background-3);
37
- }
28
+ background-color: var(--iui-color-background-3);
38
29
  }
39
30
 
40
31
  &:focus {
@@ -86,17 +77,13 @@
86
77
  }
87
78
 
88
79
  &.iui-green .iui-tab::after {
89
- @include themed {
90
- background-color: t(iui-color-foreground-positive);
91
- }
80
+ background-color: var(--iui-color-foreground-positive);
92
81
  }
93
82
 
94
83
  ~ .iui-tabs-content {
95
84
  padding-left: $iui-m;
96
85
  padding-right: $iui-m;
97
- @include themed {
98
- background-color: t(iui-color-background-1);
99
- border: 1px solid t(iui-color-background-5);
100
- }
86
+ background-color: var(--iui-color-background-1);
87
+ border: 1px solid var(--iui-color-background-5);
101
88
  }
102
89
  }
@@ -1,24 +1,18 @@
1
1
  // Copyright (c) Bentley Systems, Incorporated. All rights reserved.
2
2
  // See LICENSE.md in the project root for license terms and full copyright notice.
3
3
  @import '../style/index';
4
- @import '../icon/index';
5
4
  @import './tabs';
6
5
 
7
6
  @mixin iui-tabs-pill {
8
7
  justify-content: space-evenly;
8
+ gap: $iui-xxs;
9
9
 
10
10
  > li {
11
11
  flex: 1 1 0;
12
-
13
- &:not(:last-child) {
14
- margin-right: $iui-xxs;
15
- }
16
12
  }
17
13
 
18
14
  &.iui-green .iui-tab:hover {
19
- @include themed {
20
- background-color: rgba(t(iui-color-foreground-positive-rgb), t(iui-opacity-6));
21
- }
15
+ background-color: rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-6));
22
16
  }
23
17
 
24
18
  .iui-tab {
@@ -34,15 +28,11 @@
34
28
  }
35
29
 
36
30
  &:hover {
37
- @include themed {
38
- background-color: rgba(t(iui-color-foreground-primary-rgb), t(iui-opacity-6));
39
- }
31
+ background-color: rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
40
32
  }
41
33
 
42
34
  &[disabled]:hover {
43
- @include themed {
44
- background-color: transparent;
45
- }
35
+ background-color: transparent;
46
36
  }
47
37
  }
48
38
  }
@@ -1,6 +1,7 @@
1
1
  // Copyright (c) Bentley Systems, Incorporated. All rights reserved.
2
2
  // See LICENSE.md in the project root for license terms and full copyright notice.
3
3
  @import '../style/index';
4
+ @import '../utils/index';
4
5
 
5
6
  @mixin iui-tabs {
6
7
  @include iui-reset;
@@ -18,39 +19,27 @@
18
19
  min-height: $iui-component-height;
19
20
  height: 100%;
20
21
  cursor: pointer;
22
+ color: var(--iui-text-color);
21
23
  transition: background-color $iui-speed-fast ease-out;
22
- @include themed {
23
- color: t(iui-text-color);
24
- }
25
24
 
26
25
  &.iui-active {
27
- @include themed {
28
- color: t(iui-color-foreground-primary);
29
- }
26
+ color: var(--iui-color-foreground-primary);
30
27
 
31
28
  .iui-tab-icon {
32
- @include themed {
33
- fill: t(iui-icons-color-primary);
34
- }
29
+ fill: var(--iui-icons-color-primary);
35
30
  }
36
31
 
37
32
  .iui-tab-description {
38
- @include themed {
39
- opacity: t(iui-opacity-1);
40
- }
33
+ opacity: var(--iui-opacity-1);
41
34
  }
42
35
  }
43
36
 
44
37
  &[disabled] {
45
38
  cursor: not-allowed;
46
- @include themed {
47
- color: t(iui-text-color-muted);
48
- }
39
+ color: var(--iui-text-color-muted);
49
40
 
50
41
  .iui-tab-icon {
51
- @include themed {
52
- fill: t(iui-icons-color-actionable-disabled);
53
- }
42
+ fill: var(--iui-icons-color-actionable-disabled);
54
43
  }
55
44
  }
56
45
 
@@ -61,10 +50,8 @@
61
50
  width: $iui-icons-default;
62
51
  height: $iui-icons-default;
63
52
  flex-shrink: 0;
53
+ fill: var(--iui-icons-color-actionable);
64
54
  transition: fill $iui-speed-fast ease-out;
65
- @include themed {
66
- fill: t(iui-icons-color-actionable);
67
- }
68
55
 
69
56
  + .iui-tab-label {
70
57
  margin-left: $iui-s;
@@ -74,25 +61,19 @@
74
61
  .iui-tab-description {
75
62
  display: none;
76
63
  font-size: $iui-font-size-small;
77
- @include themed {
78
- opacity: t(iui-opacity-3);
79
- }
64
+ opacity: var(--iui-opacity-3);
80
65
  }
81
66
 
82
67
  &.iui-green .iui-tab {
83
68
  &:focus {
84
- outline-color: t(iui-color-foreground-positive);
69
+ outline-color: var(--iui-color-foreground-positive);
85
70
  }
86
71
 
87
72
  &.iui-active {
88
- @include themed {
89
- color: t(iui-color-foreground-positive);
90
- }
73
+ color: var(--iui-color-foreground-positive);
91
74
 
92
75
  .iui-tab-icon {
93
- @include themed {
94
- fill: t(iui-icons-color-positive);
95
- }
76
+ fill: var(--iui-icons-color-positive);
96
77
  }
97
78
  }
98
79
  }
@@ -100,7 +81,6 @@
100
81
  ~ .iui-tabs-content {
101
82
  padding-top: $iui-baseline;
102
83
  padding-bottom: $iui-baseline;
103
- box-sizing: border-box;
104
84
  }
105
85
  }
106
86
 
@@ -161,9 +141,7 @@
161
141
  .iui-tab::after {
162
142
  content: '';
163
143
  position: absolute;
164
- @include themed {
165
- background-color: t(iui-color-foreground-primary);
166
- }
144
+ background-color: var(--iui-color-foreground-primary);
167
145
  }
168
146
 
169
147
  .iui-active::after {
@@ -173,9 +151,7 @@
173
151
  }
174
152
 
175
153
  &.iui-green .iui-tab::after {
176
- @include themed {
177
- background-color: t(iui-color-foreground-positive);
178
- }
154
+ background-color: var(--iui-color-foreground-positive);
179
155
  }
180
156
  }
181
157
 
@@ -183,15 +159,11 @@
183
159
  &::after {
184
160
  position: absolute;
185
161
  content: ' ';
186
- @include themed {
187
- background-color: t(iui-color-foreground-primary);
188
- }
162
+ background-color: var(--iui-color-foreground-primary);
189
163
  }
190
164
 
191
165
  &.iui-green::after {
192
- @include themed {
193
- background-color: t(iui-color-foreground-positive);
194
- }
166
+ background-color: var(--iui-color-foreground-positive);
195
167
  }
196
168
 
197
169
  @at-root {
@@ -2,6 +2,7 @@
2
2
  // See LICENSE.md in the project root for license terms and full copyright notice.
3
3
  @import './tag';
4
4
  @import '../anchor/index';
5
+ @import '../utils/index';
5
6
 
6
7
  .iui-tag {
7
8
  @include iui-tag;
package/scss/tag/tag.scss CHANGED
@@ -1,8 +1,9 @@
1
1
  // Copyright (c) Bentley Systems, Incorporated. All rights reserved.
2
2
  // See LICENSE.md in the project root for license terms and full copyright notice.
3
3
  @import '../style/index';
4
- @import '../text/mixins';
4
+ @import '../utils/index';
5
5
  @import '../button/index';
6
+ @import '../text/mixins';
6
7
 
7
8
  @mixin iui-tag-base {
8
9
  user-select: all;
@@ -14,9 +15,7 @@
14
15
  @include iui-tag-base;
15
16
 
16
17
  &:not(a) {
17
- @include themed {
18
- color: t(iui-text-color-muted);
19
- }
18
+ color: var(--iui-text-color-muted);
20
19
  }
21
20
  }
22
21
 
@@ -26,7 +25,6 @@
26
25
  margin-top: $iui-component-offset;
27
26
  margin-bottom: $iui-component-offset;
28
27
  border-radius: $iui-border-radius-round;
29
- box-sizing: border-box;
30
28
  padding: 0 $iui-xxs;
31
29
  align-items: center;
32
30
  transition: border-color $iui-speed-fast ease-out;
@@ -34,16 +32,12 @@
34
32
  text-transform: none;
35
33
  cursor: default;
36
34
  -webkit-tap-highlight-color: transparent;
37
- @include themed {
38
- border: 1px solid rgba(t(iui-color-foreground-body-rgb), t(iui-opacity-4));
39
- background-color: t(iui-color-background-1);
40
- color: t(iui-text-color);
41
- }
35
+ border: 1px solid rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
36
+ background-color: var(--iui-color-background-1);
37
+ color: var(--iui-text-color);
42
38
 
43
39
  &:hover {
44
- @include themed {
45
- border-color: rgba(t(iui-color-foreground-body-rgb), t(iui-opacity-1));
46
- }
40
+ border-color: rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
47
41
  }
48
42
  }
49
43
 
@@ -64,9 +58,7 @@
64
58
  }
65
59
 
66
60
  @mixin iui-tag-container {
67
- @include themed {
68
- color: t(iui-text-color-muted);
69
- }
61
+ color: var(--iui-text-color-muted);
70
62
 
71
63
  > a.iui-tag-basic {
72
64
  margin: $iui-xxs;
@@ -92,8 +84,6 @@
92
84
  &.iui-visible {
93
85
  border-radius: $iui-border-radius;
94
86
  padding: $iui-component-offset $iui-sm;
95
- @include themed {
96
- background-color: t(iui-color-background-3);
97
- }
87
+ background-color: var(--iui-color-background-3);
98
88
  }
99
89
  }
@@ -1,6 +1,7 @@
1
1
  // Copyright (c) Bentley Systems, Incorporated. All rights reserved.
2
2
  // See LICENSE.md in the project root for license terms and full copyright notice.
3
3
  @import '../style/index';
4
+ @import '../utils/index';
4
5
 
5
6
  @mixin iui-text-block-spacing {
6
7
  padding: 0;
@@ -1,9 +1,7 @@
1
1
  // Copyright (c) Bentley Systems, Incorporated. All rights reserved.
2
2
  // See LICENSE.md in the project root for license terms and full copyright notice.
3
- @import '../style/index';
3
+ @import '../style/theme';
4
4
 
5
5
  @mixin iui-text-muted {
6
- @include themed {
7
- color: t(iui-text-color-muted);
8
- }
6
+ color: var(--iui-text-color-muted);
9
7
  }
@@ -8,17 +8,14 @@
8
8
  color: transparent;
9
9
  border-radius: $iui-border-radius;
10
10
  cursor: progress;
11
-
12
- @include themed {
13
- background: linear-gradient(
14
- 292deg,
15
- t(iui-text-color-muted),
16
- t(iui-text-color-muted),
17
- t(iui-text-color-placeholder),
18
- t(iui-text-color-muted),
19
- t(iui-text-color-muted)
20
- );
21
- }
11
+ background: linear-gradient(
12
+ 292deg,
13
+ var(--iui-text-color-muted),
14
+ var(--iui-text-color-muted),
15
+ var(--iui-text-color-placeholder),
16
+ var(--iui-text-color-muted),
17
+ var(--iui-text-color-muted)
18
+ );
22
19
  background-size: 200% 100%;
23
20
 
24
21
  @media (forced-colors: active) {
@@ -0,0 +1,7 @@
1
+ // Copyright (c) Bentley Systems, Incorporated. All rights reserved.
2
+ // See LICENSE.md in the project root for license terms and full copyright notice.
3
+ @import './index';
4
+
5
+ .iui-textarea {
6
+ @include iui-textarea;
7
+ }
@@ -0,0 +1,3 @@
1
+ // Copyright (c) Bentley Systems, Incorporated. All rights reserved.
2
+ // See LICENSE.md in the project root for license terms and full copyright notice.
3
+ @import './textarea';
@@ -1,6 +1,7 @@
1
1
  // Copyright (c) Bentley Systems, Incorporated. All rights reserved.
2
2
  // See LICENSE.md in the project root for license terms and full copyright notice.
3
- @import '../style/index';
3
+ @import '../style/global-variables';
4
+ @import '../input/index';
4
5
 
5
6
  @mixin iui-textarea {
6
7
  @include iui-input;
@@ -4,14 +4,26 @@
4
4
 
5
5
  .iui-tile {
6
6
  @include iui-tile;
7
+
8
+ &.iui-positive {
9
+ @include iui-tile-status(positive);
10
+ }
11
+
12
+ &.iui-warning {
13
+ @include iui-tile-status(warning);
14
+ }
15
+
16
+ &.iui-negative {
17
+ @include iui-tile-status(negative);
18
+ }
7
19
  }
8
20
 
9
21
  .iui-tile-thumbnail-type-indicator {
10
- @include iui-tile-thumbnail-type-indicator;
22
+ @include iui-tile-thumbnail-button(type-indicator);
11
23
  }
12
24
 
13
25
  .iui-tile-thumbnail-quick-action {
14
- @include iui-tile-thumbnail-quick-action;
26
+ @include iui-tile-thumbnail-button(quick-action);
15
27
  }
16
28
 
17
29
  .iui-tile-thumbnail-badge-container {