@rokkit/themes 1.0.0-next.132 → 1.0.0-next.135
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/LICENSE +21 -0
- package/README.md +68 -80
- package/build.mjs +148 -150
- package/dist/base.css +689 -623
- package/dist/glass.css +212 -203
- package/dist/index.css +1464 -1257
- package/dist/material.css +203 -171
- package/dist/minimal.css +171 -147
- package/dist/rokkit.css +189 -113
- package/package.json +11 -4
- package/src/base/breadcrumbs.css +28 -28
- package/src/base/button.css +10 -3
- package/src/base/card.css +17 -17
- package/src/base/carousel.css +67 -67
- package/src/base/display.css +8 -8
- package/src/base/floating-navigation.css +32 -8
- package/src/base/graph-paper.css +49 -49
- package/src/base/pill.css +35 -35
- package/src/base/progress.css +21 -21
- package/src/base/range.css +57 -57
- package/src/base/rating.css +20 -18
- package/src/base/reveal.css +16 -16
- package/src/base/search-filter.css +61 -61
- package/src/base/shine.css +7 -7
- package/src/base/stepper.css +75 -75
- package/src/base/switch.css +55 -55
- package/src/base/table.css +49 -49
- package/src/base/tilt.css +4 -4
- package/src/base/timeline.css +38 -38
- package/src/base/tree.css +48 -15
- package/src/glass/button.css +11 -10
- package/src/glass/card.css +16 -13
- package/src/glass/floating-action.css +13 -13
- package/src/glass/floating-navigation.css +2 -2
- package/src/glass/input.css +32 -30
- package/src/glass/list.css +21 -21
- package/src/glass/menu.css +16 -16
- package/src/glass/range.css +10 -10
- package/src/glass/search-filter.css +8 -8
- package/src/glass/select.css +32 -32
- package/src/glass/switch.css +6 -6
- package/src/glass/table.css +14 -14
- package/src/glass/tabs.css +3 -3
- package/src/glass/timeline.css +8 -8
- package/src/glass/toggle.css +7 -7
- package/src/glass/toolbar.css +15 -15
- package/src/glass/tree.css +27 -21
- package/src/material/button.css +12 -8
- package/src/material/card.css +1 -1
- package/src/material/input.css +30 -14
- package/src/material/list.css +27 -23
- package/src/material/menu.css +16 -16
- package/src/material/range.css +11 -11
- package/src/material/search-filter.css +8 -8
- package/src/material/select.css +31 -31
- package/src/material/switch.css +6 -6
- package/src/material/table.css +20 -16
- package/src/material/timeline.css +8 -8
- package/src/material/toggle.css +7 -7
- package/src/material/toolbar.css +17 -16
- package/src/material/tree.css +22 -19
- package/src/minimal/button.css +7 -4
- package/src/minimal/card.css +13 -11
- package/src/minimal/floating-action.css +11 -11
- package/src/minimal/floating-navigation.css +1 -1
- package/src/minimal/input.css +14 -10
- package/src/minimal/list.css +27 -23
- package/src/minimal/menu.css +15 -15
- package/src/minimal/range.css +10 -10
- package/src/minimal/search-filter.css +8 -8
- package/src/minimal/select.css +4 -2
- package/src/minimal/switch.css +6 -6
- package/src/minimal/table.css +17 -15
- package/src/minimal/tabs.css +5 -3
- package/src/minimal/timeline.css +7 -7
- package/src/minimal/toggle.css +7 -7
- package/src/minimal/toolbar.css +17 -16
- package/src/minimal/tree.css +26 -20
- package/src/rokkit/button.css +40 -11
- package/src/rokkit/card.css +16 -14
- package/src/rokkit/floating-navigation.css +2 -2
- package/src/rokkit/input.css +10 -6
- package/src/rokkit/list.css +7 -2
- package/src/rokkit/range.css +11 -11
- package/src/rokkit/search-filter.css +8 -8
- package/src/rokkit/select.css +41 -36
- package/src/rokkit/switch.css +6 -6
- package/src/rokkit/table.css +17 -15
- package/src/rokkit/tabs.css +11 -6
- package/src/rokkit/timeline.css +8 -8
- package/src/rokkit/tree.css +35 -9
package/dist/base.css
CHANGED
|
@@ -186,7 +186,9 @@
|
|
|
186
186
|
============================================================================= */
|
|
187
187
|
|
|
188
188
|
/* Hover lift — subtle elevation on hover (not on link or ghost style) */
|
|
189
|
-
[data-button]:not([data-style='link']):not([data-style='ghost']):hover:not(:disabled):not(
|
|
189
|
+
[data-button]:not([data-style='link']):not([data-style='ghost']):hover:not(:disabled):not(
|
|
190
|
+
[data-disabled]
|
|
191
|
+
) {
|
|
190
192
|
transform: translateY(-1px);
|
|
191
193
|
}
|
|
192
194
|
|
|
@@ -210,8 +212,13 @@
|
|
|
210
212
|
}
|
|
211
213
|
|
|
212
214
|
@keyframes button-loading-pulse {
|
|
213
|
-
0%,
|
|
214
|
-
|
|
215
|
+
0%,
|
|
216
|
+
100% {
|
|
217
|
+
opacity: 1;
|
|
218
|
+
}
|
|
219
|
+
50% {
|
|
220
|
+
opacity: 0.7;
|
|
221
|
+
}
|
|
215
222
|
}
|
|
216
223
|
|
|
217
224
|
/* =============================================================================
|
|
@@ -2062,25 +2069,58 @@ button[data-list-item] {
|
|
|
2062
2069
|
}
|
|
2063
2070
|
|
|
2064
2071
|
/* Solid (default visible style) */
|
|
2065
|
-
[data-tree][data-line-style='solid'] [data-connector-v] {
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
[data-tree][data-line-style='solid'] [data-connector-
|
|
2069
|
-
|
|
2072
|
+
[data-tree][data-line-style='solid'] [data-connector-v] {
|
|
2073
|
+
border-right-style: solid;
|
|
2074
|
+
}
|
|
2075
|
+
[data-tree][data-line-style='solid'] [data-connector-h] {
|
|
2076
|
+
border-bottom-style: solid;
|
|
2077
|
+
}
|
|
2078
|
+
[data-tree][data-line-style='solid'] [data-connector-corner] {
|
|
2079
|
+
border-bottom-style: solid;
|
|
2080
|
+
border-right-style: solid;
|
|
2081
|
+
}
|
|
2082
|
+
[data-tree][data-line-style='solid'] [data-connector-rtl] [data-connector-v] {
|
|
2083
|
+
border-left-style: solid;
|
|
2084
|
+
}
|
|
2085
|
+
[data-tree][data-line-style='solid'] [data-connector-rtl] [data-connector-corner] {
|
|
2086
|
+
border-left-style: solid;
|
|
2087
|
+
}
|
|
2070
2088
|
|
|
2071
2089
|
/* Dashed */
|
|
2072
|
-
[data-tree][data-line-style='dashed'] [data-connector-v] {
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
[data-tree][data-line-style='dashed'] [data-connector-
|
|
2076
|
-
|
|
2090
|
+
[data-tree][data-line-style='dashed'] [data-connector-v] {
|
|
2091
|
+
border-right-style: dashed;
|
|
2092
|
+
}
|
|
2093
|
+
[data-tree][data-line-style='dashed'] [data-connector-h] {
|
|
2094
|
+
border-bottom-style: dashed;
|
|
2095
|
+
}
|
|
2096
|
+
[data-tree][data-line-style='dashed'] [data-connector-corner] {
|
|
2097
|
+
border-bottom-style: dashed;
|
|
2098
|
+
border-right-style: dashed;
|
|
2099
|
+
}
|
|
2100
|
+
[data-tree][data-line-style='dashed'] [data-connector-rtl] [data-connector-v] {
|
|
2101
|
+
border-left-style: dashed;
|
|
2102
|
+
}
|
|
2103
|
+
[data-tree][data-line-style='dashed'] [data-connector-rtl] [data-connector-corner] {
|
|
2104
|
+
border-left-style: dashed;
|
|
2105
|
+
}
|
|
2077
2106
|
|
|
2078
2107
|
/* Dotted */
|
|
2079
|
-
[data-tree][data-line-style='dotted'] [data-connector-v] {
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
[data-tree][data-line-style='dotted'] [data-connector-
|
|
2083
|
-
|
|
2108
|
+
[data-tree][data-line-style='dotted'] [data-connector-v] {
|
|
2109
|
+
border-right-style: dotted;
|
|
2110
|
+
}
|
|
2111
|
+
[data-tree][data-line-style='dotted'] [data-connector-h] {
|
|
2112
|
+
border-bottom-style: dotted;
|
|
2113
|
+
}
|
|
2114
|
+
[data-tree][data-line-style='dotted'] [data-connector-corner] {
|
|
2115
|
+
border-bottom-style: dotted;
|
|
2116
|
+
border-right-style: dotted;
|
|
2117
|
+
}
|
|
2118
|
+
[data-tree][data-line-style='dotted'] [data-connector-rtl] [data-connector-v] {
|
|
2119
|
+
border-left-style: dotted;
|
|
2120
|
+
}
|
|
2121
|
+
[data-tree][data-line-style='dotted'] [data-connector-rtl] [data-connector-corner] {
|
|
2122
|
+
border-left-style: dotted;
|
|
2123
|
+
}
|
|
2084
2124
|
|
|
2085
2125
|
/* =============================================================================
|
|
2086
2126
|
Tree Item Content
|
|
@@ -2875,520 +2915,522 @@ input[type='color'] {
|
|
|
2875
2915
|
/* Tilt — base structural styles */
|
|
2876
2916
|
|
|
2877
2917
|
[data-tilt] {
|
|
2878
|
-
|
|
2918
|
+
perspective: var(--tilt-perspective, 600px);
|
|
2879
2919
|
}
|
|
2880
2920
|
|
|
2881
2921
|
[data-tilt] > * {
|
|
2882
|
-
|
|
2883
|
-
|
|
2922
|
+
transform: rotateX(var(--tilt-rotate-x, 0deg)) rotateY(var(--tilt-rotate-y, 0deg));
|
|
2923
|
+
transition: transform 0.1s ease-out;
|
|
2884
2924
|
}
|
|
2885
2925
|
|
|
2886
2926
|
[data-tilt][data-tilt-brightness] > * {
|
|
2887
|
-
|
|
2927
|
+
filter: brightness(var(--tilt-brightness, 1));
|
|
2888
2928
|
}
|
|
2889
2929
|
|
|
2890
2930
|
/* Shine — base structural styles */
|
|
2891
2931
|
|
|
2892
2932
|
[data-shine-filter] {
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
2933
|
+
pointer-events: none;
|
|
2934
|
+
position: fixed;
|
|
2935
|
+
inset: 0;
|
|
2936
|
+
width: 0;
|
|
2937
|
+
height: 0;
|
|
2938
|
+
overflow: visible;
|
|
2899
2939
|
}
|
|
2900
2940
|
|
|
2901
2941
|
[data-shine] {
|
|
2902
|
-
|
|
2942
|
+
display: inline-block;
|
|
2903
2943
|
}
|
|
2904
2944
|
|
|
2905
2945
|
/* BreadCrumbs — base structural styles */
|
|
2906
2946
|
|
|
2907
2947
|
[data-breadcrumbs] {
|
|
2908
|
-
|
|
2948
|
+
display: block;
|
|
2909
2949
|
}
|
|
2910
2950
|
|
|
2911
2951
|
[data-breadcrumb-list] {
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2952
|
+
display: flex;
|
|
2953
|
+
align-items: center;
|
|
2954
|
+
list-style: none;
|
|
2955
|
+
padding: 0;
|
|
2956
|
+
margin: 0;
|
|
2957
|
+
gap: 0.25rem;
|
|
2918
2958
|
}
|
|
2919
2959
|
|
|
2920
2960
|
[data-breadcrumb-item] {
|
|
2921
|
-
|
|
2922
|
-
|
|
2961
|
+
display: flex;
|
|
2962
|
+
align-items: center;
|
|
2923
2963
|
}
|
|
2924
2964
|
|
|
2925
2965
|
[data-breadcrumb-separator] {
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2966
|
+
display: flex;
|
|
2967
|
+
align-items: center;
|
|
2968
|
+
opacity: 0.5;
|
|
2929
2969
|
}
|
|
2930
2970
|
|
|
2931
2971
|
[data-breadcrumb-link] {
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2972
|
+
display: flex;
|
|
2973
|
+
align-items: center;
|
|
2974
|
+
gap: 0.25rem;
|
|
2975
|
+
background: none;
|
|
2976
|
+
border: none;
|
|
2977
|
+
cursor: pointer;
|
|
2978
|
+
padding: 0.25rem 0.5rem;
|
|
2979
|
+
border-radius: 0.25rem;
|
|
2980
|
+
font: inherit;
|
|
2981
|
+
color: inherit;
|
|
2982
|
+
text-decoration: none;
|
|
2943
2983
|
}
|
|
2944
2984
|
|
|
2945
2985
|
[data-breadcrumb-current] {
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2986
|
+
display: flex;
|
|
2987
|
+
align-items: center;
|
|
2988
|
+
gap: 0.25rem;
|
|
2989
|
+
padding: 0.25rem 0.5rem;
|
|
2990
|
+
font-weight: 600;
|
|
2951
2991
|
}
|
|
2952
2992
|
|
|
2953
2993
|
/* Card — base structural styles */
|
|
2954
2994
|
|
|
2955
2995
|
[data-card] {
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
2996
|
+
display: flex;
|
|
2997
|
+
flex-direction: column;
|
|
2998
|
+
border-radius: 0.5rem;
|
|
2999
|
+
overflow: hidden;
|
|
3000
|
+
text-decoration: none;
|
|
3001
|
+
color: inherit;
|
|
2962
3002
|
}
|
|
2963
3003
|
|
|
2964
3004
|
button[data-card] {
|
|
2965
|
-
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
3005
|
+
background: none;
|
|
3006
|
+
border: none;
|
|
3007
|
+
cursor: pointer;
|
|
3008
|
+
text-align: inherit;
|
|
3009
|
+
font: inherit;
|
|
3010
|
+
padding: 0;
|
|
2971
3011
|
}
|
|
2972
3012
|
|
|
2973
3013
|
a[data-card] {
|
|
2974
|
-
|
|
3014
|
+
cursor: pointer;
|
|
2975
3015
|
}
|
|
2976
3016
|
|
|
2977
3017
|
[data-card-header] {
|
|
2978
|
-
|
|
3018
|
+
padding: 1rem 1rem 0.5rem;
|
|
2979
3019
|
}
|
|
2980
3020
|
|
|
2981
3021
|
[data-card-body] {
|
|
2982
|
-
|
|
2983
|
-
|
|
3022
|
+
padding: 0.5rem 1rem;
|
|
3023
|
+
flex: 1;
|
|
2984
3024
|
}
|
|
2985
3025
|
|
|
2986
3026
|
[data-card-footer] {
|
|
2987
|
-
|
|
3027
|
+
padding: 0.5rem 1rem 1rem;
|
|
2988
3028
|
}
|
|
2989
3029
|
|
|
2990
3030
|
/* ProgressBar — base structural styles */
|
|
2991
3031
|
|
|
2992
3032
|
[data-progress] {
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
3033
|
+
position: relative;
|
|
3034
|
+
width: 100%;
|
|
3035
|
+
height: 0.5rem;
|
|
3036
|
+
border-radius: 9999px;
|
|
3037
|
+
overflow: hidden;
|
|
2998
3038
|
}
|
|
2999
3039
|
|
|
3000
3040
|
[data-progress-bar] {
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3041
|
+
height: 100%;
|
|
3042
|
+
border-radius: 9999px;
|
|
3043
|
+
transition: width 0.3s ease;
|
|
3004
3044
|
}
|
|
3005
3045
|
|
|
3006
3046
|
[data-progress][data-indeterminate] [data-progress-bar] {
|
|
3007
|
-
|
|
3047
|
+
animation: progress-indeterminate 1.5s ease-in-out infinite;
|
|
3008
3048
|
}
|
|
3009
3049
|
|
|
3010
3050
|
@keyframes progress-indeterminate {
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3051
|
+
0% {
|
|
3052
|
+
transform: translateX(-100%);
|
|
3053
|
+
width: 50%;
|
|
3054
|
+
}
|
|
3055
|
+
50% {
|
|
3056
|
+
transform: translateX(50%);
|
|
3057
|
+
width: 50%;
|
|
3058
|
+
}
|
|
3059
|
+
100% {
|
|
3060
|
+
transform: translateX(200%);
|
|
3061
|
+
width: 50%;
|
|
3062
|
+
}
|
|
3023
3063
|
}
|
|
3024
3064
|
|
|
3025
3065
|
/* Carousel — base structural styles */
|
|
3026
3066
|
|
|
3027
3067
|
[data-carousel] {
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3068
|
+
position: relative;
|
|
3069
|
+
overflow: hidden;
|
|
3070
|
+
outline: none;
|
|
3031
3071
|
}
|
|
3032
3072
|
|
|
3033
3073
|
[data-carousel-viewport] {
|
|
3034
|
-
|
|
3035
|
-
|
|
3074
|
+
overflow: hidden;
|
|
3075
|
+
width: 100%;
|
|
3036
3076
|
}
|
|
3037
3077
|
|
|
3038
3078
|
/* ─── Slide transition ─── */
|
|
3039
3079
|
|
|
3040
|
-
[data-carousel-transition=
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3080
|
+
[data-carousel-transition='slide'] [data-carousel-track] {
|
|
3081
|
+
display: flex;
|
|
3082
|
+
transition: transform 0.4s ease;
|
|
3083
|
+
transform: translateX(calc(-100% * var(--carousel-current, 0)));
|
|
3044
3084
|
}
|
|
3045
3085
|
|
|
3046
|
-
[data-carousel-transition=
|
|
3047
|
-
|
|
3048
|
-
|
|
3086
|
+
[data-carousel-transition='slide'] [data-carousel-slide] {
|
|
3087
|
+
flex: 0 0 100%;
|
|
3088
|
+
min-width: 0;
|
|
3049
3089
|
}
|
|
3050
3090
|
|
|
3051
3091
|
/* ─── Fade transition ─── */
|
|
3052
3092
|
|
|
3053
|
-
[data-carousel-transition=
|
|
3054
|
-
|
|
3093
|
+
[data-carousel-transition='fade'] [data-carousel-track] {
|
|
3094
|
+
position: relative;
|
|
3055
3095
|
}
|
|
3056
3096
|
|
|
3057
|
-
[data-carousel-transition=
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3097
|
+
[data-carousel-transition='fade'] [data-carousel-slide] {
|
|
3098
|
+
position: absolute;
|
|
3099
|
+
inset: 0;
|
|
3100
|
+
opacity: 0;
|
|
3101
|
+
transition: opacity 0.4s ease;
|
|
3102
|
+
pointer-events: none;
|
|
3063
3103
|
}
|
|
3064
3104
|
|
|
3065
|
-
[data-carousel-transition=
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3105
|
+
[data-carousel-transition='fade'] [data-carousel-slide][data-active] {
|
|
3106
|
+
position: relative;
|
|
3107
|
+
opacity: 1;
|
|
3108
|
+
pointer-events: auto;
|
|
3069
3109
|
}
|
|
3070
3110
|
|
|
3071
3111
|
/* ─── No transition ─── */
|
|
3072
3112
|
|
|
3073
|
-
[data-carousel-transition=
|
|
3074
|
-
|
|
3075
|
-
|
|
3113
|
+
[data-carousel-transition='none'] [data-carousel-track] {
|
|
3114
|
+
display: flex;
|
|
3115
|
+
transform: translateX(calc(-100% * var(--carousel-current, 0)));
|
|
3076
3116
|
}
|
|
3077
3117
|
|
|
3078
|
-
[data-carousel-transition=
|
|
3079
|
-
|
|
3080
|
-
|
|
3118
|
+
[data-carousel-transition='none'] [data-carousel-slide] {
|
|
3119
|
+
flex: 0 0 100%;
|
|
3120
|
+
min-width: 0;
|
|
3081
3121
|
}
|
|
3082
3122
|
|
|
3083
3123
|
/* ─── Arrow buttons ─── */
|
|
3084
3124
|
|
|
3085
3125
|
[data-carousel-prev],
|
|
3086
3126
|
[data-carousel-next] {
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
|
|
3127
|
+
position: absolute;
|
|
3128
|
+
top: 50%;
|
|
3129
|
+
transform: translateY(-50%);
|
|
3130
|
+
display: flex;
|
|
3131
|
+
align-items: center;
|
|
3132
|
+
justify-content: center;
|
|
3133
|
+
width: 2.5rem;
|
|
3134
|
+
height: 2.5rem;
|
|
3135
|
+
border: none;
|
|
3136
|
+
border-radius: 9999px;
|
|
3137
|
+
cursor: pointer;
|
|
3138
|
+
background: rgba(0, 0, 0, 0.3);
|
|
3139
|
+
color: white;
|
|
3140
|
+
font-size: 1.25rem;
|
|
3141
|
+
z-index: 1;
|
|
3142
|
+
opacity: 0.7;
|
|
3143
|
+
transition: opacity 0.2s ease;
|
|
3104
3144
|
}
|
|
3105
3145
|
|
|
3106
3146
|
[data-carousel-prev]:hover,
|
|
3107
3147
|
[data-carousel-next]:hover {
|
|
3108
|
-
|
|
3148
|
+
opacity: 1;
|
|
3109
3149
|
}
|
|
3110
3150
|
|
|
3111
3151
|
[data-carousel-prev]:disabled,
|
|
3112
3152
|
[data-carousel-next]:disabled {
|
|
3113
|
-
|
|
3114
|
-
|
|
3153
|
+
opacity: 0.3;
|
|
3154
|
+
cursor: default;
|
|
3115
3155
|
}
|
|
3116
3156
|
|
|
3117
3157
|
[data-carousel-prev] {
|
|
3118
|
-
|
|
3158
|
+
left: 0.5rem;
|
|
3119
3159
|
}
|
|
3120
3160
|
|
|
3121
3161
|
[data-carousel-next] {
|
|
3122
|
-
|
|
3162
|
+
right: 0.5rem;
|
|
3123
3163
|
}
|
|
3124
3164
|
|
|
3125
3165
|
/* ─── Dots ─── */
|
|
3126
3166
|
|
|
3127
3167
|
[data-carousel-dots] {
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3168
|
+
display: flex;
|
|
3169
|
+
justify-content: center;
|
|
3170
|
+
gap: 0.5rem;
|
|
3171
|
+
padding: 0.75rem 0;
|
|
3132
3172
|
}
|
|
3133
3173
|
|
|
3134
3174
|
[data-carousel-dot] {
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3175
|
+
width: 0.625rem;
|
|
3176
|
+
height: 0.625rem;
|
|
3177
|
+
border-radius: 9999px;
|
|
3178
|
+
border: none;
|
|
3179
|
+
cursor: pointer;
|
|
3180
|
+
background: currentColor;
|
|
3181
|
+
opacity: 0.3;
|
|
3182
|
+
transition: opacity 0.2s ease;
|
|
3183
|
+
padding: 0;
|
|
3144
3184
|
}
|
|
3145
3185
|
|
|
3146
3186
|
[data-carousel-dot][data-active] {
|
|
3147
|
-
|
|
3187
|
+
opacity: 1;
|
|
3148
3188
|
}
|
|
3149
3189
|
|
|
3150
3190
|
[data-carousel-dot]:hover {
|
|
3151
|
-
|
|
3191
|
+
opacity: 0.7;
|
|
3152
3192
|
}
|
|
3153
3193
|
|
|
3154
3194
|
/* Pill — base structural styles */
|
|
3155
3195
|
|
|
3156
3196
|
[data-pill] {
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3197
|
+
display: inline-flex;
|
|
3198
|
+
align-items: center;
|
|
3199
|
+
gap: 0.375rem;
|
|
3200
|
+
padding: 0.125rem 0.625rem;
|
|
3201
|
+
border-radius: 9999px;
|
|
3202
|
+
font-size: 0.875rem;
|
|
3203
|
+
line-height: 1.25rem;
|
|
3204
|
+
white-space: nowrap;
|
|
3205
|
+
outline: none;
|
|
3206
|
+
vertical-align: middle;
|
|
3167
3207
|
}
|
|
3168
3208
|
|
|
3169
3209
|
[data-pill-icon] {
|
|
3170
|
-
|
|
3171
|
-
|
|
3210
|
+
font-size: 0.875rem;
|
|
3211
|
+
flex-shrink: 0;
|
|
3172
3212
|
}
|
|
3173
3213
|
|
|
3174
3214
|
[data-pill-text] {
|
|
3175
|
-
|
|
3176
|
-
|
|
3215
|
+
overflow: hidden;
|
|
3216
|
+
text-overflow: ellipsis;
|
|
3177
3217
|
}
|
|
3178
3218
|
|
|
3179
3219
|
[data-pill-remove] {
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3220
|
+
display: inline-flex;
|
|
3221
|
+
align-items: center;
|
|
3222
|
+
justify-content: center;
|
|
3223
|
+
width: 1rem;
|
|
3224
|
+
height: 1rem;
|
|
3225
|
+
padding: 0;
|
|
3226
|
+
margin-left: 0.125rem;
|
|
3227
|
+
border: none;
|
|
3228
|
+
border-radius: 9999px;
|
|
3229
|
+
cursor: pointer;
|
|
3230
|
+
background: transparent;
|
|
3231
|
+
color: inherit;
|
|
3232
|
+
opacity: 0.6;
|
|
3233
|
+
transition: opacity 0.15s ease;
|
|
3234
|
+
font-size: 0.75rem;
|
|
3235
|
+
flex-shrink: 0;
|
|
3196
3236
|
}
|
|
3197
3237
|
|
|
3198
3238
|
[data-pill-remove]:hover {
|
|
3199
|
-
|
|
3239
|
+
opacity: 1;
|
|
3200
3240
|
}
|
|
3201
3241
|
|
|
3202
3242
|
[data-pill-remove]:disabled {
|
|
3203
|
-
|
|
3204
|
-
|
|
3243
|
+
opacity: 0.3;
|
|
3244
|
+
cursor: default;
|
|
3205
3245
|
}
|
|
3206
3246
|
|
|
3207
3247
|
[data-pill-disabled] {
|
|
3208
|
-
|
|
3209
|
-
|
|
3248
|
+
opacity: 0.5;
|
|
3249
|
+
cursor: default;
|
|
3210
3250
|
}
|
|
3211
3251
|
|
|
3212
3252
|
/* Rating — base structural styles */
|
|
3213
3253
|
|
|
3214
3254
|
[data-rating] {
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3255
|
+
display: inline-flex;
|
|
3256
|
+
align-items: center;
|
|
3257
|
+
gap: 0.25rem;
|
|
3258
|
+
outline: none;
|
|
3259
|
+
cursor: pointer;
|
|
3220
3260
|
}
|
|
3221
3261
|
|
|
3222
3262
|
[data-rating-disabled] {
|
|
3223
|
-
|
|
3224
|
-
|
|
3263
|
+
cursor: default;
|
|
3264
|
+
opacity: 0.5;
|
|
3225
3265
|
}
|
|
3226
3266
|
|
|
3227
3267
|
[data-rating-item] {
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3268
|
+
display: inline-flex;
|
|
3269
|
+
align-items: center;
|
|
3270
|
+
justify-content: center;
|
|
3271
|
+
cursor: pointer;
|
|
3272
|
+
font-size: 1.5rem;
|
|
3273
|
+
transition:
|
|
3274
|
+
transform 0.15s ease,
|
|
3275
|
+
opacity 0.15s ease;
|
|
3276
|
+
user-select: none;
|
|
3235
3277
|
}
|
|
3236
3278
|
|
|
3237
3279
|
[data-rating-disabled] [data-rating-item] {
|
|
3238
|
-
|
|
3280
|
+
cursor: default;
|
|
3239
3281
|
}
|
|
3240
3282
|
|
|
3241
3283
|
[data-rating-item]:not([data-filled]) {
|
|
3242
|
-
|
|
3284
|
+
opacity: 0.3;
|
|
3243
3285
|
}
|
|
3244
3286
|
|
|
3245
3287
|
[data-rating-item][data-hovering] {
|
|
3246
|
-
|
|
3288
|
+
transform: scale(1.15);
|
|
3247
3289
|
}
|
|
3248
3290
|
|
|
3249
3291
|
[data-rating-item][data-filled] {
|
|
3250
|
-
|
|
3292
|
+
opacity: 1;
|
|
3251
3293
|
}
|
|
3252
3294
|
|
|
3253
3295
|
/* Stepper — base structural styles */
|
|
3254
3296
|
|
|
3255
3297
|
[data-stepper] {
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3298
|
+
display: flex;
|
|
3299
|
+
align-items: flex-start;
|
|
3300
|
+
width: 100%;
|
|
3259
3301
|
}
|
|
3260
3302
|
|
|
3261
3303
|
[data-stepper][data-orientation='vertical'] {
|
|
3262
|
-
|
|
3304
|
+
flex-direction: column;
|
|
3263
3305
|
}
|
|
3264
3306
|
|
|
3265
3307
|
/* ─── Step container ─── */
|
|
3266
3308
|
|
|
3267
3309
|
[data-stepper-step] {
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3310
|
+
display: flex;
|
|
3311
|
+
flex-direction: column;
|
|
3312
|
+
align-items: center;
|
|
3313
|
+
flex: 0 0 auto;
|
|
3272
3314
|
}
|
|
3273
3315
|
|
|
3274
3316
|
/* ─── Step circle ─── */
|
|
3275
3317
|
|
|
3276
3318
|
[data-stepper-circle] {
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3319
|
+
width: 2.5rem;
|
|
3320
|
+
height: 2.5rem;
|
|
3321
|
+
border-radius: 9999px;
|
|
3322
|
+
border: 2px solid currentColor;
|
|
3323
|
+
display: flex;
|
|
3324
|
+
align-items: center;
|
|
3325
|
+
justify-content: center;
|
|
3326
|
+
cursor: pointer;
|
|
3327
|
+
font-weight: 600;
|
|
3328
|
+
font-size: 0.875rem;
|
|
3329
|
+
background: transparent;
|
|
3330
|
+
color: inherit;
|
|
3331
|
+
padding: 0;
|
|
3332
|
+
transition:
|
|
3333
|
+
background-color 0.2s ease,
|
|
3334
|
+
border-color 0.2s ease,
|
|
3335
|
+
color 0.2s ease;
|
|
3294
3336
|
}
|
|
3295
3337
|
|
|
3296
3338
|
[data-stepper-circle]:disabled {
|
|
3297
|
-
|
|
3298
|
-
|
|
3339
|
+
cursor: default;
|
|
3340
|
+
opacity: 0.4;
|
|
3299
3341
|
}
|
|
3300
3342
|
|
|
3301
3343
|
[data-stepper-step][data-completed] [data-stepper-circle] {
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
3344
|
+
background-color: var(--color-primary-500, #3b82f6);
|
|
3345
|
+
border-color: var(--color-primary-500, #3b82f6);
|
|
3346
|
+
color: white;
|
|
3305
3347
|
}
|
|
3306
3348
|
|
|
3307
3349
|
[data-stepper-step][data-active] [data-stepper-circle] {
|
|
3308
|
-
|
|
3309
|
-
|
|
3310
|
-
|
|
3350
|
+
border-color: var(--color-primary-500, #3b82f6);
|
|
3351
|
+
color: var(--color-primary-500, #3b82f6);
|
|
3352
|
+
box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary-500, #3b82f6) 20%, transparent);
|
|
3311
3353
|
}
|
|
3312
3354
|
|
|
3313
3355
|
/* ─── Connector line ─── */
|
|
3314
3356
|
|
|
3315
3357
|
[data-stepper-connector] {
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3358
|
+
flex: 1;
|
|
3359
|
+
height: 2px;
|
|
3360
|
+
min-width: 2rem;
|
|
3361
|
+
align-self: center;
|
|
3362
|
+
/* Vertically center with the circle (half of 2.5rem) */
|
|
3363
|
+
margin-top: 1.25rem;
|
|
3364
|
+
background-color: var(--color-surface-300, #d1d5db);
|
|
3365
|
+
transition: background-color 0.2s ease;
|
|
3324
3366
|
}
|
|
3325
3367
|
|
|
3326
3368
|
[data-stepper-connector][data-completed] {
|
|
3327
|
-
|
|
3369
|
+
background-color: var(--color-primary-500, #3b82f6);
|
|
3328
3370
|
}
|
|
3329
3371
|
|
|
3330
3372
|
/* Vertical orientation connectors */
|
|
3331
3373
|
[data-stepper][data-orientation='vertical'] [data-stepper-connector] {
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
|
|
3336
|
-
|
|
3337
|
-
|
|
3374
|
+
width: 2px;
|
|
3375
|
+
height: 2rem;
|
|
3376
|
+
min-width: auto;
|
|
3377
|
+
margin-top: 0;
|
|
3378
|
+
margin-left: 1.25rem;
|
|
3379
|
+
align-self: flex-start;
|
|
3338
3380
|
}
|
|
3339
3381
|
|
|
3340
3382
|
/* ─── Label ─── */
|
|
3341
3383
|
|
|
3342
3384
|
[data-stepper-label] {
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3385
|
+
margin-top: 0.5rem;
|
|
3386
|
+
font-size: 0.8125rem;
|
|
3387
|
+
text-align: center;
|
|
3388
|
+
max-width: 6rem;
|
|
3389
|
+
line-height: 1.3;
|
|
3348
3390
|
}
|
|
3349
3391
|
|
|
3350
3392
|
/* ─── Sub-stage dots ─── */
|
|
3351
3393
|
|
|
3352
3394
|
[data-stepper-dots] {
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3395
|
+
display: flex;
|
|
3396
|
+
gap: 0.25rem;
|
|
3397
|
+
margin-top: 0.375rem;
|
|
3356
3398
|
}
|
|
3357
3399
|
|
|
3358
3400
|
[data-stepper-dot] {
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3401
|
+
width: 0.5rem;
|
|
3402
|
+
height: 0.5rem;
|
|
3403
|
+
border-radius: 9999px;
|
|
3404
|
+
border: 1px solid var(--color-surface-400, #9ca3af);
|
|
3405
|
+
background: transparent;
|
|
3406
|
+
cursor: pointer;
|
|
3407
|
+
padding: 0;
|
|
3408
|
+
transition:
|
|
3409
|
+
background-color 0.2s ease,
|
|
3410
|
+
border-color 0.2s ease;
|
|
3369
3411
|
}
|
|
3370
3412
|
|
|
3371
3413
|
[data-stepper-dot]:disabled {
|
|
3372
|
-
|
|
3373
|
-
|
|
3414
|
+
cursor: default;
|
|
3415
|
+
opacity: 0.4;
|
|
3374
3416
|
}
|
|
3375
3417
|
|
|
3376
3418
|
[data-stepper-dot][data-completed] {
|
|
3377
|
-
|
|
3378
|
-
|
|
3419
|
+
background-color: var(--color-primary-500, #3b82f6);
|
|
3420
|
+
border-color: var(--color-primary-500, #3b82f6);
|
|
3379
3421
|
}
|
|
3380
3422
|
|
|
3381
3423
|
[data-stepper-dot][data-active] {
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3424
|
+
border-color: var(--color-primary-500, #3b82f6);
|
|
3425
|
+
background-color: var(--color-primary-500, #3b82f6);
|
|
3426
|
+
box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary-500, #3b82f6) 25%, transparent);
|
|
3385
3427
|
}
|
|
3386
3428
|
|
|
3387
3429
|
/* ─── Content area ─── */
|
|
3388
3430
|
|
|
3389
3431
|
[data-stepper-content] {
|
|
3390
|
-
|
|
3391
|
-
|
|
3432
|
+
width: 100%;
|
|
3433
|
+
margin-top: 1.5rem;
|
|
3392
3434
|
}
|
|
3393
3435
|
|
|
3394
3436
|
/**
|
|
@@ -3403,24 +3445,24 @@ a[data-card] {
|
|
|
3403
3445
|
============================================================================= */
|
|
3404
3446
|
|
|
3405
3447
|
[data-switch] {
|
|
3406
|
-
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3448
|
+
display: inline-flex;
|
|
3449
|
+
align-items: center;
|
|
3450
|
+
gap: 0.5rem;
|
|
3451
|
+
cursor: pointer;
|
|
3452
|
+
border: none;
|
|
3453
|
+
background: transparent;
|
|
3454
|
+
padding: 0;
|
|
3455
|
+
user-select: none;
|
|
3414
3456
|
}
|
|
3415
3457
|
|
|
3416
3458
|
[data-switch]:focus {
|
|
3417
|
-
|
|
3459
|
+
outline: none;
|
|
3418
3460
|
}
|
|
3419
3461
|
|
|
3420
3462
|
[data-switch][data-switch-disabled] {
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3463
|
+
pointer-events: none;
|
|
3464
|
+
opacity: 0.5;
|
|
3465
|
+
cursor: not-allowed;
|
|
3424
3466
|
}
|
|
3425
3467
|
|
|
3426
3468
|
/* =============================================================================
|
|
@@ -3428,11 +3470,11 @@ a[data-card] {
|
|
|
3428
3470
|
============================================================================= */
|
|
3429
3471
|
|
|
3430
3472
|
[data-switch-track] {
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3473
|
+
position: relative;
|
|
3474
|
+
display: inline-block;
|
|
3475
|
+
border-radius: 9999px;
|
|
3476
|
+
transition: background-color 200ms ease;
|
|
3477
|
+
flex-shrink: 0;
|
|
3436
3478
|
}
|
|
3437
3479
|
|
|
3438
3480
|
/* =============================================================================
|
|
@@ -3440,20 +3482,20 @@ a[data-card] {
|
|
|
3440
3482
|
============================================================================= */
|
|
3441
3483
|
|
|
3442
3484
|
[data-switch-thumb] {
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
|
-
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3485
|
+
position: absolute;
|
|
3486
|
+
top: 50%;
|
|
3487
|
+
transform: translateY(-50%) translateX(0);
|
|
3488
|
+
border-radius: 9999px;
|
|
3489
|
+
display: flex;
|
|
3490
|
+
align-items: center;
|
|
3491
|
+
justify-content: center;
|
|
3492
|
+
transition:
|
|
3493
|
+
transform 200ms ease,
|
|
3494
|
+
background-color 200ms ease;
|
|
3453
3495
|
}
|
|
3454
3496
|
|
|
3455
3497
|
[data-switch][aria-checked='true'] [data-switch-thumb] {
|
|
3456
|
-
|
|
3498
|
+
transform: translateY(-50%) translateX(var(--switch-thumb-travel));
|
|
3457
3499
|
}
|
|
3458
3500
|
|
|
3459
3501
|
/* =============================================================================
|
|
@@ -3462,69 +3504,69 @@ a[data-card] {
|
|
|
3462
3504
|
|
|
3463
3505
|
/* Small: track 28×16, thumb 12px */
|
|
3464
3506
|
[data-switch][data-switch-size='sm'] [data-switch-track] {
|
|
3465
|
-
|
|
3466
|
-
|
|
3507
|
+
width: 1.75rem;
|
|
3508
|
+
height: 1rem;
|
|
3467
3509
|
}
|
|
3468
3510
|
|
|
3469
3511
|
[data-switch][data-switch-size='sm'] [data-switch-thumb] {
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3473
|
-
|
|
3512
|
+
width: 0.75rem;
|
|
3513
|
+
height: 0.75rem;
|
|
3514
|
+
left: 0.125rem;
|
|
3515
|
+
--switch-thumb-travel: 0.75rem;
|
|
3474
3516
|
}
|
|
3475
3517
|
|
|
3476
3518
|
[data-switch][data-switch-size='sm'] [data-switch-icon] {
|
|
3477
|
-
|
|
3519
|
+
font-size: 0.5rem;
|
|
3478
3520
|
}
|
|
3479
3521
|
|
|
3480
3522
|
[data-switch][data-switch-size='sm'] [data-switch-label] {
|
|
3481
|
-
|
|
3523
|
+
font-size: 0.75rem;
|
|
3482
3524
|
}
|
|
3483
3525
|
|
|
3484
3526
|
/* Medium (default): track 44×24, thumb 18px */
|
|
3485
3527
|
[data-switch][data-switch-size='md'] [data-switch-track],
|
|
3486
3528
|
[data-switch]:not([data-switch-size]) [data-switch-track] {
|
|
3487
|
-
|
|
3488
|
-
|
|
3529
|
+
width: 2.75rem;
|
|
3530
|
+
height: 1.5rem;
|
|
3489
3531
|
}
|
|
3490
3532
|
|
|
3491
3533
|
[data-switch][data-switch-size='md'] [data-switch-thumb],
|
|
3492
3534
|
[data-switch]:not([data-switch-size]) [data-switch-thumb] {
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3535
|
+
width: 1.125rem;
|
|
3536
|
+
height: 1.125rem;
|
|
3537
|
+
left: 0.1875rem;
|
|
3538
|
+
--switch-thumb-travel: 1.25rem;
|
|
3497
3539
|
}
|
|
3498
3540
|
|
|
3499
3541
|
[data-switch][data-switch-size='md'] [data-switch-icon],
|
|
3500
3542
|
[data-switch]:not([data-switch-size]) [data-switch-icon] {
|
|
3501
|
-
|
|
3543
|
+
font-size: 0.625rem;
|
|
3502
3544
|
}
|
|
3503
3545
|
|
|
3504
3546
|
[data-switch][data-switch-size='md'] [data-switch-label],
|
|
3505
3547
|
[data-switch]:not([data-switch-size]) [data-switch-label] {
|
|
3506
|
-
|
|
3548
|
+
font-size: 0.875rem;
|
|
3507
3549
|
}
|
|
3508
3550
|
|
|
3509
3551
|
/* Large: track 56×32, thumb 24px */
|
|
3510
3552
|
[data-switch][data-switch-size='lg'] [data-switch-track] {
|
|
3511
|
-
|
|
3512
|
-
|
|
3553
|
+
width: 3.5rem;
|
|
3554
|
+
height: 2rem;
|
|
3513
3555
|
}
|
|
3514
3556
|
|
|
3515
3557
|
[data-switch][data-switch-size='lg'] [data-switch-thumb] {
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3558
|
+
width: 1.5rem;
|
|
3559
|
+
height: 1.5rem;
|
|
3560
|
+
left: 0.25rem;
|
|
3561
|
+
--switch-thumb-travel: 1.5rem;
|
|
3520
3562
|
}
|
|
3521
3563
|
|
|
3522
3564
|
[data-switch][data-switch-size='lg'] [data-switch-icon] {
|
|
3523
|
-
|
|
3565
|
+
font-size: 0.75rem;
|
|
3524
3566
|
}
|
|
3525
3567
|
|
|
3526
3568
|
[data-switch][data-switch-size='lg'] [data-switch-label] {
|
|
3527
|
-
|
|
3569
|
+
font-size: 1rem;
|
|
3528
3570
|
}
|
|
3529
3571
|
|
|
3530
3572
|
/* =============================================================================
|
|
@@ -3532,8 +3574,8 @@ a[data-card] {
|
|
|
3532
3574
|
============================================================================= */
|
|
3533
3575
|
|
|
3534
3576
|
[data-switch-label] {
|
|
3535
|
-
|
|
3536
|
-
|
|
3577
|
+
font-weight: 500;
|
|
3578
|
+
user-select: none;
|
|
3537
3579
|
}
|
|
3538
3580
|
|
|
3539
3581
|
/* =============================================================================
|
|
@@ -3541,7 +3583,7 @@ a[data-card] {
|
|
|
3541
3583
|
============================================================================= */
|
|
3542
3584
|
|
|
3543
3585
|
[data-switch-icon] {
|
|
3544
|
-
|
|
3586
|
+
flex-shrink: 0;
|
|
3545
3587
|
}
|
|
3546
3588
|
|
|
3547
3589
|
/**
|
|
@@ -3556,18 +3598,18 @@ a[data-card] {
|
|
|
3556
3598
|
============================================================================= */
|
|
3557
3599
|
|
|
3558
3600
|
[data-table] {
|
|
3559
|
-
|
|
3601
|
+
overflow-x: auto;
|
|
3560
3602
|
}
|
|
3561
3603
|
|
|
3562
3604
|
[data-table][data-disabled='true'] {
|
|
3563
|
-
|
|
3564
|
-
|
|
3605
|
+
pointer-events: none;
|
|
3606
|
+
opacity: 0.5;
|
|
3565
3607
|
}
|
|
3566
3608
|
|
|
3567
3609
|
[data-table] table {
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3610
|
+
width: 100%;
|
|
3611
|
+
border-collapse: collapse;
|
|
3612
|
+
table-layout: auto;
|
|
3571
3613
|
}
|
|
3572
3614
|
|
|
3573
3615
|
/* =============================================================================
|
|
@@ -3575,10 +3617,10 @@ a[data-card] {
|
|
|
3575
3617
|
============================================================================= */
|
|
3576
3618
|
|
|
3577
3619
|
[data-table-caption] {
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3620
|
+
text-align: left;
|
|
3621
|
+
font-weight: 600;
|
|
3622
|
+
padding: 0.5rem 0.75rem;
|
|
3623
|
+
caption-side: top;
|
|
3582
3624
|
}
|
|
3583
3625
|
|
|
3584
3626
|
/* =============================================================================
|
|
@@ -3586,36 +3628,36 @@ a[data-card] {
|
|
|
3586
3628
|
============================================================================= */
|
|
3587
3629
|
|
|
3588
3630
|
[data-table-header] th {
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3631
|
+
text-align: left;
|
|
3632
|
+
font-weight: 600;
|
|
3633
|
+
white-space: nowrap;
|
|
3634
|
+
user-select: none;
|
|
3593
3635
|
}
|
|
3594
3636
|
|
|
3595
3637
|
[data-table-header-cell] {
|
|
3596
|
-
|
|
3597
|
-
|
|
3638
|
+
display: table-cell;
|
|
3639
|
+
cursor: default;
|
|
3598
3640
|
}
|
|
3599
3641
|
|
|
3600
3642
|
[data-table-header-cell][data-sortable='true'] {
|
|
3601
|
-
|
|
3643
|
+
cursor: pointer;
|
|
3602
3644
|
}
|
|
3603
3645
|
|
|
3604
3646
|
[data-table-header-text] {
|
|
3605
|
-
|
|
3647
|
+
vertical-align: middle;
|
|
3606
3648
|
}
|
|
3607
3649
|
|
|
3608
3650
|
[data-table-sort-icon] {
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3651
|
+
display: inline-block;
|
|
3652
|
+
vertical-align: middle;
|
|
3653
|
+
margin-left: 0.25rem;
|
|
3654
|
+
opacity: 0.4;
|
|
3655
|
+
transition: opacity 150ms ease;
|
|
3614
3656
|
}
|
|
3615
3657
|
|
|
3616
3658
|
[data-table-header-cell][data-sort-order='ascending'] [data-table-sort-icon],
|
|
3617
3659
|
[data-table-header-cell][data-sort-order='descending'] [data-table-sort-icon] {
|
|
3618
|
-
|
|
3660
|
+
opacity: 1;
|
|
3619
3661
|
}
|
|
3620
3662
|
|
|
3621
3663
|
/* =============================================================================
|
|
@@ -3623,12 +3665,12 @@ a[data-card] {
|
|
|
3623
3665
|
============================================================================= */
|
|
3624
3666
|
|
|
3625
3667
|
[data-table-row] {
|
|
3626
|
-
|
|
3627
|
-
|
|
3668
|
+
cursor: pointer;
|
|
3669
|
+
transition: background-color 150ms ease;
|
|
3628
3670
|
}
|
|
3629
3671
|
|
|
3630
3672
|
[data-table-row]:focus {
|
|
3631
|
-
|
|
3673
|
+
outline: none;
|
|
3632
3674
|
}
|
|
3633
3675
|
|
|
3634
3676
|
/* =============================================================================
|
|
@@ -3636,18 +3678,18 @@ a[data-card] {
|
|
|
3636
3678
|
============================================================================= */
|
|
3637
3679
|
|
|
3638
3680
|
[data-table-cell] {
|
|
3639
|
-
|
|
3681
|
+
vertical-align: middle;
|
|
3640
3682
|
}
|
|
3641
3683
|
|
|
3642
3684
|
[data-cell-icon] {
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3685
|
+
display: inline-block;
|
|
3686
|
+
vertical-align: middle;
|
|
3687
|
+
margin-right: 0.375rem;
|
|
3688
|
+
flex-shrink: 0;
|
|
3647
3689
|
}
|
|
3648
3690
|
|
|
3649
3691
|
[data-cell-value] {
|
|
3650
|
-
|
|
3692
|
+
vertical-align: middle;
|
|
3651
3693
|
}
|
|
3652
3694
|
|
|
3653
3695
|
/* =============================================================================
|
|
@@ -3655,9 +3697,9 @@ a[data-card] {
|
|
|
3655
3697
|
============================================================================= */
|
|
3656
3698
|
|
|
3657
3699
|
[data-table-empty] {
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3700
|
+
text-align: center;
|
|
3701
|
+
font-style: italic;
|
|
3702
|
+
opacity: 0.6;
|
|
3661
3703
|
}
|
|
3662
3704
|
|
|
3663
3705
|
/* =============================================================================
|
|
@@ -3666,42 +3708,42 @@ a[data-card] {
|
|
|
3666
3708
|
|
|
3667
3709
|
[data-table][data-size='sm'] [data-table-header-cell],
|
|
3668
3710
|
[data-table][data-size='sm'] [data-table-cell] {
|
|
3669
|
-
|
|
3670
|
-
|
|
3711
|
+
padding: 0.25rem 0.5rem;
|
|
3712
|
+
font-size: 0.75rem;
|
|
3671
3713
|
}
|
|
3672
3714
|
|
|
3673
3715
|
[data-table][data-size='sm'] [data-table-caption] {
|
|
3674
|
-
|
|
3675
|
-
|
|
3716
|
+
padding: 0.25rem 0.5rem;
|
|
3717
|
+
font-size: 0.75rem;
|
|
3676
3718
|
}
|
|
3677
3719
|
|
|
3678
3720
|
[data-table][data-size='md'] [data-table-header-cell],
|
|
3679
3721
|
[data-table]:not([data-size]) [data-table-header-cell],
|
|
3680
3722
|
[data-table][data-size='md'] [data-table-cell],
|
|
3681
3723
|
[data-table]:not([data-size]) [data-table-cell] {
|
|
3682
|
-
|
|
3683
|
-
|
|
3724
|
+
padding: 0.5rem 0.75rem;
|
|
3725
|
+
font-size: 0.875rem;
|
|
3684
3726
|
}
|
|
3685
3727
|
|
|
3686
3728
|
[data-table][data-size='md'] [data-table-caption],
|
|
3687
3729
|
[data-table]:not([data-size]) [data-table-caption] {
|
|
3688
|
-
|
|
3689
|
-
|
|
3730
|
+
padding: 0.5rem 0.75rem;
|
|
3731
|
+
font-size: 0.875rem;
|
|
3690
3732
|
}
|
|
3691
3733
|
|
|
3692
3734
|
[data-table][data-size='lg'] [data-table-header-cell],
|
|
3693
3735
|
[data-table][data-size='lg'] [data-table-cell] {
|
|
3694
|
-
|
|
3695
|
-
|
|
3736
|
+
padding: 0.625rem 1rem;
|
|
3737
|
+
font-size: 1rem;
|
|
3696
3738
|
}
|
|
3697
3739
|
|
|
3698
3740
|
[data-table][data-size='lg'] [data-table-caption] {
|
|
3699
|
-
|
|
3700
|
-
|
|
3741
|
+
padding: 0.625rem 1rem;
|
|
3742
|
+
font-size: 1rem;
|
|
3701
3743
|
}
|
|
3702
3744
|
|
|
3703
3745
|
[data-table-empty] {
|
|
3704
|
-
|
|
3746
|
+
padding: 1.5rem 0.75rem;
|
|
3705
3747
|
}
|
|
3706
3748
|
|
|
3707
3749
|
/**
|
|
@@ -3716,9 +3758,9 @@ a[data-card] {
|
|
|
3716
3758
|
============================================================================= */
|
|
3717
3759
|
|
|
3718
3760
|
[data-search-filter] {
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3761
|
+
display: flex;
|
|
3762
|
+
flex-direction: column;
|
|
3763
|
+
gap: 0.375rem;
|
|
3722
3764
|
}
|
|
3723
3765
|
|
|
3724
3766
|
/* =============================================================================
|
|
@@ -3726,41 +3768,41 @@ a[data-card] {
|
|
|
3726
3768
|
============================================================================= */
|
|
3727
3769
|
|
|
3728
3770
|
[data-search-input-wrapper] {
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3771
|
+
display: flex;
|
|
3772
|
+
align-items: center;
|
|
3773
|
+
position: relative;
|
|
3732
3774
|
}
|
|
3733
3775
|
|
|
3734
3776
|
[data-search-input] {
|
|
3735
|
-
|
|
3736
|
-
|
|
3737
|
-
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3777
|
+
width: 100%;
|
|
3778
|
+
box-sizing: border-box;
|
|
3779
|
+
border: 1px solid transparent;
|
|
3780
|
+
border-radius: 0.375rem;
|
|
3781
|
+
outline: none;
|
|
3782
|
+
font-size: inherit;
|
|
3783
|
+
background: transparent;
|
|
3742
3784
|
}
|
|
3743
3785
|
|
|
3744
3786
|
/* Remove native search decoration */
|
|
3745
3787
|
[data-search-input]::-webkit-search-decoration,
|
|
3746
3788
|
[data-search-input]::-webkit-search-cancel-button {
|
|
3747
|
-
|
|
3748
|
-
|
|
3789
|
+
-webkit-appearance: none;
|
|
3790
|
+
appearance: none;
|
|
3749
3791
|
}
|
|
3750
3792
|
|
|
3751
3793
|
[data-search-clear] {
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3794
|
+
position: absolute;
|
|
3795
|
+
right: 0.375rem;
|
|
3796
|
+
display: flex;
|
|
3797
|
+
align-items: center;
|
|
3798
|
+
justify-content: center;
|
|
3799
|
+
border: none;
|
|
3800
|
+
background: none;
|
|
3801
|
+
cursor: pointer;
|
|
3802
|
+
font-size: 1.125rem;
|
|
3803
|
+
line-height: 1;
|
|
3804
|
+
padding: 0.125rem 0.25rem;
|
|
3805
|
+
border-radius: 0.25rem;
|
|
3764
3806
|
}
|
|
3765
3807
|
|
|
3766
3808
|
/* =============================================================================
|
|
@@ -3768,37 +3810,37 @@ a[data-card] {
|
|
|
3768
3810
|
============================================================================= */
|
|
3769
3811
|
|
|
3770
3812
|
[data-search-tags] {
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3813
|
+
display: flex;
|
|
3814
|
+
flex-wrap: wrap;
|
|
3815
|
+
gap: 0.25rem;
|
|
3774
3816
|
}
|
|
3775
3817
|
|
|
3776
3818
|
[data-search-tag] {
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3819
|
+
display: inline-flex;
|
|
3820
|
+
align-items: center;
|
|
3821
|
+
gap: 0.25rem;
|
|
3822
|
+
border-radius: 0.25rem;
|
|
3823
|
+
font-size: 0.75rem;
|
|
3824
|
+
white-space: nowrap;
|
|
3783
3825
|
}
|
|
3784
3826
|
|
|
3785
3827
|
[data-search-tag-text] {
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3828
|
+
max-width: 200px;
|
|
3829
|
+
overflow: hidden;
|
|
3830
|
+
text-overflow: ellipsis;
|
|
3789
3831
|
}
|
|
3790
3832
|
|
|
3791
3833
|
[data-search-tag-remove] {
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3834
|
+
display: flex;
|
|
3835
|
+
align-items: center;
|
|
3836
|
+
justify-content: center;
|
|
3837
|
+
border: none;
|
|
3838
|
+
background: none;
|
|
3839
|
+
cursor: pointer;
|
|
3840
|
+
font-size: 0.875rem;
|
|
3841
|
+
line-height: 1;
|
|
3842
|
+
padding: 0;
|
|
3843
|
+
border-radius: 0.125rem;
|
|
3802
3844
|
}
|
|
3803
3845
|
|
|
3804
3846
|
/* =============================================================================
|
|
@@ -3806,35 +3848,35 @@ a[data-card] {
|
|
|
3806
3848
|
============================================================================= */
|
|
3807
3849
|
|
|
3808
3850
|
[data-search-filter][data-size='sm'] [data-search-input] {
|
|
3809
|
-
|
|
3810
|
-
|
|
3851
|
+
padding: 0.25rem 0.5rem;
|
|
3852
|
+
font-size: 0.75rem;
|
|
3811
3853
|
}
|
|
3812
3854
|
|
|
3813
3855
|
[data-search-filter][data-size='md'] [data-search-input],
|
|
3814
3856
|
[data-search-filter]:not([data-size]) [data-search-input] {
|
|
3815
|
-
|
|
3816
|
-
|
|
3857
|
+
padding: 0.375rem 0.625rem;
|
|
3858
|
+
font-size: 0.875rem;
|
|
3817
3859
|
}
|
|
3818
3860
|
|
|
3819
3861
|
[data-search-filter][data-size='lg'] [data-search-input] {
|
|
3820
|
-
|
|
3821
|
-
|
|
3862
|
+
padding: 0.5rem 0.75rem;
|
|
3863
|
+
font-size: 1rem;
|
|
3822
3864
|
}
|
|
3823
3865
|
|
|
3824
3866
|
[data-search-filter][data-size='sm'] [data-search-tag] {
|
|
3825
|
-
|
|
3826
|
-
|
|
3867
|
+
padding: 0.125rem 0.375rem;
|
|
3868
|
+
font-size: 0.625rem;
|
|
3827
3869
|
}
|
|
3828
3870
|
|
|
3829
3871
|
[data-search-filter][data-size='md'] [data-search-tag],
|
|
3830
3872
|
[data-search-filter]:not([data-size]) [data-search-tag] {
|
|
3831
|
-
|
|
3832
|
-
|
|
3873
|
+
padding: 0.125rem 0.5rem;
|
|
3874
|
+
font-size: 0.75rem;
|
|
3833
3875
|
}
|
|
3834
3876
|
|
|
3835
3877
|
[data-search-filter][data-size='lg'] [data-search-tag] {
|
|
3836
|
-
|
|
3837
|
-
|
|
3878
|
+
padding: 0.25rem 0.5rem;
|
|
3879
|
+
font-size: 0.875rem;
|
|
3838
3880
|
}
|
|
3839
3881
|
|
|
3840
3882
|
/**
|
|
@@ -3849,16 +3891,16 @@ a[data-card] {
|
|
|
3849
3891
|
============================================================================= */
|
|
3850
3892
|
|
|
3851
3893
|
[data-range] {
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3894
|
+
position: relative;
|
|
3895
|
+
display: grid;
|
|
3896
|
+
grid-template-rows: auto auto;
|
|
3897
|
+
height: 2.5rem;
|
|
3898
|
+
user-select: none;
|
|
3857
3899
|
}
|
|
3858
3900
|
|
|
3859
3901
|
[data-range][data-disabled] {
|
|
3860
|
-
|
|
3861
|
-
|
|
3902
|
+
pointer-events: none;
|
|
3903
|
+
opacity: 0.5;
|
|
3862
3904
|
}
|
|
3863
3905
|
|
|
3864
3906
|
/* =============================================================================
|
|
@@ -3866,27 +3908,27 @@ a[data-card] {
|
|
|
3866
3908
|
============================================================================= */
|
|
3867
3909
|
|
|
3868
3910
|
[data-range-track] {
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3911
|
+
position: relative;
|
|
3912
|
+
display: flex;
|
|
3913
|
+
align-items: center;
|
|
3914
|
+
height: 2rem;
|
|
3915
|
+
cursor: pointer;
|
|
3874
3916
|
}
|
|
3875
3917
|
|
|
3876
3918
|
[data-range-bar] {
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
|
|
3919
|
+
position: relative;
|
|
3920
|
+
width: 100%;
|
|
3921
|
+
height: 4px;
|
|
3922
|
+
border-radius: 9999px;
|
|
3881
3923
|
}
|
|
3882
3924
|
|
|
3883
3925
|
[data-range-selected] {
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3926
|
+
position: absolute;
|
|
3927
|
+
top: 50%;
|
|
3928
|
+
height: 4px;
|
|
3929
|
+
transform: translateY(-50%);
|
|
3930
|
+
border-radius: 9999px;
|
|
3931
|
+
pointer-events: none;
|
|
3890
3932
|
}
|
|
3891
3933
|
|
|
3892
3934
|
/* =============================================================================
|
|
@@ -3894,30 +3936,30 @@ a[data-card] {
|
|
|
3894
3936
|
============================================================================= */
|
|
3895
3937
|
|
|
3896
3938
|
[data-range-thumb] {
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
|
|
3904
|
-
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
|
|
3939
|
+
position: absolute;
|
|
3940
|
+
top: 50%;
|
|
3941
|
+
width: 1rem;
|
|
3942
|
+
height: 1rem;
|
|
3943
|
+
border-radius: 9999px;
|
|
3944
|
+
transform: translate(-50%, -50%);
|
|
3945
|
+
cursor: pointer;
|
|
3946
|
+
z-index: 1;
|
|
3947
|
+
border: 2px solid transparent;
|
|
3948
|
+
box-sizing: border-box;
|
|
3949
|
+
transition: box-shadow 150ms ease;
|
|
3908
3950
|
}
|
|
3909
3951
|
|
|
3910
3952
|
[data-range-thumb]:focus {
|
|
3911
|
-
|
|
3953
|
+
outline: none;
|
|
3912
3954
|
}
|
|
3913
3955
|
|
|
3914
3956
|
[data-range-thumb]:focus-visible {
|
|
3915
|
-
|
|
3957
|
+
outline: none;
|
|
3916
3958
|
}
|
|
3917
3959
|
|
|
3918
3960
|
[data-range-thumb][data-disabled] {
|
|
3919
|
-
|
|
3920
|
-
|
|
3961
|
+
pointer-events: none;
|
|
3962
|
+
cursor: not-allowed;
|
|
3921
3963
|
}
|
|
3922
3964
|
|
|
3923
3965
|
/* =============================================================================
|
|
@@ -3925,38 +3967,38 @@ a[data-card] {
|
|
|
3925
3967
|
============================================================================= */
|
|
3926
3968
|
|
|
3927
3969
|
[data-range-ticks] {
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
|
|
3931
|
-
|
|
3970
|
+
display: grid;
|
|
3971
|
+
grid-gap: calc((100% - 1rem * (var(--count) + 1)) / var(--count));
|
|
3972
|
+
grid-template-columns: repeat(var(--count), 1rem) 1rem;
|
|
3973
|
+
grid-template-rows: 7px auto;
|
|
3932
3974
|
}
|
|
3933
3975
|
|
|
3934
3976
|
[data-range-tick] {
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3938
|
-
|
|
3977
|
+
display: grid;
|
|
3978
|
+
grid-template-columns: repeat(2, 1fr);
|
|
3979
|
+
cursor: pointer;
|
|
3980
|
+
user-select: none;
|
|
3939
3981
|
}
|
|
3940
3982
|
|
|
3941
3983
|
[data-range-tick][data-disabled] {
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
|
|
3984
|
+
pointer-events: none;
|
|
3985
|
+
cursor: not-allowed;
|
|
3986
|
+
opacity: 0.5;
|
|
3945
3987
|
}
|
|
3946
3988
|
|
|
3947
3989
|
[data-tick-bar] {
|
|
3948
|
-
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
|
|
3990
|
+
grid-column-start: 2;
|
|
3991
|
+
height: 5px;
|
|
3992
|
+
border-left-width: 1px;
|
|
3993
|
+
border-left-style: solid;
|
|
3952
3994
|
}
|
|
3953
3995
|
|
|
3954
3996
|
[data-tick-label] {
|
|
3955
|
-
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
3997
|
+
grid-column: span 2;
|
|
3998
|
+
display: flex;
|
|
3999
|
+
justify-content: center;
|
|
4000
|
+
font-size: 0.625rem;
|
|
4001
|
+
line-height: 1.2;
|
|
3960
4002
|
}
|
|
3961
4003
|
|
|
3962
4004
|
/**
|
|
@@ -3971,8 +4013,8 @@ a[data-card] {
|
|
|
3971
4013
|
============================================================================= */
|
|
3972
4014
|
|
|
3973
4015
|
[data-timeline] {
|
|
3974
|
-
|
|
3975
|
-
|
|
4016
|
+
display: flex;
|
|
4017
|
+
flex-direction: column;
|
|
3976
4018
|
}
|
|
3977
4019
|
|
|
3978
4020
|
/* =============================================================================
|
|
@@ -3980,9 +4022,9 @@ a[data-card] {
|
|
|
3980
4022
|
============================================================================= */
|
|
3981
4023
|
|
|
3982
4024
|
[data-timeline-item] {
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
4025
|
+
display: grid;
|
|
4026
|
+
grid-template-columns: 2.5rem 1fr;
|
|
4027
|
+
gap: 0.75rem;
|
|
3986
4028
|
}
|
|
3987
4029
|
|
|
3988
4030
|
/* =============================================================================
|
|
@@ -3990,33 +4032,33 @@ a[data-card] {
|
|
|
3990
4032
|
============================================================================= */
|
|
3991
4033
|
|
|
3992
4034
|
[data-timeline-marker] {
|
|
3993
|
-
|
|
3994
|
-
|
|
3995
|
-
|
|
4035
|
+
display: flex;
|
|
4036
|
+
flex-direction: column;
|
|
4037
|
+
align-items: center;
|
|
3996
4038
|
}
|
|
3997
4039
|
|
|
3998
4040
|
[data-timeline-circle] {
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
|
|
4041
|
+
width: 2rem;
|
|
4042
|
+
height: 2rem;
|
|
4043
|
+
min-height: 2rem;
|
|
4044
|
+
border-radius: 9999px;
|
|
4045
|
+
border: 2px solid currentColor;
|
|
4046
|
+
display: flex;
|
|
4047
|
+
align-items: center;
|
|
4048
|
+
justify-content: center;
|
|
4049
|
+
font-weight: 600;
|
|
4050
|
+
font-size: 0.75rem;
|
|
4051
|
+
transition:
|
|
4052
|
+
background-color 0.2s ease,
|
|
4053
|
+
border-color 0.2s ease,
|
|
4054
|
+
color 0.2s ease;
|
|
4013
4055
|
}
|
|
4014
4056
|
|
|
4015
4057
|
[data-timeline-connector] {
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4019
|
-
|
|
4058
|
+
width: 2px;
|
|
4059
|
+
flex: 1;
|
|
4060
|
+
min-height: 1.5rem;
|
|
4061
|
+
transition: background-color 0.2s ease;
|
|
4020
4062
|
}
|
|
4021
4063
|
|
|
4022
4064
|
/* =============================================================================
|
|
@@ -4024,62 +4066,62 @@ a[data-card] {
|
|
|
4024
4066
|
============================================================================= */
|
|
4025
4067
|
|
|
4026
4068
|
[data-timeline-body] {
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4069
|
+
padding-bottom: 1.5rem;
|
|
4070
|
+
min-height: 2rem;
|
|
4071
|
+
display: flex;
|
|
4072
|
+
flex-direction: column;
|
|
4073
|
+
justify-content: flex-start;
|
|
4074
|
+
padding-top: 0.25rem;
|
|
4033
4075
|
}
|
|
4034
4076
|
|
|
4035
4077
|
[data-timeline-title] {
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
|
|
4078
|
+
font-weight: 600;
|
|
4079
|
+
font-size: 0.9375rem;
|
|
4080
|
+
line-height: 1.4;
|
|
4039
4081
|
}
|
|
4040
4082
|
|
|
4041
4083
|
[data-timeline-description] {
|
|
4042
|
-
|
|
4043
|
-
|
|
4044
|
-
|
|
4084
|
+
margin-top: 0.25rem;
|
|
4085
|
+
font-size: 0.8125rem;
|
|
4086
|
+
line-height: 1.5;
|
|
4045
4087
|
}
|
|
4046
4088
|
|
|
4047
4089
|
/* Reveal — scroll-triggered entry animations */
|
|
4048
4090
|
|
|
4049
4091
|
[data-reveal] {
|
|
4050
|
-
|
|
4051
|
-
|
|
4052
|
-
|
|
4053
|
-
|
|
4092
|
+
opacity: 0;
|
|
4093
|
+
transition:
|
|
4094
|
+
opacity var(--reveal-duration, 600ms) var(--reveal-easing, cubic-bezier(0.4, 0, 0.2, 1)),
|
|
4095
|
+
translate var(--reveal-duration, 600ms) var(--reveal-easing, cubic-bezier(0.4, 0, 0.2, 1));
|
|
4054
4096
|
}
|
|
4055
4097
|
|
|
4056
4098
|
[data-reveal='up'] {
|
|
4057
|
-
|
|
4099
|
+
translate: 0 var(--reveal-distance, 1.5rem);
|
|
4058
4100
|
}
|
|
4059
4101
|
[data-reveal='down'] {
|
|
4060
|
-
|
|
4102
|
+
translate: 0 calc(-1 * var(--reveal-distance, 1.5rem));
|
|
4061
4103
|
}
|
|
4062
4104
|
[data-reveal='left'] {
|
|
4063
|
-
|
|
4105
|
+
translate: var(--reveal-distance, 1.5rem) 0;
|
|
4064
4106
|
}
|
|
4065
4107
|
[data-reveal='right'] {
|
|
4066
|
-
|
|
4108
|
+
translate: calc(-1 * var(--reveal-distance, 1.5rem)) 0;
|
|
4067
4109
|
}
|
|
4068
4110
|
[data-reveal='none'] {
|
|
4069
|
-
|
|
4111
|
+
translate: 0 0;
|
|
4070
4112
|
}
|
|
4071
4113
|
|
|
4072
4114
|
[data-reveal][data-reveal-visible] {
|
|
4073
|
-
|
|
4074
|
-
|
|
4115
|
+
opacity: 1;
|
|
4116
|
+
translate: 0 0;
|
|
4075
4117
|
}
|
|
4076
4118
|
|
|
4077
4119
|
@media (prefers-reduced-motion: reduce) {
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
|
|
4120
|
+
[data-reveal] {
|
|
4121
|
+
transition-duration: 0ms !important;
|
|
4122
|
+
opacity: 1 !important;
|
|
4123
|
+
translate: 0 !important;
|
|
4124
|
+
}
|
|
4083
4125
|
}
|
|
4084
4126
|
|
|
4085
4127
|
/* Graph paper — minor + major grid background utility
|
|
@@ -4109,61 +4151,61 @@ a[data-card] {
|
|
|
4109
4151
|
*/
|
|
4110
4152
|
|
|
4111
4153
|
[data-graph-paper] {
|
|
4112
|
-
|
|
4113
|
-
|
|
4114
|
-
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
4154
|
+
background-image:
|
|
4155
|
+
linear-gradient(
|
|
4156
|
+
var(--graph-paper-color, currentColor) var(--major-grid, 0.5px),
|
|
4157
|
+
transparent var(--major-grid, 0.5px)
|
|
4158
|
+
),
|
|
4159
|
+
linear-gradient(
|
|
4160
|
+
90deg,
|
|
4161
|
+
var(--graph-paper-color, currentColor) var(--major-grid, 0.5px),
|
|
4162
|
+
transparent var(--major-grid, 0.5px)
|
|
4163
|
+
),
|
|
4164
|
+
linear-gradient(
|
|
4165
|
+
var(--graph-paper-color, currentColor) var(--minor-grid, 0.5px),
|
|
4166
|
+
transparent var(--minor-grid, 0.5px)
|
|
4167
|
+
),
|
|
4168
|
+
linear-gradient(
|
|
4169
|
+
90deg,
|
|
4170
|
+
var(--graph-paper-color, currentColor) var(--minor-grid, 0.5px),
|
|
4171
|
+
transparent var(--minor-grid, 0.5px)
|
|
4172
|
+
);
|
|
4173
|
+
background-size:
|
|
4174
|
+
var(--size, calc(5 * var(--unit, 0.5rem))) var(--size, calc(5 * var(--unit, 0.5rem))),
|
|
4175
|
+
var(--size, calc(5 * var(--unit, 0.5rem))) var(--size, calc(5 * var(--unit, 0.5rem))),
|
|
4176
|
+
var(--unit, 0.5rem) var(--unit, 0.5rem),
|
|
4177
|
+
var(--unit, 0.5rem) var(--unit, 0.5rem);
|
|
4178
|
+
background-position:
|
|
4179
|
+
calc(-1 * var(--minor-grid, 0.5px)) calc(-1 * var(--minor-grid, 0.5px)),
|
|
4180
|
+
calc(-1 * var(--minor-grid, 0.5px)) calc(-1 * var(--minor-grid, 0.5px)),
|
|
4181
|
+
calc(-1 * var(--minor-grid, 0.5px)) calc(-1 * var(--minor-grid, 0.5px)),
|
|
4182
|
+
calc(-1 * var(--minor-grid, 0.5px)) calc(-1 * var(--minor-grid, 0.5px));
|
|
4141
4183
|
}
|
|
4142
4184
|
|
|
4143
4185
|
[data-grid-paper] {
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
|
|
4152
|
-
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
|
|
4156
|
-
|
|
4157
|
-
|
|
4186
|
+
background-image:
|
|
4187
|
+
linear-gradient(
|
|
4188
|
+
var(--grid-paper-color, currentColor) var(--grid-line, 0.5px),
|
|
4189
|
+
transparent var(--grid-line, 0.5px)
|
|
4190
|
+
),
|
|
4191
|
+
linear-gradient(
|
|
4192
|
+
90deg,
|
|
4193
|
+
var(--grid-paper-color, currentColor) var(--grid-line, 0.5px),
|
|
4194
|
+
transparent var(--grid-line, 0.5px)
|
|
4195
|
+
);
|
|
4196
|
+
background-size: var(--unit, 0.5rem) var(--unit, 0.5rem);
|
|
4197
|
+
background-position:
|
|
4198
|
+
calc(-1 * var(--grid-line, 0.5px)) calc(-1 * var(--grid-line, 0.5px)),
|
|
4199
|
+
calc(-1 * var(--grid-line, 0.5px)) calc(-1 * var(--grid-line, 0.5px));
|
|
4158
4200
|
}
|
|
4159
4201
|
|
|
4160
4202
|
[data-ruled-paper] {
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
|
|
4164
|
-
|
|
4165
|
-
|
|
4166
|
-
|
|
4203
|
+
background-image: linear-gradient(
|
|
4204
|
+
var(--ruled-paper-color, currentColor) var(--rule-size, 0.5px),
|
|
4205
|
+
transparent var(--rule-size, 0.5px)
|
|
4206
|
+
);
|
|
4207
|
+
background-size: 100% var(--unit, 1.5rem);
|
|
4208
|
+
background-position: 0 calc(-1 * var(--rule-size, 0.5px));
|
|
4167
4209
|
}
|
|
4168
4210
|
|
|
4169
4211
|
/**
|
|
@@ -4248,23 +4290,47 @@ a[data-card] {
|
|
|
4248
4290
|
============================================================================= */
|
|
4249
4291
|
|
|
4250
4292
|
@keyframes fn-slide-in-right {
|
|
4251
|
-
from {
|
|
4252
|
-
|
|
4293
|
+
from {
|
|
4294
|
+
opacity: 0;
|
|
4295
|
+
transform: translateX(4rem);
|
|
4296
|
+
}
|
|
4297
|
+
to {
|
|
4298
|
+
opacity: 1;
|
|
4299
|
+
transform: translateX(0);
|
|
4300
|
+
}
|
|
4253
4301
|
}
|
|
4254
4302
|
|
|
4255
4303
|
@keyframes fn-slide-in-left {
|
|
4256
|
-
from {
|
|
4257
|
-
|
|
4304
|
+
from {
|
|
4305
|
+
opacity: 0;
|
|
4306
|
+
transform: translateX(-4rem);
|
|
4307
|
+
}
|
|
4308
|
+
to {
|
|
4309
|
+
opacity: 1;
|
|
4310
|
+
transform: translateX(0);
|
|
4311
|
+
}
|
|
4258
4312
|
}
|
|
4259
4313
|
|
|
4260
4314
|
@keyframes fn-slide-in-top {
|
|
4261
|
-
from {
|
|
4262
|
-
|
|
4315
|
+
from {
|
|
4316
|
+
opacity: 0;
|
|
4317
|
+
transform: translateY(-4rem);
|
|
4318
|
+
}
|
|
4319
|
+
to {
|
|
4320
|
+
opacity: 1;
|
|
4321
|
+
transform: translateY(0);
|
|
4322
|
+
}
|
|
4263
4323
|
}
|
|
4264
4324
|
|
|
4265
4325
|
@keyframes fn-slide-in-bottom {
|
|
4266
|
-
from {
|
|
4267
|
-
|
|
4326
|
+
from {
|
|
4327
|
+
opacity: 0;
|
|
4328
|
+
transform: translateY(4rem);
|
|
4329
|
+
}
|
|
4330
|
+
to {
|
|
4331
|
+
opacity: 1;
|
|
4332
|
+
transform: translateY(0);
|
|
4333
|
+
}
|
|
4268
4334
|
}
|
|
4269
4335
|
|
|
4270
4336
|
/* =============================================================================
|