coveragebook_components 0.18.6 → 0.18.8
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.
- checksums.yaml +4 -4
- data/app/assets/build/coco/coco.css +74 -22
- data/app/assets/build/coco/coco.js +261 -412
- data/app/components/coco/indicators/badge/badge.css +36 -18
- data/app/components/coco/indicators/badge/badge.rb +15 -2
- data/lib/coco.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a51adb34f4dc39457d366fbbc14b9e2abbd2fff64af693cb117911d3268edb1
|
4
|
+
data.tar.gz: 2778a57ba70462d2fd13d789808f07c5c04fb3706da3a137528b783cd19e733e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed9dfd6d27da7988a058de1a47e5a8ab28d8705f8bab863e9c06af7b853cf258c4eae4d141a1e1fcbe140903df52088ad3868a98270edfd8fe3377364c3bcea7
|
7
|
+
data.tar.gz: 1133b75a1f2d5c687aa80ba08d4badc01bd763d107a1aada465f2ea94217c1505a59005d04218f99cf587dbd125a7e8deb1f06a9c08224adaf5a434b02e902d0
|
@@ -2876,9 +2876,17 @@ select{
|
|
2876
2876
|
display: flex;
|
2877
2877
|
align-items: center;
|
2878
2878
|
white-space: nowrap;
|
2879
|
-
border-radius: 0.
|
2879
|
+
border-radius: 0.75rem;
|
2880
2880
|
padding-left: 0.5rem;
|
2881
2881
|
padding-right: 0.5rem;
|
2882
|
+
padding-top: 0.125rem;
|
2883
|
+
padding-bottom: 0.125rem;
|
2884
|
+
-webkit-font-smoothing: antialiased;
|
2885
|
+
-moz-osx-font-smoothing: grayscale;
|
2886
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
2887
|
+
font-weight: 600;
|
2888
|
+
font-size: 14px;
|
2889
|
+
line-height: 16px;
|
2882
2890
|
width: -moz-min-content;
|
2883
2891
|
width: min-content
|
2884
2892
|
}
|
@@ -2887,24 +2895,6 @@ select{
|
|
2887
2895
|
margin-right: 0.25rem
|
2888
2896
|
}
|
2889
2897
|
|
2890
|
-
[data-coco][data-component="badge"][data-size="sm"]{
|
2891
|
-
padding-top: 0.25rem;
|
2892
|
-
padding-bottom: 0.25rem;
|
2893
|
-
font-family: proxima-nova, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
2894
|
-
font-weight: 600;
|
2895
|
-
font-size: 14px;
|
2896
|
-
line-height: 16px
|
2897
|
-
}
|
2898
|
-
|
2899
|
-
[data-coco][data-component="badge"][data-size="md"]{
|
2900
|
-
padding-top: 0.25rem;
|
2901
|
-
padding-bottom: 0.25rem;
|
2902
|
-
font-family: proxima-nova, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
2903
|
-
font-weight: 600;
|
2904
|
-
font-size: 16px;
|
2905
|
-
line-height: 20px
|
2906
|
-
}
|
2907
|
-
|
2908
2898
|
[data-coco][data-component="badge"][data-theme="neutral-dark"]{
|
2909
2899
|
--tw-bg-opacity: 1;
|
2910
2900
|
background-color: rgb(17 24 39 / var(--tw-bg-opacity));
|
@@ -2920,10 +2910,9 @@ select{
|
|
2920
2910
|
}
|
2921
2911
|
|
2922
2912
|
[data-coco][data-component="badge"][data-theme="neutral-muted"]{
|
2923
|
-
|
2924
|
-
background-color: rgb(209 213 219 / var(--tw-bg-opacity));
|
2913
|
+
background-color: rgba(0, 12, 39, 0.06);
|
2925
2914
|
--tw-text-opacity: 1;
|
2926
|
-
color: rgb(
|
2915
|
+
color: rgb(17 24 39 / var(--tw-text-opacity))
|
2927
2916
|
}
|
2928
2917
|
|
2929
2918
|
[data-coco][data-component="badge"][data-theme="primary"]{
|
@@ -2933,6 +2922,69 @@ select{
|
|
2933
2922
|
color: rgb(255 255 255 / var(--tw-text-opacity))
|
2934
2923
|
}
|
2935
2924
|
|
2925
|
+
[data-coco][data-component="badge"][data-theme="positive"]{
|
2926
|
+
--tw-bg-opacity: 1;
|
2927
|
+
background-color: rgb(26 136 113 / var(--tw-bg-opacity));
|
2928
|
+
--tw-text-opacity: 1;
|
2929
|
+
color: rgb(255 255 255 / var(--tw-text-opacity))
|
2930
|
+
}
|
2931
|
+
|
2932
|
+
[data-coco][data-component="badge"][data-theme="negative"]{
|
2933
|
+
--tw-bg-opacity: 1;
|
2934
|
+
background-color: rgb(220 38 38 / var(--tw-bg-opacity));
|
2935
|
+
--tw-text-opacity: 1;
|
2936
|
+
color: rgb(255 255 255 / var(--tw-text-opacity))
|
2937
|
+
}
|
2938
|
+
|
2939
|
+
[data-coco][data-component="badge"][data-theme="warning"]{
|
2940
|
+
--tw-bg-opacity: 1;
|
2941
|
+
background-color: rgb(245 158 11 / var(--tw-bg-opacity));
|
2942
|
+
--tw-text-opacity: 1;
|
2943
|
+
color: rgb(255 255 255 / var(--tw-text-opacity))
|
2944
|
+
}
|
2945
|
+
|
2946
|
+
[data-coco][data-component="badge"][data-theme="info"]{
|
2947
|
+
--tw-bg-opacity: 1;
|
2948
|
+
background-color: rgb(2 132 199 / var(--tw-bg-opacity));
|
2949
|
+
--tw-text-opacity: 1;
|
2950
|
+
color: rgb(255 255 255 / var(--tw-text-opacity))
|
2951
|
+
}
|
2952
|
+
|
2953
|
+
[data-coco][data-component="badge"][data-theme="primary-light"]{
|
2954
|
+
--tw-bg-opacity: 1;
|
2955
|
+
background-color: rgb(209 231 226 / var(--tw-bg-opacity));
|
2956
|
+
--tw-text-opacity: 1;
|
2957
|
+
color: rgb(17 24 39 / var(--tw-text-opacity))
|
2958
|
+
}
|
2959
|
+
|
2960
|
+
[data-coco][data-component="badge"][data-theme="positive-light"]{
|
2961
|
+
--tw-bg-opacity: 1;
|
2962
|
+
background-color: rgb(209 231 226 / var(--tw-bg-opacity));
|
2963
|
+
--tw-text-opacity: 1;
|
2964
|
+
color: rgb(17 24 39 / var(--tw-text-opacity))
|
2965
|
+
}
|
2966
|
+
|
2967
|
+
[data-coco][data-component="badge"][data-theme="negative-light"]{
|
2968
|
+
--tw-bg-opacity: 1;
|
2969
|
+
background-color: rgb(254 226 226 / var(--tw-bg-opacity));
|
2970
|
+
--tw-text-opacity: 1;
|
2971
|
+
color: rgb(17 24 39 / var(--tw-text-opacity))
|
2972
|
+
}
|
2973
|
+
|
2974
|
+
[data-coco][data-component="badge"][data-theme="warning-light"]{
|
2975
|
+
--tw-bg-opacity: 1;
|
2976
|
+
background-color: rgb(255 251 235 / var(--tw-bg-opacity));
|
2977
|
+
--tw-text-opacity: 1;
|
2978
|
+
color: rgb(17 24 39 / var(--tw-text-opacity))
|
2979
|
+
}
|
2980
|
+
|
2981
|
+
[data-coco][data-component="badge"][data-theme="info-light"]{
|
2982
|
+
--tw-bg-opacity: 1;
|
2983
|
+
background-color: rgb(224 242 254 / var(--tw-bg-opacity));
|
2984
|
+
--tw-text-opacity: 1;
|
2985
|
+
color: rgb(17 24 39 / var(--tw-text-opacity))
|
2986
|
+
}
|
2987
|
+
|
2936
2988
|
[data-coco][data-component="stamp"]:not([data-style="compact"]){
|
2937
2989
|
position: relative;
|
2938
2990
|
border-radius: 9999px
|