@idds/styles 1.0.45 → 1.0.47

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": "@idds/styles",
3
- "version": "1.0.45",
3
+ "version": "1.0.47",
4
4
  "description": "Shared CSS styles and colors for INA Digital Design System",
5
5
  "type": "module",
6
6
  "main": "./src/index.css",
@@ -10,13 +10,9 @@
10
10
  justify-content: space-between;
11
11
  width: 100%;
12
12
  }
13
- .ina-stepper--horizontal .ina-stepper__separator {
14
- position: relative;
15
- bottom: 12px;
16
- }
17
13
  .ina-stepper--vertical .ina-stepper__separator {
18
14
  position: relative;
19
- bottom: 12px;
15
+ left: 12px;
20
16
  }
21
17
 
22
18
  /* Vertical Layout */
@@ -40,7 +36,6 @@
40
36
 
41
37
  .ina-stepper--horizontal-responsive .ina-stepper__item {
42
38
  width: 100%;
43
- margin-bottom: 1rem;
44
39
  align-items: flex-start;
45
40
  }
46
41
 
@@ -78,7 +73,6 @@
78
73
  flex-direction: row;
79
74
  text-align: left;
80
75
  align-items: flex-start;
81
- margin-bottom: 1rem;
82
76
  padding: 0;
83
77
  width: 100%;
84
78
  height: 24px;
@@ -86,6 +80,10 @@
86
80
  max-height: 24px;
87
81
  overflow: visible;
88
82
  }
83
+ .ina-stepper--vertical .ina-stepper__separator,
84
+ .ina-stepper--horizontal-responsive .ina-stepper__separator {
85
+ min-height: 72px;
86
+ }
89
87
 
90
88
  .ina-stepper--vertical .ina-stepper__item:last-child {
91
89
  margin-bottom: 0;
@@ -129,11 +127,18 @@
129
127
 
130
128
  /* Label */
131
129
  .ina-stepper__label {
132
- margin-top: 0.5rem;
133
- font-size: 0.75rem;
134
- color: var(--ina-content-secondary);
130
+ font-size: var(--ina-font-size-xs);
131
+ color: var(--ina-content-primary);
135
132
  transition: color 0.2s ease;
136
133
  white-space: nowrap;
134
+ position: absolute;
135
+ top: 2rem;
136
+ }
137
+ .ina-stepper--vertical .ina-stepper__label,
138
+ .ina-stepper--horizontal-responsive .ina-stepper__label {
139
+ position: absolute;
140
+ left: 2rem;
141
+ top: 0.25rem;
137
142
  }
138
143
 
139
144
  .ina-stepper--vertical .ina-stepper__label {
@@ -48,7 +48,7 @@
48
48
  padding: var(--ina-spacing-3);
49
49
  border-radius: var(--ina-radius-lg);
50
50
  white-space: nowrap;
51
- min-width: fit-content;
51
+ min-width: max-content;
52
52
  max-width: 320px;
53
53
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08),
54
54
  0 4px 6px -2px rgba(10, 13, 18, 0.03);
@@ -405,7 +405,7 @@
405
405
  }
406
406
  .ina-tooltip__content {
407
407
  max-width: 320px;
408
- min-width: fit-content;
408
+ min-width: max-content;
409
409
  }
410
410
  /* Arrow colors - match parent bubble/card background color */
411
411
  /* Following W3Schools pattern: only the side pointing to trigger has color */