@actabldesign/bellhop-styles 0.0.3 → 0.0.4
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/README.md +3 -3
- package/dist/index.css +1505 -0
- package/llms.txt +206 -0
- package/package.json +27 -23
- package/project.json +29 -0
- package/rollup.config.js +29 -0
- package/{base → src/base}/normalize.css +4 -0
- package/src/index.css +22 -0
- package/src/tokens/bellhop-animations.css +392 -0
- package/src/tokens/bellhop-global.css +175 -0
- package/src/tokens/bellhop-icons.css +77 -0
- package/src/tokens/bellhop-layout.css +216 -0
- package/src/tokens/bellhop-primary-colors.css +96 -0
- package/src/tokens/bellhop-radius.css +14 -0
- package/src/tokens/bellhop-secondary-colors.css +154 -0
- package/src/tokens/bellhop-shadows.css +55 -0
- package/src/tokens/bellhop-spacing.css +66 -0
- package/src/tokens/bellhop-styles.css +174 -0
- package/src/tokens/bellhop-typography.css +112 -0
- package/src/tokens/colors.json +737 -0
- package/src/tokens/colors.mdx +59 -0
- package/src/tokens/index.css +17 -0
- package/components/appbar.css +0 -167
- package/components/autocomplete-menu.css +0 -142
- package/components/avatar-add.css +0 -112
- package/components/avatar.css +0 -253
- package/components/badge-dot.css +0 -78
- package/components/badge.css +0 -337
- package/components/bar-chart-card.css +0 -261
- package/components/bar-chart.css +0 -149
- package/components/breadcrumbs.css +0 -136
- package/components/button.css +0 -266
- package/components/chart-tooltip.css +0 -96
- package/components/checkbox-label.css +0 -53
- package/components/checkbox.css +0 -127
- package/components/container-footer.css +0 -22
- package/components/container.css +0 -17
- package/components/date-picker-content.css +0 -337
- package/components/date-picker.css +0 -103
- package/components/date-range-picker-content.css +0 -85
- package/components/date-range-picker.css +0 -72
- package/components/dropdown-menu.css +0 -204
- package/components/dropdown.css +0 -126
- package/components/empty-state.css +0 -83
- package/components/featured-icon.css +0 -194
- package/components/illustrations.css +0 -120
- package/components/input-autocomplete.css +0 -158
- package/components/input-number.css +0 -2
- package/components/input-verification.css +0 -137
- package/components/input.css +0 -374
- package/components/loader-spinner.css +0 -421
- package/components/logo-box.css +0 -85
- package/components/month-picker-content.css +0 -190
- package/components/month-picker.css +0 -83
- package/components/nav-item.css +0 -110
- package/components/notification.css +0 -262
- package/components/page-navigation.css +0 -294
- package/components/picker-menu.css +0 -43
- package/components/pie-chart-card.css +0 -213
- package/components/pie-chart.css +0 -80
- package/components/product-switcher.css +0 -127
- package/components/property-switcher.css +0 -95
- package/components/radio-button-label.css +0 -53
- package/components/radio-button.css +0 -134
- package/components/sidebar.css +0 -178
- package/components/skeleton-loader.css +0 -47
- package/components/tag.css +0 -214
- package/components/textarea.css +0 -211
- package/components/toggle.css +0 -298
- package/components/tooltip.css +0 -85
- package/components/trend-chart-card.css +0 -189
- package/components/trend-chart.css +0 -94
- package/index.css +0 -8115
|
@@ -1,204 +0,0 @@
|
|
|
1
|
-
/* ==========================================================================
|
|
2
|
-
DROPDOWN MENU COMPONENT
|
|
3
|
-
Shared styles for all frameworks
|
|
4
|
-
========================================================================== */
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
/* Base dropdown menu styles */
|
|
8
|
-
.dropdown-menu {
|
|
9
|
-
width: 240px;
|
|
10
|
-
background: var(--color-white);
|
|
11
|
-
border-radius: var(--radius-md);
|
|
12
|
-
box-shadow: 0px 32px 64px -12px rgba(64, 73, 104, 0.14),
|
|
13
|
-
0px 0px 1px 1px rgba(64, 73, 104, 0.1);
|
|
14
|
-
border: 1px solid var(--color-neutral-200);
|
|
15
|
-
overflow: hidden;
|
|
16
|
-
flex-shrink: 0;
|
|
17
|
-
position: relative;
|
|
18
|
-
box-sizing: border-box;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
/* Only position absolutely when inside a dropdown container */
|
|
22
|
-
.dropdown-container .dropdown-menu {
|
|
23
|
-
position: absolute;
|
|
24
|
-
top: 100%;
|
|
25
|
-
right: 0;
|
|
26
|
-
margin-top: 12px;
|
|
27
|
-
z-index: 1000;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/* ==========================================================================
|
|
31
|
-
HEADER SECTION
|
|
32
|
-
========================================================================== */
|
|
33
|
-
|
|
34
|
-
.dropdown-header {
|
|
35
|
-
padding: var(--spacing-lg) var(--spacing-xl);
|
|
36
|
-
border-bottom: 1px solid var(--color-neutral-200);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.dropdown-header-avatar {
|
|
40
|
-
padding: var(--spacing-lg) var(--spacing-xl);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.avatar-group {
|
|
44
|
-
display: flex;
|
|
45
|
-
align-items: center;
|
|
46
|
-
gap: var(--spacing-lg);
|
|
47
|
-
width: 100%;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.avatar-text {
|
|
51
|
-
display: flex;
|
|
52
|
-
flex-direction: column;
|
|
53
|
-
flex: 1;
|
|
54
|
-
min-width: 0;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.avatar-name {
|
|
58
|
-
font-family: var(--font-inter);
|
|
59
|
-
font-weight: var(--weight-semibold);
|
|
60
|
-
font-size: 14px;
|
|
61
|
-
text-align: left;
|
|
62
|
-
line-height: 1.43;
|
|
63
|
-
color: var(--color-neutral-800);
|
|
64
|
-
margin: 0;
|
|
65
|
-
white-space: nowrap;
|
|
66
|
-
overflow: hidden;
|
|
67
|
-
text-overflow: ellipsis;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.avatar-email {
|
|
71
|
-
font-family: var(--font-inter);
|
|
72
|
-
font-weight: var(--weight-regular);
|
|
73
|
-
font-size: var(--text-sm-size);
|
|
74
|
-
line-height: 1.43;
|
|
75
|
-
color: var(--color-neutral-600);
|
|
76
|
-
margin: 0;
|
|
77
|
-
white-space: nowrap;
|
|
78
|
-
overflow: hidden;
|
|
79
|
-
text-overflow: ellipsis;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.header-title {
|
|
83
|
-
font-family: var(--font-inter);
|
|
84
|
-
font-weight: var(--weight-semibold);
|
|
85
|
-
font-size: var(--text-sm-size);
|
|
86
|
-
line-height: 1.43;
|
|
87
|
-
color: var(--color-neutral-800);
|
|
88
|
-
margin: 0;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
/* ==========================================================================
|
|
92
|
-
MENU ITEMS SECTION
|
|
93
|
-
========================================================================== */
|
|
94
|
-
|
|
95
|
-
.menu-items {
|
|
96
|
-
padding: var(--spacing-xs) 0;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.dropdown-item {
|
|
100
|
-
padding: var(--spacing-xxs) var(--spacing-sm);
|
|
101
|
-
cursor: pointer;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.dropdown-item-disabled {
|
|
105
|
-
opacity: 0.5;
|
|
106
|
-
cursor: not-allowed;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
.item-content {
|
|
110
|
-
display: flex;
|
|
111
|
-
align-items: center;
|
|
112
|
-
gap: var(--spacing-lg);
|
|
113
|
-
padding: var(--spacing-xl) var(--spacing-md);
|
|
114
|
-
border-radius: var(--radius-sm);
|
|
115
|
-
transition: background-color 0.15s ease;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.dropdown-item:hover:not(.dropdown-item-disabled) .item-content {
|
|
119
|
-
background: var(--color-neutral-100);
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.item-main {
|
|
123
|
-
display: flex;
|
|
124
|
-
align-items: center;
|
|
125
|
-
gap: var(--spacing-md);
|
|
126
|
-
flex: 1;
|
|
127
|
-
min-width: 0;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.item-icon {
|
|
131
|
-
font-size: var(--text-xl-size);
|
|
132
|
-
color: var(--color-neutral-600);
|
|
133
|
-
flex-shrink: 0;
|
|
134
|
-
display: flex;
|
|
135
|
-
align-items: center;
|
|
136
|
-
justify-content: center;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.item-text {
|
|
140
|
-
font-family: var(--font-inter);
|
|
141
|
-
font-weight: var(--weight-medium);
|
|
142
|
-
font-size: var(--text-md-size);
|
|
143
|
-
line-height: 1.43;
|
|
144
|
-
color: var(--color-neutral-700);
|
|
145
|
-
flex: 1;
|
|
146
|
-
white-space: nowrap;
|
|
147
|
-
overflow: hidden;
|
|
148
|
-
text-overflow: ellipsis;
|
|
149
|
-
min-width: 0;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.item-shortcut {
|
|
153
|
-
font-family: var(--font-inter);
|
|
154
|
-
font-weight: var(--weight-regular);
|
|
155
|
-
font-size: var(--text-xs-size);
|
|
156
|
-
line-height: 1.5;
|
|
157
|
-
color: var(--color-neutral-500);
|
|
158
|
-
flex-shrink: 0;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
/* ==========================================================================
|
|
162
|
-
DIVIDER
|
|
163
|
-
========================================================================== */
|
|
164
|
-
|
|
165
|
-
.menu-divider {
|
|
166
|
-
height: 1px;
|
|
167
|
-
background: var(--color-neutral-200);
|
|
168
|
-
margin: var(--spacing-xs) 0;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
/* ==========================================================================
|
|
172
|
-
SCROLLABLE VARIANT
|
|
173
|
-
========================================================================== */
|
|
174
|
-
|
|
175
|
-
.dropdown-menu-scrollable .menu-items {
|
|
176
|
-
max-height: 280px; /* ~7 items at 40px each */
|
|
177
|
-
overflow-y: auto;
|
|
178
|
-
overflow-x: hidden;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
/* Custom scrollbar styling */
|
|
182
|
-
.dropdown-menu-scrollable .menu-items::-webkit-scrollbar {
|
|
183
|
-
width: 6px;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.dropdown-menu-scrollable .menu-items::-webkit-scrollbar-track {
|
|
187
|
-
background: var(--color-neutral-50);
|
|
188
|
-
border-radius: var(--radius-xs);
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.dropdown-menu-scrollable .menu-items::-webkit-scrollbar-thumb {
|
|
192
|
-
background: var(--color-neutral-200);
|
|
193
|
-
border-radius: var(--radius-xs);
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
.dropdown-menu-scrollable .menu-items::-webkit-scrollbar-thumb:hover {
|
|
197
|
-
background: var(--color-neutral-300);
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
/* Firefox scrollbar */
|
|
201
|
-
.dropdown-menu-scrollable .menu-items {
|
|
202
|
-
scrollbar-width: thin;
|
|
203
|
-
scrollbar-color: var(--color-neutral-200) var(--color-neutral-50);
|
|
204
|
-
}
|
package/components/dropdown.css
DELETED
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
.dropdown-container {
|
|
2
|
-
position: relative;
|
|
3
|
-
display: inline-block;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
/* Apply chevron rotation animation specifically to trailing chevron icons */
|
|
7
|
-
.dropdown-container .btn-icon-trailing .material-symbols-outlined {
|
|
8
|
-
transition: transform var(--animation-duration-fast) var(--animation-ease-smooth);
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.dropdown-container .dropdown-open .btn-icon-trailing .material-symbols-outlined {
|
|
12
|
-
transform: rotate(180deg);
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.dropdown-menu {
|
|
16
|
-
position: absolute;
|
|
17
|
-
z-index: 1000;
|
|
18
|
-
transition: all 0.15s ease;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
/* Smart positioning classes */
|
|
22
|
-
|
|
23
|
-
/* Bottom positions */
|
|
24
|
-
.dropdown-menu-bottom-right {
|
|
25
|
-
top: 100%;
|
|
26
|
-
right: 0;
|
|
27
|
-
margin-top: 12px;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.dropdown-menu-bottom-left {
|
|
31
|
-
top: 100%;
|
|
32
|
-
left: 0;
|
|
33
|
-
margin-top: 12px;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.dropdown-menu-bottom-center {
|
|
37
|
-
top: 100%;
|
|
38
|
-
left: 50%;
|
|
39
|
-
transform: translateX(-50%);
|
|
40
|
-
margin-top: 12px;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
/* Top positions */
|
|
44
|
-
.dropdown-menu-top-right {
|
|
45
|
-
bottom: 100%;
|
|
46
|
-
right: 0;
|
|
47
|
-
margin-bottom: 12px;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.dropdown-menu-top-left {
|
|
51
|
-
bottom: 100%;
|
|
52
|
-
left: 0;
|
|
53
|
-
margin-bottom: 12px;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.dropdown-menu-top-center {
|
|
57
|
-
bottom: 100%;
|
|
58
|
-
left: 50%;
|
|
59
|
-
transform: translateX(-50%);
|
|
60
|
-
margin-bottom: 12px;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
/* Right side positions */
|
|
64
|
-
.dropdown-menu-right-top {
|
|
65
|
-
left: 100%;
|
|
66
|
-
top: 0;
|
|
67
|
-
margin-left: 12px;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.dropdown-menu-right-center {
|
|
71
|
-
left: 100%;
|
|
72
|
-
top: 50%;
|
|
73
|
-
transform: translateY(-50%);
|
|
74
|
-
margin-left: 12px;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.dropdown-menu-right-bottom {
|
|
78
|
-
left: 100%;
|
|
79
|
-
bottom: 0;
|
|
80
|
-
margin-left: 12px;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
/* Left side positions */
|
|
84
|
-
.dropdown-menu-left-top {
|
|
85
|
-
right: 100%;
|
|
86
|
-
top: 0;
|
|
87
|
-
margin-right: 12px;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.dropdown-menu-left-center {
|
|
91
|
-
right: 100%;
|
|
92
|
-
top: 50%;
|
|
93
|
-
transform: translateY(-50%);
|
|
94
|
-
margin-right: 12px;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.dropdown-menu-left-bottom {
|
|
98
|
-
right: 100%;
|
|
99
|
-
bottom: 0;
|
|
100
|
-
margin-right: 12px;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
/* Avatar Dropdown Styles */
|
|
104
|
-
.dropdown-avatar {
|
|
105
|
-
cursor: pointer;
|
|
106
|
-
border-radius: var(--radius-full);
|
|
107
|
-
display: block;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.dropdown-avatar .avatar {
|
|
111
|
-
transition: box-shadow var(--animation-duration-fast) var(--animation-ease-smooth);
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.dropdown-avatar-focus .avatar {
|
|
115
|
-
box-shadow: 0 0 0 2px var(--color-brand-500), 0 0 0 4px var(--color-brand-100) !important;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.dropdown-avatar[disabled] {
|
|
119
|
-
cursor: not-allowed;
|
|
120
|
-
opacity: 0.5;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.dropdown-avatar[disabled]:hover {
|
|
124
|
-
transform: none;
|
|
125
|
-
box-shadow: none;
|
|
126
|
-
}
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
/* Empty State Container */
|
|
2
|
-
.empty-state {
|
|
3
|
-
display: flex;
|
|
4
|
-
flex-direction: column;
|
|
5
|
-
align-items: center;
|
|
6
|
-
justify-content: center;
|
|
7
|
-
width: 100%;
|
|
8
|
-
max-width: 512px;
|
|
9
|
-
margin: 0 auto;
|
|
10
|
-
gap: var(--spacing-5xl);
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
/* Content Container */
|
|
14
|
-
.empty-state-content {
|
|
15
|
-
display: flex;
|
|
16
|
-
flex-direction: column;
|
|
17
|
-
align-items: center;
|
|
18
|
-
align-self: stretch;
|
|
19
|
-
gap: var(--spacing-xl);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/* Illustration */
|
|
23
|
-
.empty-state-illustration {
|
|
24
|
-
display: flex;
|
|
25
|
-
justify-content: center;
|
|
26
|
-
align-items: center;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
/* Text Content */
|
|
30
|
-
.empty-state-text {
|
|
31
|
-
display: flex;
|
|
32
|
-
flex-direction: column;
|
|
33
|
-
align-items: center;
|
|
34
|
-
gap: var(--spacing-xs);
|
|
35
|
-
align-self: stretch;
|
|
36
|
-
max-width: 400px;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.empty-state-title {
|
|
40
|
-
font-family: var(--font-inter);
|
|
41
|
-
font-size: var(--text-xl-size);
|
|
42
|
-
font-weight: var(--weight-semibold);
|
|
43
|
-
line-height: var(--text-xl-line);
|
|
44
|
-
color: var(--color-neutral-900);
|
|
45
|
-
margin: 0;
|
|
46
|
-
text-align: center;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.empty-state-description {
|
|
50
|
-
font-family: var(--font-inter);
|
|
51
|
-
font-size: var(--text-md-size);
|
|
52
|
-
font-weight: var(--weight-regular);
|
|
53
|
-
line-height: var(--text-md-line);
|
|
54
|
-
color: var(--color-neutral-600);
|
|
55
|
-
margin: 0;
|
|
56
|
-
text-align: center;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
/* Actions */
|
|
60
|
-
.empty-state-actions {
|
|
61
|
-
display: flex;
|
|
62
|
-
gap: var(--spacing-xl);
|
|
63
|
-
justify-content: center;
|
|
64
|
-
flex-wrap: wrap;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
/* Responsive */
|
|
68
|
-
@media (max-width: 768px) {
|
|
69
|
-
.empty-state {
|
|
70
|
-
max-width: 100%;
|
|
71
|
-
padding: var(--spacing-lg);
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.empty-state-actions {
|
|
75
|
-
flex-direction: column;
|
|
76
|
-
width: 100%;
|
|
77
|
-
align-items: stretch;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.empty-state-text {
|
|
81
|
-
max-width: 320px;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
@@ -1,194 +0,0 @@
|
|
|
1
|
-
.featured-icon {
|
|
2
|
-
display: inline-flex;
|
|
3
|
-
align-items: center;
|
|
4
|
-
justify-content: center;
|
|
5
|
-
transition: all 0.2s ease;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
/* Size variations */
|
|
9
|
-
.featured-icon-sm {
|
|
10
|
-
width: 32px;
|
|
11
|
-
height: 32px;
|
|
12
|
-
border-radius: 6px;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.featured-icon-md {
|
|
16
|
-
width: 40px;
|
|
17
|
-
height: 40px;
|
|
18
|
-
border-radius: 8px;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.featured-icon-lg {
|
|
22
|
-
width: 48px;
|
|
23
|
-
height: 48px;
|
|
24
|
-
border-radius: 10px;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.featured-icon-xl {
|
|
28
|
-
width: 56px;
|
|
29
|
-
height: 56px;
|
|
30
|
-
border-radius: 12px;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
/* Icon sizes - matching Figma specs */
|
|
34
|
-
.icon-sm {
|
|
35
|
-
font-size: var(--icon-size-xs) !important;
|
|
36
|
-
width: var(--icon-size-xs);
|
|
37
|
-
height: var(--icon-size-xs);
|
|
38
|
-
line-height: 1;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.icon-md {
|
|
42
|
-
font-size: var(--icon-size-md) !important;
|
|
43
|
-
width: var(--icon-size-md);
|
|
44
|
-
height: var(--icon-size-md);
|
|
45
|
-
line-height: 1;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.icon-lg {
|
|
49
|
-
font-size: var(--icon-size-lg) !important;
|
|
50
|
-
width: var(--icon-size-lg);
|
|
51
|
-
height: var(--icon-size-lg);
|
|
52
|
-
line-height: 1;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.icon-xl {
|
|
56
|
-
font-size: var(--icon-size-2xl) !important;
|
|
57
|
-
width: var(--icon-size-2xl);
|
|
58
|
-
height: var(--icon-size-2xl);
|
|
59
|
-
line-height: 1;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
/* ============================================
|
|
63
|
-
OUTLINED STYLES
|
|
64
|
-
============================================ */
|
|
65
|
-
|
|
66
|
-
/* Brand color - Outlined */
|
|
67
|
-
.featured-icon-brand.featured-icon-outlined {
|
|
68
|
-
background-color: var(--color-white);
|
|
69
|
-
border: 1px solid var(--color-neutral-200);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.featured-icon-brand.featured-icon-outlined .material-symbols-outlined {
|
|
73
|
-
color: var(--color-brand-600);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
/* Gray color - Outlined */
|
|
77
|
-
.featured-icon-gray.featured-icon-outlined {
|
|
78
|
-
background-color: var(--color-white);
|
|
79
|
-
border: 1px solid var(--color-neutral-200);
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.featured-icon-gray.featured-icon-outlined .material-symbols-outlined {
|
|
83
|
-
color: var(--color-neutral-600);
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
/* Error color - Outlined */
|
|
87
|
-
.featured-icon-error.featured-icon-outlined {
|
|
88
|
-
background-color: var(--color-white);
|
|
89
|
-
border: 1px solid var(--color-neutral-200);
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.featured-icon-error.featured-icon-outlined .material-symbols-outlined {
|
|
93
|
-
color: var(--color-error-600);
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
/* Warning color - Outlined */
|
|
97
|
-
.featured-icon-warning.featured-icon-outlined {
|
|
98
|
-
background-color: var(--color-white);
|
|
99
|
-
border: 1px solid var(--color-neutral-200);
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.featured-icon-warning.featured-icon-outlined .material-symbols-outlined {
|
|
103
|
-
color: var(--color-warning-600);
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
/* Success color - Outlined */
|
|
107
|
-
.featured-icon-success.featured-icon-outlined {
|
|
108
|
-
background-color: var(--color-white);
|
|
109
|
-
border: 1px solid var(--color-neutral-200);
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.featured-icon-success.featured-icon-outlined .material-symbols-outlined {
|
|
113
|
-
color: var(--color-success-600);
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
/* Highlight color - Outlined */
|
|
117
|
-
.featured-icon-highlight.featured-icon-outlined {
|
|
118
|
-
background-color: var(--color-white);
|
|
119
|
-
border: 1px solid var(--color-neutral-200);
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.featured-icon-highlight.featured-icon-outlined .material-symbols-outlined {
|
|
123
|
-
color: var(--color-purple-600);
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
/* ============================================
|
|
127
|
-
FILLED STYLES
|
|
128
|
-
============================================ */
|
|
129
|
-
|
|
130
|
-
/* Brand color - Filled */
|
|
131
|
-
.featured-icon-brand.featured-icon-filled {
|
|
132
|
-
background-color: var(--color-brand-100);
|
|
133
|
-
border: none;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.featured-icon-brand.featured-icon-filled .material-symbols-outlined {
|
|
137
|
-
color: var(--color-brand-600);
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
/* Gray color - Filled */
|
|
141
|
-
.featured-icon-gray.featured-icon-filled {
|
|
142
|
-
background-color: var(--color-neutral-100);
|
|
143
|
-
border: none;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.featured-icon-gray.featured-icon-filled .material-symbols-outlined {
|
|
147
|
-
color: var(--color-neutral-600);
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
/* Error color - Filled */
|
|
151
|
-
.featured-icon-error.featured-icon-filled {
|
|
152
|
-
background-color: var(--color-error-100);
|
|
153
|
-
border: none;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.featured-icon-error.featured-icon-filled .material-symbols-outlined {
|
|
157
|
-
color: var(--color-error-600);
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
/* Warning color - Filled */
|
|
161
|
-
.featured-icon-warning.featured-icon-filled {
|
|
162
|
-
background-color: var(--color-warning-200);
|
|
163
|
-
border: none;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
.featured-icon-warning.featured-icon-filled .material-symbols-outlined {
|
|
167
|
-
color: var(--color-warning-600);
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
/* Success color - Filled */
|
|
171
|
-
.featured-icon-success.featured-icon-filled {
|
|
172
|
-
background-color: var(--color-success-100);
|
|
173
|
-
border: none;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
.featured-icon-success.featured-icon-filled .material-symbols-outlined {
|
|
177
|
-
color: var(--color-success-600);
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
/* Highlight color - Filled */
|
|
181
|
-
.featured-icon-highlight.featured-icon-filled {
|
|
182
|
-
background-color: var(--color-purple-200);
|
|
183
|
-
border: none;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.featured-icon-highlight.featured-icon-filled .material-symbols-outlined {
|
|
187
|
-
color: var(--color-purple-600);
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
/* Material Symbols base styles */
|
|
191
|
-
.material-symbols-outlined {
|
|
192
|
-
font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
|
|
193
|
-
user-select: none;
|
|
194
|
-
}
|
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
/* Base Illustration Styles */
|
|
2
|
-
.illustration {
|
|
3
|
-
display: inline-flex;
|
|
4
|
-
align-items: center;
|
|
5
|
-
justify-content: center;
|
|
6
|
-
position: relative;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.illustration-wrapper {
|
|
10
|
-
display: flex;
|
|
11
|
-
flex-direction: column;
|
|
12
|
-
align-items: center;
|
|
13
|
-
gap: var(--spacing-3xl);
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
/* SVG Container */
|
|
17
|
-
.illustration-svg-container {
|
|
18
|
-
display: flex;
|
|
19
|
-
align-items: center;
|
|
20
|
-
justify-content: center;
|
|
21
|
-
position: relative;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.illustration-image {
|
|
25
|
-
width: 100%;
|
|
26
|
-
height: 100%;
|
|
27
|
-
object-fit: contain;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
/* Content Styles */
|
|
32
|
-
.illustration-content {
|
|
33
|
-
text-align: center;
|
|
34
|
-
max-width: 480px;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.illustration-title {
|
|
38
|
-
font-family: var(--font-inter);
|
|
39
|
-
font-size: var(--text-lg-size);
|
|
40
|
-
font-weight: var(--weight-semibold);
|
|
41
|
-
line-height: var(--text-lg-line);
|
|
42
|
-
color: var(--color-neutral-900);
|
|
43
|
-
margin: 0 0 var(--spacing-md) 0;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.illustration-description {
|
|
47
|
-
font-family: var(--font-inter);
|
|
48
|
-
font-size: var(--text-md-size);
|
|
49
|
-
font-weight: var(--weight-regular);
|
|
50
|
-
line-height: var(--text-md-line);
|
|
51
|
-
color: var(--color-neutral-600);
|
|
52
|
-
margin: 0;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/* Size Variations */
|
|
56
|
-
.illustration-sm .illustration-svg-container {
|
|
57
|
-
width: 80px;
|
|
58
|
-
height: 80px;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.illustration-md .illustration-svg-container {
|
|
62
|
-
width: 120px;
|
|
63
|
-
height: 120px;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.illustration-lg .illustration-svg-container {
|
|
67
|
-
width: 160px;
|
|
68
|
-
height: 160px;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.illustration-xl .illustration-svg-container {
|
|
72
|
-
width: 200px;
|
|
73
|
-
height: 200px;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.illustration-2xl .illustration-svg-container {
|
|
77
|
-
width: 240px;
|
|
78
|
-
height: 240px;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.illustration-3xl .illustration-svg-container {
|
|
82
|
-
width: 280px;
|
|
83
|
-
height: 280px;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.illustration-4xl .illustration-svg-container {
|
|
87
|
-
width: 320px;
|
|
88
|
-
height: 320px;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
/* Responsive Styles */
|
|
93
|
-
@media (max-width: 768px) {
|
|
94
|
-
.illustration-4xl .illustration-svg-container {
|
|
95
|
-
width: 400px;
|
|
96
|
-
height: 400px;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.illustration-3xl .illustration-svg-container {
|
|
100
|
-
width: 320px;
|
|
101
|
-
height: 320px;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.illustration-content {
|
|
105
|
-
max-width: 320px;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
@media (max-width: 480px) {
|
|
110
|
-
.illustration-4xl .illustration-svg-container,
|
|
111
|
-
.illustration-3xl .illustration-svg-container {
|
|
112
|
-
width: 280px;
|
|
113
|
-
height: 280px;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.illustration-2xl .illustration-svg-container {
|
|
117
|
-
width: 240px;
|
|
118
|
-
height: 240px;
|
|
119
|
-
}
|
|
120
|
-
}
|