@idds/styles 1.0.26

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 (81) hide show
  1. package/README.md +147 -0
  2. package/package.json +55 -0
  3. package/src/colors/brands/bgn.css +29 -0
  4. package/src/colors/brands/bkn.css +32 -0
  5. package/src/colors/brands/inagov.css +39 -0
  6. package/src/colors/brands/inaku.css +28 -0
  7. package/src/colors/brands/inapas.css +28 -0
  8. package/src/colors/brands/lan.css +38 -0
  9. package/src/colors/brands/pan-rb.css +30 -0
  10. package/src/colors/index.css +11 -0
  11. package/src/colors/primitives/index.css +150 -0
  12. package/src/colors/product/index.css +205 -0
  13. package/src/colors/utilities/index.css +77 -0
  14. package/src/components/accordion-card.css +99 -0
  15. package/src/components/accordion.css +120 -0
  16. package/src/components/action-dropdown.css +140 -0
  17. package/src/components/alert.css +180 -0
  18. package/src/components/avatar.css +182 -0
  19. package/src/components/badge.css +244 -0
  20. package/src/components/bottom-sheet.css +61 -0
  21. package/src/components/breadcrumb.css +94 -0
  22. package/src/components/button-group.css +130 -0
  23. package/src/components/button.css +233 -0
  24. package/src/components/card.css +488 -0
  25. package/src/components/carousel.css +100 -0
  26. package/src/components/chart.css +81 -0
  27. package/src/components/checkbox.css +211 -0
  28. package/src/components/chip.css +228 -0
  29. package/src/components/collapse.css +84 -0
  30. package/src/components/confirmation.css +131 -0
  31. package/src/components/date-picker.css +1063 -0
  32. package/src/components/divider.css +174 -0
  33. package/src/components/drawer.css +757 -0
  34. package/src/components/dropdown.css +369 -0
  35. package/src/components/field-input-table.css +347 -0
  36. package/src/components/file-upload.css +357 -0
  37. package/src/components/input-search.css +428 -0
  38. package/src/components/linear-progress-indicator.css +34 -0
  39. package/src/components/modal.css +497 -0
  40. package/src/components/month-picker.css +325 -0
  41. package/src/components/multiple-choice-grid.css +383 -0
  42. package/src/components/pagination.css +415 -0
  43. package/src/components/password-input.css +472 -0
  44. package/src/components/phone-input.css +412 -0
  45. package/src/components/progress-bar.css +447 -0
  46. package/src/components/radio-input.css +263 -0
  47. package/src/components/reset.css +431 -0
  48. package/src/components/select-dropdown.css +663 -0
  49. package/src/components/select-option.css +217 -0
  50. package/src/components/skeleton.css +488 -0
  51. package/src/components/spinner.css +450 -0
  52. package/src/components/stepper.css +209 -0
  53. package/src/components/tab-horizontal.css +278 -0
  54. package/src/components/tab-vertical.css +261 -0
  55. package/src/components/table-progress-bar.css +48 -0
  56. package/src/components/table.css +538 -0
  57. package/src/components/text-area.css +216 -0
  58. package/src/components/text-field.css +275 -0
  59. package/src/components/theme-toggle.css +259 -0
  60. package/src/components/time-picker.css +436 -0
  61. package/src/components/toast.css +245 -0
  62. package/src/components/toggle.css +223 -0
  63. package/src/components/tooltip.css +452 -0
  64. package/src/components/year-picker.css +423 -0
  65. package/src/index.css +3 -0
  66. package/src/tailwind/css/bgn.css +43 -0
  67. package/src/tailwind/css/bkn.css +37 -0
  68. package/src/tailwind/css/idds.css +231 -0
  69. package/src/tailwind/css/inagov.css +33 -0
  70. package/src/tailwind/css/inaku.css +33 -0
  71. package/src/tailwind/css/inapas.css +33 -0
  72. package/src/tailwind/css/lan.css +43 -0
  73. package/src/tailwind/css/pan-rb.css +35 -0
  74. package/src/tailwind/ts/bgn.ts +20 -0
  75. package/src/tailwind/ts/bkn.ts +38 -0
  76. package/src/tailwind/ts/idds.ts +240 -0
  77. package/src/tailwind/ts/inagov.ts +35 -0
  78. package/src/tailwind/ts/inaku.ts +35 -0
  79. package/src/tailwind/ts/inapas.ts +35 -0
  80. package/src/tailwind/ts/lan.ts +45 -0
  81. package/src/tailwind/ts/panrb.ts +37 -0
