coveragebook_components 0.10.0 → 0.10.1.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/build/coco/app.css +4339 -3025
- data/app/assets/build/coco/app.js +118 -106
- data/app/assets/build/coco/book.css +1492 -92
- data/app/assets/build/coco/book.js +279 -18
- data/app/assets/css/app/tippy.css +1 -1
- data/app/assets/css/app.css +3 -3
- data/app/assets/css/{base/base.css → base.css} +14 -7
- data/app/assets/css/book.css +2 -2
- data/app/assets/css/{libs → shared}/tippy.css +20 -1
- data/app/assets/css/shared/utils/text.css +143 -0
- data/app/assets/js/app.js +2 -2
- data/app/assets/js/book.js +2 -2
- data/app/assets/js/libs/alpine/directives/dropdown.js +1 -1
- data/app/assets/js/libs/alpine/directives/tooltip.js +1 -1
- data/app/assets/js/shared/components.js +4 -0
- data/app/components/coco/app/blocks/header/header.js +1 -1
- data/app/components/coco/app/blocks/header/header.rb +2 -2
- data/app/components/coco/app/blocks/nav_drawer/nav_drawer.css +4 -0
- data/app/components/coco/app/blocks/nav_drawer/nav_drawer.js +1 -1
- data/app/components/coco/app/blocks/sidebar_nav/item/item.css +3 -3
- data/app/components/coco/app/blocks/sidebar_nav/item/item.js +2 -2
- data/app/components/coco/app/blocks/sidebar_nav/menu/menu.css +3 -3
- data/app/components/coco/app/blocks/sidebar_nav/menu/menu.js +1 -1
- data/app/components/coco/app/blocks/sidebar_nav/navbar/navbar.js +1 -1
- data/app/components/coco/app/blocks/slide_editor/slide_editor.js +1 -1
- data/app/components/coco/app/elements/alert/alert.css +4 -4
- data/app/components/coco/app/elements/alert/alert.js +1 -1
- data/app/components/coco/app/elements/color_picker/color_picker.css +2 -2
- data/app/components/coco/app/elements/color_picker/color_picker.js +1 -1
- data/app/components/coco/app/elements/color_picker_button/color_picker_button.js +1 -1
- data/app/components/coco/app/elements/color_picker_button/color_picker_button.rb +3 -3
- data/app/components/coco/app/elements/confirm_panel/confirm_panel.css +1 -1
- data/app/components/coco/app/elements/confirm_panel/confirm_panel.js +1 -1
- data/app/components/coco/app/elements/image_picker/image_picker.css +4 -4
- data/app/components/coco/app/elements/image_picker/image_picker.js +1 -1
- data/app/components/coco/app/elements/image_picker_button/image_picker_button.js +1 -1
- data/app/components/coco/app/elements/image_picker_button/image_picker_button.rb +3 -3
- data/app/components/coco/app/elements/layout_picker_button/layout_picker_button.js +1 -1
- data/app/components/coco/app/elements/layout_picker_button/layout_picker_button.rb +3 -3
- data/app/components/coco/app/elements/link/link.rb +1 -1
- data/app/components/coco/app/elements/menu/menu.css +5 -5
- data/app/components/coco/app/elements/menu_button/menu_button.js +1 -1
- data/app/components/coco/app/elements/menu_button/menu_button.rb +3 -3
- data/app/components/coco/app/elements/menu_items/user_profile/user_profile.css +1 -1
- data/app/components/coco/app/elements/notice/notice.js +1 -1
- data/app/components/coco/app/elements/seamless_textarea/seamless_textarea.js +1 -1
- data/app/components/coco/app/elements/snackbar/snackbar.css +1 -1
- data/app/components/coco/app/elements/snackbar/snackbar.js +1 -1
- data/app/components/coco/app/elements/system_banner/system_banner.js +1 -1
- data/app/components/coco/app/elements/toast/toast.js +1 -1
- data/app/components/coco/app/elements/toolbar/toolbar.js +1 -1
- data/app/components/coco/app/elements/toolbar/toolbar.rb +1 -1
- data/app/components/coco/app/fields/button_component.rb +1 -1
- data/app/components/coco/app/fields/submit_component.rb +1 -0
- data/app/components/coco/app/layouts/application/application.js +1 -1
- data/app/components/coco/app/layouts/page/page.js +1 -1
- data/app/components/coco/{app/elements → shared}/button/button.css +104 -32
- data/app/components/coco/shared/button/button.html.erb +83 -0
- data/app/components/coco/{base → shared}/button/button.js +2 -1
- data/app/components/coco/{base → shared}/button/button.rb +107 -42
- data/app/components/coco/{base → shared}/button/button_dropdown.js +11 -2
- data/app/components/coco/{app/elements → shared}/button_group/button_group.css +1 -1
- data/app/components/coco/{app/elements → shared}/button_group/button_group.js +12 -4
- data/app/components/coco/shared/button_group/button_group.rb +40 -0
- data/app/components/coco/{app/elements → shared}/button_to/button_to.css +1 -1
- data/app/components/coco/shared/button_to/button_to.rb +50 -0
- data/app/components/coco/{base → shared}/dropdown/dropdown.js +1 -1
- data/app/components/coco/{base → shared}/icon/icon.js +1 -1
- data/app/components/coco/{base → shared}/image_uploader/image_uploader.js +1 -1
- data/app/components/coco/{base → shared}/modal/modal.js +2 -2
- data/app/components/coco/{base → shared}/modal_dialog/modal_dialog.js +1 -1
- data/app/components/coco/{base → shared}/modal_lightbox/modal_lightbox.js +1 -1
- data/app/components/coco/{base → shared}/poll_controller/poll_controller.js +1 -1
- data/app/helpers/coco/app_helper.rb +0 -23
- data/app/helpers/coco/component_helper.rb +1 -1
- data/app/helpers/coco/{base_helper.rb → shared_helper.rb} +24 -1
- data/app/helpers/coco/url_helper.rb +1 -1
- data/lib/coco/engine.rb +2 -2
- data/lib/coco.rb +1 -1
- data/lib/generators/coco/coco_generator.rb +1 -1
- metadata +75 -80
- data/app/assets/css/base/components/coco.css +0 -5
- data/app/assets/css/base/components/dropdown.css +0 -7
- data/app/assets/css/base/components/tooltip.css +0 -19
- data/app/assets/css/base/utils/text.css +0 -79
- data/app/assets/js/base/components.js +0 -4
- data/app/components/coco/app/elements/button/button.rb +0 -87
- data/app/components/coco/app/elements/button_group/button_group.rb +0 -42
- data/app/components/coco/app/elements/button_to/button_to.rb +0 -54
- data/app/components/coco/base/button/button.css +0 -75
- data/app/components/coco/base/button/button.html.erb +0 -71
- /data/app/assets/css/app/{utilities.css → utils.css} +0 -0
- /data/app/assets/css/{base → shared}/utils/colors.css +0 -0
- /data/app/assets/css/{base → shared}/utils/icons.css +0 -0
- /data/app/assets/js/{coco.js → shared/coco.js} +0 -0
- /data/app/components/coco/{base → shared}/avatar/avatar.css +0 -0
- /data/app/components/coco/{base → shared}/avatar/avatar.rb +0 -0
- /data/app/components/coco/{app/elements → shared}/button_group/button_group.html.erb +0 -0
- /data/app/components/coco/{app/elements → shared}/button_to/button_to.html.erb +0 -0
- /data/app/components/coco/{base → shared}/content/content.rb +0 -0
- /data/app/components/coco/{base → shared}/dropdown/dropdown.css +0 -0
- /data/app/components/coco/{base → shared}/dropdown/dropdown.html.erb +0 -0
- /data/app/components/coco/{base → shared}/dropdown/dropdown.rb +0 -0
- /data/app/components/coco/{base → shared}/embeds/youtube/youtube.css +0 -0
- /data/app/components/coco/{base → shared}/embeds/youtube/youtube.html.erb +0 -0
- /data/app/components/coco/{base → shared}/embeds/youtube/youtube.rb +0 -0
- /data/app/components/coco/{base → shared}/icon/icon.css +0 -0
- /data/app/components/coco/{base → shared}/icon/icon.html.erb +0 -0
- /data/app/components/coco/{base → shared}/icon/icon.rb +0 -0
- /data/app/components/coco/{base → shared}/image/image.css +0 -0
- /data/app/components/coco/{base → shared}/image/image.rb +0 -0
- /data/app/components/coco/{base → shared}/image_uploader/image_uploader.css +0 -0
- /data/app/components/coco/{base → shared}/image_uploader/image_uploader.html.erb +0 -0
- /data/app/components/coco/{base → shared}/image_uploader/image_uploader.rb +0 -0
- /data/app/components/coco/{base → shared}/link/link.css +0 -0
- /data/app/components/coco/{base → shared}/link/link.rb +0 -0
- /data/app/components/coco/{base → shared}/modal/modal.css +0 -0
- /data/app/components/coco/{base → shared}/modal/modal.html.erb +0 -0
- /data/app/components/coco/{base → shared}/modal/modal.rb +0 -0
- /data/app/components/coco/{base → shared}/modal_dialog/modal_dialog.css +0 -0
- /data/app/components/coco/{base → shared}/modal_dialog/modal_dialog.html.erb +0 -0
- /data/app/components/coco/{base → shared}/modal_dialog/modal_dialog.rb +0 -0
- /data/app/components/coco/{base → shared}/modal_lightbox/modal_lightbox.css +0 -0
- /data/app/components/coco/{base → shared}/modal_lightbox/modal_lightbox.html.erb +0 -0
- /data/app/components/coco/{base → shared}/modal_lightbox/modal_lightbox.rb +0 -0
- /data/app/components/coco/{base → shared}/pager_link/pager_link.css +0 -0
- /data/app/components/coco/{base → shared}/pager_link/pager_link.html.erb +0 -0
- /data/app/components/coco/{base → shared}/pager_link/pager_link.rb +0 -0
- /data/app/components/coco/{base → shared}/panel/panel.css +0 -0
- /data/app/components/coco/{base → shared}/panel/panel.html.erb +0 -0
- /data/app/components/coco/{base → shared}/panel/panel.rb +0 -0
- /data/app/components/coco/{base → shared}/placeholder/placeholder.css +0 -0
- /data/app/components/coco/{base → shared}/placeholder/placeholder.html.erb +0 -0
- /data/app/components/coco/{base → shared}/placeholder/placeholder.rb +0 -0
- /data/app/components/coco/{base → shared}/poll_controller/poll_controller.css +0 -0
- /data/app/components/coco/{base → shared}/poll_controller/poll_controller.html.erb +0 -0
- /data/app/components/coco/{base → shared}/poll_controller/poll_controller.rb +0 -0
- /data/app/components/coco/{base → shared}/svg/svg.html.erb +0 -0
- /data/app/components/coco/{base → shared}/svg/svg.rb +0 -0
@@ -584,6 +584,15 @@ select {
|
|
584
584
|
display: none !important;
|
585
585
|
}
|
586
586
|
|
587
|
+
[data-coco] {
|
588
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
589
|
+
--tw-text-opacity: 1;
|
590
|
+
color: rgb(17 24 39 / var(--tw-text-opacity));
|
591
|
+
}
|
592
|
+
[x-dropdown] [x-dropdown\:content] {
|
593
|
+
display: none;
|
594
|
+
}
|
595
|
+
|
587
596
|
*, ::before, ::after {
|
588
597
|
--tw-border-spacing-x: 0;
|
589
598
|
--tw-border-spacing-y: 0;
|
@@ -689,10 +698,12 @@ select {
|
|
689
698
|
.tippy-box[data-theme^="coco-"] {
|
690
699
|
white-space: normal;
|
691
700
|
background-color: transparent;
|
692
|
-
font-size: 16px;
|
693
|
-
line-height: 20px;
|
694
701
|
--tw-text-opacity: 1;
|
695
702
|
color: rgb(17 24 39 / var(--tw-text-opacity));
|
703
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
704
|
+
font-size: 16px;
|
705
|
+
line-height: 20px;
|
706
|
+
font-weight: 600;
|
696
707
|
}
|
697
708
|
.tippy-box[data-theme^="coco-"] .tippy-content {
|
698
709
|
padding: 0px;
|
@@ -710,13 +721,15 @@ select {
|
|
710
721
|
border-radius: 0.5rem;
|
711
722
|
--tw-bg-opacity: 1;
|
712
723
|
background-color: rgb(31 41 55 / var(--tw-bg-opacity));
|
713
|
-
font-size: 14px;
|
714
|
-
line-height: 16px;
|
715
724
|
--tw-text-opacity: 1;
|
716
725
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
717
726
|
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
718
727
|
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
719
728
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
729
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
730
|
+
font-size: 14px;
|
731
|
+
line-height: 16px;
|
732
|
+
font-weight: 600;
|
720
733
|
}
|
721
734
|
.tippy-box[data-theme~="coco-tooltip"] .tippy-content {
|
722
735
|
max-width: 240px;
|
@@ -735,14 +748,6 @@ select {
|
|
735
748
|
.tippy-box[data-theme~="coco-tooltip"] .tippy-svg-arrow > svg:last-child {
|
736
749
|
fill: #111827;
|
737
750
|
}
|
738
|
-
[x-dropdown] [x-dropdown\:content] {
|
739
|
-
display: none;
|
740
|
-
}
|
741
|
-
[data-coco] {
|
742
|
-
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
743
|
-
--tw-text-opacity: 1;
|
744
|
-
color: rgb(17 24 39 / var(--tw-text-opacity));
|
745
|
-
}
|
746
751
|
[data-coco][data-component="avatar"] {
|
747
752
|
display: block;
|
748
753
|
flex: none;
|
@@ -769,99 +774,1405 @@ select {
|
|
769
774
|
height: 2rem;
|
770
775
|
width: 2rem;
|
771
776
|
}
|
772
|
-
.coco-button-wrapper {
|
773
|
-
display: contents !important;
|
777
|
+
.coco-button-wrapper {
|
778
|
+
display: contents !important;
|
779
|
+
}
|
780
|
+
[data-coco].coco-button {
|
781
|
+
display: flex;
|
782
|
+
width: auto;
|
783
|
+
flex: none;
|
784
|
+
-webkit-user-select: none;
|
785
|
+
-moz-user-select: none;
|
786
|
+
user-select: none;
|
787
|
+
border-width: 1px;
|
788
|
+
border-color: transparent;
|
789
|
+
background-color: transparent;
|
790
|
+
color: currentColor;
|
791
|
+
text-decoration-line: none;
|
792
|
+
outline: 2px solid transparent;
|
793
|
+
outline-offset: 2px;
|
794
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
795
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
796
|
+
transition-duration: 150ms;
|
797
|
+
}
|
798
|
+
[data-coco].coco-button:focus-visible {
|
799
|
+
outline-width: 0px;
|
800
|
+
}
|
801
|
+
[data-coco].coco-button {
|
802
|
+
width: -moz-min-content;
|
803
|
+
width: min-content;
|
804
|
+
}
|
805
|
+
[data-coco].coco-button .button-inner {
|
806
|
+
margin-left: auto;
|
807
|
+
margin-right: auto;
|
808
|
+
display: inline-flex;
|
809
|
+
align-items: center;
|
810
|
+
gap: 0.5rem;
|
811
|
+
text-align: center;
|
812
|
+
width: -moz-fit-content;
|
813
|
+
width: fit-content;
|
814
|
+
}
|
815
|
+
[data-coco].coco-button .button-content {
|
816
|
+
position: relative;
|
817
|
+
order: 2;
|
818
|
+
display: inline-flex;
|
819
|
+
align-items: center;
|
820
|
+
white-space: nowrap;
|
821
|
+
line-height: 1;
|
822
|
+
}
|
823
|
+
[data-coco].coco-button .button-state-content {
|
824
|
+
display: contents;
|
825
|
+
}
|
826
|
+
[data-coco].coco-button .button-icon {
|
827
|
+
order: 1;
|
828
|
+
display: inline-flex;
|
829
|
+
align-items: center;
|
830
|
+
}
|
831
|
+
[data-coco].coco-button .button-dropdown {
|
832
|
+
display: contents;
|
833
|
+
border-radius: 0.375rem;
|
834
|
+
}
|
835
|
+
[data-coco].coco-button .button-toggle {
|
836
|
+
order: 3;
|
837
|
+
}
|
838
|
+
/* disabled */
|
839
|
+
[data-coco].coco-button[data-disabled="true"] {
|
840
|
+
pointer-events: none;
|
841
|
+
cursor: not-allowed;
|
842
|
+
}
|
843
|
+
/* loading */
|
844
|
+
@keyframes spin {
|
845
|
+
|
846
|
+
to {
|
847
|
+
transform: rotate(360deg);
|
848
|
+
}
|
849
|
+
}
|
850
|
+
[data-coco].coco-button[data-state="loading"] .button-icon {
|
851
|
+
animation: spin 1.5s linear infinite;
|
852
|
+
}
|
853
|
+
/* Fit */
|
854
|
+
[data-coco].coco-button[data-fit="full"] {
|
855
|
+
width: 100%;
|
856
|
+
}
|
857
|
+
/* Icons */
|
858
|
+
[data-coco].coco-button[data-icon-position="end"] .button-content {
|
859
|
+
order: 1;
|
860
|
+
}
|
861
|
+
[data-coco].coco-button[data-icon-position="end"] .button-icon {
|
862
|
+
order: 2;
|
863
|
+
}
|
864
|
+
[data-coco].coco-button[data-icon-position="end"] .button-toggle {
|
865
|
+
order: 3;
|
866
|
+
}
|
867
|
+
[data-coco].coco-button.with-icon[data-collapsed="true"] .button-content {
|
868
|
+
display: none;
|
869
|
+
}
|
870
|
+
/* Themes */
|
871
|
+
[data-coco].coco-button[data-theme] {
|
872
|
+
overflow: hidden;
|
873
|
+
transition-property: all;
|
874
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
875
|
+
transition-duration: 150ms;
|
876
|
+
border-radius: 44px;
|
877
|
+
}
|
878
|
+
[data-coco].coco-button[data-theme] .button-content {
|
879
|
+
font-weight: 600;
|
880
|
+
}
|
881
|
+
[data-coco].coco-button[data-theme="primary"],
|
882
|
+
[data-coco].coco-button[data-theme="positive"] {
|
883
|
+
--tw-bg-opacity: 1;
|
884
|
+
background-color: rgb(26 136 113 / var(--tw-bg-opacity));
|
885
|
+
--tw-text-opacity: 1;
|
886
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
887
|
+
-webkit-font-smoothing: antialiased;
|
888
|
+
-moz-osx-font-smoothing: grayscale;
|
889
|
+
}
|
890
|
+
[data-coco].coco-button[data-theme="primary"]:hover,
|
891
|
+
[data-coco].coco-button[data-theme="positive"]:hover {
|
892
|
+
--tw-bg-opacity: 1;
|
893
|
+
background-color: rgb(19 116 100 / var(--tw-bg-opacity));
|
894
|
+
}
|
895
|
+
[data-coco].coco-button[data-theme="primary"]:active,
|
896
|
+
[data-coco].coco-button[data-theme="positive"]:active {
|
897
|
+
--tw-bg-opacity: 1;
|
898
|
+
background-color: rgb(13 97 89 / var(--tw-bg-opacity));
|
899
|
+
}
|
900
|
+
[data-coco].coco-button[data-theme="primary"][data-state="loading"], [data-coco].coco-button[data-theme="positive"][data-state="loading"] {
|
901
|
+
--tw-bg-opacity: 1;
|
902
|
+
background-color: rgb(26 136 113 / var(--tw-bg-opacity));
|
903
|
+
}
|
904
|
+
[data-coco].coco-button[data-theme="primary"][data-state="active"], [data-coco].coco-button[data-theme="positive"][data-state="active"] {
|
905
|
+
--tw-bg-opacity: 1;
|
906
|
+
background-color: rgb(13 97 89 / var(--tw-bg-opacity));
|
907
|
+
}
|
908
|
+
[data-coco].coco-button[data-theme="primary"][data-state="loading"] .button-icon, [data-coco].coco-button[data-theme="positive"][data-state="loading"] .button-icon {
|
909
|
+
--tw-text-opacity: 1;
|
910
|
+
color: rgb(118 184 170 / var(--tw-text-opacity));
|
911
|
+
}
|
912
|
+
[data-coco].coco-button[data-theme="primary"][data-disabled="true"], [data-coco].coco-button[data-theme="positive"][data-disabled="true"] {
|
913
|
+
--tw-bg-opacity: 1;
|
914
|
+
background-color: rgb(163 207 197 / var(--tw-bg-opacity));
|
915
|
+
}
|
916
|
+
[data-coco].coco-button[data-theme="text-primary"],
|
917
|
+
[data-coco].coco-button[data-theme="text-positive"] {
|
918
|
+
background-color: transparent;
|
919
|
+
--tw-text-opacity: 1;
|
920
|
+
color: rgb(26 136 113 / var(--tw-text-opacity));
|
921
|
+
}
|
922
|
+
[data-coco].coco-button[data-theme="text-primary"]:hover,
|
923
|
+
[data-coco].coco-button[data-theme="text-positive"]:hover {
|
924
|
+
background-color: rgba(0, 12, 39, 0.06);
|
925
|
+
background-blend-mode: hard-light;
|
926
|
+
}
|
927
|
+
[data-coco].coco-button[data-theme="text-primary"]:active,
|
928
|
+
[data-coco].coco-button[data-theme="text-positive"]:active {
|
929
|
+
background-color: rgba(0, 12, 39, 0.1);
|
930
|
+
background-blend-mode: hard-light;
|
931
|
+
}
|
932
|
+
[data-coco].coco-button[data-theme="text-primary"][data-state="loading"], [data-coco].coco-button[data-theme="text-positive"][data-state="loading"] {
|
933
|
+
background-color: transparent;
|
934
|
+
}
|
935
|
+
[data-coco].coco-button[data-theme="text-primary"][data-state="active"], [data-coco].coco-button[data-theme="text-positive"][data-state="active"] {
|
936
|
+
background-color: rgba(0, 12, 39, 0.1);
|
937
|
+
background-blend-mode: hard-light;
|
938
|
+
}
|
939
|
+
[data-coco].coco-button[data-theme="text-primary"][data-state="loading"] .button-icon, [data-coco].coco-button[data-theme="text-positive"][data-state="loading"] .button-icon {
|
940
|
+
--tw-text-opacity: 1;
|
941
|
+
color: rgb(118 184 170 / var(--tw-text-opacity));
|
942
|
+
}
|
943
|
+
[data-coco].coco-button[data-theme="text-primary"][data-disabled="true"], [data-coco].coco-button[data-theme="text-positive"][data-disabled="true"] {
|
944
|
+
background-color: transparent;
|
945
|
+
opacity: 0.3;
|
946
|
+
}
|
947
|
+
[data-coco].coco-button[data-theme="secondary"],
|
948
|
+
[data-coco].coco-button[data-theme="toolbar"],
|
949
|
+
[data-coco].coco-button[data-theme="toolbar-floating"] {
|
950
|
+
border-color: rgba(0, 12, 39, 0.18);
|
951
|
+
background-color: transparent;
|
952
|
+
--tw-text-opacity: 1;
|
953
|
+
color: rgb(17 24 39 / var(--tw-text-opacity));
|
954
|
+
}
|
955
|
+
[data-coco].coco-button[data-theme="secondary"]:hover,
|
956
|
+
[data-coco].coco-button[data-theme="toolbar"]:hover,
|
957
|
+
[data-coco].coco-button[data-theme="toolbar-floating"]:hover {
|
958
|
+
background-color: rgba(0, 12, 39, 0.06);
|
959
|
+
background-blend-mode: hard-light;
|
960
|
+
}
|
961
|
+
[data-coco].coco-button[data-theme="secondary"]:active,
|
962
|
+
[data-coco].coco-button[data-theme="toolbar"]:active,
|
963
|
+
[data-coco].coco-button[data-theme="toolbar-floating"]:active {
|
964
|
+
background-color: rgba(0, 12, 39, 0.1);
|
965
|
+
background-blend-mode: hard-light;
|
966
|
+
}
|
967
|
+
[data-coco].coco-button[data-theme="secondary"][data-state="loading"], [data-coco].coco-button[data-theme="toolbar"][data-state="loading"], [data-coco].coco-button[data-theme="toolbar-floating"][data-state="loading"] {
|
968
|
+
background-color: transparent;
|
969
|
+
}
|
970
|
+
[data-coco].coco-button[data-theme="secondary"][data-state="active"], [data-coco].coco-button[data-theme="toolbar"][data-state="active"], [data-coco].coco-button[data-theme="toolbar-floating"][data-state="active"] {
|
971
|
+
background-color: rgba(0, 12, 39, 0.1);
|
972
|
+
background-blend-mode: hard-light;
|
973
|
+
}
|
974
|
+
[data-coco].coco-button[data-theme="secondary"][data-state="loading"] .button-icon, [data-coco].coco-button[data-theme="toolbar"][data-state="loading"] .button-icon, [data-coco].coco-button[data-theme="toolbar-floating"][data-state="loading"] .button-icon {
|
975
|
+
--tw-text-opacity: 1;
|
976
|
+
color: rgb(118 184 170 / var(--tw-text-opacity));
|
977
|
+
}
|
978
|
+
[data-coco].coco-button[data-theme="secondary"][data-disabled="true"], [data-coco].coco-button[data-theme="toolbar"][data-disabled="true"], [data-coco].coco-button[data-theme="toolbar-floating"][data-disabled="true"] {
|
979
|
+
background-color: transparent;
|
980
|
+
opacity: 0.3;
|
981
|
+
}
|
982
|
+
[data-coco].coco-button[data-theme="toolbar-floating"] {
|
983
|
+
--tw-border-opacity: 1;
|
984
|
+
border-color: rgb(209 213 219 / var(--tw-border-opacity));
|
985
|
+
--tw-bg-opacity: 1;
|
986
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
987
|
+
}
|
988
|
+
[data-coco].coco-button[data-theme="toolbar-floating"]:hover {
|
989
|
+
--tw-bg-opacity: 1;
|
990
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
991
|
+
}
|
992
|
+
[data-coco].coco-button[data-theme="toolbar-floating"]:active {
|
993
|
+
--tw-bg-opacity: 1;
|
994
|
+
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
995
|
+
}
|
996
|
+
[data-coco].coco-button[data-theme="toolbar-floating"][data-state="active"] {
|
997
|
+
--tw-bg-opacity: 1;
|
998
|
+
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
999
|
+
}
|
1000
|
+
[data-coco].coco-button[data-theme="text-secondary"],
|
1001
|
+
[data-coco].coco-button[data-theme="text-toolbar"] {
|
1002
|
+
background-color: transparent;
|
1003
|
+
--tw-text-opacity: 1;
|
1004
|
+
color: rgb(17 24 39 / var(--tw-text-opacity));
|
1005
|
+
}
|
1006
|
+
[data-coco].coco-button[data-theme="text-secondary"]:hover,
|
1007
|
+
[data-coco].coco-button[data-theme="text-toolbar"]:hover {
|
1008
|
+
background-color: rgba(0, 12, 39, 0.06);
|
1009
|
+
background-blend-mode: hard-light;
|
1010
|
+
}
|
1011
|
+
[data-coco].coco-button[data-theme="text-secondary"]:active,
|
1012
|
+
[data-coco].coco-button[data-theme="text-toolbar"]:active {
|
1013
|
+
background-color: rgba(0, 12, 39, 0.1);
|
1014
|
+
background-blend-mode: hard-light;
|
1015
|
+
}
|
1016
|
+
[data-coco].coco-button[data-theme="text-secondary"][data-state="loading"], [data-coco].coco-button[data-theme="text-toolbar"][data-state="loading"] {
|
1017
|
+
background-color: transparent;
|
1018
|
+
}
|
1019
|
+
[data-coco].coco-button[data-theme="text-secondary"][data-state="active"], [data-coco].coco-button[data-theme="text-toolbar"][data-state="active"] {
|
1020
|
+
background-color: rgba(0, 12, 39, 0.1);
|
1021
|
+
background-blend-mode: hard-light;
|
1022
|
+
}
|
1023
|
+
[data-coco].coco-button[data-theme="text-secondary"][data-state="loading"] .button-icon, [data-coco].coco-button[data-theme="text-toolbar"][data-state="loading"] .button-icon {
|
1024
|
+
--tw-text-opacity: 1;
|
1025
|
+
color: rgb(118 184 170 / var(--tw-text-opacity));
|
1026
|
+
}
|
1027
|
+
[data-coco].coco-button[data-theme="text-secondary"][data-disabled="true"], [data-coco].coco-button[data-theme="text-toolbar"][data-disabled="true"] {
|
1028
|
+
background-color: transparent;
|
1029
|
+
opacity: 0.3;
|
1030
|
+
}
|
1031
|
+
[data-coco].coco-button[data-theme="negative"] {
|
1032
|
+
--tw-bg-opacity: 1;
|
1033
|
+
background-color: rgb(220 38 38 / var(--tw-bg-opacity));
|
1034
|
+
--tw-text-opacity: 1;
|
1035
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
1036
|
+
-webkit-font-smoothing: antialiased;
|
1037
|
+
-moz-osx-font-smoothing: grayscale;
|
1038
|
+
}
|
1039
|
+
[data-coco].coco-button[data-theme="negative"]:hover {
|
1040
|
+
--tw-bg-opacity: 1;
|
1041
|
+
background-color: rgb(185 28 28 / var(--tw-bg-opacity));
|
1042
|
+
}
|
1043
|
+
[data-coco].coco-button[data-theme="negative"]:active {
|
1044
|
+
--tw-bg-opacity: 1;
|
1045
|
+
background-color: rgb(153 27 27 / var(--tw-bg-opacity));
|
1046
|
+
}
|
1047
|
+
[data-coco].coco-button[data-theme="negative"][data-state="loading"] {
|
1048
|
+
--tw-bg-opacity: 1;
|
1049
|
+
background-color: rgb(220 38 38 / var(--tw-bg-opacity));
|
1050
|
+
}
|
1051
|
+
[data-coco].coco-button[data-theme="negative"][data-state="active"] {
|
1052
|
+
--tw-bg-opacity: 1;
|
1053
|
+
background-color: rgb(153 27 27 / var(--tw-bg-opacity));
|
1054
|
+
}
|
1055
|
+
[data-coco].coco-button[data-theme="negative"][data-state="loading"] .button-icon {
|
1056
|
+
--tw-text-opacity: 1;
|
1057
|
+
color: rgb(252 165 165 / var(--tw-text-opacity));
|
1058
|
+
}
|
1059
|
+
[data-coco].coco-button[data-theme="negative"][data-disabled="true"] {
|
1060
|
+
--tw-bg-opacity: 1;
|
1061
|
+
background-color: rgb(254 202 202 / var(--tw-bg-opacity));
|
1062
|
+
}
|
1063
|
+
[data-coco].coco-button[data-theme="text-negative"] {
|
1064
|
+
background-color: transparent;
|
1065
|
+
--tw-text-opacity: 1;
|
1066
|
+
color: rgb(220 38 38 / var(--tw-text-opacity));
|
1067
|
+
}
|
1068
|
+
[data-coco].coco-button[data-theme="text-negative"]:hover {
|
1069
|
+
background-color: rgba(0, 12, 39, 0.06);
|
1070
|
+
background-blend-mode: hard-light;
|
1071
|
+
}
|
1072
|
+
[data-coco].coco-button[data-theme="text-negative"]:active {
|
1073
|
+
background-color: rgba(0, 12, 39, 0.1);
|
1074
|
+
background-blend-mode: hard-light;
|
1075
|
+
}
|
1076
|
+
[data-coco].coco-button[data-theme="text-negative"][data-state="loading"] {
|
1077
|
+
background-color: transparent;
|
1078
|
+
}
|
1079
|
+
[data-coco].coco-button[data-theme="text-negative"][data-state="active"] {
|
1080
|
+
background-color: rgba(0, 12, 39, 0.1);
|
1081
|
+
background-blend-mode: hard-light;
|
1082
|
+
}
|
1083
|
+
[data-coco].coco-button[data-theme="text-negative"][data-state="loading"] .button-icon {
|
1084
|
+
--tw-text-opacity: 1;
|
1085
|
+
color: rgb(252 165 165 / var(--tw-text-opacity));
|
1086
|
+
}
|
1087
|
+
[data-coco].coco-button[data-theme="text-negative"][data-disabled="true"] {
|
1088
|
+
background-color: transparent;
|
1089
|
+
opacity: 0.3;
|
1090
|
+
}
|
1091
|
+
[data-coco].coco-button[data-theme="warning"] {
|
1092
|
+
--tw-bg-opacity: 1;
|
1093
|
+
background-color: rgb(245 158 11 / var(--tw-bg-opacity));
|
1094
|
+
--tw-text-opacity: 1;
|
1095
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
1096
|
+
-webkit-font-smoothing: antialiased;
|
1097
|
+
-moz-osx-font-smoothing: grayscale;
|
1098
|
+
}
|
1099
|
+
[data-coco].coco-button[data-theme="warning"]:hover {
|
1100
|
+
--tw-bg-opacity: 1;
|
1101
|
+
background-color: rgb(180 83 9 / var(--tw-bg-opacity));
|
1102
|
+
}
|
1103
|
+
[data-coco].coco-button[data-theme="warning"]:active {
|
1104
|
+
--tw-bg-opacity: 1;
|
1105
|
+
background-color: rgb(146 64 14 / var(--tw-bg-opacity));
|
1106
|
+
}
|
1107
|
+
[data-coco].coco-button[data-theme="warning"][data-state="loading"] {
|
1108
|
+
--tw-bg-opacity: 1;
|
1109
|
+
background-color: rgb(245 158 11 / var(--tw-bg-opacity));
|
1110
|
+
}
|
1111
|
+
[data-coco].coco-button[data-theme="warning"][data-state="active"] {
|
1112
|
+
--tw-bg-opacity: 1;
|
1113
|
+
background-color: rgb(146 64 14 / var(--tw-bg-opacity));
|
1114
|
+
}
|
1115
|
+
[data-coco].coco-button[data-theme="warning"][data-state="loading"] .button-icon {
|
1116
|
+
--tw-text-opacity: 1;
|
1117
|
+
color: rgb(252 211 77 / var(--tw-text-opacity));
|
1118
|
+
}
|
1119
|
+
[data-coco].coco-button[data-theme="warning"][data-disabled="true"] {
|
1120
|
+
--tw-bg-opacity: 1;
|
1121
|
+
background-color: rgb(253 230 138 / var(--tw-bg-opacity));
|
1122
|
+
}
|
1123
|
+
[data-coco].coco-button[data-theme="text-warning"] {
|
1124
|
+
background-color: transparent;
|
1125
|
+
--tw-text-opacity: 1;
|
1126
|
+
color: rgb(217 119 6 / var(--tw-text-opacity));
|
1127
|
+
}
|
1128
|
+
[data-coco].coco-button[data-theme="text-warning"]:hover {
|
1129
|
+
background-color: rgba(0, 12, 39, 0.06);
|
1130
|
+
background-blend-mode: hard-light;
|
1131
|
+
}
|
1132
|
+
[data-coco].coco-button[data-theme="text-warning"]:active {
|
1133
|
+
background-color: rgba(0, 12, 39, 0.1);
|
1134
|
+
background-blend-mode: hard-light;
|
1135
|
+
}
|
1136
|
+
[data-coco].coco-button[data-theme="text-warning"][data-state="loading"] {
|
1137
|
+
background-color: transparent;
|
1138
|
+
}
|
1139
|
+
[data-coco].coco-button[data-theme="text-warning"][data-state="active"] {
|
1140
|
+
background-color: rgba(0, 12, 39, 0.1);
|
1141
|
+
background-blend-mode: hard-light;
|
1142
|
+
}
|
1143
|
+
[data-coco].coco-button[data-theme="text-warning"][data-state="loading"] .button-icon {
|
1144
|
+
--tw-text-opacity: 1;
|
1145
|
+
color: rgb(252 211 77 / var(--tw-text-opacity));
|
1146
|
+
}
|
1147
|
+
[data-coco].coco-button[data-theme="text-warning"][data-disabled="true"] {
|
1148
|
+
background-color: transparent;
|
1149
|
+
opacity: 0.3;
|
1150
|
+
}
|
1151
|
+
[data-coco].coco-button[data-theme="info"] {
|
1152
|
+
--tw-bg-opacity: 1;
|
1153
|
+
background-color: rgb(2 132 199 / var(--tw-bg-opacity));
|
1154
|
+
--tw-text-opacity: 1;
|
1155
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
1156
|
+
-webkit-font-smoothing: antialiased;
|
1157
|
+
-moz-osx-font-smoothing: grayscale;
|
1158
|
+
}
|
1159
|
+
[data-coco].coco-button[data-theme="info"]:hover {
|
1160
|
+
--tw-bg-opacity: 1;
|
1161
|
+
background-color: rgb(3 105 161 / var(--tw-bg-opacity));
|
1162
|
+
}
|
1163
|
+
[data-coco].coco-button[data-theme="info"]:active {
|
1164
|
+
--tw-bg-opacity: 1;
|
1165
|
+
background-color: rgb(7 89 133 / var(--tw-bg-opacity));
|
1166
|
+
}
|
1167
|
+
[data-coco].coco-button[data-theme="info"][data-state="loading"] {
|
1168
|
+
--tw-bg-opacity: 1;
|
1169
|
+
background-color: rgb(2 132 199 / var(--tw-bg-opacity));
|
1170
|
+
}
|
1171
|
+
[data-coco].coco-button[data-theme="info"][data-state="active"] {
|
1172
|
+
--tw-bg-opacity: 1;
|
1173
|
+
background-color: rgb(7 89 133 / var(--tw-bg-opacity));
|
1174
|
+
}
|
1175
|
+
[data-coco].coco-button[data-theme="info"][data-state="loading"] .button-icon {
|
1176
|
+
--tw-text-opacity: 1;
|
1177
|
+
color: rgb(125 211 252 / var(--tw-text-opacity));
|
1178
|
+
}
|
1179
|
+
[data-coco].coco-button[data-theme="info"][data-disabled="true"] {
|
1180
|
+
--tw-bg-opacity: 1;
|
1181
|
+
background-color: rgb(186 230 253 / var(--tw-bg-opacity));
|
1182
|
+
}
|
1183
|
+
[data-coco].coco-button[data-theme="text-info"] {
|
1184
|
+
background-color: transparent;
|
1185
|
+
--tw-text-opacity: 1;
|
1186
|
+
color: rgb(2 132 199 / var(--tw-text-opacity));
|
1187
|
+
}
|
1188
|
+
[data-coco].coco-button[data-theme="text-info"]:hover {
|
1189
|
+
background-color: rgba(0, 12, 39, 0.06);
|
1190
|
+
background-blend-mode: hard-light;
|
1191
|
+
}
|
1192
|
+
[data-coco].coco-button[data-theme="text-info"]:active {
|
1193
|
+
background-color: rgba(0, 12, 39, 0.1);
|
1194
|
+
background-blend-mode: hard-light;
|
1195
|
+
}
|
1196
|
+
[data-coco].coco-button[data-theme="text-info"][data-state="loading"] {
|
1197
|
+
background-color: transparent;
|
1198
|
+
}
|
1199
|
+
[data-coco].coco-button[data-theme="text-info"][data-state="active"] {
|
1200
|
+
background-color: rgba(0, 12, 39, 0.1);
|
1201
|
+
background-blend-mode: hard-light;
|
1202
|
+
}
|
1203
|
+
[data-coco].coco-button[data-theme="text-info"][data-state="loading"] .button-icon {
|
1204
|
+
--tw-text-opacity: 1;
|
1205
|
+
color: rgb(125 211 252 / var(--tw-text-opacity));
|
1206
|
+
}
|
1207
|
+
[data-coco].coco-button[data-theme="text-info"][data-disabled="true"] {
|
1208
|
+
background-color: transparent;
|
1209
|
+
opacity: 0.3;
|
1210
|
+
}
|
1211
|
+
[data-coco].coco-button[data-theme="neutral-dark"] {
|
1212
|
+
--tw-bg-opacity: 1;
|
1213
|
+
background-color: rgb(17 24 39 / var(--tw-bg-opacity));
|
1214
|
+
--tw-text-opacity: 1;
|
1215
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
1216
|
+
-webkit-font-smoothing: antialiased;
|
1217
|
+
-moz-osx-font-smoothing: grayscale;
|
1218
|
+
}
|
1219
|
+
[data-coco].coco-button[data-theme="neutral-dark"]:hover {
|
1220
|
+
--tw-bg-opacity: 1;
|
1221
|
+
background-color: rgb(55 65 81 / var(--tw-bg-opacity));
|
1222
|
+
}
|
1223
|
+
[data-coco].coco-button[data-theme="neutral-dark"]:active {
|
1224
|
+
--tw-bg-opacity: 1;
|
1225
|
+
background-color: rgb(75 85 99 / var(--tw-bg-opacity));
|
1226
|
+
}
|
1227
|
+
[data-coco].coco-button[data-theme="neutral-dark"][data-state="loading"] {
|
1228
|
+
--tw-bg-opacity: 1;
|
1229
|
+
background-color: rgb(17 24 39 / var(--tw-bg-opacity));
|
1230
|
+
}
|
1231
|
+
[data-coco].coco-button[data-theme="neutral-dark"][data-state="active"] {
|
1232
|
+
--tw-bg-opacity: 1;
|
1233
|
+
background-color: rgb(75 85 99 / var(--tw-bg-opacity));
|
1234
|
+
}
|
1235
|
+
[data-coco].coco-button[data-theme="neutral-dark"][data-disabled="true"] {
|
1236
|
+
--tw-bg-opacity: 1;
|
1237
|
+
background-color: rgb(209 213 219 / var(--tw-bg-opacity));
|
1238
|
+
}
|
1239
|
+
[data-coco].coco-button[data-theme="neutral-light"] {
|
1240
|
+
border-width: 1px;
|
1241
|
+
border-color: transparent;
|
1242
|
+
--tw-bg-opacity: 1;
|
1243
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
1244
|
+
--tw-text-opacity: 1;
|
1245
|
+
color: rgb(17 24 39 / var(--tw-text-opacity));
|
1246
|
+
}
|
1247
|
+
[data-coco].coco-button[data-theme="neutral-light"]:hover {
|
1248
|
+
--tw-bg-opacity: 1;
|
1249
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
1250
|
+
}
|
1251
|
+
[data-coco].coco-button[data-theme="neutral-light"]:active {
|
1252
|
+
--tw-bg-opacity: 1;
|
1253
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
1254
|
+
}
|
1255
|
+
[data-coco].coco-button[data-theme="neutral-light"][data-state="loading"] {
|
1256
|
+
--tw-bg-opacity: 1;
|
1257
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
1258
|
+
}
|
1259
|
+
[data-coco].coco-button[data-theme="neutral-light"][data-state="active"] {
|
1260
|
+
--tw-bg-opacity: 1;
|
1261
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
1262
|
+
}
|
1263
|
+
[data-coco].coco-button[data-theme="neutral-light"][data-disabled="true"] {
|
1264
|
+
--tw-bg-opacity: 1;
|
1265
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
1266
|
+
}
|
1267
|
+
[data-coco].coco-button[data-theme="neutral-light"][data-disabled="true"] .button-inner {
|
1268
|
+
opacity: 0.4;
|
1269
|
+
}
|
1270
|
+
[data-coco].coco-button[data-theme="text-neutral-light"] {
|
1271
|
+
background-color: transparent;
|
1272
|
+
--tw-text-opacity: 1;
|
1273
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
1274
|
+
-webkit-font-smoothing: antialiased;
|
1275
|
+
-moz-osx-font-smoothing: grayscale;
|
1276
|
+
}
|
1277
|
+
[data-coco].coco-button[data-theme="text-neutral-light"]:hover {
|
1278
|
+
background-color: rgb(255 255 255 / 0.1);
|
1279
|
+
}
|
1280
|
+
[data-coco].coco-button[data-theme="text-neutral-light"][data-state="active"] {
|
1281
|
+
background-color: rgb(255 255 255 / 0.1);
|
1282
|
+
}
|
1283
|
+
[data-coco].coco-button[data-theme="text-neutral-light"][data-disabled="true"] {
|
1284
|
+
opacity: 0.3;
|
1285
|
+
}
|
1286
|
+
[data-coco].coco-button[data-theme="text-neutral-dark"] {
|
1287
|
+
background-color: transparent;
|
1288
|
+
--tw-text-opacity: 1;
|
1289
|
+
color: rgb(17 24 39 / var(--tw-text-opacity));
|
1290
|
+
}
|
1291
|
+
[data-coco].coco-button[data-theme="text-neutral-dark"]:hover {
|
1292
|
+
background-color: rgb(17 24 39 / 0.1);
|
1293
|
+
}
|
1294
|
+
[data-coco].coco-button[data-theme="text-neutral-dark"][data-state="active"] {
|
1295
|
+
background-color: rgb(17 24 39 / 0.1);
|
1296
|
+
}
|
1297
|
+
[data-coco].coco-button[data-theme="text-neutral-dark"][data-disabled="true"] {
|
1298
|
+
opacity: 0.3;
|
1299
|
+
}
|
1300
|
+
/* Responsive resizing */
|
1301
|
+
[data-coco].coco-button[data-size="xs"] .button-content {
|
1302
|
+
font-size: 14px;
|
1303
|
+
line-height: 14px;
|
1304
|
+
}
|
1305
|
+
[data-coco].coco-button[data-size="xs"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size="xs"] .button-toggle {
|
1306
|
+
height: 0.875rem;
|
1307
|
+
width: 0.875rem;
|
1308
|
+
}
|
1309
|
+
[data-coco].coco-button[data-size="xs"][data-theme] {
|
1310
|
+
padding-top: 0.5rem;
|
1311
|
+
padding-bottom: 0.5rem;
|
1312
|
+
padding-left: 0.75rem;
|
1313
|
+
padding-right: 0.75rem;
|
1314
|
+
}
|
1315
|
+
[data-coco].coco-button[data-size="xs"].icon-only .button-icon,[data-coco].coco-button[data-size="xs"][data-collapsed="true"] .button-icon {
|
1316
|
+
margin-left: -0.25rem;
|
1317
|
+
margin-right: -0.25rem;
|
1318
|
+
}
|
1319
|
+
[data-coco].coco-button[data-size="xs"][data-theme|="text"] {
|
1320
|
+
padding-left: 0.5rem;
|
1321
|
+
padding-right: 0.5rem;
|
1322
|
+
}
|
1323
|
+
[data-coco].coco-button[data-size="xs"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size="xs"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1324
|
+
padding-left: 0.5rem;
|
1325
|
+
padding-right: 0.5rem;
|
1326
|
+
}
|
1327
|
+
[data-coco].coco-button[data-size="sm"] .button-content {
|
1328
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1329
|
+
font-size: 14px;
|
1330
|
+
line-height: 16px;
|
1331
|
+
font-weight: 600;
|
1332
|
+
}
|
1333
|
+
[data-coco].coco-button[data-size="sm"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size="sm"] .button-toggle {
|
1334
|
+
height: 1rem;
|
1335
|
+
width: 1rem;
|
1336
|
+
}
|
1337
|
+
[data-coco].coco-button[data-size="sm"][data-theme] {
|
1338
|
+
padding-top: 0.625rem;
|
1339
|
+
padding-bottom: 0.625rem;
|
1340
|
+
padding-left: 1rem;
|
1341
|
+
padding-right: 1rem;
|
1342
|
+
}
|
1343
|
+
[data-coco].coco-button[data-size="sm"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size="sm"][data-theme][data-collapsed="true"] .button-icon {
|
1344
|
+
margin-left: -0.375rem;
|
1345
|
+
margin-right: -0.375rem;
|
1346
|
+
}
|
1347
|
+
[data-coco].coco-button[data-size="sm"][data-theme|="text"] {
|
1348
|
+
padding-left: 0.5rem;
|
1349
|
+
padding-right: 0.5rem;
|
1350
|
+
}
|
1351
|
+
[data-coco].coco-button[data-size="sm"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size="sm"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1352
|
+
padding-left: 0.5rem;
|
1353
|
+
padding-right: 0.5rem;
|
1354
|
+
}
|
1355
|
+
[data-coco].coco-button[data-size="md"] .button-content {
|
1356
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1357
|
+
font-size: 16px;
|
1358
|
+
line-height: 20px;
|
1359
|
+
font-weight: 600;
|
1360
|
+
}
|
1361
|
+
[data-coco].coco-button[data-size="md"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size="md"] .button-toggle {
|
1362
|
+
height: 1.25rem;
|
1363
|
+
width: 1.25rem;
|
1364
|
+
}
|
1365
|
+
[data-coco].coco-button[data-size="md"][data-theme] {
|
1366
|
+
padding-top: 0.75rem;
|
1367
|
+
padding-bottom: 0.75rem;
|
1368
|
+
padding-left: 1.25rem;
|
1369
|
+
padding-right: 1.25rem;
|
1370
|
+
}
|
1371
|
+
[data-coco].coco-button[data-size="md"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size="md"][data-theme][data-collapsed="true"] .button-icon {
|
1372
|
+
margin-left: -0.5rem;
|
1373
|
+
margin-right: -0.5rem;
|
1374
|
+
}
|
1375
|
+
[data-coco].coco-button[data-size="md"][data-theme|="text"] {
|
1376
|
+
padding-left: 0.75rem;
|
1377
|
+
padding-right: 0.75rem;
|
1378
|
+
}
|
1379
|
+
[data-coco].coco-button[data-size="md"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size="md"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1380
|
+
padding-left: 0.5rem;
|
1381
|
+
padding-right: 0.5rem;
|
1382
|
+
}
|
1383
|
+
[data-coco].coco-button[data-size="lg"] .button-content {
|
1384
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1385
|
+
font-size: 18px;
|
1386
|
+
line-height: 24px;
|
1387
|
+
font-weight: 600;
|
1388
|
+
}
|
1389
|
+
[data-coco].coco-button[data-size="lg"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size="lg"] .button-toggle {
|
1390
|
+
height: 1.5rem;
|
1391
|
+
width: 1.5rem;
|
1392
|
+
}
|
1393
|
+
[data-coco].coco-button[data-size="lg"][data-theme] {
|
1394
|
+
padding-top: 1rem;
|
1395
|
+
padding-bottom: 1rem;
|
1396
|
+
padding-left: 1.5rem;
|
1397
|
+
padding-right: 1.5rem;
|
1398
|
+
}
|
1399
|
+
[data-coco].coco-button[data-size="lg"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size="lg"][data-theme][data-collapsed="true"] .button-inner {
|
1400
|
+
margin-left: -8px;
|
1401
|
+
margin-right: -8px;
|
1402
|
+
}
|
1403
|
+
[data-coco].coco-button[data-size="lg"][data-theme|="text"] {
|
1404
|
+
padding-left: 0.75rem;
|
1405
|
+
padding-right: 0.75rem;
|
1406
|
+
}
|
1407
|
+
[data-coco].coco-button[data-size="lg"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size="lg"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1408
|
+
padding-left: 0.75rem;
|
1409
|
+
padding-right: 0.75rem;
|
1410
|
+
}
|
1411
|
+
@media (min-width: 768px) {
|
1412
|
+
[data-coco].coco-button[data-size-md="xs"] .button-content {
|
1413
|
+
font-size: 14px;
|
1414
|
+
line-height: 14px;
|
1415
|
+
}
|
1416
|
+
|
1417
|
+
[data-coco].coco-button[data-size-md="xs"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-md="xs"] .button-toggle {
|
1418
|
+
height: 0.875rem;
|
1419
|
+
width: 0.875rem;
|
1420
|
+
}
|
1421
|
+
|
1422
|
+
[data-coco].coco-button[data-size-md="xs"][data-theme] {
|
1423
|
+
padding-top: 0.5rem;
|
1424
|
+
padding-bottom: 0.5rem;
|
1425
|
+
padding-left: 0.75rem;
|
1426
|
+
padding-right: 0.75rem;
|
1427
|
+
}
|
1428
|
+
|
1429
|
+
[data-coco].coco-button[data-size-md="xs"].icon-only .button-icon,[data-coco].coco-button[data-size-md="xs"][data-collapsed="true"] .button-icon {
|
1430
|
+
margin-left: -0.25rem;
|
1431
|
+
margin-right: -0.25rem;
|
1432
|
+
}
|
1433
|
+
|
1434
|
+
[data-coco].coco-button[data-size-md="xs"][data-theme|="text"] {
|
1435
|
+
padding-left: 0.5rem;
|
1436
|
+
padding-right: 0.5rem;
|
1437
|
+
}
|
1438
|
+
|
1439
|
+
[data-coco].coco-button[data-size-md="xs"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-md="xs"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1440
|
+
padding-left: 0.5rem;
|
1441
|
+
padding-right: 0.5rem;
|
1442
|
+
}
|
1443
|
+
|
1444
|
+
[data-coco].coco-button[data-size-md="sm"] .button-content {
|
1445
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1446
|
+
font-size: 14px;
|
1447
|
+
line-height: 16px;
|
1448
|
+
font-weight: 600;
|
1449
|
+
}
|
1450
|
+
|
1451
|
+
[data-coco].coco-button[data-size-md="sm"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-md="sm"] .button-toggle {
|
1452
|
+
height: 1rem;
|
1453
|
+
width: 1rem;
|
1454
|
+
}
|
1455
|
+
|
1456
|
+
[data-coco].coco-button[data-size-md="sm"][data-theme] {
|
1457
|
+
padding-top: 0.625rem;
|
1458
|
+
padding-bottom: 0.625rem;
|
1459
|
+
padding-left: 1rem;
|
1460
|
+
padding-right: 1rem;
|
1461
|
+
}
|
1462
|
+
|
1463
|
+
[data-coco].coco-button[data-size-md="sm"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-md="sm"][data-theme][data-collapsed="true"] .button-icon {
|
1464
|
+
margin-left: -0.375rem;
|
1465
|
+
margin-right: -0.375rem;
|
1466
|
+
}
|
1467
|
+
|
1468
|
+
[data-coco].coco-button[data-size-md="sm"][data-theme|="text"] {
|
1469
|
+
padding-left: 0.5rem;
|
1470
|
+
padding-right: 0.5rem;
|
1471
|
+
}
|
1472
|
+
|
1473
|
+
[data-coco].coco-button[data-size-md="sm"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-md="sm"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1474
|
+
padding-left: 0.5rem;
|
1475
|
+
padding-right: 0.5rem;
|
1476
|
+
}
|
1477
|
+
|
1478
|
+
[data-coco].coco-button[data-size-md="md"] .button-content {
|
1479
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1480
|
+
font-size: 16px;
|
1481
|
+
line-height: 20px;
|
1482
|
+
font-weight: 600;
|
1483
|
+
}
|
1484
|
+
|
1485
|
+
[data-coco].coco-button[data-size-md="md"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-md="md"] .button-toggle {
|
1486
|
+
height: 1.25rem;
|
1487
|
+
width: 1.25rem;
|
1488
|
+
}
|
1489
|
+
|
1490
|
+
[data-coco].coco-button[data-size-md="md"][data-theme] {
|
1491
|
+
padding-top: 0.75rem;
|
1492
|
+
padding-bottom: 0.75rem;
|
1493
|
+
padding-left: 1.25rem;
|
1494
|
+
padding-right: 1.25rem;
|
1495
|
+
}
|
1496
|
+
|
1497
|
+
[data-coco].coco-button[data-size-md="md"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-md="md"][data-theme][data-collapsed="true"] .button-icon {
|
1498
|
+
margin-left: -0.5rem;
|
1499
|
+
margin-right: -0.5rem;
|
1500
|
+
}
|
1501
|
+
|
1502
|
+
[data-coco].coco-button[data-size-md="md"][data-theme|="text"] {
|
1503
|
+
padding-left: 0.75rem;
|
1504
|
+
padding-right: 0.75rem;
|
1505
|
+
}
|
1506
|
+
|
1507
|
+
[data-coco].coco-button[data-size-md="md"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-md="md"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1508
|
+
padding-left: 0.5rem;
|
1509
|
+
padding-right: 0.5rem;
|
1510
|
+
}
|
1511
|
+
|
1512
|
+
[data-coco].coco-button[data-size-md="lg"] .button-content {
|
1513
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1514
|
+
font-size: 18px;
|
1515
|
+
line-height: 24px;
|
1516
|
+
font-weight: 600;
|
1517
|
+
}
|
1518
|
+
|
1519
|
+
[data-coco].coco-button[data-size-md="lg"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-md="lg"] .button-toggle {
|
1520
|
+
height: 1.5rem;
|
1521
|
+
width: 1.5rem;
|
1522
|
+
}
|
1523
|
+
|
1524
|
+
[data-coco].coco-button[data-size-md="lg"][data-theme] {
|
1525
|
+
padding-top: 1rem;
|
1526
|
+
padding-bottom: 1rem;
|
1527
|
+
padding-left: 1.5rem;
|
1528
|
+
padding-right: 1.5rem;
|
1529
|
+
}
|
1530
|
+
|
1531
|
+
[data-coco].coco-button[data-size-md="lg"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-md="lg"][data-theme][data-collapsed="true"] .button-inner {
|
1532
|
+
margin-left: -8px;
|
1533
|
+
margin-right: -8px;
|
1534
|
+
}
|
1535
|
+
|
1536
|
+
[data-coco].coco-button[data-size-md="lg"][data-theme|="text"] {
|
1537
|
+
padding-left: 0.75rem;
|
1538
|
+
padding-right: 0.75rem;
|
1539
|
+
}
|
1540
|
+
|
1541
|
+
[data-coco].coco-button[data-size-md="lg"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-md="lg"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1542
|
+
padding-left: 0.75rem;
|
1543
|
+
padding-right: 0.75rem;
|
1544
|
+
}
|
1545
|
+
}
|
1546
|
+
@media (min-width: 992px) {
|
1547
|
+
[data-coco].coco-button[data-size-lg="xs"] .button-content {
|
1548
|
+
font-size: 14px;
|
1549
|
+
line-height: 14px;
|
1550
|
+
}
|
1551
|
+
|
1552
|
+
[data-coco].coco-button[data-size-lg="xs"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-lg="xs"] .button-toggle {
|
1553
|
+
height: 0.875rem;
|
1554
|
+
width: 0.875rem;
|
1555
|
+
}
|
1556
|
+
|
1557
|
+
[data-coco].coco-button[data-size-lg="xs"][data-theme] {
|
1558
|
+
padding-top: 0.5rem;
|
1559
|
+
padding-bottom: 0.5rem;
|
1560
|
+
padding-left: 0.75rem;
|
1561
|
+
padding-right: 0.75rem;
|
1562
|
+
}
|
1563
|
+
|
1564
|
+
[data-coco].coco-button[data-size-lg="xs"].icon-only .button-icon,[data-coco].coco-button[data-size-lg="xs"][data-collapsed="true"] .button-icon {
|
1565
|
+
margin-left: -0.25rem;
|
1566
|
+
margin-right: -0.25rem;
|
1567
|
+
}
|
1568
|
+
|
1569
|
+
[data-coco].coco-button[data-size-lg="xs"][data-theme|="text"] {
|
1570
|
+
padding-left: 0.5rem;
|
1571
|
+
padding-right: 0.5rem;
|
1572
|
+
}
|
1573
|
+
|
1574
|
+
[data-coco].coco-button[data-size-lg="xs"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-lg="xs"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1575
|
+
padding-left: 0.5rem;
|
1576
|
+
padding-right: 0.5rem;
|
1577
|
+
}
|
1578
|
+
|
1579
|
+
[data-coco].coco-button[data-size-lg="sm"] .button-content {
|
1580
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1581
|
+
font-size: 14px;
|
1582
|
+
line-height: 16px;
|
1583
|
+
font-weight: 600;
|
1584
|
+
}
|
1585
|
+
|
1586
|
+
[data-coco].coco-button[data-size-lg="sm"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-lg="sm"] .button-toggle {
|
1587
|
+
height: 1rem;
|
1588
|
+
width: 1rem;
|
1589
|
+
}
|
1590
|
+
|
1591
|
+
[data-coco].coco-button[data-size-lg="sm"][data-theme] {
|
1592
|
+
padding-top: 0.625rem;
|
1593
|
+
padding-bottom: 0.625rem;
|
1594
|
+
padding-left: 1rem;
|
1595
|
+
padding-right: 1rem;
|
1596
|
+
}
|
1597
|
+
|
1598
|
+
[data-coco].coco-button[data-size-lg="sm"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-lg="sm"][data-theme][data-collapsed="true"] .button-icon {
|
1599
|
+
margin-left: -0.375rem;
|
1600
|
+
margin-right: -0.375rem;
|
1601
|
+
}
|
1602
|
+
|
1603
|
+
[data-coco].coco-button[data-size-lg="sm"][data-theme|="text"] {
|
1604
|
+
padding-left: 0.5rem;
|
1605
|
+
padding-right: 0.5rem;
|
1606
|
+
}
|
1607
|
+
|
1608
|
+
[data-coco].coco-button[data-size-lg="sm"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-lg="sm"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1609
|
+
padding-left: 0.5rem;
|
1610
|
+
padding-right: 0.5rem;
|
1611
|
+
}
|
1612
|
+
|
1613
|
+
[data-coco].coco-button[data-size-lg="md"] .button-content {
|
1614
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1615
|
+
font-size: 16px;
|
1616
|
+
line-height: 20px;
|
1617
|
+
font-weight: 600;
|
1618
|
+
}
|
1619
|
+
|
1620
|
+
[data-coco].coco-button[data-size-lg="md"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-lg="md"] .button-toggle {
|
1621
|
+
height: 1.25rem;
|
1622
|
+
width: 1.25rem;
|
1623
|
+
}
|
1624
|
+
|
1625
|
+
[data-coco].coco-button[data-size-lg="md"][data-theme] {
|
1626
|
+
padding-top: 0.75rem;
|
1627
|
+
padding-bottom: 0.75rem;
|
1628
|
+
padding-left: 1.25rem;
|
1629
|
+
padding-right: 1.25rem;
|
1630
|
+
}
|
1631
|
+
|
1632
|
+
[data-coco].coco-button[data-size-lg="md"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-lg="md"][data-theme][data-collapsed="true"] .button-icon {
|
1633
|
+
margin-left: -0.5rem;
|
1634
|
+
margin-right: -0.5rem;
|
1635
|
+
}
|
1636
|
+
|
1637
|
+
[data-coco].coco-button[data-size-lg="md"][data-theme|="text"] {
|
1638
|
+
padding-left: 0.75rem;
|
1639
|
+
padding-right: 0.75rem;
|
1640
|
+
}
|
1641
|
+
|
1642
|
+
[data-coco].coco-button[data-size-lg="md"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-lg="md"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1643
|
+
padding-left: 0.5rem;
|
1644
|
+
padding-right: 0.5rem;
|
1645
|
+
}
|
1646
|
+
|
1647
|
+
[data-coco].coco-button[data-size-lg="lg"] .button-content {
|
1648
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1649
|
+
font-size: 18px;
|
1650
|
+
line-height: 24px;
|
1651
|
+
font-weight: 600;
|
1652
|
+
}
|
1653
|
+
|
1654
|
+
[data-coco].coco-button[data-size-lg="lg"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-lg="lg"] .button-toggle {
|
1655
|
+
height: 1.5rem;
|
1656
|
+
width: 1.5rem;
|
1657
|
+
}
|
1658
|
+
|
1659
|
+
[data-coco].coco-button[data-size-lg="lg"][data-theme] {
|
1660
|
+
padding-top: 1rem;
|
1661
|
+
padding-bottom: 1rem;
|
1662
|
+
padding-left: 1.5rem;
|
1663
|
+
padding-right: 1.5rem;
|
1664
|
+
}
|
1665
|
+
|
1666
|
+
[data-coco].coco-button[data-size-lg="lg"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-lg="lg"][data-theme][data-collapsed="true"] .button-inner {
|
1667
|
+
margin-left: -8px;
|
1668
|
+
margin-right: -8px;
|
1669
|
+
}
|
1670
|
+
|
1671
|
+
[data-coco].coco-button[data-size-lg="lg"][data-theme|="text"] {
|
1672
|
+
padding-left: 0.75rem;
|
1673
|
+
padding-right: 0.75rem;
|
1674
|
+
}
|
1675
|
+
|
1676
|
+
[data-coco].coco-button[data-size-lg="lg"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-lg="lg"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1677
|
+
padding-left: 0.75rem;
|
1678
|
+
padding-right: 0.75rem;
|
1679
|
+
}
|
1680
|
+
}
|
1681
|
+
@media (min-width: 1200px) {
|
1682
|
+
[data-coco].coco-button[data-size-xl="xs"] .button-content {
|
1683
|
+
font-size: 14px;
|
1684
|
+
line-height: 14px;
|
1685
|
+
}
|
1686
|
+
|
1687
|
+
[data-coco].coco-button[data-size-xl="xs"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-xl="xs"] .button-toggle {
|
1688
|
+
height: 0.875rem;
|
1689
|
+
width: 0.875rem;
|
1690
|
+
}
|
1691
|
+
|
1692
|
+
[data-coco].coco-button[data-size-xl="xs"][data-theme] {
|
1693
|
+
padding-top: 0.5rem;
|
1694
|
+
padding-bottom: 0.5rem;
|
1695
|
+
padding-left: 0.75rem;
|
1696
|
+
padding-right: 0.75rem;
|
1697
|
+
}
|
1698
|
+
|
1699
|
+
[data-coco].coco-button[data-size-xl="xs"].icon-only .button-icon,[data-coco].coco-button[data-size-xl="xs"][data-collapsed="true"] .button-icon {
|
1700
|
+
margin-left: -0.25rem;
|
1701
|
+
margin-right: -0.25rem;
|
1702
|
+
}
|
1703
|
+
|
1704
|
+
[data-coco].coco-button[data-size-xl="xs"][data-theme|="text"] {
|
1705
|
+
padding-left: 0.5rem;
|
1706
|
+
padding-right: 0.5rem;
|
1707
|
+
}
|
1708
|
+
|
1709
|
+
[data-coco].coco-button[data-size-xl="xs"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-xl="xs"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1710
|
+
padding-left: 0.5rem;
|
1711
|
+
padding-right: 0.5rem;
|
1712
|
+
}
|
1713
|
+
|
1714
|
+
[data-coco].coco-button[data-size-xl="sm"] .button-content {
|
1715
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1716
|
+
font-size: 14px;
|
1717
|
+
line-height: 16px;
|
1718
|
+
font-weight: 600;
|
1719
|
+
}
|
1720
|
+
|
1721
|
+
[data-coco].coco-button[data-size-xl="sm"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-xl="sm"] .button-toggle {
|
1722
|
+
height: 1rem;
|
1723
|
+
width: 1rem;
|
1724
|
+
}
|
1725
|
+
|
1726
|
+
[data-coco].coco-button[data-size-xl="sm"][data-theme] {
|
1727
|
+
padding-top: 0.625rem;
|
1728
|
+
padding-bottom: 0.625rem;
|
1729
|
+
padding-left: 1rem;
|
1730
|
+
padding-right: 1rem;
|
1731
|
+
}
|
1732
|
+
|
1733
|
+
[data-coco].coco-button[data-size-xl="sm"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-xl="sm"][data-theme][data-collapsed="true"] .button-icon {
|
1734
|
+
margin-left: -0.375rem;
|
1735
|
+
margin-right: -0.375rem;
|
1736
|
+
}
|
1737
|
+
|
1738
|
+
[data-coco].coco-button[data-size-xl="sm"][data-theme|="text"] {
|
1739
|
+
padding-left: 0.5rem;
|
1740
|
+
padding-right: 0.5rem;
|
1741
|
+
}
|
1742
|
+
|
1743
|
+
[data-coco].coco-button[data-size-xl="sm"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-xl="sm"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1744
|
+
padding-left: 0.5rem;
|
1745
|
+
padding-right: 0.5rem;
|
1746
|
+
}
|
1747
|
+
|
1748
|
+
[data-coco].coco-button[data-size-xl="md"] .button-content {
|
1749
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1750
|
+
font-size: 16px;
|
1751
|
+
line-height: 20px;
|
1752
|
+
font-weight: 600;
|
1753
|
+
}
|
1754
|
+
|
1755
|
+
[data-coco].coco-button[data-size-xl="md"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-xl="md"] .button-toggle {
|
1756
|
+
height: 1.25rem;
|
1757
|
+
width: 1.25rem;
|
1758
|
+
}
|
1759
|
+
|
1760
|
+
[data-coco].coco-button[data-size-xl="md"][data-theme] {
|
1761
|
+
padding-top: 0.75rem;
|
1762
|
+
padding-bottom: 0.75rem;
|
1763
|
+
padding-left: 1.25rem;
|
1764
|
+
padding-right: 1.25rem;
|
1765
|
+
}
|
1766
|
+
|
1767
|
+
[data-coco].coco-button[data-size-xl="md"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-xl="md"][data-theme][data-collapsed="true"] .button-icon {
|
1768
|
+
margin-left: -0.5rem;
|
1769
|
+
margin-right: -0.5rem;
|
1770
|
+
}
|
1771
|
+
|
1772
|
+
[data-coco].coco-button[data-size-xl="md"][data-theme|="text"] {
|
1773
|
+
padding-left: 0.75rem;
|
1774
|
+
padding-right: 0.75rem;
|
1775
|
+
}
|
1776
|
+
|
1777
|
+
[data-coco].coco-button[data-size-xl="md"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-xl="md"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1778
|
+
padding-left: 0.5rem;
|
1779
|
+
padding-right: 0.5rem;
|
1780
|
+
}
|
1781
|
+
|
1782
|
+
[data-coco].coco-button[data-size-xl="lg"] .button-content {
|
1783
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1784
|
+
font-size: 18px;
|
1785
|
+
line-height: 24px;
|
1786
|
+
font-weight: 600;
|
1787
|
+
}
|
1788
|
+
|
1789
|
+
[data-coco].coco-button[data-size-xl="lg"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-xl="lg"] .button-toggle {
|
1790
|
+
height: 1.5rem;
|
1791
|
+
width: 1.5rem;
|
1792
|
+
}
|
1793
|
+
|
1794
|
+
[data-coco].coco-button[data-size-xl="lg"][data-theme] {
|
1795
|
+
padding-top: 1rem;
|
1796
|
+
padding-bottom: 1rem;
|
1797
|
+
padding-left: 1.5rem;
|
1798
|
+
padding-right: 1.5rem;
|
1799
|
+
}
|
1800
|
+
|
1801
|
+
[data-coco].coco-button[data-size-xl="lg"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-xl="lg"][data-theme][data-collapsed="true"] .button-inner {
|
1802
|
+
margin-left: -8px;
|
1803
|
+
margin-right: -8px;
|
1804
|
+
}
|
1805
|
+
|
1806
|
+
[data-coco].coco-button[data-size-xl="lg"][data-theme|="text"] {
|
1807
|
+
padding-left: 0.75rem;
|
1808
|
+
padding-right: 0.75rem;
|
1809
|
+
}
|
1810
|
+
|
1811
|
+
[data-coco].coco-button[data-size-xl="lg"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-xl="lg"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1812
|
+
padding-left: 0.75rem;
|
1813
|
+
padding-right: 0.75rem;
|
1814
|
+
}
|
1815
|
+
}
|
1816
|
+
@media (min-width: 1400px) {
|
1817
|
+
[data-coco].coco-button[data-size-xxl="xs"] .button-content,
|
1818
|
+
[data-coco].coco-button[data-size-2xl="xs"] .button-content {
|
1819
|
+
font-size: 14px;
|
1820
|
+
line-height: 14px;
|
1821
|
+
}
|
1822
|
+
|
1823
|
+
[data-coco].coco-button[data-size-xxl="xs"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-xxl="xs"] .button-toggle,
|
1824
|
+
[data-coco].coco-button[data-size-2xl="xs"] .button-icon [data-component="icon"],
|
1825
|
+
[data-coco].coco-button[data-size-2xl="xs"] .button-toggle {
|
1826
|
+
height: 0.875rem;
|
1827
|
+
width: 0.875rem;
|
1828
|
+
}
|
1829
|
+
|
1830
|
+
[data-coco].coco-button[data-size-xxl="xs"][data-theme],
|
1831
|
+
[data-coco].coco-button[data-size-2xl="xs"][data-theme] {
|
1832
|
+
padding-top: 0.5rem;
|
1833
|
+
padding-bottom: 0.5rem;
|
1834
|
+
padding-left: 0.75rem;
|
1835
|
+
padding-right: 0.75rem;
|
1836
|
+
}
|
1837
|
+
|
1838
|
+
[data-coco].coco-button[data-size-xxl="xs"].icon-only .button-icon,[data-coco].coco-button[data-size-xxl="xs"][data-collapsed="true"] .button-icon,
|
1839
|
+
[data-coco].coco-button[data-size-2xl="xs"].icon-only .button-icon,
|
1840
|
+
[data-coco].coco-button[data-size-2xl="xs"][data-collapsed="true"] .button-icon {
|
1841
|
+
margin-left: -0.25rem;
|
1842
|
+
margin-right: -0.25rem;
|
1843
|
+
}
|
1844
|
+
|
1845
|
+
[data-coco].coco-button[data-size-xxl="xs"][data-theme|="text"],
|
1846
|
+
[data-coco].coco-button[data-size-2xl="xs"][data-theme|="text"] {
|
1847
|
+
padding-left: 0.5rem;
|
1848
|
+
padding-right: 0.5rem;
|
1849
|
+
}
|
1850
|
+
|
1851
|
+
[data-coco].coco-button[data-size-xxl="xs"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-xxl="xs"][data-theme|="text"][data-collapsed="true"] .button-icon,
|
1852
|
+
[data-coco].coco-button[data-size-2xl="xs"][data-theme|="text"].icon-only .button-icon,
|
1853
|
+
[data-coco].coco-button[data-size-2xl="xs"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1854
|
+
padding-left: 0.5rem;
|
1855
|
+
padding-right: 0.5rem;
|
1856
|
+
}
|
1857
|
+
|
1858
|
+
[data-coco].coco-button[data-size-xxl="sm"] .button-content,
|
1859
|
+
[data-coco].coco-button[data-size-2xl="sm"] .button-content {
|
1860
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1861
|
+
font-size: 14px;
|
1862
|
+
line-height: 16px;
|
1863
|
+
font-weight: 600;
|
1864
|
+
}
|
1865
|
+
|
1866
|
+
[data-coco].coco-button[data-size-xxl="sm"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-xxl="sm"] .button-toggle,
|
1867
|
+
[data-coco].coco-button[data-size-2xl="sm"] .button-icon [data-component="icon"],
|
1868
|
+
[data-coco].coco-button[data-size-2xl="sm"] .button-toggle {
|
1869
|
+
height: 1rem;
|
1870
|
+
width: 1rem;
|
1871
|
+
}
|
1872
|
+
|
1873
|
+
[data-coco].coco-button[data-size-xxl="sm"][data-theme],
|
1874
|
+
[data-coco].coco-button[data-size-2xl="sm"][data-theme] {
|
1875
|
+
padding-top: 0.625rem;
|
1876
|
+
padding-bottom: 0.625rem;
|
1877
|
+
padding-left: 1rem;
|
1878
|
+
padding-right: 1rem;
|
1879
|
+
}
|
1880
|
+
|
1881
|
+
[data-coco].coco-button[data-size-xxl="sm"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-xxl="sm"][data-theme][data-collapsed="true"] .button-icon,
|
1882
|
+
[data-coco].coco-button[data-size-2xl="sm"][data-theme].icon-only .button-icon,
|
1883
|
+
[data-coco].coco-button[data-size-2xl="sm"][data-theme][data-collapsed="true"] .button-icon {
|
1884
|
+
margin-left: -0.375rem;
|
1885
|
+
margin-right: -0.375rem;
|
1886
|
+
}
|
1887
|
+
|
1888
|
+
[data-coco].coco-button[data-size-xxl="sm"][data-theme|="text"],
|
1889
|
+
[data-coco].coco-button[data-size-2xl="sm"][data-theme|="text"] {
|
1890
|
+
padding-left: 0.5rem;
|
1891
|
+
padding-right: 0.5rem;
|
1892
|
+
}
|
1893
|
+
|
1894
|
+
[data-coco].coco-button[data-size-xxl="sm"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-xxl="sm"][data-theme|="text"][data-collapsed="true"] .button-icon,
|
1895
|
+
[data-coco].coco-button[data-size-2xl="sm"][data-theme|="text"].icon-only .button-icon,
|
1896
|
+
[data-coco].coco-button[data-size-2xl="sm"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1897
|
+
padding-left: 0.5rem;
|
1898
|
+
padding-right: 0.5rem;
|
1899
|
+
}
|
1900
|
+
|
1901
|
+
[data-coco].coco-button[data-size-xxl="md"] .button-content,
|
1902
|
+
[data-coco].coco-button[data-size-2xl="md"] .button-content {
|
1903
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1904
|
+
font-size: 16px;
|
1905
|
+
line-height: 20px;
|
1906
|
+
font-weight: 600;
|
1907
|
+
}
|
1908
|
+
|
1909
|
+
[data-coco].coco-button[data-size-xxl="md"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-xxl="md"] .button-toggle,
|
1910
|
+
[data-coco].coco-button[data-size-2xl="md"] .button-icon [data-component="icon"],
|
1911
|
+
[data-coco].coco-button[data-size-2xl="md"] .button-toggle {
|
1912
|
+
height: 1.25rem;
|
1913
|
+
width: 1.25rem;
|
1914
|
+
}
|
1915
|
+
|
1916
|
+
[data-coco].coco-button[data-size-xxl="md"][data-theme],
|
1917
|
+
[data-coco].coco-button[data-size-2xl="md"][data-theme] {
|
1918
|
+
padding-top: 0.75rem;
|
1919
|
+
padding-bottom: 0.75rem;
|
1920
|
+
padding-left: 1.25rem;
|
1921
|
+
padding-right: 1.25rem;
|
1922
|
+
}
|
1923
|
+
|
1924
|
+
[data-coco].coco-button[data-size-xxl="md"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-xxl="md"][data-theme][data-collapsed="true"] .button-icon,
|
1925
|
+
[data-coco].coco-button[data-size-2xl="md"][data-theme].icon-only .button-icon,
|
1926
|
+
[data-coco].coco-button[data-size-2xl="md"][data-theme][data-collapsed="true"] .button-icon {
|
1927
|
+
margin-left: -0.5rem;
|
1928
|
+
margin-right: -0.5rem;
|
1929
|
+
}
|
1930
|
+
|
1931
|
+
[data-coco].coco-button[data-size-xxl="md"][data-theme|="text"],
|
1932
|
+
[data-coco].coco-button[data-size-2xl="md"][data-theme|="text"] {
|
1933
|
+
padding-left: 0.75rem;
|
1934
|
+
padding-right: 0.75rem;
|
1935
|
+
}
|
1936
|
+
|
1937
|
+
[data-coco].coco-button[data-size-xxl="md"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-xxl="md"][data-theme|="text"][data-collapsed="true"] .button-icon,
|
1938
|
+
[data-coco].coco-button[data-size-2xl="md"][data-theme|="text"].icon-only .button-icon,
|
1939
|
+
[data-coco].coco-button[data-size-2xl="md"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1940
|
+
padding-left: 0.5rem;
|
1941
|
+
padding-right: 0.5rem;
|
1942
|
+
}
|
1943
|
+
|
1944
|
+
[data-coco].coco-button[data-size-xxl="lg"] .button-content,
|
1945
|
+
[data-coco].coco-button[data-size-2xl="lg"] .button-content {
|
1946
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
1947
|
+
font-size: 18px;
|
1948
|
+
line-height: 24px;
|
1949
|
+
font-weight: 600;
|
1950
|
+
}
|
1951
|
+
|
1952
|
+
[data-coco].coco-button[data-size-xxl="lg"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-xxl="lg"] .button-toggle,
|
1953
|
+
[data-coco].coco-button[data-size-2xl="lg"] .button-icon [data-component="icon"],
|
1954
|
+
[data-coco].coco-button[data-size-2xl="lg"] .button-toggle {
|
1955
|
+
height: 1.5rem;
|
1956
|
+
width: 1.5rem;
|
1957
|
+
}
|
1958
|
+
|
1959
|
+
[data-coco].coco-button[data-size-xxl="lg"][data-theme],
|
1960
|
+
[data-coco].coco-button[data-size-2xl="lg"][data-theme] {
|
1961
|
+
padding-top: 1rem;
|
1962
|
+
padding-bottom: 1rem;
|
1963
|
+
padding-left: 1.5rem;
|
1964
|
+
padding-right: 1.5rem;
|
1965
|
+
}
|
1966
|
+
|
1967
|
+
[data-coco].coco-button[data-size-xxl="lg"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-xxl="lg"][data-theme][data-collapsed="true"] .button-inner,
|
1968
|
+
[data-coco].coco-button[data-size-2xl="lg"][data-theme].icon-only .button-icon,
|
1969
|
+
[data-coco].coco-button[data-size-2xl="lg"][data-theme][data-collapsed="true"] .button-inner {
|
1970
|
+
margin-left: -8px;
|
1971
|
+
margin-right: -8px;
|
1972
|
+
}
|
1973
|
+
|
1974
|
+
[data-coco].coco-button[data-size-xxl="lg"][data-theme|="text"],
|
1975
|
+
[data-coco].coco-button[data-size-2xl="lg"][data-theme|="text"] {
|
1976
|
+
padding-left: 0.75rem;
|
1977
|
+
padding-right: 0.75rem;
|
1978
|
+
}
|
1979
|
+
|
1980
|
+
[data-coco].coco-button[data-size-xxl="lg"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-xxl="lg"][data-theme|="text"][data-collapsed="true"] .button-icon,
|
1981
|
+
[data-coco].coco-button[data-size-2xl="lg"][data-theme|="text"].icon-only .button-icon,
|
1982
|
+
[data-coco].coco-button[data-size-2xl="lg"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
1983
|
+
padding-left: 0.75rem;
|
1984
|
+
padding-right: 0.75rem;
|
1985
|
+
}
|
1986
|
+
}
|
1987
|
+
@media (min-width: 1800px) {
|
1988
|
+
[data-coco].coco-button[data-size-max="xs"] .button-content {
|
1989
|
+
font-size: 14px;
|
1990
|
+
line-height: 14px;
|
1991
|
+
}
|
1992
|
+
|
1993
|
+
[data-coco].coco-button[data-size-max="xs"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-max="xs"] .button-toggle {
|
1994
|
+
height: 0.875rem;
|
1995
|
+
width: 0.875rem;
|
1996
|
+
}
|
1997
|
+
|
1998
|
+
[data-coco].coco-button[data-size-max="xs"][data-theme] {
|
1999
|
+
padding-top: 0.5rem;
|
2000
|
+
padding-bottom: 0.5rem;
|
2001
|
+
padding-left: 0.75rem;
|
2002
|
+
padding-right: 0.75rem;
|
2003
|
+
}
|
2004
|
+
|
2005
|
+
[data-coco].coco-button[data-size-max="xs"].icon-only .button-icon,[data-coco].coco-button[data-size-max="xs"][data-collapsed="true"] .button-icon {
|
2006
|
+
margin-left: -0.25rem;
|
2007
|
+
margin-right: -0.25rem;
|
2008
|
+
}
|
2009
|
+
|
2010
|
+
[data-coco].coco-button[data-size-max="xs"][data-theme|="text"] {
|
2011
|
+
padding-left: 0.5rem;
|
2012
|
+
padding-right: 0.5rem;
|
2013
|
+
}
|
2014
|
+
|
2015
|
+
[data-coco].coco-button[data-size-max="xs"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-max="xs"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
2016
|
+
padding-left: 0.5rem;
|
2017
|
+
padding-right: 0.5rem;
|
2018
|
+
}
|
2019
|
+
|
2020
|
+
[data-coco].coco-button[data-size-max="sm"] .button-content {
|
2021
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
2022
|
+
font-size: 14px;
|
2023
|
+
line-height: 16px;
|
2024
|
+
font-weight: 600;
|
2025
|
+
}
|
2026
|
+
|
2027
|
+
[data-coco].coco-button[data-size-max="sm"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-max="sm"] .button-toggle {
|
2028
|
+
height: 1rem;
|
2029
|
+
width: 1rem;
|
2030
|
+
}
|
2031
|
+
|
2032
|
+
[data-coco].coco-button[data-size-max="sm"][data-theme] {
|
2033
|
+
padding-top: 0.625rem;
|
2034
|
+
padding-bottom: 0.625rem;
|
2035
|
+
padding-left: 1rem;
|
2036
|
+
padding-right: 1rem;
|
2037
|
+
}
|
2038
|
+
|
2039
|
+
[data-coco].coco-button[data-size-max="sm"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-max="sm"][data-theme][data-collapsed="true"] .button-icon {
|
2040
|
+
margin-left: -0.375rem;
|
2041
|
+
margin-right: -0.375rem;
|
2042
|
+
}
|
2043
|
+
|
2044
|
+
[data-coco].coco-button[data-size-max="sm"][data-theme|="text"] {
|
2045
|
+
padding-left: 0.5rem;
|
2046
|
+
padding-right: 0.5rem;
|
2047
|
+
}
|
2048
|
+
|
2049
|
+
[data-coco].coco-button[data-size-max="sm"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-max="sm"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
2050
|
+
padding-left: 0.5rem;
|
2051
|
+
padding-right: 0.5rem;
|
2052
|
+
}
|
2053
|
+
|
2054
|
+
[data-coco].coco-button[data-size-max="md"] .button-content {
|
2055
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
2056
|
+
font-size: 16px;
|
2057
|
+
line-height: 20px;
|
2058
|
+
font-weight: 600;
|
2059
|
+
}
|
2060
|
+
|
2061
|
+
[data-coco].coco-button[data-size-max="md"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-max="md"] .button-toggle {
|
2062
|
+
height: 1.25rem;
|
2063
|
+
width: 1.25rem;
|
2064
|
+
}
|
2065
|
+
|
2066
|
+
[data-coco].coco-button[data-size-max="md"][data-theme] {
|
2067
|
+
padding-top: 0.75rem;
|
2068
|
+
padding-bottom: 0.75rem;
|
2069
|
+
padding-left: 1.25rem;
|
2070
|
+
padding-right: 1.25rem;
|
2071
|
+
}
|
2072
|
+
|
2073
|
+
[data-coco].coco-button[data-size-max="md"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-max="md"][data-theme][data-collapsed="true"] .button-icon {
|
2074
|
+
margin-left: -0.5rem;
|
2075
|
+
margin-right: -0.5rem;
|
2076
|
+
}
|
2077
|
+
|
2078
|
+
[data-coco].coco-button[data-size-max="md"][data-theme|="text"] {
|
2079
|
+
padding-left: 0.75rem;
|
2080
|
+
padding-right: 0.75rem;
|
2081
|
+
}
|
2082
|
+
|
2083
|
+
[data-coco].coco-button[data-size-max="md"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-max="md"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
2084
|
+
padding-left: 0.5rem;
|
2085
|
+
padding-right: 0.5rem;
|
2086
|
+
}
|
2087
|
+
|
2088
|
+
[data-coco].coco-button[data-size-max="lg"] .button-content {
|
2089
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
2090
|
+
font-size: 18px;
|
2091
|
+
line-height: 24px;
|
2092
|
+
font-weight: 600;
|
2093
|
+
}
|
2094
|
+
|
2095
|
+
[data-coco].coco-button[data-size-max="lg"] .button-icon [data-component="icon"],[data-coco].coco-button[data-size-max="lg"] .button-toggle {
|
2096
|
+
height: 1.5rem;
|
2097
|
+
width: 1.5rem;
|
2098
|
+
}
|
2099
|
+
|
2100
|
+
[data-coco].coco-button[data-size-max="lg"][data-theme] {
|
2101
|
+
padding-top: 1rem;
|
2102
|
+
padding-bottom: 1rem;
|
2103
|
+
padding-left: 1.5rem;
|
2104
|
+
padding-right: 1.5rem;
|
2105
|
+
}
|
2106
|
+
|
2107
|
+
[data-coco].coco-button[data-size-max="lg"][data-theme].icon-only .button-icon,[data-coco].coco-button[data-size-max="lg"][data-theme][data-collapsed="true"] .button-inner {
|
2108
|
+
margin-left: -8px;
|
2109
|
+
margin-right: -8px;
|
2110
|
+
}
|
2111
|
+
|
2112
|
+
[data-coco].coco-button[data-size-max="lg"][data-theme|="text"] {
|
2113
|
+
padding-left: 0.75rem;
|
2114
|
+
padding-right: 0.75rem;
|
2115
|
+
}
|
2116
|
+
|
2117
|
+
[data-coco].coco-button[data-size-max="lg"][data-theme|="text"].icon-only .button-icon,[data-coco].coco-button[data-size-max="lg"][data-theme|="text"][data-collapsed="true"] .button-icon {
|
2118
|
+
padding-left: 0.75rem;
|
2119
|
+
padding-right: 0.75rem;
|
2120
|
+
}
|
2121
|
+
}
|
2122
|
+
[data-coco][data-component="button-group"] {
|
2123
|
+
width: -moz-fit-content;
|
2124
|
+
width: fit-content;
|
2125
|
+
border-radius: 44px;
|
2126
|
+
}
|
2127
|
+
[data-coco][data-component="button-group"][data-collapsible="true"] {
|
2128
|
+
opacity: 0;
|
2129
|
+
}
|
2130
|
+
[data-coco][data-component="button-group"][data-collapsible="true"].button-group-ready {
|
2131
|
+
opacity: 1;
|
774
2132
|
}
|
775
|
-
[data-coco]
|
2133
|
+
[data-coco][data-component="button-group"] .button-group-buttons {
|
776
2134
|
display: flex;
|
777
|
-
width: auto;
|
778
|
-
flex: none;
|
779
|
-
-webkit-user-select: none;
|
780
|
-
-moz-user-select: none;
|
781
|
-
user-select: none;
|
782
|
-
border-width: 1px;
|
783
|
-
border-color: transparent;
|
784
|
-
background-color: transparent;
|
785
|
-
color: currentColor;
|
786
|
-
text-decoration-line: none;
|
787
|
-
outline: 2px solid transparent;
|
788
|
-
outline-offset: 2px;
|
789
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
790
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
791
|
-
transition-duration: 150ms;
|
792
|
-
}
|
793
|
-
[data-coco].coco-button:focus-visible {
|
794
|
-
outline-width: 0px;
|
795
|
-
}
|
796
|
-
[data-coco].coco-button {
|
797
|
-
width: -moz-min-content;
|
798
|
-
width: min-content;
|
799
|
-
}
|
800
|
-
[data-coco].coco-button .button-inner {
|
801
|
-
margin-left: auto;
|
802
|
-
margin-right: auto;
|
803
|
-
display: inline-flex;
|
804
2135
|
align-items: center;
|
805
|
-
gap: 0.5rem;
|
806
|
-
|
2136
|
+
-moz-column-gap: 0.5rem;
|
2137
|
+
column-gap: 0.5rem;
|
807
2138
|
width: -moz-fit-content;
|
808
2139
|
width: fit-content;
|
809
2140
|
}
|
810
|
-
[data-coco]
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
line-height: 1;
|
817
|
-
}
|
818
|
-
[data-coco].coco-button .button-state-content {
|
819
|
-
display: contents;
|
820
|
-
}
|
821
|
-
[data-coco].coco-button .button-icon {
|
822
|
-
order: 1;
|
823
|
-
display: inline-flex;
|
824
|
-
align-items: center;
|
825
|
-
}
|
826
|
-
[data-coco].coco-button .button-dropdown {
|
827
|
-
display: contents;
|
828
|
-
border-radius: 0.375rem;
|
829
|
-
}
|
830
|
-
[data-coco].coco-button .button-toggle {
|
831
|
-
order: 3;
|
2141
|
+
[data-coco][data-component="button-group"] .divider {
|
2142
|
+
width: 0px;
|
2143
|
+
align-self: stretch;
|
2144
|
+
border-left-width: 1px;
|
2145
|
+
--tw-border-opacity: 1;
|
2146
|
+
border-color: rgb(209 213 219 / var(--tw-border-opacity));
|
832
2147
|
}
|
833
|
-
|
834
|
-
|
835
|
-
pointer-events: none;
|
836
|
-
cursor: not-allowed;
|
2148
|
+
[data-coco][data-component="button-group"][data-align="end"] .button-group-buttons {
|
2149
|
+
margin-left: auto;
|
837
2150
|
}
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
to {
|
842
|
-
transform: rotate(360deg);
|
843
|
-
}
|
2151
|
+
[data-coco][data-component="button-group"][data-segmented="true"] .button-group-buttons {
|
2152
|
+
-moz-column-gap: 0px;
|
2153
|
+
column-gap: 0px;
|
844
2154
|
}
|
845
|
-
[data-coco]
|
846
|
-
|
2155
|
+
[data-coco][data-component="button-group"][data-segmented="true"] .coco-button-wrapper:not(:first-child) .coco-button {
|
2156
|
+
border-top-left-radius: 0px;
|
2157
|
+
border-bottom-left-radius: 0px;
|
2158
|
+
border-left-width: 0px;
|
847
2159
|
}
|
848
|
-
|
849
|
-
|
850
|
-
|
2160
|
+
[data-coco][data-component="button-group"][data-segmented="true"] .coco-button-wrapper:not(:last-child) .coco-button {
|
2161
|
+
border-top-right-radius: 0px;
|
2162
|
+
border-bottom-right-radius: 0px;
|
851
2163
|
}
|
852
|
-
|
853
|
-
|
854
|
-
|
2164
|
+
[data-coco][data-component="button-group"][data-segmented="true"][data-floating="true"] {
|
2165
|
+
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
2166
|
+
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
2167
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
855
2168
|
}
|
856
|
-
[data-coco]
|
857
|
-
|
2169
|
+
[data-coco][data-component="button-to"] {
|
2170
|
+
display: contents;
|
858
2171
|
}
|
859
|
-
[data-coco]
|
860
|
-
|
2172
|
+
[data-coco][data-component="button-to"] form,
|
2173
|
+
[data-coco][data-component="button-to"] input {
|
2174
|
+
display: contents;
|
861
2175
|
}
|
862
|
-
[data-coco].coco-button.with-icon[data-collapsed="true"] .button-content {
|
863
|
-
display: none;
|
864
|
-
}
|
865
2176
|
[data-coco][data-component="dropdown"] {
|
866
2177
|
width: -moz-fit-content;
|
867
2178
|
width: fit-content;
|
@@ -1970,7 +3281,95 @@ select {
|
|
1970
3281
|
}
|
1971
3282
|
.icon {
|
1972
3283
|
}
|
1973
|
-
/*
|
3284
|
+
/* paragraphs */
|
3285
|
+
/* labels */
|
3286
|
+
/* standard headings */
|
3287
|
+
/* standard subheadings */
|
3288
|
+
/* display headings */
|
3289
|
+
/* branded headings */
|
3290
|
+
/* branded display headings */
|
3291
|
+
.coco-button-xs .button-content {
|
3292
|
+
font-size: 14px;
|
3293
|
+
line-height: 14px;
|
3294
|
+
}
|
3295
|
+
.coco-button-xs .button-icon [data-component="icon"],
|
3296
|
+
.coco-button-xs .button-toggle {
|
3297
|
+
height: 0.875rem;
|
3298
|
+
width: 0.875rem;
|
3299
|
+
}
|
3300
|
+
.coco-button-xs.icon-only .button-icon,
|
3301
|
+
.coco-button-xs[data-collapsed="true"] .button-icon {
|
3302
|
+
margin-left: -0.25rem;
|
3303
|
+
margin-right: -0.25rem;
|
3304
|
+
}
|
3305
|
+
.coco-button-xs[data-theme|="text"].icon-only .button-icon,
|
3306
|
+
.coco-button-xs[data-theme|="text"][data-collapsed="true"] .button-icon {
|
3307
|
+
padding-left: 0.5rem;
|
3308
|
+
padding-right: 0.5rem;
|
3309
|
+
}
|
3310
|
+
.coco-button-sm .button-content {
|
3311
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
3312
|
+
font-size: 14px;
|
3313
|
+
line-height: 16px;
|
3314
|
+
font-weight: 600;
|
3315
|
+
}
|
3316
|
+
.coco-button-sm .button-icon [data-component="icon"],
|
3317
|
+
.coco-button-sm .button-toggle {
|
3318
|
+
height: 1rem;
|
3319
|
+
width: 1rem;
|
3320
|
+
}
|
3321
|
+
.coco-button-sm[data-theme].icon-only .button-icon,
|
3322
|
+
.coco-button-sm[data-theme][data-collapsed="true"] .button-icon {
|
3323
|
+
margin-left: -0.375rem;
|
3324
|
+
margin-right: -0.375rem;
|
3325
|
+
}
|
3326
|
+
.coco-button-sm[data-theme|="text"].icon-only .button-icon,
|
3327
|
+
.coco-button-sm[data-theme|="text"][data-collapsed="true"] .button-icon {
|
3328
|
+
padding-left: 0.5rem;
|
3329
|
+
padding-right: 0.5rem;
|
3330
|
+
}
|
3331
|
+
.coco-button-md .button-content {
|
3332
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
3333
|
+
font-size: 16px;
|
3334
|
+
line-height: 20px;
|
3335
|
+
font-weight: 600;
|
3336
|
+
}
|
3337
|
+
.coco-button-md .button-icon [data-component="icon"],
|
3338
|
+
.coco-button-md .button-toggle {
|
3339
|
+
height: 1.25rem;
|
3340
|
+
width: 1.25rem;
|
3341
|
+
}
|
3342
|
+
.coco-button-md[data-theme].icon-only .button-icon,
|
3343
|
+
.coco-button-md[data-theme][data-collapsed="true"] .button-icon {
|
3344
|
+
margin-left: -0.5rem;
|
3345
|
+
margin-right: -0.5rem;
|
3346
|
+
}
|
3347
|
+
.coco-button-md[data-theme|="text"].icon-only .button-icon,
|
3348
|
+
.coco-button-md[data-theme|="text"][data-collapsed="true"] .button-icon {
|
3349
|
+
padding-left: 0.5rem;
|
3350
|
+
padding-right: 0.5rem;
|
3351
|
+
}
|
3352
|
+
.coco-button-lg .button-content {
|
3353
|
+
font-family: proxima-nova, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
3354
|
+
font-size: 18px;
|
3355
|
+
line-height: 24px;
|
3356
|
+
font-weight: 600;
|
3357
|
+
}
|
3358
|
+
.coco-button-lg .button-icon [data-component="icon"],
|
3359
|
+
.coco-button-lg .button-toggle {
|
3360
|
+
height: 1.5rem;
|
3361
|
+
width: 1.5rem;
|
3362
|
+
}
|
3363
|
+
.coco-button-lg[data-theme].icon-only .button-icon,
|
3364
|
+
.coco-button-lg[data-theme][data-collapsed="true"] .button-inner {
|
3365
|
+
margin-left: -8px;
|
3366
|
+
margin-right: -8px;
|
3367
|
+
}
|
3368
|
+
.coco-button-lg[data-theme|="text"].icon-only .button-icon,
|
3369
|
+
.coco-button-lg[data-theme|="text"][data-collapsed="true"] .button-icon {
|
3370
|
+
padding-left: 0.75rem;
|
3371
|
+
padding-right: 0.75rem;
|
3372
|
+
}
|
1974
3373
|
.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}
|
1975
3374
|
[data-tippy-root]{max-width:calc(100vw - 10px)}
|
1976
3375
|
.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}
|
@@ -2007,3 +3406,4 @@ select {
|
|
2007
3406
|
.tippy-box[data-placement^=right]>.tippy-svg-arrow>svg:first-child:not(:last-child){right:12px}
|
2008
3407
|
.tippy-arrow{border-color:inherit}
|
2009
3408
|
.tippy-arrow:after{content:"";z-index:-1;position:absolute;border-color:transparent;border-style:solid}
|
3409
|
+
/* Tippy */
|