@@ -0,0 +1,211 @@
1
+ /**
2
+ * Checkbox Component Styles
3
+ * Menggunakan BEM naming convention dengan prefix "ina-" dan state modifiers
4
+ */
5
+
6
+ .ina-checkbox {
7
+ /* Main container - label wrapper */
8
+ display: flex;
9
+ align-items: flex-start;
10
+ gap: var(--ina-spacing-3);
11
+ }
12
+
13
+ .ina-checkbox__input {
14
+ /* Hidden native input */
15
+ position: absolute;
16
+ opacity: 0;
17
+ pointer-events: none;
18
+ }
19
+
20
+ .ina-checkbox__box {
21
+ /* Visual checkbox box */
22
+ flex-shrink: 0;
23
+ width: 1rem; /* w-4 */
24
+ height: 1rem; /* h-4 */
25
+ max-width: 1rem;
26
+ max-height: 1rem;
27
+ font-size: var(--ina-font-2xs);
28
+ border: 1px solid var(--ina-stroke-primary);
29
+ background-color: var(--ina-background-primary);
30
+ border-radius: var(--ina-radius-base);
31
+ display: flex;
32
+ align-items: center;
33
+ justify-content: center;
34
+ transition: background-color 150ms ease-in-out, border-color 150ms ease-in-out;
35
+ }
36
+
37
+ @media (min-width: 768px) {
38
+ .ina-checkbox__box {
39
+ width: 1.25rem; /* md:w-5 */
40
+ height: 1.25rem; /* md:h-5 */
41
+ }
42
+ }
43
+
44
+ .ina-checkbox__content {
45
+ /* Container untuk label dan subtext */
46
+ display: flex;
47
+ flex-direction: column;
48
+ }
49
+
50
+ .ina-checkbox__label {
51
+ font-size: var(--ina-font-sm);
52
+ color: var(--ina-content-primary);
53
+ margin: 0;
54
+ }
55
+
56
+ @media (min-width: 768px) {
57
+ .ina-checkbox__label {
58
+ font-size: var(--ina-font-base); /* md:text-base */
59
+ }
60
+ }
61
+
62
+ .ina-checkbox__subtext {
63
+ font-size: var(--ina-font-xs);
64
+ color: var(--ina-content-secondary);
65
+ margin-top: 0.125rem;
66
+ margin: 0;
67
+ }
68
+
69
+ @media (min-width: 768px) {
70
+ .ina-checkbox__subtext {
71
+ font-size: var(--ina-font-sm); /* md:text-sm */
72
+ }
73
+ }
74
+
75
+ /* Modifier for checked state */
76
+ .ina-checkbox__box--checked {
77
+ background-color: var(--ina-content-primary);
78
+ border-color: var(--ina-content-primary);
79
+ }
80
+
81
+ /* Modifier for indeterminate state */
82
+ .ina-checkbox__box--indeterminate {
83
+ background-color: var(--ina-content-primary);
84
+ border-color: var(--ina-content-primary);
85
+ }
86
+
87
+ /* Modifier for invalid state */
88
+ .ina-checkbox__box--invalid {
89
+ border-color: var(
90
+ --ina-sentiment-negative-500,
91
+ var(--ina-error-500)
92
+ ) !important;
93
+ }
94
+
95
+ /* Modifier for disabled state */
96
+ .ina-checkbox--disabled {
97
+ cursor: not-allowed;
98
+ }
99
+
100
+ .ina-checkbox--disabled .ina-checkbox__box--unchecked,
101
+ .ina-checkbox--disabled .ina-checkbox__box--checked,
102
+ .ina-checkbox--disabled .ina-checkbox__box--indeterminate {
103
+ background-color: var(--ina-background-tertiary);
104
+ border-color: var(--ina-stroke-secondary);
105
+ }
106
+
107
+ .ina-checkbox--disabled .ina-checkbox__box--unchecked {
108
+ background-color: var(--ina-background-tertiary);
109
+ border-color: var(--ina-stroke-secondary);
110
+ }
111
+
112
+ .ina-checkbox--disabled .ina-checkbox__label {
113
+ color: var(--ina-content-primary);
114
+ }
115
+
116
+ .ina-checkbox--disabled .ina-checkbox__icon {
117
+ color: var(--ina-stroke-secondary);
118
+ }
119
+
120
+ /* Default unchecked state hover effect */
121
+ .ina-checkbox__box--unchecked:hover {
122
+ border-color: var(--ina-stroke-secondary);
123
+ }
124
+
125
+ /* Icon styling */
126
+ .ina-checkbox__icon {
127
+ color: var(--ina-neutral-25); /* white */
128
+ display: flex;
129
+ align-items: center;
130
+ justify-content: center;
131
+ }
132
+
133
+ /* Disabled icon color */
134
+ .ina-checkbox--disabled .ina-checkbox__icon {
135
+ color: var(--ina-neutral-400);
136
+ }
137
+
138
+ /* Focus state menggunakan peer selector untuk accessibility */
139
+ .ina-checkbox__input:focus + .ina-checkbox__box {
140
+ outline: 3px solid #f3f3f3;
141
+ outline-offset: -1px;
142
+ }
143
+
144
+ /* Focus state untuk indeterminate checkbox */
145
+ .ina-checkbox__input:focus + .ina-checkbox__box--indeterminate {
146
+ outline: 3px solid #f3f3f3;
147
+ }
148
+
149
+ /* Focus state untuk checked checkbox */
150
+ .ina-checkbox__input:focus + .ina-checkbox__box--checked {
151
+ outline: 3px solid #f3f3f3;
152
+ }
153
+
154
+ /* Invalid state yang tidak disabled */
155
+ .ina-checkbox:not(.ina-checkbox--disabled) .ina-checkbox__box--invalid:hover {
156
+ border-color: var(--ina-negative-600, var(--ina-error-600));
157
+ }
158
+
159
+ /* Interactive states */
160
+ .ina-checkbox:not(.ina-checkbox--disabled) {
161
+ cursor: pointer;
162
+ }
163
+
164
+ .ina-checkbox:not(.ina-checkbox--disabled) .ina-checkbox__box {
165
+ cursor: pointer;
166
+ }
167
+
168
+ .ina-checkbox:not(.ina-checkbox--disabled) .ina-checkbox__label {
169
+ cursor: pointer;
170
+ }
171
+
172
+ /* Animation untuk transisi state */
173
+ .ina-checkbox__icon {
174
+ transition: color 150ms ease-in-out;
175
+ }
176
+
177
+ /* Accessibility improvements */
178
+ @media (prefers-reduced-motion: reduce) {
179
+ .ina-checkbox__box,
180
+ .ina-checkbox__icon {
181
+ transition: none;
182
+ }
183
+ }
184
+
185
+ /* High contrast mode support */
186
+ @media (prefers-contrast: high) {
187
+ .ina-checkbox__box {
188
+ border-width: 2px;
189
+ }
190
+
191
+ .ina-checkbox__box--checked,
192
+ .ina-checkbox__box--indeterminate {
193
+ border-width: 2px;
194
+ }
195
+ }
196
+
197
+ /* Dark mode support */
198
+ /* @media (prefers-color-scheme: dark) {
199
+ .ina-checkbox__box {
200
+ border-color: var(--ina-neutral-600);
201
+ background-color: var(--ina-neutral-900);
202
+ }
203
+
204
+ .ina-checkbox__box--unchecked:hover {
205
+ border-color: var(--ina-neutral-500);
206
+ }
207
+
208
+ .ina-checkbox__box--invalid {
209
+ border-color: var(--ina-error-400) !important;
210
+ }
211
+ } */
@@ -0,0 +1,228 @@
1
+ /**
2
+ * Chip Component Styles
3
+ * Menggunakan BEM naming convention dengan prefix "ina-"
4
+ * Sesuai dengan design system Figma
5
+ */
6
+
7
+ .ina-chip {
8
+ /* Main container */
9
+ display: flex;
10
+ flex-direction: column;
11
+ gap: var(--ina-spacing-2);
12
+ }
13
+
14
+ .ina-chip__list {
15
+ /* Container untuk semua chips */
16
+ display: flex;
17
+ flex-wrap: wrap;
18
+ gap: var(--ina-spacing-2);
19
+ }
20
+
21
+ .ina-chip__item {
22
+ /* Base styles */
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: center;
26
+ border-radius: var(--ina-radius-full);
27
+ font-weight: 500;
28
+ border: 1px solid;
29
+ transition: background-color 150ms ease-in-out, border-color 150ms ease-in-out,
30
+ color 150ms ease-in-out;
31
+ cursor: pointer;
32
+ outline: none;
33
+ box-sizing: border-box;
34
+ }
35
+
36
+ /* Size: Small */
37
+ .ina-chip__item--size-small {
38
+ height: 24px;
39
+ font-size: 12px;
40
+ padding: 0 10px;
41
+ }
42
+
43
+ /* Size: Medium */
44
+ .ina-chip__item--size-medium {
45
+ height: 32px;
46
+ font-size: 14px;
47
+ padding: 0 12px;
48
+ }
49
+
50
+ /* ============================================
51
+ FILLED VARIANT
52
+ ============================================ */
53
+
54
+ /* Filled - Default State */
55
+ .ina-chip__item--variant-filled:not(.ina-chip__item--selected):not(.ina-chip__item--disabled) {
56
+ background-color: var(--ina-primary-25);
57
+ color: var(--ina-content-primary);
58
+ border-color: var(--ina-primary-25);
59
+ }
60
+
61
+ /* Filled - Hover State */
62
+ .ina-chip__item--variant-filled:not(.ina-chip__item--selected):not(.ina-chip__item--disabled):hover {
63
+ background-color: var(--ina-primary-50);
64
+ color: var(--ina-content-primary);
65
+ border-color: var(--ina-primary-25);
66
+ }
67
+
68
+ /* Filled - Selected State */
69
+ .ina-chip__item--variant-filled.ina-chip__item--selected {
70
+ background-color: var(--ina-primary-300);
71
+ color: var(--ina-neutral-25, #ffffff);
72
+ border-color: var(--ina-primary-300);
73
+ }
74
+
75
+ /* Filled - Disabled State */
76
+ .ina-chip__item--variant-filled.ina-chip__item--disabled {
77
+ background-color: var(--ina-background-tertiary);
78
+ color: var(--ina-content-tertiary);
79
+ border-color: var(--ina-background-tertiary);
80
+ cursor: not-allowed;
81
+ pointer-events: none;
82
+ }
83
+
84
+ /* ============================================
85
+ OUTLINE VARIANT
86
+ ============================================ */
87
+
88
+ /* Outline - Default State */
89
+ .ina-chip__item--variant-outline:not(.ina-chip__item--selected):not(.ina-chip__item--disabled) {
90
+ background-color: var(--ina-neutral-25, #ffffff);
91
+ color: var(--ina-content-primary);
92
+ border-color: var(--ina-stroke-primary);
93
+ }
94
+
95
+ /* Outline - Hover State */
96
+ .ina-chip__item--variant-outline:not(.ina-chip__item--selected):not(.ina-chip__item--disabled):hover {
97
+ background-color: var(--ina-primary-50);
98
+ color: var(--ina-content-primary);
99
+ border-color: var(--ina-stroke-primary);
100
+ }
101
+
102
+ /* Outline - Selected State */
103
+ .ina-chip__item--variant-outline.ina-chip__item--selected {
104
+ background-color: var(--ina-primary-25);
105
+ color: var(--ina-primary-600);
106
+ border-color: var(--ina-primary-600);
107
+ }
108
+
109
+ /* Outline - Disabled State */
110
+ .ina-chip__item--variant-outline.ina-chip__item--disabled {
111
+ background-color: var(--ina-background-tertiary);
112
+ color: var(--ina-content-tertiary);
113
+ border-color: var(--ina-stroke-primary);
114
+ cursor: not-allowed;
115
+ pointer-events: none;
116
+ }
117
+
118
+ /* Focus state */
119
+ .ina-chip__item:focus-visible {
120
+ outline: 2px solid var(--ina-primary-500);
121
+ outline-offset: 2px;
122
+ }
123
+
124
+ /* Active/pressed state */
125
+ .ina-chip__item:active:not(.ina-chip__item--disabled) {
126
+ transform: scale(0.98);
127
+ }
128
+
129
+ /* Custom field styling */
130
+ .ina-chip__custom-field {
131
+ margin-top: var(--ina-spacing-2);
132
+ }
133
+
134
+ .ina-chip__custom-field .ina-text-field {
135
+ /* Targeting TextField component styling */
136
+ max-width: 50%; /* sm:max-w-1/2 */
137
+ }
138
+
139
+ @media (min-width: 768px) {
140
+ .ina-chip__custom-field .ina-text-field {
141
+ max-width: 25%; /* md:max-w-1/4 */
142
+ }
143
+ }
144
+
145
+ /* Loading state */
146
+ .ina-chip__item--loading {
147
+ position: relative;
148
+ pointer-events: none;
149
+ }
150
+
151
+ .ina-chip__item--loading::after {
152
+ content: '';
153
+ position: absolute;
154
+ top: 50%;
155
+ left: 50%;
156
+ transform: translate(-50%, -50%);
157
+ width: 0.75rem;
158
+ height: 0.75rem;
159
+ border: 1px solid transparent;
160
+ border-top: 1px solid currentColor;
161
+ border-radius: 50%;
162
+ animation: chip-spin 1s linear infinite;
163
+ }
164
+
165
+ @keyframes chip-spin {
166
+ 0% {
167
+ transform: translate(-50%, -50%) rotate(0deg);
168
+ }
169
+ 100% {
170
+ transform: translate(-50%, -50%) rotate(360deg);
171
+ }
172
+ }
173
+
174
+ /* Responsive adjustments */
175
+ @media (max-width: 640px) {
176
+ .ina-chip__list {
177
+ gap: var(--ina-spacing-1);
178
+ }
179
+
180
+ .ina-chip__custom-field .ina-text-field {
181
+ max-width: 100%; /* Full width on small screens */
182
+ }
183
+ }
184
+
185
+ /* Accessibility improvements */
186
+ @media (prefers-reduced-motion: reduce) {
187
+ .ina-chip__item,
188
+ .ina-chip__item:active {
189
+ transition: none;
190
+ transform: none;
191
+ }
192
+
193
+ .ina-chip__item--loading::after {
194
+ animation: none;
195
+ }
196
+ }
197
+
198
+ /* High contrast mode */
199
+ @media (prefers-contrast: high) {
200
+ .ina-chip__item {
201
+ border-width: 2px;
202
+ }
203
+
204
+ .ina-chip__item:focus-visible {
205
+ outline-width: 3px;
206
+ }
207
+ }
208
+
209
+ /* Focus management */
210
+ .ina-chip__item[tabindex='-1'] {
211
+ opacity: 0.6;
212
+ }
213
+
214
+ /* Animation untuk chip appearance */
215
+ .ina-chip__item {
216
+ animation: chip-fade-in 150ms ease-out;
217
+ }
218
+
219
+ @keyframes chip-fade-in {
220
+ 0% {
221
+ opacity: 0;
222
+ transform: scale(0.9);
223
+ }
224
+ 100% {
225
+ opacity: 1;
226
+ transform: scale(1);
227
+ }
228
+ }
@@ -0,0 +1,84 @@
1
+ /**
2
+ * Collapse Component Styles
3
+ * Menggunakan BEM naming convention dengan prefix "ina-"
4
+ */
5
+
6
+ .ina-collapse {
7
+ /* Base collapse container */
8
+ overflow: hidden;
9
+ transition: max-height var(--ina-transition-base);
10
+ }
11
+
12
+ /* Animation states */
13
+ .ina-collapse--entering {
14
+ max-height: 0;
15
+ }
16
+
17
+ .ina-collapse--entered {
18
+ max-height: 1000px; /* Adjust as needed, or use auto */
19
+ }
20
+
21
+ .ina-collapse--exiting {
22
+ max-height: 0;
23
+ }
24
+
25
+ /* Smooth height transitions */
26
+ .ina-collapse--auto {
27
+ max-height: auto;
28
+ }
29
+
30
+ /* Customizable animation durations */
31
+ .ina-collapse--slow {
32
+ transition-duration: 3000ms;
33
+ }
34
+
35
+ .ina-collapse--fast {
36
+ transition-duration: 150ms;
37
+ }
38
+
39
+ .ina-collapse--instant {
40
+ transition-duration: 0ms;
41
+ }
42
+
43
+ /* Height-based variants */
44
+ .ina-collapse--small {
45
+ max-height: 200px;
46
+ }
47
+
48
+ .ina-collapse--medium {
49
+ max-height: 400px;
50
+ }
51
+
52
+ .ina-collapse--large {
53
+ max-height: 600px;
54
+ }
55
+
56
+ .ina-collapse--xl {
57
+ max-height: 800px;
58
+ }
59
+
60
+ /* Content wrapper */
61
+ .ina-collapse__content {
62
+ /* Add any specific content styling here */
63
+ }
64
+
65
+ /* Animation easing variants */
66
+ .ina-collapse--ease-in {
67
+ transition-timing-function: ease-in;
68
+ }
69
+
70
+ .ina-collapse--ease-out {
71
+ transition-timing-function: ease-out;
72
+ }
73
+
74
+ .ina-collapse--ease-in-out {
75
+ transition-timing-function: ease-in-out;
76
+ }
77
+
78
+ .ina-collapse--ease-linear {
79
+ transition-timing-function: linear;
80
+ }
81
+
82
+ .ina-collapse--ease-cubic {
83
+ transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
84
+ }
@@ -0,0 +1,131 @@
1
+ /* Confirmation Component Styles */
2
+ .ina-confirmation {
3
+ position: fixed;
4
+ top: 0;
5
+ left: 0;
6
+ right: 0;
7
+ bottom: 0;
8
+ z-index: 1000;
9
+ display: flex;
10
+ align-items: center;
11
+ justify-content: center;
12
+ }
13
+
14
+ .ina-confirmation__backdrop {
15
+ position: absolute;
16
+ top: 0;
17
+ left: 0;
18
+ right: 0;
19
+ bottom: 0;
20
+ background: rgba(0, 0, 0, 0.5);
21
+ }
22
+
23
+ .ina-confirmation__container {
24
+ position: relative;
25
+ z-index: 1001;
26
+ max-width: 500px;
27
+ width: 90%;
28
+ max-height: 90vh;
29
+ overflow-y: auto;
30
+ }
31
+
32
+ .ina-confirmation__dialog {
33
+ background: var(--ina-color-background);
34
+ border-radius: var(--ina-border-radius-lg);
35
+ box-shadow: var(--ina-shadow-xl);
36
+ overflow: hidden;
37
+ }
38
+
39
+ .ina-confirmation__header {
40
+ display: flex;
41
+ align-items: flex-start;
42
+ gap: var(--ina-spacing-md);
43
+ padding: var(--ina-spacing-lg);
44
+ }
45
+
46
+ .ina-confirmation__icon {
47
+ flex-shrink: 0;
48
+ margin-top: var(--ina-spacing-xs);
49
+ }
50
+
51
+ .ina-confirmation__content {
52
+ flex: 1;
53
+ }
54
+
55
+ .ina-confirmation__title {
56
+ font-size: var(--ina-font-size-lg);
57
+ font-weight: var(--ina-font-weight-semibold);
58
+ color: var(--ina-color-text-primary);
59
+ margin-bottom: var(--ina-spacing-xs);
60
+ }
61
+
62
+ .ina-confirmation__description {
63
+ font-size: var(--ina-font-size-sm);
64
+ color: var(--ina-color-text-secondary);
65
+ line-height: 1.5;
66
+ }
67
+
68
+ .ina-confirmation__footer {
69
+ display: flex;
70
+ justify-content: flex-end;
71
+ gap: var(--ina-spacing-sm);
72
+ padding: var(--ina-spacing-lg);
73
+ background: var(--ina-color-surface);
74
+ border-top: 1px solid var(--ina-color-border);
75
+ }
76
+
77
+ .ina-confirmation__button {
78
+ padding: var(--ina-spacing-sm) var(--ina-spacing-md);
79
+ border-radius: var(--ina-border-radius-md);
80
+ font-size: var(--ina-font-size-sm);
81
+ font-weight: var(--ina-font-weight-medium);
82
+ cursor: pointer;
83
+ transition: all 0.2s ease;
84
+ border: 1px solid transparent;
85
+ }
86
+
87
+ .ina-confirmation__button--cancel {
88
+ background: var(--ina-color-background);
89
+ color: var(--ina-color-text-primary);
90
+ border-color: var(--ina-color-border);
91
+ }
92
+
93
+ .ina-confirmation__button--cancel:hover {
94
+ background: var(--ina-color-surface);
95
+ }
96
+
97
+ .ina-confirmation__button--confirm {
98
+ background: var(--ina-color-primary);
99
+ color: var(--ina-color-white);
100
+ }
101
+
102
+ .ina-confirmation__button--confirm:hover {
103
+ background: var(--ina-color-primary-dark);
104
+ }
105
+
106
+ .ina-confirmation__button--variant-warning {
107
+ background: var(--ina-color-warning);
108
+ color: var(--ina-color-white);
109
+ }
110
+
111
+ .ina-confirmation__button--variant-warning:hover {
112
+ background: var(--ina-color-warning-dark);
113
+ }
114
+
115
+ .ina-confirmation__button--variant-error {
116
+ background: var(--ina-color-error);
117
+ color: var(--ina-color-white);
118
+ }
119
+
120
+ .ina-confirmation__button--variant-error:hover {
121
+ background: var(--ina-color-error-dark);
122
+ }
123
+
124
+ .ina-confirmation__button--variant-info {
125
+ background: var(--ina-color-info);
126
+ color: var(--ina-color-white);
127
+ }
128
+
129
+ .ina-confirmation__button--variant-info:hover {
130
+ background: var(--ina-color-info-dark);
131
+ }