yattho_view_components 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +0 -0
- data/README.md +17 -0
- data/app/assets/javascripts/app/components/yattho/alpha/dropdown/menu.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/alpha/dropdown.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/alpha/image_crop.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/alpha/modal_dialog.d.ts +18 -0
- data/app/assets/javascripts/app/components/yattho/alpha/nav_list.d.ts +25 -0
- data/app/assets/javascripts/app/components/yattho/alpha/segmented_control.d.ts +12 -0
- data/app/assets/javascripts/app/components/yattho/alpha/tab_container.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/alpha/toggle_switch.d.ts +29 -0
- data/app/assets/javascripts/app/components/yattho/alpha/tool_tip.d.ts +25 -0
- data/app/assets/javascripts/app/components/yattho/alpha/x_banner.d.ts +11 -0
- data/app/assets/javascripts/app/components/yattho/beta/auto_complete/auto_complete.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/beta/clipboard_copy.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/local_time.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/time_ago_component.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/yattho.d.ts +16 -0
- data/app/assets/javascripts/lib/yattho/forms/toggle_switch_input.d.ts +5 -0
- data/app/assets/javascripts/lib/yattho/forms/yattho_multi_input.d.ts +10 -0
- data/app/assets/javascripts/lib/yattho/forms/yattho_text_field.d.ts +1 -0
- data/app/assets/javascripts/yattho_view_components.js +2 -0
- data/app/assets/javascripts/yattho_view_components.js.map +1 -0
- data/app/assets/styles/yattho_view_components.css +5958 -0
- data/app/assets/styles/yattho_view_components.css.map +1 -0
- data/app/components/yattho/alpha/action_list/divider.rb +35 -0
- data/app/components/yattho/alpha/action_list/heading.html.erb +8 -0
- data/app/components/yattho/alpha/action_list/heading.rb +38 -0
- data/app/components/yattho/alpha/action_list/item.html.erb +39 -0
- data/app/components/yattho/alpha/action_list/item.rb +242 -0
- data/app/components/yattho/alpha/action_list.css +697 -0
- data/app/components/yattho/alpha/action_list.css.json +1 -0
- data/app/components/yattho/alpha/action_list.css.map +1 -0
- data/app/components/yattho/alpha/action_list.html.erb +15 -0
- data/app/components/yattho/alpha/action_list.pcss +682 -0
- data/app/components/yattho/alpha/action_list.rb +112 -0
- data/app/components/yattho/alpha/auto_complete/auto_complete.html.erb +24 -0
- data/app/components/yattho/alpha/auto_complete/item.rb +46 -0
- data/app/components/yattho/alpha/auto_complete.css +130 -0
- data/app/components/yattho/alpha/auto_complete.css.json +1 -0
- data/app/components/yattho/alpha/auto_complete.css.map +1 -0
- data/app/components/yattho/alpha/auto_complete.pcss +118 -0
- data/app/components/yattho/alpha/auto_complete.rb +159 -0
- data/app/components/yattho/alpha/banner.css +131 -0
- data/app/components/yattho/alpha/banner.css.json +1 -0
- data/app/components/yattho/alpha/banner.css.map +1 -0
- data/app/components/yattho/alpha/banner.html.erb +33 -0
- data/app/components/yattho/alpha/banner.pcss +126 -0
- data/app/components/yattho/alpha/banner.rb +138 -0
- data/app/components/yattho/alpha/button_marketing.css +211 -0
- data/app/components/yattho/alpha/button_marketing.css.json +1 -0
- data/app/components/yattho/alpha/button_marketing.css.map +1 -0
- data/app/components/yattho/alpha/button_marketing.pcss +175 -0
- data/app/components/yattho/alpha/button_marketing.rb +70 -0
- data/app/components/yattho/alpha/dialog/body.rb +28 -0
- data/app/components/yattho/alpha/dialog/footer.rb +34 -0
- data/app/components/yattho/alpha/dialog/header.html.erb +15 -0
- data/app/components/yattho/alpha/dialog/header.rb +40 -0
- data/app/components/yattho/alpha/dialog.css +613 -0
- data/app/components/yattho/alpha/dialog.css.json +1 -0
- data/app/components/yattho/alpha/dialog.css.map +1 -0
- data/app/components/yattho/alpha/dialog.html.erb +12 -0
- data/app/components/yattho/alpha/dialog.pcss +484 -0
- data/app/components/yattho/alpha/dialog.rb +164 -0
- data/app/components/yattho/alpha/dropdown/menu.d.ts +1 -0
- data/app/components/yattho/alpha/dropdown/menu.html.erb +24 -0
- data/app/components/yattho/alpha/dropdown/menu.js +1 -0
- data/app/components/yattho/alpha/dropdown/menu.rb +108 -0
- data/app/components/yattho/alpha/dropdown/menu.ts +1 -0
- data/app/components/yattho/alpha/dropdown.css +264 -0
- data/app/components/yattho/alpha/dropdown.css.json +1 -0
- data/app/components/yattho/alpha/dropdown.css.map +1 -0
- data/app/components/yattho/alpha/dropdown.d.ts +1 -0
- data/app/components/yattho/alpha/dropdown.html.erb +8 -0
- data/app/components/yattho/alpha/dropdown.js +1 -0
- data/app/components/yattho/alpha/dropdown.pcss +260 -0
- data/app/components/yattho/alpha/dropdown.rb +154 -0
- data/app/components/yattho/alpha/dropdown.ts +1 -0
- data/app/components/yattho/alpha/hellip_button.rb +41 -0
- data/app/components/yattho/alpha/hidden_text_expander.rb +57 -0
- data/app/components/yattho/alpha/image.rb +50 -0
- data/app/components/yattho/alpha/image_crop.d.ts +1 -0
- data/app/components/yattho/alpha/image_crop.html.erb +12 -0
- data/app/components/yattho/alpha/image_crop.js +1 -0
- data/app/components/yattho/alpha/image_crop.rb +39 -0
- data/app/components/yattho/alpha/image_crop.ts +1 -0
- data/app/components/yattho/alpha/layout.css +398 -0
- data/app/components/yattho/alpha/layout.css.json +1 -0
- data/app/components/yattho/alpha/layout.css.map +1 -0
- data/app/components/yattho/alpha/layout.html.erb +5 -0
- data/app/components/yattho/alpha/layout.pcss +268 -0
- data/app/components/yattho/alpha/layout.rb +282 -0
- data/app/components/yattho/alpha/menu.css +117 -0
- data/app/components/yattho/alpha/menu.css.json +1 -0
- data/app/components/yattho/alpha/menu.css.map +1 -0
- data/app/components/yattho/alpha/menu.html.erb +6 -0
- data/app/components/yattho/alpha/menu.pcss +119 -0
- data/app/components/yattho/alpha/menu.rb +76 -0
- data/app/components/yattho/alpha/modal_dialog.d.ts +18 -0
- data/app/components/yattho/alpha/modal_dialog.js +162 -0
- data/app/components/yattho/alpha/modal_dialog.ts +173 -0
- data/app/components/yattho/alpha/nav_list/item.html.erb +13 -0
- data/app/components/yattho/alpha/nav_list/item.rb +125 -0
- data/app/components/yattho/alpha/nav_list/section.html.erb +3 -0
- data/app/components/yattho/alpha/nav_list/section.rb +85 -0
- data/app/components/yattho/alpha/nav_list.d.ts +25 -0
- data/app/components/yattho/alpha/nav_list.html.erb +10 -0
- data/app/components/yattho/alpha/nav_list.js +130 -0
- data/app/components/yattho/alpha/nav_list.rb +112 -0
- data/app/components/yattho/alpha/nav_list.ts +129 -0
- data/app/components/yattho/alpha/octicon_symbols.html.erb +3 -0
- data/app/components/yattho/alpha/octicon_symbols.rb +60 -0
- data/app/components/yattho/alpha/segmented_control/item.html.erb +13 -0
- data/app/components/yattho/alpha/segmented_control/item.rb +29 -0
- data/app/components/yattho/alpha/segmented_control.css +164 -0
- data/app/components/yattho/alpha/segmented_control.css.json +1 -0
- data/app/components/yattho/alpha/segmented_control.css.map +1 -0
- data/app/components/yattho/alpha/segmented_control.d.ts +12 -0
- data/app/components/yattho/alpha/segmented_control.html.erb +7 -0
- data/app/components/yattho/alpha/segmented_control.js +47 -0
- data/app/components/yattho/alpha/segmented_control.pcss +134 -0
- data/app/components/yattho/alpha/segmented_control.rb +96 -0
- data/app/components/yattho/alpha/segmented_control.ts +41 -0
- data/app/components/yattho/alpha/tab_container.d.ts +1 -0
- data/app/components/yattho/alpha/tab_container.js +1 -0
- data/app/components/yattho/alpha/tab_container.rb +43 -0
- data/app/components/yattho/alpha/tab_container.ts +1 -0
- data/app/components/yattho/alpha/tab_nav.css +106 -0
- data/app/components/yattho/alpha/tab_nav.css.json +1 -0
- data/app/components/yattho/alpha/tab_nav.css.map +1 -0
- data/app/components/yattho/alpha/tab_nav.html.erb +9 -0
- data/app/components/yattho/alpha/tab_nav.pcss +100 -0
- data/app/components/yattho/alpha/tab_nav.rb +129 -0
- data/app/components/yattho/alpha/tab_panels.html.erb +14 -0
- data/app/components/yattho/alpha/tab_panels.rb +82 -0
- data/app/components/yattho/alpha/text_field.css +836 -0
- data/app/components/yattho/alpha/text_field.css.json +1 -0
- data/app/components/yattho/alpha/text_field.css.map +1 -0
- data/app/components/yattho/alpha/text_field.pcss +689 -0
- data/app/components/yattho/alpha/text_field.rb +105 -0
- data/app/components/yattho/alpha/toggle_switch.css +253 -0
- data/app/components/yattho/alpha/toggle_switch.css.json +1 -0
- data/app/components/yattho/alpha/toggle_switch.css.map +1 -0
- data/app/components/yattho/alpha/toggle_switch.d.ts +29 -0
- data/app/components/yattho/alpha/toggle_switch.html.erb +43 -0
- data/app/components/yattho/alpha/toggle_switch.js +156 -0
- data/app/components/yattho/alpha/toggle_switch.pcss +250 -0
- data/app/components/yattho/alpha/toggle_switch.rb +90 -0
- data/app/components/yattho/alpha/toggle_switch.ts +173 -0
- data/app/components/yattho/alpha/tool_tip.d.ts +25 -0
- data/app/components/yattho/alpha/tool_tip.js +369 -0
- data/app/components/yattho/alpha/tool_tip.ts +370 -0
- data/app/components/yattho/alpha/tooltip.rb +127 -0
- data/app/components/yattho/alpha/underline_nav.css +148 -0
- data/app/components/yattho/alpha/underline_nav.css.json +1 -0
- data/app/components/yattho/alpha/underline_nav.css.map +1 -0
- data/app/components/yattho/alpha/underline_nav.html.erb +13 -0
- data/app/components/yattho/alpha/underline_nav.pcss +133 -0
- data/app/components/yattho/alpha/underline_nav.rb +138 -0
- data/app/components/yattho/alpha/underline_panels.html.erb +18 -0
- data/app/components/yattho/alpha/underline_panels.rb +86 -0
- data/app/components/yattho/alpha/x_banner.d.ts +11 -0
- data/app/components/yattho/alpha/x_banner.js +35 -0
- data/app/components/yattho/alpha/x_banner.ts +38 -0
- data/app/components/yattho/base_component.rb +173 -0
- data/app/components/yattho/beta/auto_complete/auto_complete.d.ts +1 -0
- data/app/components/yattho/beta/auto_complete/auto_complete.html.erb +28 -0
- data/app/components/yattho/beta/auto_complete/auto_complete.js +1 -0
- data/app/components/yattho/beta/auto_complete/auto_complete.ts +1 -0
- data/app/components/yattho/beta/auto_complete/item.html.erb +21 -0
- data/app/components/yattho/beta/auto_complete/item.rb +80 -0
- data/app/components/yattho/beta/auto_complete.rb +201 -0
- data/app/components/yattho/beta/avatar.css +74 -0
- data/app/components/yattho/beta/avatar.css.json +1 -0
- data/app/components/yattho/beta/avatar.css.map +1 -0
- data/app/components/yattho/beta/avatar.pcss +73 -0
- data/app/components/yattho/beta/avatar.rb +84 -0
- data/app/components/yattho/beta/avatar_stack.css +138 -0
- data/app/components/yattho/beta/avatar_stack.css.json +1 -0
- data/app/components/yattho/beta/avatar_stack.css.map +1 -0
- data/app/components/yattho/beta/avatar_stack.html.erb +10 -0
- data/app/components/yattho/beta/avatar_stack.pcss +141 -0
- data/app/components/yattho/beta/avatar_stack.rb +92 -0
- data/app/components/yattho/beta/base_button.rb +48 -0
- data/app/components/yattho/beta/blankslate.css +90 -0
- data/app/components/yattho/beta/blankslate.css.json +1 -0
- data/app/components/yattho/beta/blankslate.css.map +1 -0
- data/app/components/yattho/beta/blankslate.html.erb +17 -0
- data/app/components/yattho/beta/blankslate.pcss +90 -0
- data/app/components/yattho/beta/blankslate.rb +238 -0
- data/app/components/yattho/beta/border_box/header.html.erb +4 -0
- data/app/components/yattho/beta/border_box/header.rb +52 -0
- data/app/components/yattho/beta/border_box.css +279 -0
- data/app/components/yattho/beta/border_box.css.json +1 -0
- data/app/components/yattho/beta/border_box.css.map +1 -0
- data/app/components/yattho/beta/border_box.html.erb +12 -0
- data/app/components/yattho/beta/border_box.pcss +284 -0
- data/app/components/yattho/beta/border_box.rb +147 -0
- data/app/components/yattho/beta/breadcrumbs.css +27 -0
- data/app/components/yattho/beta/breadcrumbs.css.json +1 -0
- data/app/components/yattho/beta/breadcrumbs.css.map +1 -0
- data/app/components/yattho/beta/breadcrumbs.html.erb +8 -0
- data/app/components/yattho/beta/breadcrumbs.pcss +30 -0
- data/app/components/yattho/beta/breadcrumbs.rb +82 -0
- data/app/components/yattho/beta/button.css +365 -0
- data/app/components/yattho/beta/button.css.json +1 -0
- data/app/components/yattho/beta/button.css.map +1 -0
- data/app/components/yattho/beta/button.html.erb +23 -0
- data/app/components/yattho/beta/button.pcss +344 -0
- data/app/components/yattho/beta/button.rb +198 -0
- data/app/components/yattho/beta/button_group.html.erb +5 -0
- data/app/components/yattho/beta/button_group.rb +59 -0
- data/app/components/yattho/beta/clipboard_copy.d.ts +1 -0
- data/app/components/yattho/beta/clipboard_copy.html.erb +8 -0
- data/app/components/yattho/beta/clipboard_copy.js +43 -0
- data/app/components/yattho/beta/clipboard_copy.rb +50 -0
- data/app/components/yattho/beta/clipboard_copy.ts +55 -0
- data/app/components/yattho/beta/close_button.rb +41 -0
- data/app/components/yattho/beta/counter.css +36 -0
- data/app/components/yattho/beta/counter.css.json +1 -0
- data/app/components/yattho/beta/counter.css.map +1 -0
- data/app/components/yattho/beta/counter.pcss +35 -0
- data/app/components/yattho/beta/counter.rb +114 -0
- data/app/components/yattho/beta/details.html.erb +4 -0
- data/app/components/yattho/beta/details.rb +72 -0
- data/app/components/yattho/beta/flash.css +150 -0
- data/app/components/yattho/beta/flash.css.json +1 -0
- data/app/components/yattho/beta/flash.css.map +1 -0
- data/app/components/yattho/beta/flash.html.erb +10 -0
- data/app/components/yattho/beta/flash.pcss +143 -0
- data/app/components/yattho/beta/flash.rb +72 -0
- data/app/components/yattho/beta/heading.rb +46 -0
- data/app/components/yattho/beta/icon_button.html.erb +6 -0
- data/app/components/yattho/beta/icon_button.rb +110 -0
- data/app/components/yattho/beta/label.css +105 -0
- data/app/components/yattho/beta/label.css.json +1 -0
- data/app/components/yattho/beta/label.css.map +1 -0
- data/app/components/yattho/beta/label.pcss +103 -0
- data/app/components/yattho/beta/label.rb +102 -0
- data/app/components/yattho/beta/link.css +62 -0
- data/app/components/yattho/beta/link.css.json +1 -0
- data/app/components/yattho/beta/link.css.map +1 -0
- data/app/components/yattho/beta/link.pcss +60 -0
- data/app/components/yattho/beta/link.rb +103 -0
- data/app/components/yattho/beta/markdown.rb +290 -0
- data/app/components/yattho/beta/octicon.html.erb +7 -0
- data/app/components/yattho/beta/octicon.rb +88 -0
- data/app/components/yattho/beta/popover.css +235 -0
- data/app/components/yattho/beta/popover.css.json +1 -0
- data/app/components/yattho/beta/popover.css.map +1 -0
- data/app/components/yattho/beta/popover.html.erb +6 -0
- data/app/components/yattho/beta/popover.pcss +225 -0
- data/app/components/yattho/beta/popover.rb +127 -0
- data/app/components/yattho/beta/progress_bar.css +26 -0
- data/app/components/yattho/beta/progress_bar.css.json +1 -0
- data/app/components/yattho/beta/progress_bar.css.map +1 -0
- data/app/components/yattho/beta/progress_bar.html.erb +5 -0
- data/app/components/yattho/beta/progress_bar.pcss +26 -0
- data/app/components/yattho/beta/progress_bar.rb +72 -0
- data/app/components/yattho/beta/relative_time.rb +166 -0
- data/app/components/yattho/beta/spinner.html.erb +4 -0
- data/app/components/yattho/beta/spinner.rb +45 -0
- data/app/components/yattho/beta/state.css +50 -0
- data/app/components/yattho/beta/state.css.json +1 -0
- data/app/components/yattho/beta/state.css.map +1 -0
- data/app/components/yattho/beta/state.pcss +50 -0
- data/app/components/yattho/beta/state.rb +76 -0
- data/app/components/yattho/beta/subhead.css +54 -0
- data/app/components/yattho/beta/subhead.css.json +1 -0
- data/app/components/yattho/beta/subhead.css.map +1 -0
- data/app/components/yattho/beta/subhead.html.erb +5 -0
- data/app/components/yattho/beta/subhead.pcss +49 -0
- data/app/components/yattho/beta/subhead.rb +135 -0
- data/app/components/yattho/beta/text.rb +27 -0
- data/app/components/yattho/beta/timeline_item.css +95 -0
- data/app/components/yattho/beta/timeline_item.css.json +1 -0
- data/app/components/yattho/beta/timeline_item.css.map +1 -0
- data/app/components/yattho/beta/timeline_item.html.erb +5 -0
- data/app/components/yattho/beta/timeline_item.pcss +93 -0
- data/app/components/yattho/beta/timeline_item.rb +90 -0
- data/app/components/yattho/beta/truncate.css +37 -0
- data/app/components/yattho/beta/truncate.css.json +1 -0
- data/app/components/yattho/beta/truncate.css.map +1 -0
- data/app/components/yattho/beta/truncate.html.erb +5 -0
- data/app/components/yattho/beta/truncate.pcss +31 -0
- data/app/components/yattho/beta/truncate.rb +114 -0
- data/app/components/yattho/blankslate_component.html.erb +25 -0
- data/app/components/yattho/blankslate_component.rb +156 -0
- data/app/components/yattho/box.rb +25 -0
- data/app/components/yattho/button_component.html.erb +12 -0
- data/app/components/yattho/button_component.rb +175 -0
- data/app/components/yattho/component.rb +139 -0
- data/app/components/yattho/conditional_wrapper.rb +36 -0
- data/app/components/yattho/content.rb +12 -0
- data/app/components/yattho/dropdown/menu.rb +14 -0
- data/app/components/yattho/dropdown.rb +7 -0
- data/app/components/yattho/hellip_button.rb +7 -0
- data/app/components/yattho/icon_button.html.erb +12 -0
- data/app/components/yattho/icon_button.rb +109 -0
- data/app/components/yattho/label_component.rb +7 -0
- data/app/components/yattho/layout_component.html.erb +9 -0
- data/app/components/yattho/layout_component.rb +71 -0
- data/app/components/yattho/link_component.rb +7 -0
- data/app/components/yattho/local_time.d.ts +1 -0
- data/app/components/yattho/local_time.js +1 -0
- data/app/components/yattho/local_time.rb +64 -0
- data/app/components/yattho/local_time.ts +1 -0
- data/app/components/yattho/markdown.rb +7 -0
- data/app/components/yattho/menu_component.rb +7 -0
- data/app/components/yattho/navigation/tab_component.html.erb +11 -0
- data/app/components/yattho/navigation/tab_component.rb +166 -0
- data/app/components/yattho/octicon_component.rb +7 -0
- data/app/components/yattho/octicon_symbols_component.rb +7 -0
- data/app/components/yattho/popover_component.rb +8 -0
- data/app/components/yattho/spinner_component.rb +7 -0
- data/app/components/yattho/state_component.rb +7 -0
- data/app/components/yattho/subhead_component.rb +7 -0
- data/app/components/yattho/tab_container_component.rb +7 -0
- data/app/components/yattho/time_ago_component.d.ts +1 -0
- data/app/components/yattho/time_ago_component.js +1 -0
- data/app/components/yattho/time_ago_component.rb +51 -0
- data/app/components/yattho/time_ago_component.ts +1 -0
- data/app/components/yattho/timeline_item_component.rb +13 -0
- data/app/components/yattho/tooltip.rb +91 -0
- data/app/components/yattho/truncate.css +30 -0
- data/app/components/yattho/truncate.css.json +1 -0
- data/app/components/yattho/truncate.css.map +1 -0
- data/app/components/yattho/truncate.pcss +30 -0
- data/app/components/yattho/truncate.rb +55 -0
- data/app/components/yattho/yattho.d.ts +16 -0
- data/app/components/yattho/yattho.js +16 -0
- data/app/components/yattho/yattho.pcss +37 -0
- data/app/components/yattho/yattho.ts +16 -0
- data/app/forms/after_content_form/after_content.html.erb +1 -0
- data/app/forms/after_content_form.rb +13 -0
- data/app/forms/application_form.rb +5 -0
- data/app/forms/array_check_box_group_form/places_lopez_caption.html.erb +1 -0
- data/app/forms/array_check_box_group_form.rb +15 -0
- data/app/forms/both_types_of_caption_form/first_name_caption.html.erb +1 -0
- data/app/forms/both_types_of_caption_form.rb +13 -0
- data/app/forms/caption_template_form/age_middle_aged_caption.html.erb +1 -0
- data/app/forms/caption_template_form/age_young_caption.html.erb +1 -0
- data/app/forms/caption_template_form/cool_caption.html.erb +1 -0
- data/app/forms/caption_template_form/first_name_caption.html.erb +1 -0
- data/app/forms/caption_template_form.rb +22 -0
- data/app/forms/check_box_group_form.rb +28 -0
- data/app/forms/check_box_with_nested_form.rb +39 -0
- data/app/forms/composed_form.rb +14 -0
- data/app/forms/example_toggle_switch_form/example_field_caption.html.erb +1 -0
- data/app/forms/example_toggle_switch_form.rb +8 -0
- data/app/forms/first_name_form.rb +13 -0
- data/app/forms/horizontal_form.rb +34 -0
- data/app/forms/immediate_validation_form.rb +29 -0
- data/app/forms/invalid_form.rb +21 -0
- data/app/forms/last_name_form.rb +13 -0
- data/app/forms/multi_input_form.rb +27 -0
- data/app/forms/multi_text_field_form.rb +27 -0
- data/app/forms/name_with_question_mark_form/enabled_caption.html.erb +1 -0
- data/app/forms/name_with_question_mark_form.rb +11 -0
- data/app/forms/radio_button_group_form.rb +12 -0
- data/app/forms/radio_button_with_nested_form.rb +40 -0
- data/app/forms/select_list_form.rb +13 -0
- data/app/forms/single_text_field_form.rb +13 -0
- data/app/forms/submit_button_form.rb +26 -0
- data/app/forms/text_field_and_checkbox_form.rb +19 -0
- data/app/helpers/yattho/form_helper.rb +23 -0
- data/app/lib/yattho/audited/dsl.rb +32 -0
- data/app/lib/yattho/class_name_helper.rb +29 -0
- data/app/lib/yattho/css/layout.css +1541 -0
- data/app/lib/yattho/css/layout.css.json +1 -0
- data/app/lib/yattho/css/utilities.css +7304 -0
- data/app/lib/yattho/css/utilities.css.json +1 -0
- data/app/lib/yattho/fetch_or_fallback_helper.rb +63 -0
- data/app/lib/yattho/join_style_arguments_helper.rb +14 -0
- data/app/lib/yattho/octicon/cache.rb +45 -0
- data/app/lib/yattho/status/dsl.rb +44 -0
- data/app/lib/yattho/tab_nav_helper.rb +35 -0
- data/app/lib/yattho/tabbed_component_helper.rb +44 -0
- data/app/lib/yattho/test_selector_helper.rb +20 -0
- data/app/lib/yattho/underline_nav_helper.rb +44 -0
- data/app/lib/yattho/view_helper.rb +22 -0
- data/lib/postcss_mixins/activeIndicatorLine.pcss +11 -0
- data/lib/postcss_mixins/clearfix.pcss +12 -0
- data/lib/postcss_mixins/focusBoxShadowInset.pcss +6 -0
- data/lib/postcss_mixins/focusOutline.pcss +5 -0
- data/lib/postcss_mixins/focusOutlineOnEmphasis.pcss +6 -0
- data/lib/postcss_mixins/minTouchTarget.js +20 -0
- data/lib/postcss_mixins/targetBoxShadow.pcss +7 -0
- data/lib/rubocop/config/default.yml +20 -0
- data/lib/rubocop/cop/yattho/base_cop.rb +28 -0
- data/lib/rubocop/cop/yattho/component_name_migration.rb +37 -0
- data/lib/rubocop/cop/yattho/deprecated_arguments.rb +317 -0
- data/lib/rubocop/cop/yattho/deprecated_button_arguments.rb +51 -0
- data/lib/rubocop/cop/yattho/deprecated_components.rb +49 -0
- data/lib/rubocop/cop/yattho/deprecated_label_schemes.rb +68 -0
- data/lib/rubocop/cop/yattho/deprecated_label_variants.rb +73 -0
- data/lib/rubocop/cop/yattho/deprecated_layout_component.rb +30 -0
- data/lib/rubocop/cop/yattho/no_tag_memoize.rb +43 -0
- data/lib/rubocop/cop/yattho/system_argument_instead_of_class.rb +57 -0
- data/lib/rubocop/cop/yattho/test_selector.rb +48 -0
- data/lib/rubocop/cop/yattho/yattho_octicon.rb +219 -0
- data/lib/rubocop/cop/yattho.rb +3 -0
- data/lib/tasks/custom_utilities.yml +310 -0
- data/lib/tasks/docs.rake +541 -0
- data/lib/tasks/helpers/ast_processor.rb +44 -0
- data/lib/tasks/helpers/ast_traverser.rb +77 -0
- data/lib/tasks/static.rake +15 -0
- data/lib/tasks/test.rake +83 -0
- data/lib/tasks/utilities.rake +109 -0
- data/lib/tasks/yattho_view_components.rake +47 -0
- data/lib/yattho/classify/utilities.rb +204 -0
- data/lib/yattho/classify/utilities.yml +1817 -0
- data/lib/yattho/classify/validation.rb +18 -0
- data/lib/yattho/classify.rb +135 -0
- data/lib/yattho/deprecations.rb +99 -0
- data/lib/yattho/deprecations.yml +109 -0
- data/lib/yattho/example_image.rb +8 -0
- data/lib/yattho/form_components.rb +37 -0
- data/lib/yattho/forms/acts_as_component.rb +118 -0
- data/lib/yattho/forms/base.html.erb +8 -0
- data/lib/yattho/forms/base.rb +133 -0
- data/lib/yattho/forms/base_component.rb +76 -0
- data/lib/yattho/forms/buffer_rewriter.rb +51 -0
- data/lib/yattho/forms/builder.rb +87 -0
- data/lib/yattho/forms/button.html.erb +4 -0
- data/lib/yattho/forms/button.rb +68 -0
- data/lib/yattho/forms/caption.html.erb +10 -0
- data/lib/yattho/forms/caption.rb +29 -0
- data/lib/yattho/forms/check_box.html.erb +16 -0
- data/lib/yattho/forms/check_box.rb +46 -0
- data/lib/yattho/forms/check_box_group.html.erb +12 -0
- data/lib/yattho/forms/check_box_group.rb +14 -0
- data/lib/yattho/forms/dsl/button_input.rb +29 -0
- data/lib/yattho/forms/dsl/check_box_group_input.rb +54 -0
- data/lib/yattho/forms/dsl/check_box_input.rb +54 -0
- data/lib/yattho/forms/dsl/form_object.rb +25 -0
- data/lib/yattho/forms/dsl/form_reference_input.rb +59 -0
- data/lib/yattho/forms/dsl/hidden_input.rb +29 -0
- data/lib/yattho/forms/dsl/input.rb +282 -0
- data/lib/yattho/forms/dsl/input_group.rb +34 -0
- data/lib/yattho/forms/dsl/input_methods.rb +91 -0
- data/lib/yattho/forms/dsl/multi_input.rb +55 -0
- data/lib/yattho/forms/dsl/radio_button_group_input.rb +38 -0
- data/lib/yattho/forms/dsl/radio_button_input.rb +37 -0
- data/lib/yattho/forms/dsl/select_list_input.rb +61 -0
- data/lib/yattho/forms/dsl/submit_button_input.rb +29 -0
- data/lib/yattho/forms/dsl/text_area_input.rb +33 -0
- data/lib/yattho/forms/dsl/text_field_input.rb +88 -0
- data/lib/yattho/forms/dsl/toggle_switch_input.rb +35 -0
- data/lib/yattho/forms/form_control.html.erb +22 -0
- data/lib/yattho/forms/form_control.rb +25 -0
- data/lib/yattho/forms/form_list.html.erb +5 -0
- data/lib/yattho/forms/form_list.rb +21 -0
- data/lib/yattho/forms/form_reference.html.erb +3 -0
- data/lib/yattho/forms/form_reference.rb +18 -0
- data/lib/yattho/forms/group.html.erb +5 -0
- data/lib/yattho/forms/group.rb +27 -0
- data/lib/yattho/forms/hidden_field.html.erb +1 -0
- data/lib/yattho/forms/hidden_field.rb +15 -0
- data/lib/yattho/forms/multi.html.erb +7 -0
- data/lib/yattho/forms/multi.rb +14 -0
- data/lib/yattho/forms/radio_button.html.erb +16 -0
- data/lib/yattho/forms/radio_button.rb +29 -0
- data/lib/yattho/forms/radio_button_group.html.erb +12 -0
- data/lib/yattho/forms/radio_button_group.rb +14 -0
- data/lib/yattho/forms/select_list.html.erb +5 -0
- data/lib/yattho/forms/select_list.rb +29 -0
- data/lib/yattho/forms/separator.html.erb +1 -0
- data/lib/yattho/forms/separator.rb +8 -0
- data/lib/yattho/forms/spacing_wrapper.html.erb +3 -0
- data/lib/yattho/forms/spacing_wrapper.rb +8 -0
- data/lib/yattho/forms/submit_button.html.erb +1 -0
- data/lib/yattho/forms/submit_button.rb +14 -0
- data/lib/yattho/forms/text_area.html.erb +5 -0
- data/lib/yattho/forms/text_area.rb +20 -0
- data/lib/yattho/forms/text_field.html.erb +19 -0
- data/lib/yattho/forms/text_field.rb +36 -0
- data/lib/yattho/forms/toggle_switch.html.erb +22 -0
- data/lib/yattho/forms/toggle_switch.rb +17 -0
- data/lib/yattho/forms/toggle_switch_form.rb +74 -0
- data/lib/yattho/forms/toggle_switch_input.d.ts +5 -0
- data/lib/yattho/forms/toggle_switch_input.js +29 -0
- data/lib/yattho/forms/toggle_switch_input.ts +19 -0
- data/lib/yattho/forms/utils.rb +28 -0
- data/lib/yattho/forms/yattho_multi_input.d.ts +10 -0
- data/lib/yattho/forms/yattho_multi_input.js +45 -0
- data/lib/yattho/forms/yattho_multi_input.ts +46 -0
- data/lib/yattho/forms/yattho_text_field.d.ts +1 -0
- data/lib/yattho/forms/yattho_text_field.js +62 -0
- data/lib/yattho/forms/yattho_text_field.ts +48 -0
- data/lib/yattho/view_components/audited.rb +14 -0
- data/lib/yattho/view_components/constants.rb +55 -0
- data/lib/yattho/view_components/engine.rb +69 -0
- data/lib/yattho/view_components/linters/argument_mappers/base.rb +103 -0
- data/lib/yattho/view_components/linters/argument_mappers/button.rb +75 -0
- data/lib/yattho/view_components/linters/argument_mappers/clipboard_copy.rb +21 -0
- data/lib/yattho/view_components/linters/argument_mappers/close_button.rb +46 -0
- data/lib/yattho/view_components/linters/argument_mappers/conversion_error.rb +10 -0
- data/lib/yattho/view_components/linters/argument_mappers/flash.rb +32 -0
- data/lib/yattho/view_components/linters/argument_mappers/helpers/erb_block.rb +68 -0
- data/lib/yattho/view_components/linters/argument_mappers/label.rb +56 -0
- data/lib/yattho/view_components/linters/argument_mappers/system_arguments.rb +48 -0
- data/lib/yattho/view_components/linters/autocorrectable.rb +32 -0
- data/lib/yattho/view_components/linters/base_linter.rb +208 -0
- data/lib/yattho/view_components/linters/blankslate_api_migration.rb +153 -0
- data/lib/yattho/view_components/linters/blankslate_component_migration_counter.rb +14 -0
- data/lib/yattho/view_components/linters/breadcrumbs_component_migration_counter.rb +14 -0
- data/lib/yattho/view_components/linters/button_component_migration_counter.rb +26 -0
- data/lib/yattho/view_components/linters/clipboard_copy_component_migration_counter.rb +20 -0
- data/lib/yattho/view_components/linters/close_button_component_migration_counter.rb +121 -0
- data/lib/yattho/view_components/linters/deprecated_components_counter.rb +60 -0
- data/lib/yattho/view_components/linters/disallow_action_list.rb +73 -0
- data/lib/yattho/view_components/linters/flash_migration_counter.rb +36 -0
- data/lib/yattho/view_components/linters/helpers/deprecated_components_helpers.rb +20 -0
- data/lib/yattho/view_components/linters/helpers/rubocop_helpers.rb +14 -0
- data/lib/yattho/view_components/linters/label_component_migration_counter.rb +24 -0
- data/lib/yattho/view_components/linters/migrate_deprecated_flash_arguments.rb +140 -0
- data/lib/yattho/view_components/linters/severity_schema.rb +14 -0
- data/lib/yattho/view_components/linters/subhead_component_migration_counter.rb +14 -0
- data/lib/yattho/view_components/linters/super_in_component_templates.rb +65 -0
- data/lib/yattho/view_components/linters/tag_tree_helpers.rb +61 -0
- data/lib/yattho/view_components/linters/two_column_layout_migration_counter.rb +158 -0
- data/lib/yattho/view_components/linters.rb +3 -0
- data/lib/yattho/view_components/statuses.rb +14 -0
- data/lib/yattho/view_components/version.rb +18 -0
- data/lib/yattho/view_components.rb +63 -0
- data/lib/yattho/yard/backend.rb +38 -0
- data/lib/yattho/yard/component_manifest.rb +123 -0
- data/lib/yattho/yard/docs_helper.rb +81 -0
- data/lib/yattho/yard/legacy_gatsby_backend.rb +271 -0
- data/lib/yattho/yard/registry.rb +146 -0
- data/lib/yattho/yard/renders_many_handler.rb +23 -0
- data/lib/yattho/yard/renders_one_handler.rb +23 -0
- data/previews/docs/alpha_auto_complete_item_preview/default.html.erb +10 -0
- data/previews/docs/alpha_auto_complete_item_preview.rb +7 -0
- data/previews/docs/alpha_auto_complete_preview/default.html.erb +1 -0
- data/previews/docs/alpha_auto_complete_preview/with_clear_button.html.erb +1 -0
- data/previews/docs/alpha_auto_complete_preview/with_custom_classes_for_the_input.html.erb +3 -0
- data/previews/docs/alpha_auto_complete_preview/with_custom_classes_for_the_results.html.erb +10 -0
- data/previews/docs/alpha_auto_complete_preview/with_icon.html.erb +1 -0
- data/previews/docs/alpha_auto_complete_preview/with_icon_and_non_visible_label.html.erb +1 -0
- data/previews/docs/alpha_auto_complete_preview/with_inline_label.html.erb +1 -0
- data/previews/docs/alpha_auto_complete_preview/with_non_visible_label.html.erb +1 -0
- data/previews/docs/alpha_auto_complete_preview.rb +21 -0
- data/previews/docs/alpha_banner_preview/custom_icon.html.erb +1 -0
- data/previews/docs/alpha_banner_preview/dismissible.html.erb +1 -0
- data/previews/docs/alpha_banner_preview/full_width.html.erb +1 -0
- data/previews/docs/alpha_banner_preview/schemes.html.erb +6 -0
- data/previews/docs/alpha_banner_preview/with_action_button.html.erb +4 -0
- data/previews/docs/alpha_banner_preview/with_custom_action.html.erb +6 -0
- data/previews/docs/alpha_banner_preview.rb +17 -0
- data/previews/docs/alpha_button_marketing_preview/schemes.html.erb +6 -0
- data/previews/docs/alpha_button_marketing_preview/sizes.html.erb +2 -0
- data/previews/docs/alpha_button_marketing_preview.rb +9 -0
- data/previews/docs/alpha_dialog_preview/dialog_with_cancel_and_submit_buttons.html.erb +13 -0
- data/previews/docs/alpha_dialog_preview.rb +7 -0
- data/previews/docs/alpha_dropdown_preview/customizing_menu_items.html.erb +11 -0
- data/previews/docs/alpha_dropdown_preview/customizing_the_button.html.erb +12 -0
- data/previews/docs/alpha_dropdown_preview/default.html.erb +11 -0
- data/previews/docs/alpha_dropdown_preview/menu_as_list.html.erb +13 -0
- data/previews/docs/alpha_dropdown_preview/with_caret.html.erb +12 -0
- data/previews/docs/alpha_dropdown_preview/with_direction.html.erb +12 -0
- data/previews/docs/alpha_dropdown_preview/with_dividers.html.erb +16 -0
- data/previews/docs/alpha_dropdown_preview.rb +19 -0
- data/previews/docs/alpha_hellip_button_preview/default.html.erb +1 -0
- data/previews/docs/alpha_hellip_button_preview/inline.html.erb +1 -0
- data/previews/docs/alpha_hellip_button_preview/styling_the_button.html.erb +1 -0
- data/previews/docs/alpha_hellip_button_preview.rb +11 -0
- data/previews/docs/alpha_hidden_text_expander_preview/default.html.erb +1 -0
- data/previews/docs/alpha_hidden_text_expander_preview/inline.html.erb +1 -0
- data/previews/docs/alpha_hidden_text_expander_preview/styling_the_button.html.erb +1 -0
- data/previews/docs/alpha_hidden_text_expander_preview.rb +11 -0
- data/previews/docs/alpha_image_crop_preview/cropper_with_a_custom_loader.html.erb +3 -0
- data/previews/docs/alpha_image_crop_preview/simple_cropper.html.erb +1 -0
- data/previews/docs/alpha_image_crop_preview/square_cropper.html.erb +1 -0
- data/previews/docs/alpha_image_crop_preview.rb +11 -0
- data/previews/docs/alpha_image_preview/custom_size.html.erb +2 -0
- data/previews/docs/alpha_image_preview/default.html.erb +2 -0
- data/previews/docs/alpha_image_preview/helper.html.erb +2 -0
- data/previews/docs/alpha_image_preview/lazy_loading.html.erb +2 -0
- data/previews/docs/alpha_image_preview.rb +13 -0
- data/previews/docs/alpha_layout_preview/changing_when_to_render_layout_as_columns.html.erb +12 -0
- data/previews/docs/alpha_layout_preview/default.html.erb +5 -0
- data/previews/docs/alpha_layout_preview/main_widths.html.erb +16 -0
- data/previews/docs/alpha_layout_preview/sidebar_placement.html.erb +8 -0
- data/previews/docs/alpha_layout_preview/sidebar_placement_as_row.html.erb +12 -0
- data/previews/docs/alpha_layout_preview/sidebar_widths.html.erb +12 -0
- data/previews/docs/alpha_layout_preview.rb +17 -0
- data/previews/docs/alpha_menu_preview/default.html.erb +17 -0
- data/previews/docs/alpha_menu_preview.rb +7 -0
- data/previews/docs/alpha_nav_list_preview/expandable_sub_items.html.erb +24 -0
- data/previews/docs/alpha_nav_list_preview/items_and_headings.html.erb +12 -0
- data/previews/docs/alpha_nav_list_preview/leading_and_trailing_visuals.html.erb +17 -0
- data/previews/docs/alpha_nav_list_preview/trailing_action.html.erb +12 -0
- data/previews/docs/alpha_nav_list_preview.rb +13 -0
- data/previews/docs/alpha_octicon_symbols_preview/symbol_dictionary.html.erb +4 -0
- data/previews/docs/alpha_octicon_symbols_preview.rb +7 -0
- data/previews/docs/alpha_segmented_control_preview/basic_usage.html.erb +6 -0
- data/previews/docs/alpha_segmented_control_preview/fill_width_of_parent.html.erb +5 -0
- data/previews/docs/alpha_segmented_control_preview/small.html.erb +6 -0
- data/previews/docs/alpha_segmented_control_preview/with_icons.html.erb +5 -0
- data/previews/docs/alpha_segmented_control_preview/with_icons_only.html.erb +5 -0
- data/previews/docs/alpha_segmented_control_preview.rb +15 -0
- data/previews/docs/alpha_tab_container_preview/default.html.erb +16 -0
- data/previews/docs/alpha_tab_container_preview.rb +7 -0
- data/previews/docs/alpha_tab_nav_preview/adding_extra_content_after_the_tabs.html.erb +10 -0
- data/previews/docs/alpha_tab_nav_preview/customizing_the_body.html.erb +5 -0
- data/previews/docs/alpha_tab_nav_preview/default_with_div.html.erb +5 -0
- data/previews/docs/alpha_tab_nav_preview/default_with_nav.html.erb +5 -0
- data/previews/docs/alpha_tab_nav_preview/with_extra_content.html.erb +8 -0
- data/previews/docs/alpha_tab_nav_preview/with_icons_and_counters.html.erb +15 -0
- data/previews/docs/alpha_tab_nav_preview.rb +17 -0
- data/previews/docs/alpha_tab_panels_preview/default.html.erb +14 -0
- data/previews/docs/alpha_tab_panels_preview.rb +7 -0
- data/previews/docs/alpha_text_field_preview/default.html.erb +1 -0
- data/previews/docs/alpha_text_field_preview/disabled.html.erb +7 -0
- data/previews/docs/alpha_text_field_preview/full_width.html.erb +7 -0
- data/previews/docs/alpha_text_field_preview/invalid.html.erb +7 -0
- data/previews/docs/alpha_text_field_preview/with_a_caption.html.erb +7 -0
- data/previews/docs/alpha_text_field_preview/with_a_clear_button.html.erb +7 -0
- data/previews/docs/alpha_text_field_preview/with_a_leading_visual.html.erb +9 -0
- data/previews/docs/alpha_text_field_preview/with_a_validation_message.html.erb +7 -0
- data/previews/docs/alpha_text_field_preview.rb +21 -0
- data/previews/docs/alpha_toggle_switch_preview/checked.html.erb +1 -0
- data/previews/docs/alpha_toggle_switch_preview/checked_and_disabled.html.erb +1 -0
- data/previews/docs/alpha_toggle_switch_preview/default.html.erb +1 -0
- data/previews/docs/alpha_toggle_switch_preview/disabled.html.erb +1 -0
- data/previews/docs/alpha_toggle_switch_preview/small.html.erb +1 -0
- data/previews/docs/alpha_toggle_switch_preview/with_status_label_positioned_at_the_end.html.erb +1 -0
- data/previews/docs/alpha_toggle_switch_preview.rb +17 -0
- data/previews/docs/alpha_tooltip_preview/as_a_label_for_an_iconbutton.html.erb +1 -0
- data/previews/docs/alpha_tooltip_preview/as_a_supplementary_description_for_a_button.html.erb +4 -0
- data/previews/docs/alpha_tooltip_preview/as_a_supplementary_description_for_an_iconbutton.html.erb +1 -0
- data/previews/docs/alpha_tooltip_preview/directly_using_tooltip.html.erb +4 -0
- data/previews/docs/alpha_tooltip_preview/with_direction.html.erb +32 -0
- data/previews/docs/alpha_tooltip_preview.rb +15 -0
- data/previews/docs/alpha_underline_nav_preview/align_right.html.erb +11 -0
- data/previews/docs/alpha_underline_nav_preview/customizing_the_body.html.erb +5 -0
- data/previews/docs/alpha_underline_nav_preview/default_with_nav.html.erb +7 -0
- data/previews/docs/alpha_underline_nav_preview/with_div.html.erb +7 -0
- data/previews/docs/alpha_underline_nav_preview/with_icons_and_counters.html.erb +18 -0
- data/previews/docs/alpha_underline_nav_preview.rb +15 -0
- data/previews/docs/alpha_underline_panels_preview/default.html.erb +17 -0
- data/previews/docs/alpha_underline_panels_preview.rb +7 -0
- data/previews/docs/beta_auto_complete_item_preview/default.html.erb +6 -0
- data/previews/docs/beta_auto_complete_item_preview.rb +7 -0
- data/previews/docs/beta_auto_complete_preview/full_width_field.html.erb +3 -0
- data/previews/docs/beta_auto_complete_preview/inset_variant.html.erb +3 -0
- data/previews/docs/beta_auto_complete_preview/leading_visual.html.erb +3 -0
- data/previews/docs/beta_auto_complete_preview/monospace_variant.html.erb +3 -0
- data/previews/docs/beta_auto_complete_preview/trailing_action.html.erb +1 -0
- data/previews/docs/beta_auto_complete_preview/visually_hidden_label.html.erb +3 -0
- data/previews/docs/beta_auto_complete_preview/with_custom_classes_for_the_input.html.erb +3 -0
- data/previews/docs/beta_auto_complete_preview/with_custom_classes_for_the_results.html.erb +3 -0
- data/previews/docs/beta_auto_complete_preview.rb +21 -0
- data/previews/docs/beta_avatar_preview/default.html.erb +1 -0
- data/previews/docs/beta_avatar_preview/link.html.erb +1 -0
- data/previews/docs/beta_avatar_preview/square.html.erb +1 -0
- data/previews/docs/beta_avatar_preview/with_size.html.erb +7 -0
- data/previews/docs/beta_avatar_preview.rb +13 -0
- data/previews/docs/beta_avatar_stack_preview/align_right.html.erb +5 -0
- data/previews/docs/beta_avatar_stack_preview/default.html.erb +5 -0
- data/previews/docs/beta_avatar_stack_preview/with_tooltip.html.erb +5 -0
- data/previews/docs/beta_avatar_stack_preview.rb +11 -0
- data/previews/docs/beta_base_button_preview/block.html.erb +2 -0
- data/previews/docs/beta_base_button_preview.rb +7 -0
- data/previews/docs/beta_blankslate_preview/basic.html.erb +4 -0
- data/previews/docs/beta_blankslate_preview/custom_content.html.erb +6 -0
- data/previews/docs/beta_blankslate_preview/icon.html.erb +5 -0
- data/previews/docs/beta_blankslate_preview/loading.html.erb +5 -0
- data/previews/docs/beta_blankslate_preview/primary_action.html.erb +6 -0
- data/previews/docs/beta_blankslate_preview/primary_and_secondary_actions.html.erb +7 -0
- data/previews/docs/beta_blankslate_preview/secondary_action.html.erb +6 -0
- data/previews/docs/beta_blankslate_preview/using_an_image.html.erb +5 -0
- data/previews/docs/beta_blankslate_preview/variations.html.erb +8 -0
- data/previews/docs/beta_blankslate_preview/with_border.html.erb +5 -0
- data/previews/docs/beta_blankslate_preview.rb +25 -0
- data/previews/docs/beta_border_box_header_preview/default.html.erb +4 -0
- data/previews/docs/beta_border_box_header_preview/with_title.html.erb +3 -0
- data/previews/docs/beta_border_box_header_preview.rb +9 -0
- data/previews/docs/beta_border_box_preview/header_with_title_body_rows_and_footer.html.erb +21 -0
- data/previews/docs/beta_border_box_preview/padding_density.html.erb +14 -0
- data/previews/docs/beta_border_box_preview/row_colors.html.erb +14 -0
- data/previews/docs/beta_border_box_preview.rb +11 -0
- data/previews/docs/beta_breadcrumbs_preview/basic.html.erb +5 -0
- data/previews/docs/beta_breadcrumbs_preview.rb +7 -0
- data/previews/docs/beta_button_group_preview/default.html.erb +8 -0
- data/previews/docs/beta_button_group_preview/sizes.html.erb +7 -0
- data/previews/docs/beta_button_group_preview.rb +9 -0
- data/previews/docs/beta_button_preview/full_width.html.erb +2 -0
- data/previews/docs/beta_button_preview/schemes.html.erb +4 -0
- data/previews/docs/beta_button_preview/sizes.html.erb +2 -0
- data/previews/docs/beta_button_preview/with_leading_and_trailing_visuals.html.erb +5 -0
- data/previews/docs/beta_button_preview/with_leading_visual.html.erb +4 -0
- data/previews/docs/beta_button_preview/with_tooltip.html.erb +4 -0
- data/previews/docs/beta_button_preview/with_trailing_visual.html.erb +4 -0
- data/previews/docs/beta_button_preview.rb +19 -0
- data/previews/docs/beta_clipboard_copy_preview/copying_from_an_element.html.erb +2 -0
- data/previews/docs/beta_clipboard_copy_preview/default.html.erb +1 -0
- data/previews/docs/beta_clipboard_copy_preview/with_text_instead_of_icons.html.erb +3 -0
- data/previews/docs/beta_clipboard_copy_preview.rb +11 -0
- data/previews/docs/beta_close_button_preview/default.html.erb +1 -0
- data/previews/docs/beta_close_button_preview.rb +7 -0
- data/previews/docs/beta_counter_preview/default.html.erb +1 -0
- data/previews/docs/beta_counter_preview/schemes.html.erb +2 -0
- data/previews/docs/beta_counter_preview.rb +9 -0
- data/previews/docs/beta_details_preview/default.html.erb +9 -0
- data/previews/docs/beta_details_preview.rb +7 -0
- data/previews/docs/beta_flash_preview/dismissible.html.erb +1 -0
- data/previews/docs/beta_flash_preview/full_width.html.erb +1 -0
- data/previews/docs/beta_flash_preview/icon.html.erb +1 -0
- data/previews/docs/beta_flash_preview/schemes.html.erb +4 -0
- data/previews/docs/beta_flash_preview/with_actions.html.erb +6 -0
- data/previews/docs/beta_flash_preview.rb +15 -0
- data/previews/docs/beta_heading_preview/default.html.erb +6 -0
- data/previews/docs/beta_heading_preview.rb +7 -0
- data/previews/docs/beta_icon_button_preview/custom_tooltip_direction.html.erb +2 -0
- data/previews/docs/beta_icon_button_preview/default.html.erb +2 -0
- data/previews/docs/beta_icon_button_preview/schemes.html.erb +3 -0
- data/previews/docs/beta_icon_button_preview/with_an_aria_description.html.erb +1 -0
- data/previews/docs/beta_icon_button_preview.rb +13 -0
- data/previews/docs/beta_label_preview/inline.html.erb +2 -0
- data/previews/docs/beta_label_preview/schemes.html.erb +10 -0
- data/previews/docs/beta_label_preview/sizes.html.erb +2 -0
- data/previews/docs/beta_label_preview.rb +11 -0
- data/previews/docs/beta_link_preview/default.html.erb +1 -0
- data/previews/docs/beta_link_preview/muted.html.erb +1 -0
- data/previews/docs/beta_link_preview/schemes.html.erb +2 -0
- data/previews/docs/beta_link_preview/with_tooltip.html.erb +4 -0
- data/previews/docs/beta_link_preview/without_underline.html.erb +1 -0
- data/previews/docs/beta_link_preview.rb +15 -0
- data/previews/docs/beta_markdown_preview/default.html.erb +260 -0
- data/previews/docs/beta_markdown_preview.rb +7 -0
- data/previews/docs/beta_octicon_preview/default.html.erb +2 -0
- data/previews/docs/beta_octicon_preview/helper.html.erb +1 -0
- data/previews/docs/beta_octicon_preview/medium.html.erb +1 -0
- data/previews/docs/beta_octicon_preview.rb +11 -0
- data/previews/docs/beta_popover_preview/caret_position.html.erb +8 -0
- data/previews/docs/beta_popover_preview/default.html.erb +8 -0
- data/previews/docs/beta_popover_preview/large.html.erb +8 -0
- data/previews/docs/beta_popover_preview/with_multiple_elements_in_the_body.html.erb +11 -0
- data/previews/docs/beta_popover_preview.rb +13 -0
- data/previews/docs/beta_progress_bar_preview/default.html.erb +3 -0
- data/previews/docs/beta_progress_bar_preview/large.html.erb +3 -0
- data/previews/docs/beta_progress_bar_preview/multiple_items.html.erb +5 -0
- data/previews/docs/beta_progress_bar_preview/small.html.erb +3 -0
- data/previews/docs/beta_progress_bar_preview.rb +13 -0
- data/previews/docs/beta_relative_time_preview/default.html.erb +1 -0
- data/previews/docs/beta_relative_time_preview/elapsed_time.html.erb +1 -0
- data/previews/docs/beta_relative_time_preview/past_time.html.erb +1 -0
- data/previews/docs/beta_relative_time_preview.rb +11 -0
- data/previews/docs/beta_spinner_preview/default.html.erb +1 -0
- data/previews/docs/beta_spinner_preview/large.html.erb +1 -0
- data/previews/docs/beta_spinner_preview/small.html.erb +1 -0
- data/previews/docs/beta_spinner_preview.rb +11 -0
- data/previews/docs/beta_state_preview/default.html.erb +1 -0
- data/previews/docs/beta_state_preview/schemes.html.erb +4 -0
- data/previews/docs/beta_state_preview/sizes.html.erb +2 -0
- data/previews/docs/beta_state_preview.rb +11 -0
- data/previews/docs/beta_subhead_preview/default.html.erb +8 -0
- data/previews/docs/beta_subhead_preview/with_actions.html.erb +15 -0
- data/previews/docs/beta_subhead_preview/with_dangerous_heading.html.erb +8 -0
- data/previews/docs/beta_subhead_preview/with_long_description.html.erb +6 -0
- data/previews/docs/beta_subhead_preview/without_border.html.erb +8 -0
- data/previews/docs/beta_subhead_preview.rb +15 -0
- data/previews/docs/beta_text_preview/default.html.erb +2 -0
- data/previews/docs/beta_text_preview.rb +7 -0
- data/previews/docs/beta_timeline_item_preview/default.html.erb +7 -0
- data/previews/docs/beta_timeline_item_preview.rb +7 -0
- data/previews/docs/beta_truncate_preview/advanced_multiple_items.html.erb +9 -0
- data/previews/docs/beta_truncate_preview/default.html.erb +1 -0
- data/previews/docs/beta_truncate_preview/expand_on_hover_or_focus.html.erb +6 -0
- data/previews/docs/beta_truncate_preview/max_widths.html.erb +5 -0
- data/previews/docs/beta_truncate_preview/max_widths_on_new_lines.html.erb +11 -0
- data/previews/docs/beta_truncate_preview/multiple_items.html.erb +6 -0
- data/previews/docs/beta_truncate_preview.rb +17 -0
- data/previews/docs/blankslate_component_preview/action_button.html.erb +8 -0
- data/previews/docs/blankslate_component_preview/basic.html.erb +4 -0
- data/previews/docs/blankslate_component_preview/custom_content.html.erb +5 -0
- data/previews/docs/blankslate_component_preview/icon.html.erb +5 -0
- data/previews/docs/blankslate_component_preview/link.html.erb +7 -0
- data/previews/docs/blankslate_component_preview/loading.html.erb +6 -0
- data/previews/docs/blankslate_component_preview/variations.html.erb +8 -0
- data/previews/docs/blankslate_component_preview.rb +19 -0
- data/previews/docs/box_preview/color_and_padding.html.erb +1 -0
- data/previews/docs/box_preview/default.html.erb +1 -0
- data/previews/docs/box_preview.rb +9 -0
- data/previews/docs/button_component_preview/block.html.erb +2 -0
- data/previews/docs/button_component_preview/schemes.html.erb +6 -0
- data/previews/docs/button_component_preview/sizes.html.erb +2 -0
- data/previews/docs/button_component_preview/with_dropdown_caret.html.erb +3 -0
- data/previews/docs/button_component_preview/with_leading_and_trailing_visuals.html.erb +5 -0
- data/previews/docs/button_component_preview/with_leading_visual.html.erb +4 -0
- data/previews/docs/button_component_preview/with_tooltip.html.erb +4 -0
- data/previews/docs/button_component_preview/with_trailing_visual.html.erb +4 -0
- data/previews/docs/button_component_preview.rb +21 -0
- data/previews/docs/dropdown_preview/customizing_menu_items.html.erb +11 -0
- data/previews/docs/dropdown_preview/customizing_the_button.html.erb +12 -0
- data/previews/docs/dropdown_preview/default.html.erb +11 -0
- data/previews/docs/dropdown_preview/menu_as_list.html.erb +13 -0
- data/previews/docs/dropdown_preview/with_caret.html.erb +12 -0
- data/previews/docs/dropdown_preview/with_direction.html.erb +12 -0
- data/previews/docs/dropdown_preview/with_dividers.html.erb +16 -0
- data/previews/docs/dropdown_preview.rb +19 -0
- data/previews/docs/hellip_button_preview/default.html.erb +1 -0
- data/previews/docs/hellip_button_preview/inline.html.erb +1 -0
- data/previews/docs/hellip_button_preview/styling_the_button.html.erb +1 -0
- data/previews/docs/hellip_button_preview.rb +11 -0
- data/previews/docs/icon_button_preview/custom_tooltip_direction.html.erb +2 -0
- data/previews/docs/icon_button_preview/default.html.erb +2 -0
- data/previews/docs/icon_button_preview/in_a_borderbox.html.erb +7 -0
- data/previews/docs/icon_button_preview/schemes.html.erb +3 -0
- data/previews/docs/icon_button_preview/with_an_aria_description.html.erb +1 -0
- data/previews/docs/icon_button_preview.rb +15 -0
- data/previews/docs/label_component_preview/inline.html.erb +2 -0
- data/previews/docs/label_component_preview/schemes.html.erb +10 -0
- data/previews/docs/label_component_preview/sizes.html.erb +2 -0
- data/previews/docs/label_component_preview.rb +11 -0
- data/previews/docs/layout_component_preview/default.html.erb +4 -0
- data/previews/docs/layout_component_preview/left_sidebar.html.erb +4 -0
- data/previews/docs/layout_component_preview.rb +9 -0
- data/previews/docs/link_component_preview/default.html.erb +1 -0
- data/previews/docs/link_component_preview/muted.html.erb +1 -0
- data/previews/docs/link_component_preview/schemes.html.erb +2 -0
- data/previews/docs/link_component_preview/with_tooltip.html.erb +4 -0
- data/previews/docs/link_component_preview/without_underline.html.erb +1 -0
- data/previews/docs/link_component_preview.rb +15 -0
- data/previews/docs/local_time_preview/all_the_options.html.erb +1 -0
- data/previews/docs/local_time_preview/default.html.erb +1 -0
- data/previews/docs/local_time_preview/with_initial_content.html.erb +4 -0
- data/previews/docs/local_time_preview.rb +11 -0
- data/previews/docs/markdown_preview/default.html.erb +260 -0
- data/previews/docs/markdown_preview.rb +7 -0
- data/previews/docs/menu_component_preview/default.html.erb +17 -0
- data/previews/docs/menu_component_preview.rb +7 -0
- data/previews/docs/navigation_tab_component_preview/default.html.erb +6 -0
- data/previews/docs/navigation_tab_component_preview/inside_a_list.html.erb +3 -0
- data/previews/docs/navigation_tab_component_preview/with_custom_html.html.erb +5 -0
- data/previews/docs/navigation_tab_component_preview/with_icons_and_counters.html.erb +13 -0
- data/previews/docs/navigation_tab_component_preview.rb +13 -0
- data/previews/docs/octicon_component_preview/default.html.erb +2 -0
- data/previews/docs/octicon_component_preview/helper.html.erb +1 -0
- data/previews/docs/octicon_component_preview/medium.html.erb +1 -0
- data/previews/docs/octicon_component_preview.rb +11 -0
- data/previews/docs/octicon_symbols_component_preview/symbol_dictionary.html.erb +4 -0
- data/previews/docs/octicon_symbols_component_preview.rb +7 -0
- data/previews/docs/popover_component_preview/caret_position.html.erb +8 -0
- data/previews/docs/popover_component_preview/default.html.erb +8 -0
- data/previews/docs/popover_component_preview/large.html.erb +8 -0
- data/previews/docs/popover_component_preview/with_multiple_elements_in_the_body.html.erb +11 -0
- data/previews/docs/popover_component_preview.rb +13 -0
- data/previews/docs/spinner_component_preview/default.html.erb +1 -0
- data/previews/docs/spinner_component_preview/large.html.erb +1 -0
- data/previews/docs/spinner_component_preview/small.html.erb +1 -0
- data/previews/docs/spinner_component_preview.rb +11 -0
- data/previews/docs/state_component_preview/default.html.erb +1 -0
- data/previews/docs/state_component_preview/schemes.html.erb +4 -0
- data/previews/docs/state_component_preview/sizes.html.erb +2 -0
- data/previews/docs/state_component_preview.rb +11 -0
- data/previews/docs/subhead_component_preview/default.html.erb +8 -0
- data/previews/docs/subhead_component_preview/with_actions.html.erb +15 -0
- data/previews/docs/subhead_component_preview/with_dangerous_heading.html.erb +8 -0
- data/previews/docs/subhead_component_preview/with_long_description.html.erb +6 -0
- data/previews/docs/subhead_component_preview/without_border.html.erb +8 -0
- data/previews/docs/subhead_component_preview.rb +15 -0
- data/previews/docs/tab_container_component_preview/default.html.erb +16 -0
- data/previews/docs/tab_container_component_preview.rb +7 -0
- data/previews/docs/time_ago_component_preview/default.html.erb +1 -0
- data/previews/docs/time_ago_component_preview.rb +7 -0
- data/previews/docs/timeline_item_component_preview/default.html.erb +7 -0
- data/previews/docs/timeline_item_component_preview.rb +7 -0
- data/previews/docs/tooltip_preview/default.html.erb +3 -0
- data/previews/docs/tooltip_preview/with_a_direction.html.erb +3 -0
- data/previews/docs/tooltip_preview/with_an_alignment.html.erb +3 -0
- data/previews/docs/tooltip_preview/without_a_delay.html.erb +3 -0
- data/previews/docs/tooltip_preview/wrapping_another_component.html.erb +5 -0
- data/previews/docs/tooltip_preview.rb +15 -0
- data/previews/docs/truncate_preview/custom_size.html.erb +1 -0
- data/previews/docs/truncate_preview/default.html.erb +3 -0
- data/previews/docs/truncate_preview/expandable.html.erb +1 -0
- data/previews/docs/truncate_preview/inline.html.erb +1 -0
- data/previews/docs/truncate_preview/with_html_content.html.erb +3 -0
- data/previews/docs/truncate_preview.rb +15 -0
- data/previews/yattho/alpha/action_list_preview/heading.html.erb +4 -0
- data/previews/yattho/alpha/action_list_preview.rb +367 -0
- data/previews/yattho/alpha/auto_complete_preview.rb +120 -0
- data/previews/yattho/alpha/banner_preview/with_action_button.html.erb +4 -0
- data/previews/yattho/alpha/banner_preview/with_action_content.html.erb +6 -0
- data/previews/yattho/alpha/banner_preview.rb +97 -0
- data/previews/yattho/alpha/button_marketing_preview.rb +62 -0
- data/previews/yattho/alpha/dialog_preview/body_has_scrollbar_overflow.html.erb +9 -0
- data/previews/yattho/alpha/dialog_preview/custom_header.html.erb +7 -0
- data/previews/yattho/alpha/dialog_preview/nested_dialog.html.erb +14 -0
- data/previews/yattho/alpha/dialog_preview/test.html.erb +7 -0
- data/previews/yattho/alpha/dialog_preview/with_footer.html.erb +8 -0
- data/previews/yattho/alpha/dialog_preview/with_form.html.erb +12 -0
- data/previews/yattho/alpha/dialog_preview/with_text_input.html.erb +10 -0
- data/previews/yattho/alpha/dialog_preview.rb +147 -0
- data/previews/yattho/alpha/dropdown_preview.rb +210 -0
- data/previews/yattho/alpha/hellip_button_preview.rb +24 -0
- data/previews/yattho/alpha/hidden_text_expander_preview.rb +22 -0
- data/previews/yattho/alpha/image_crop_preview.rb +31 -0
- data/previews/yattho/alpha/layout_preview.rb +211 -0
- data/previews/yattho/alpha/menu_preview/default.html.erb +17 -0
- data/previews/yattho/alpha/menu_preview/playground.html.erb +17 -0
- data/previews/yattho/alpha/menu_preview.rb +14 -0
- data/previews/yattho/alpha/nav_list_preview.rb +93 -0
- data/previews/yattho/alpha/segmented_control_preview.rb +164 -0
- data/previews/yattho/alpha/tab_nav_preview.rb +55 -0
- data/previews/yattho/alpha/tab_panels_preview.rb +38 -0
- data/previews/yattho/alpha/text_field_preview.rb +149 -0
- data/previews/yattho/alpha/toggle_switch_preview.rb +56 -0
- data/previews/yattho/alpha/tooltip_preview/with_multiple_on_a_page.html.erb +14 -0
- data/previews/yattho/alpha/tooltip_preview/with_right_most_position.html.erb +7 -0
- data/previews/yattho/alpha/tooltip_preview.rb +93 -0
- data/previews/yattho/alpha/underline_nav_preview/default.html.erb +8 -0
- data/previews/yattho/alpha/underline_nav_preview/playground.html.erb +8 -0
- data/previews/yattho/alpha/underline_nav_preview.rb +56 -0
- data/previews/yattho/alpha/underline_panels_preview.rb +38 -0
- data/previews/yattho/beta/auto_complete_item_preview/default.html.erb +9 -0
- data/previews/yattho/beta/auto_complete_item_preview/playground.html.erb +9 -0
- data/previews/yattho/beta/auto_complete_item_preview/with_description.html.erb +11 -0
- data/previews/yattho/beta/auto_complete_item_preview.rb +54 -0
- data/previews/yattho/beta/auto_complete_preview/with_submit_button.html.erb +20 -0
- data/previews/yattho/beta/auto_complete_preview.rb +267 -0
- data/previews/yattho/beta/avatar_preview.rb +82 -0
- data/previews/yattho/beta/avatar_stack_preview.rb +101 -0
- data/previews/yattho/beta/base_button_preview.rb +26 -0
- data/previews/yattho/beta/blankslate_preview.rb +130 -0
- data/previews/yattho/beta/border_box_preview.rb +98 -0
- data/previews/yattho/beta/breadcrumbs_preview.rb +30 -0
- data/previews/yattho/beta/button_group_preview.rb +32 -0
- data/previews/yattho/beta/button_preview/all_schemes.html.erb +26 -0
- data/previews/yattho/beta/button_preview/invisible_all_visuals.html.erb +54 -0
- data/previews/yattho/beta/button_preview/leading_visual.html.erb +10 -0
- data/previews/yattho/beta/button_preview/trailing_action.html.erb +10 -0
- data/previews/yattho/beta/button_preview/trailing_visual.html.erb +11 -0
- data/previews/yattho/beta/button_preview/with_tooltip.html.erb +10 -0
- data/previews/yattho/beta/button_preview.rb +291 -0
- data/previews/yattho/beta/clipboard_copy_preview/element.html.erb +2 -0
- data/previews/yattho/beta/clipboard_copy_preview.rb +39 -0
- data/previews/yattho/beta/close_button_preview.rb +22 -0
- data/previews/yattho/beta/counter_preview.rb +82 -0
- data/previews/yattho/beta/details_preview.rb +60 -0
- data/previews/yattho/beta/flash_preview.rb +69 -0
- data/previews/yattho/beta/heading_preview.rb +24 -0
- data/previews/yattho/beta/icon_button_preview.rb +110 -0
- data/previews/yattho/beta/label_preview.rb +104 -0
- data/previews/yattho/beta/link_preview.rb +69 -0
- data/previews/yattho/beta/markdown_preview.rb +241 -0
- data/previews/yattho/beta/octicon_preview.rb +24 -0
- data/previews/yattho/beta/popover_preview.rb +79 -0
- data/previews/yattho/beta/progress_bar_preview.rb +60 -0
- data/previews/yattho/beta/relative_time_preview.rb +286 -0
- data/previews/yattho/beta/spinner_preview.rb +22 -0
- data/previews/yattho/beta/state_preview.rb +66 -0
- data/previews/yattho/beta/subhead_preview/actions.html.erb +13 -0
- data/previews/yattho/beta/subhead_preview.rb +99 -0
- data/previews/yattho/beta/text_preview.rb +24 -0
- data/previews/yattho/beta/timeline_item_preview.rb +30 -0
- data/previews/yattho/beta/truncate_preview.rb +54 -0
- data/previews/yattho/forms/forms_preview/after_content_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/array_check_box_group_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/caption_template_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/check_box_group_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/check_box_with_nested_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/composed_form.html.erb +4 -0
- data/previews/yattho/forms/forms_preview/example_toggle_switch_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/horizontal_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/immediate_validation_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/invalid_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/multi_input_form.html.erb +14 -0
- data/previews/yattho/forms/forms_preview/multi_text_field_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/name_with_question_mark_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/radio_button_group_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/radio_button_with_nested_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/select_list_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/single_text_field_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/submit_button_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/text_field_and_checkbox_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview.rb +46 -0
- data/previews/yattho/layout_component_preview.rb +30 -0
- data/previews/yattho/local_time_component_preview.rb +61 -0
- data/previews/yattho/time_ago_component_preview.rb +27 -0
- data/previews/yattho/url_helpers.rb +15 -0
- data/static/arguments.json +2560 -0
- data/static/assets/view-components.svg +18 -0
- data/static/audited_at.json +103 -0
- data/static/constants.json +1159 -0
- data/static/statuses.json +103 -0
- metadata +1403 -0
@@ -0,0 +1,1541 @@
|
|
1
|
+
.AppFrame .AppFrame-a11yNav {
|
2
|
+
position: absolute;
|
3
|
+
z-index: 1000;
|
4
|
+
display: flex;
|
5
|
+
width: 100%;
|
6
|
+
padding: var(--base-size-16, 16px);
|
7
|
+
background: var(--color-canvas-inset);
|
8
|
+
padding-block-end: calc(var(--base-size-16, 16px) - var(--yattho-borderWidth-thin, 1px));
|
9
|
+
isolation: isolate;
|
10
|
+
align-items: center;
|
11
|
+
gap: var(--base-size-8, 8px)
|
12
|
+
}
|
13
|
+
|
14
|
+
.AppFrame .AppFrame-a11yNav:not(:focus-within) {
|
15
|
+
width: 1px;
|
16
|
+
height: 1px;
|
17
|
+
padding: 0;
|
18
|
+
margin: -1px;
|
19
|
+
overflow: hidden;
|
20
|
+
clip: rect(1px, 1px, 1px, 1px);
|
21
|
+
border: 0
|
22
|
+
}
|
23
|
+
|
24
|
+
.AppFrame .AppFrame-a11yNav:focus-within {
|
25
|
+
top: 0;
|
26
|
+
left: 0
|
27
|
+
}
|
28
|
+
|
29
|
+
@media(max-width: 767.98px) {
|
30
|
+
.AppFrame .AppFrame-a11yNav:focus-within {
|
31
|
+
justify-content: center
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
.AppFrame .AppFrame-a11yLink {
|
36
|
+
transition: none
|
37
|
+
}
|
38
|
+
|
39
|
+
.AppFrame .AppFrame-a11yLink:not(:focus) {
|
40
|
+
display: block;
|
41
|
+
width: var(--base-size-8, 8px);
|
42
|
+
height: var(--base-size-8, 8px);
|
43
|
+
overflow: hidden;
|
44
|
+
text-indent: var(--base-size-128, 128px);
|
45
|
+
pointer-events: none;
|
46
|
+
background: var(--color-border-default);
|
47
|
+
border-radius: var(--yattho-borderRadius-full, 100vh)
|
48
|
+
}
|
49
|
+
|
50
|
+
.AppFrame .AppFrame-a11yLink:focus {
|
51
|
+
z-index: 20;
|
52
|
+
display: grid;
|
53
|
+
width: auto;
|
54
|
+
height: auto;
|
55
|
+
min-height: var(--yattho-control-medium-size, 32px);
|
56
|
+
padding: 0 var(--yattho-control-medium-paddingInline-spacious, 16px);
|
57
|
+
overflow: auto;
|
58
|
+
color: var(--color-fg-on-emphasis);
|
59
|
+
background: var(--color-accent-emphasis);
|
60
|
+
border-radius: var(--yattho-borderRadius-full, 100vh);
|
61
|
+
align-items: center
|
62
|
+
}
|
63
|
+
|
64
|
+
@media(pointer: coarse) {
|
65
|
+
.AppFrame .AppFrame-a11yLink:focus::after {
|
66
|
+
position: absolute;
|
67
|
+
top: 50%;
|
68
|
+
left: 50%;
|
69
|
+
width: 100%;
|
70
|
+
height: 100%;
|
71
|
+
min-height: var(--yattho-control-minTarget-coarse, 44px);
|
72
|
+
content: "";
|
73
|
+
transform: translateX(-50%) translateY(-50%)
|
74
|
+
}
|
75
|
+
}
|
76
|
+
|
77
|
+
@media(prefers-reduced-motion: no-preference) {
|
78
|
+
.AppFrame .AppFrame-a11yLink:focus {
|
79
|
+
animation: AppFrame-a11yLink-focus 200ms ease-out
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
@keyframes AppFrame-a11yLink-focus {
|
84
|
+
0% {
|
85
|
+
color: var(--color-accent-emphasis);
|
86
|
+
transform: scale(0.3, 0.25)
|
87
|
+
}
|
88
|
+
|
89
|
+
50% {
|
90
|
+
color: var(--color-accent-emphasis);
|
91
|
+
transform: scale(1, 1)
|
92
|
+
}
|
93
|
+
|
94
|
+
55% {
|
95
|
+
color: var(--color-fg-on-emphasis)
|
96
|
+
}
|
97
|
+
|
98
|
+
100% {
|
99
|
+
transform: scaleX(1)
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
.AppFrame .AppFrame-main {
|
104
|
+
display: flex;
|
105
|
+
min-height: 100vh;
|
106
|
+
flex-direction: column
|
107
|
+
}
|
108
|
+
|
109
|
+
@supports(height: 100dvh) {
|
110
|
+
.AppFrame .AppFrame-main {
|
111
|
+
min-height: 100dvh
|
112
|
+
}
|
113
|
+
}
|
114
|
+
|
115
|
+
.AppFrame .AppFrame-header-wrapper {
|
116
|
+
position: relative;
|
117
|
+
height: min-content;
|
118
|
+
overflow: visible
|
119
|
+
}
|
120
|
+
|
121
|
+
.AppFrame .AppFrame-header-wrapper .AppFrame-header {
|
122
|
+
position: sticky;
|
123
|
+
top: 0;
|
124
|
+
z-index: 1
|
125
|
+
}
|
126
|
+
|
127
|
+
.AppFrame .AppFrame-header {
|
128
|
+
flex: 0 0 auto
|
129
|
+
}
|
130
|
+
|
131
|
+
.AppFrame .AppFrame-subheader {
|
132
|
+
flex: 0 0 auto
|
133
|
+
}
|
134
|
+
|
135
|
+
.AppFrame .AppFrame-body {
|
136
|
+
flex: 1 0;
|
137
|
+
height: 100%
|
138
|
+
}
|
139
|
+
|
140
|
+
.AppFrame .AppFrame-footer {
|
141
|
+
flex: 0 0 auto
|
142
|
+
}
|
143
|
+
|
144
|
+
.container-sm {
|
145
|
+
max-width: 544px;
|
146
|
+
margin-right: auto;
|
147
|
+
margin-left: auto
|
148
|
+
}
|
149
|
+
|
150
|
+
.container-md {
|
151
|
+
max-width: 768px;
|
152
|
+
margin-right: auto;
|
153
|
+
margin-left: auto
|
154
|
+
}
|
155
|
+
|
156
|
+
.container-lg {
|
157
|
+
max-width: 1012px;
|
158
|
+
margin-right: auto;
|
159
|
+
margin-left: auto
|
160
|
+
}
|
161
|
+
|
162
|
+
.container-xl {
|
163
|
+
max-width: 1280px;
|
164
|
+
margin-right: auto;
|
165
|
+
margin-left: auto
|
166
|
+
}
|
167
|
+
|
168
|
+
.col-1 {
|
169
|
+
width: 8.33333333%
|
170
|
+
}
|
171
|
+
|
172
|
+
.col-2 {
|
173
|
+
width: 16.66666666%
|
174
|
+
}
|
175
|
+
|
176
|
+
.col-3 {
|
177
|
+
width: 24.99999999%
|
178
|
+
}
|
179
|
+
|
180
|
+
.col-4 {
|
181
|
+
width: 33.33333332%
|
182
|
+
}
|
183
|
+
|
184
|
+
.col-5 {
|
185
|
+
width: 41.66666665%
|
186
|
+
}
|
187
|
+
|
188
|
+
.col-6 {
|
189
|
+
width: 49.99999998%
|
190
|
+
}
|
191
|
+
|
192
|
+
.col-7 {
|
193
|
+
width: 58.33333331%
|
194
|
+
}
|
195
|
+
|
196
|
+
.col-8 {
|
197
|
+
width: 66.66666664%
|
198
|
+
}
|
199
|
+
|
200
|
+
.col-9 {
|
201
|
+
width: 74.99999997%
|
202
|
+
}
|
203
|
+
|
204
|
+
.col-10 {
|
205
|
+
width: 83.3333333%
|
206
|
+
}
|
207
|
+
|
208
|
+
.col-11 {
|
209
|
+
width: 91.66666663%
|
210
|
+
}
|
211
|
+
|
212
|
+
.col-12 {
|
213
|
+
width: 100%
|
214
|
+
}
|
215
|
+
|
216
|
+
@media(min-width: 544px) {
|
217
|
+
.col-sm-1 {
|
218
|
+
width: 8.33333333%
|
219
|
+
}
|
220
|
+
|
221
|
+
.col-sm-2 {
|
222
|
+
width: 16.66666666%
|
223
|
+
}
|
224
|
+
|
225
|
+
.col-sm-3 {
|
226
|
+
width: 24.99999999%
|
227
|
+
}
|
228
|
+
|
229
|
+
.col-sm-4 {
|
230
|
+
width: 33.33333332%
|
231
|
+
}
|
232
|
+
|
233
|
+
.col-sm-5 {
|
234
|
+
width: 41.66666665%
|
235
|
+
}
|
236
|
+
|
237
|
+
.col-sm-6 {
|
238
|
+
width: 49.99999998%
|
239
|
+
}
|
240
|
+
|
241
|
+
.col-sm-7 {
|
242
|
+
width: 58.33333331%
|
243
|
+
}
|
244
|
+
|
245
|
+
.col-sm-8 {
|
246
|
+
width: 66.66666664%
|
247
|
+
}
|
248
|
+
|
249
|
+
.col-sm-9 {
|
250
|
+
width: 74.99999997%
|
251
|
+
}
|
252
|
+
|
253
|
+
.col-sm-10 {
|
254
|
+
width: 83.3333333%
|
255
|
+
}
|
256
|
+
|
257
|
+
.col-sm-11 {
|
258
|
+
width: 91.66666663%
|
259
|
+
}
|
260
|
+
|
261
|
+
.col-sm-12 {
|
262
|
+
width: 100%
|
263
|
+
}
|
264
|
+
}
|
265
|
+
|
266
|
+
@media(min-width: 768px) {
|
267
|
+
.col-md-1 {
|
268
|
+
width: 8.33333333%
|
269
|
+
}
|
270
|
+
|
271
|
+
.col-md-2 {
|
272
|
+
width: 16.66666666%
|
273
|
+
}
|
274
|
+
|
275
|
+
.col-md-3 {
|
276
|
+
width: 24.99999999%
|
277
|
+
}
|
278
|
+
|
279
|
+
.col-md-4 {
|
280
|
+
width: 33.33333332%
|
281
|
+
}
|
282
|
+
|
283
|
+
.col-md-5 {
|
284
|
+
width: 41.66666665%
|
285
|
+
}
|
286
|
+
|
287
|
+
.col-md-6 {
|
288
|
+
width: 49.99999998%
|
289
|
+
}
|
290
|
+
|
291
|
+
.col-md-7 {
|
292
|
+
width: 58.33333331%
|
293
|
+
}
|
294
|
+
|
295
|
+
.col-md-8 {
|
296
|
+
width: 66.66666664%
|
297
|
+
}
|
298
|
+
|
299
|
+
.col-md-9 {
|
300
|
+
width: 74.99999997%
|
301
|
+
}
|
302
|
+
|
303
|
+
.col-md-10 {
|
304
|
+
width: 83.3333333%
|
305
|
+
}
|
306
|
+
|
307
|
+
.col-md-11 {
|
308
|
+
width: 91.66666663%
|
309
|
+
}
|
310
|
+
|
311
|
+
.col-md-12 {
|
312
|
+
width: 100%
|
313
|
+
}
|
314
|
+
}
|
315
|
+
|
316
|
+
@media(min-width: 1012px) {
|
317
|
+
.col-lg-1 {
|
318
|
+
width: 8.33333333%
|
319
|
+
}
|
320
|
+
|
321
|
+
.col-lg-2 {
|
322
|
+
width: 16.66666666%
|
323
|
+
}
|
324
|
+
|
325
|
+
.col-lg-3 {
|
326
|
+
width: 24.99999999%
|
327
|
+
}
|
328
|
+
|
329
|
+
.col-lg-4 {
|
330
|
+
width: 33.33333332%
|
331
|
+
}
|
332
|
+
|
333
|
+
.col-lg-5 {
|
334
|
+
width: 41.66666665%
|
335
|
+
}
|
336
|
+
|
337
|
+
.col-lg-6 {
|
338
|
+
width: 49.99999998%
|
339
|
+
}
|
340
|
+
|
341
|
+
.col-lg-7 {
|
342
|
+
width: 58.33333331%
|
343
|
+
}
|
344
|
+
|
345
|
+
.col-lg-8 {
|
346
|
+
width: 66.66666664%
|
347
|
+
}
|
348
|
+
|
349
|
+
.col-lg-9 {
|
350
|
+
width: 74.99999997%
|
351
|
+
}
|
352
|
+
|
353
|
+
.col-lg-10 {
|
354
|
+
width: 83.3333333%
|
355
|
+
}
|
356
|
+
|
357
|
+
.col-lg-11 {
|
358
|
+
width: 91.66666663%
|
359
|
+
}
|
360
|
+
|
361
|
+
.col-lg-12 {
|
362
|
+
width: 100%
|
363
|
+
}
|
364
|
+
}
|
365
|
+
|
366
|
+
@media(min-width: 1280px) {
|
367
|
+
.col-xl-1 {
|
368
|
+
width: 8.33333333%
|
369
|
+
}
|
370
|
+
|
371
|
+
.col-xl-2 {
|
372
|
+
width: 16.66666666%
|
373
|
+
}
|
374
|
+
|
375
|
+
.col-xl-3 {
|
376
|
+
width: 24.99999999%
|
377
|
+
}
|
378
|
+
|
379
|
+
.col-xl-4 {
|
380
|
+
width: 33.33333332%
|
381
|
+
}
|
382
|
+
|
383
|
+
.col-xl-5 {
|
384
|
+
width: 41.66666665%
|
385
|
+
}
|
386
|
+
|
387
|
+
.col-xl-6 {
|
388
|
+
width: 49.99999998%
|
389
|
+
}
|
390
|
+
|
391
|
+
.col-xl-7 {
|
392
|
+
width: 58.33333331%
|
393
|
+
}
|
394
|
+
|
395
|
+
.col-xl-8 {
|
396
|
+
width: 66.66666664%
|
397
|
+
}
|
398
|
+
|
399
|
+
.col-xl-9 {
|
400
|
+
width: 74.99999997%
|
401
|
+
}
|
402
|
+
|
403
|
+
.col-xl-10 {
|
404
|
+
width: 83.3333333%
|
405
|
+
}
|
406
|
+
|
407
|
+
.col-xl-11 {
|
408
|
+
width: 91.66666663%
|
409
|
+
}
|
410
|
+
|
411
|
+
.col-xl-12 {
|
412
|
+
width: 100%
|
413
|
+
}
|
414
|
+
}
|
415
|
+
|
416
|
+
.gutter {
|
417
|
+
margin-right: -16px;
|
418
|
+
margin-left: -16px
|
419
|
+
}
|
420
|
+
|
421
|
+
.gutter>[class*=col-] {
|
422
|
+
padding-right: 16px !important;
|
423
|
+
padding-left: 16px !important
|
424
|
+
}
|
425
|
+
|
426
|
+
.gutter-condensed {
|
427
|
+
margin-right: -8px;
|
428
|
+
margin-left: -8px
|
429
|
+
}
|
430
|
+
|
431
|
+
.gutter-condensed>[class*=col-] {
|
432
|
+
padding-right: 8px !important;
|
433
|
+
padding-left: 8px !important
|
434
|
+
}
|
435
|
+
|
436
|
+
.gutter-spacious {
|
437
|
+
margin-right: -24px;
|
438
|
+
margin-left: -24px
|
439
|
+
}
|
440
|
+
|
441
|
+
.gutter-spacious>[class*=col-] {
|
442
|
+
padding-right: 24px !important;
|
443
|
+
padding-left: 24px !important
|
444
|
+
}
|
445
|
+
|
446
|
+
@media(min-width: 544px) {
|
447
|
+
.gutter-sm {
|
448
|
+
margin-right: -16px;
|
449
|
+
margin-left: -16px
|
450
|
+
}
|
451
|
+
|
452
|
+
.gutter-sm>[class*=col-] {
|
453
|
+
padding-right: 16px !important;
|
454
|
+
padding-left: 16px !important
|
455
|
+
}
|
456
|
+
|
457
|
+
.gutter-sm-condensed {
|
458
|
+
margin-right: -8px;
|
459
|
+
margin-left: -8px
|
460
|
+
}
|
461
|
+
|
462
|
+
.gutter-sm-condensed>[class*=col-] {
|
463
|
+
padding-right: 8px !important;
|
464
|
+
padding-left: 8px !important
|
465
|
+
}
|
466
|
+
|
467
|
+
.gutter-sm-spacious {
|
468
|
+
margin-right: -24px;
|
469
|
+
margin-left: -24px
|
470
|
+
}
|
471
|
+
|
472
|
+
.gutter-sm-spacious>[class*=col-] {
|
473
|
+
padding-right: 24px !important;
|
474
|
+
padding-left: 24px !important
|
475
|
+
}
|
476
|
+
}
|
477
|
+
|
478
|
+
@media(min-width: 768px) {
|
479
|
+
.gutter-md {
|
480
|
+
margin-right: -16px;
|
481
|
+
margin-left: -16px
|
482
|
+
}
|
483
|
+
|
484
|
+
.gutter-md>[class*=col-] {
|
485
|
+
padding-right: 16px !important;
|
486
|
+
padding-left: 16px !important
|
487
|
+
}
|
488
|
+
|
489
|
+
.gutter-md-condensed {
|
490
|
+
margin-right: -8px;
|
491
|
+
margin-left: -8px
|
492
|
+
}
|
493
|
+
|
494
|
+
.gutter-md-condensed>[class*=col-] {
|
495
|
+
padding-right: 8px !important;
|
496
|
+
padding-left: 8px !important
|
497
|
+
}
|
498
|
+
|
499
|
+
.gutter-md-spacious {
|
500
|
+
margin-right: -24px;
|
501
|
+
margin-left: -24px
|
502
|
+
}
|
503
|
+
|
504
|
+
.gutter-md-spacious>[class*=col-] {
|
505
|
+
padding-right: 24px !important;
|
506
|
+
padding-left: 24px !important
|
507
|
+
}
|
508
|
+
}
|
509
|
+
|
510
|
+
@media(min-width: 1012px) {
|
511
|
+
.gutter-lg {
|
512
|
+
margin-right: -16px;
|
513
|
+
margin-left: -16px
|
514
|
+
}
|
515
|
+
|
516
|
+
.gutter-lg>[class*=col-] {
|
517
|
+
padding-right: 16px !important;
|
518
|
+
padding-left: 16px !important
|
519
|
+
}
|
520
|
+
|
521
|
+
.gutter-lg-condensed {
|
522
|
+
margin-right: -8px;
|
523
|
+
margin-left: -8px
|
524
|
+
}
|
525
|
+
|
526
|
+
.gutter-lg-condensed>[class*=col-] {
|
527
|
+
padding-right: 8px !important;
|
528
|
+
padding-left: 8px !important
|
529
|
+
}
|
530
|
+
|
531
|
+
.gutter-lg-spacious {
|
532
|
+
margin-right: -24px;
|
533
|
+
margin-left: -24px
|
534
|
+
}
|
535
|
+
|
536
|
+
.gutter-lg-spacious>[class*=col-] {
|
537
|
+
padding-right: 24px !important;
|
538
|
+
padding-left: 24px !important
|
539
|
+
}
|
540
|
+
}
|
541
|
+
|
542
|
+
@media(min-width: 1280px) {
|
543
|
+
.gutter-xl {
|
544
|
+
margin-right: -16px;
|
545
|
+
margin-left: -16px
|
546
|
+
}
|
547
|
+
|
548
|
+
.gutter-xl>[class*=col-] {
|
549
|
+
padding-right: 16px !important;
|
550
|
+
padding-left: 16px !important
|
551
|
+
}
|
552
|
+
|
553
|
+
.gutter-xl-condensed {
|
554
|
+
margin-right: -8px;
|
555
|
+
margin-left: -8px
|
556
|
+
}
|
557
|
+
|
558
|
+
.gutter-xl-condensed>[class*=col-] {
|
559
|
+
padding-right: 8px !important;
|
560
|
+
padding-left: 8px !important
|
561
|
+
}
|
562
|
+
|
563
|
+
.gutter-xl-spacious {
|
564
|
+
margin-right: -24px;
|
565
|
+
margin-left: -24px
|
566
|
+
}
|
567
|
+
|
568
|
+
.gutter-xl-spacious>[class*=col-] {
|
569
|
+
padding-right: 24px !important;
|
570
|
+
padding-left: 24px !important
|
571
|
+
}
|
572
|
+
}
|
573
|
+
|
574
|
+
.offset-1 {
|
575
|
+
margin-left: 8.33333333% !important
|
576
|
+
}
|
577
|
+
|
578
|
+
.offset-2 {
|
579
|
+
margin-left: 16.66666666% !important
|
580
|
+
}
|
581
|
+
|
582
|
+
.offset-3 {
|
583
|
+
margin-left: 24.99999999% !important
|
584
|
+
}
|
585
|
+
|
586
|
+
.offset-4 {
|
587
|
+
margin-left: 33.33333332% !important
|
588
|
+
}
|
589
|
+
|
590
|
+
.offset-5 {
|
591
|
+
margin-left: 41.66666665% !important
|
592
|
+
}
|
593
|
+
|
594
|
+
.offset-6 {
|
595
|
+
margin-left: 49.99999998% !important
|
596
|
+
}
|
597
|
+
|
598
|
+
.offset-7 {
|
599
|
+
margin-left: 58.33333331% !important
|
600
|
+
}
|
601
|
+
|
602
|
+
.offset-8 {
|
603
|
+
margin-left: 66.66666664% !important
|
604
|
+
}
|
605
|
+
|
606
|
+
.offset-9 {
|
607
|
+
margin-left: 74.99999997% !important
|
608
|
+
}
|
609
|
+
|
610
|
+
.offset-10 {
|
611
|
+
margin-left: 83.3333333% !important
|
612
|
+
}
|
613
|
+
|
614
|
+
.offset-11 {
|
615
|
+
margin-left: 91.66666663% !important
|
616
|
+
}
|
617
|
+
|
618
|
+
@media(min-width: 544px) {
|
619
|
+
.offset-sm-1 {
|
620
|
+
margin-left: 8.33333333% !important
|
621
|
+
}
|
622
|
+
|
623
|
+
.offset-sm-2 {
|
624
|
+
margin-left: 16.66666666% !important
|
625
|
+
}
|
626
|
+
|
627
|
+
.offset-sm-3 {
|
628
|
+
margin-left: 24.99999999% !important
|
629
|
+
}
|
630
|
+
|
631
|
+
.offset-sm-4 {
|
632
|
+
margin-left: 33.33333332% !important
|
633
|
+
}
|
634
|
+
|
635
|
+
.offset-sm-5 {
|
636
|
+
margin-left: 41.66666665% !important
|
637
|
+
}
|
638
|
+
|
639
|
+
.offset-sm-6 {
|
640
|
+
margin-left: 49.99999998% !important
|
641
|
+
}
|
642
|
+
|
643
|
+
.offset-sm-7 {
|
644
|
+
margin-left: 58.33333331% !important
|
645
|
+
}
|
646
|
+
|
647
|
+
.offset-sm-8 {
|
648
|
+
margin-left: 66.66666664% !important
|
649
|
+
}
|
650
|
+
|
651
|
+
.offset-sm-9 {
|
652
|
+
margin-left: 74.99999997% !important
|
653
|
+
}
|
654
|
+
|
655
|
+
.offset-sm-10 {
|
656
|
+
margin-left: 83.3333333% !important
|
657
|
+
}
|
658
|
+
|
659
|
+
.offset-sm-11 {
|
660
|
+
margin-left: 91.66666663% !important
|
661
|
+
}
|
662
|
+
}
|
663
|
+
|
664
|
+
@media(min-width: 768px) {
|
665
|
+
.offset-md-1 {
|
666
|
+
margin-left: 8.33333333% !important
|
667
|
+
}
|
668
|
+
|
669
|
+
.offset-md-2 {
|
670
|
+
margin-left: 16.66666666% !important
|
671
|
+
}
|
672
|
+
|
673
|
+
.offset-md-3 {
|
674
|
+
margin-left: 24.99999999% !important
|
675
|
+
}
|
676
|
+
|
677
|
+
.offset-md-4 {
|
678
|
+
margin-left: 33.33333332% !important
|
679
|
+
}
|
680
|
+
|
681
|
+
.offset-md-5 {
|
682
|
+
margin-left: 41.66666665% !important
|
683
|
+
}
|
684
|
+
|
685
|
+
.offset-md-6 {
|
686
|
+
margin-left: 49.99999998% !important
|
687
|
+
}
|
688
|
+
|
689
|
+
.offset-md-7 {
|
690
|
+
margin-left: 58.33333331% !important
|
691
|
+
}
|
692
|
+
|
693
|
+
.offset-md-8 {
|
694
|
+
margin-left: 66.66666664% !important
|
695
|
+
}
|
696
|
+
|
697
|
+
.offset-md-9 {
|
698
|
+
margin-left: 74.99999997% !important
|
699
|
+
}
|
700
|
+
|
701
|
+
.offset-md-10 {
|
702
|
+
margin-left: 83.3333333% !important
|
703
|
+
}
|
704
|
+
|
705
|
+
.offset-md-11 {
|
706
|
+
margin-left: 91.66666663% !important
|
707
|
+
}
|
708
|
+
}
|
709
|
+
|
710
|
+
@media(min-width: 1012px) {
|
711
|
+
.offset-lg-1 {
|
712
|
+
margin-left: 8.33333333% !important
|
713
|
+
}
|
714
|
+
|
715
|
+
.offset-lg-2 {
|
716
|
+
margin-left: 16.66666666% !important
|
717
|
+
}
|
718
|
+
|
719
|
+
.offset-lg-3 {
|
720
|
+
margin-left: 24.99999999% !important
|
721
|
+
}
|
722
|
+
|
723
|
+
.offset-lg-4 {
|
724
|
+
margin-left: 33.33333332% !important
|
725
|
+
}
|
726
|
+
|
727
|
+
.offset-lg-5 {
|
728
|
+
margin-left: 41.66666665% !important
|
729
|
+
}
|
730
|
+
|
731
|
+
.offset-lg-6 {
|
732
|
+
margin-left: 49.99999998% !important
|
733
|
+
}
|
734
|
+
|
735
|
+
.offset-lg-7 {
|
736
|
+
margin-left: 58.33333331% !important
|
737
|
+
}
|
738
|
+
|
739
|
+
.offset-lg-8 {
|
740
|
+
margin-left: 66.66666664% !important
|
741
|
+
}
|
742
|
+
|
743
|
+
.offset-lg-9 {
|
744
|
+
margin-left: 74.99999997% !important
|
745
|
+
}
|
746
|
+
|
747
|
+
.offset-lg-10 {
|
748
|
+
margin-left: 83.3333333% !important
|
749
|
+
}
|
750
|
+
|
751
|
+
.offset-lg-11 {
|
752
|
+
margin-left: 91.66666663% !important
|
753
|
+
}
|
754
|
+
}
|
755
|
+
|
756
|
+
@media(min-width: 1280px) {
|
757
|
+
.offset-xl-1 {
|
758
|
+
margin-left: 8.33333333% !important
|
759
|
+
}
|
760
|
+
|
761
|
+
.offset-xl-2 {
|
762
|
+
margin-left: 16.66666666% !important
|
763
|
+
}
|
764
|
+
|
765
|
+
.offset-xl-3 {
|
766
|
+
margin-left: 24.99999999% !important
|
767
|
+
}
|
768
|
+
|
769
|
+
.offset-xl-4 {
|
770
|
+
margin-left: 33.33333332% !important
|
771
|
+
}
|
772
|
+
|
773
|
+
.offset-xl-5 {
|
774
|
+
margin-left: 41.66666665% !important
|
775
|
+
}
|
776
|
+
|
777
|
+
.offset-xl-6 {
|
778
|
+
margin-left: 49.99999998% !important
|
779
|
+
}
|
780
|
+
|
781
|
+
.offset-xl-7 {
|
782
|
+
margin-left: 58.33333331% !important
|
783
|
+
}
|
784
|
+
|
785
|
+
.offset-xl-8 {
|
786
|
+
margin-left: 66.66666664% !important
|
787
|
+
}
|
788
|
+
|
789
|
+
.offset-xl-9 {
|
790
|
+
margin-left: 74.99999997% !important
|
791
|
+
}
|
792
|
+
|
793
|
+
.offset-xl-10 {
|
794
|
+
margin-left: 83.3333333% !important
|
795
|
+
}
|
796
|
+
|
797
|
+
.offset-xl-11 {
|
798
|
+
margin-left: 91.66666663% !important
|
799
|
+
}
|
800
|
+
}
|
801
|
+
|
802
|
+
:root {
|
803
|
+
--Layout-pane-width: 220px;
|
804
|
+
--Layout-content-width: 100%;
|
805
|
+
--Layout-template-columns: 1fr var(--Layout-pane-width);
|
806
|
+
--Layout-template-areas: "content pane";
|
807
|
+
--Layout-column-gap: 16px;
|
808
|
+
--Layout-row-gap: 16px;
|
809
|
+
--Layout-outer-spacing-x: 0px;
|
810
|
+
--Layout-outer-spacing-y: 0px;
|
811
|
+
--Layout-inner-spacing-min: 0px;
|
812
|
+
--Layout-inner-spacing-max: 0px
|
813
|
+
}
|
814
|
+
|
815
|
+
.PageLayout {
|
816
|
+
display: block;
|
817
|
+
margin: var(--Layout-outer-spacing-y) var(--Layout-outer-spacing-x)
|
818
|
+
}
|
819
|
+
|
820
|
+
@media(min-width: 768px) {
|
821
|
+
.PageLayout.PageLayout--panePos-start {
|
822
|
+
--Layout-template-columns: var(--Layout-pane-width) minmax(0, calc(100% - var(--Layout-pane-width) - var(--Layout-column-gap)));
|
823
|
+
--Layout-template-areas: "pane content"
|
824
|
+
}
|
825
|
+
|
826
|
+
.PageLayout.PageLayout--panePos-end {
|
827
|
+
--Layout-template-columns: minmax(0, calc(100% - var(--Layout-pane-width) - var(--Layout-column-gap))) var(--Layout-pane-width);
|
828
|
+
--Layout-template-areas: "content pane"
|
829
|
+
}
|
830
|
+
|
831
|
+
.PageLayout .PageLayout-header--hasDivider {
|
832
|
+
padding-bottom: max(var(--Layout-row-gap), var(--Layout-inner-spacing-min));
|
833
|
+
border-bottom: 1px solid var(--color-border-default)
|
834
|
+
}
|
835
|
+
|
836
|
+
.PageLayout .PageLayout-footer--hasDivider {
|
837
|
+
padding-top: max(var(--Layout-row-gap), var(--Layout-inner-spacing-min));
|
838
|
+
border-top: 1px solid var(--color-border-default)
|
839
|
+
}
|
840
|
+
|
841
|
+
.PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-start .PageLayout-pane {
|
842
|
+
border-right: 1px solid var(--color-border-default)
|
843
|
+
}
|
844
|
+
|
845
|
+
.PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-start:not(.PageLayout--columnGap-none) .PageLayout-pane {
|
846
|
+
padding-right: calc(var(--Layout-column-gap) - 1px);
|
847
|
+
margin-right: calc(var(--Layout-column-gap)*-1)
|
848
|
+
}
|
849
|
+
|
850
|
+
.PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-start:not(.PageLayout--columnGap-none) .PageLayout-content {
|
851
|
+
margin-left: var(--Layout-column-gap)
|
852
|
+
}
|
853
|
+
|
854
|
+
.PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-end .PageLayout-pane {
|
855
|
+
border-left: 1px solid var(--color-border-default)
|
856
|
+
}
|
857
|
+
|
858
|
+
.PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-end:not(.PageLayout--columnGap-none) .PageLayout-pane {
|
859
|
+
padding-left: calc(var(--Layout-column-gap) - 1px);
|
860
|
+
margin-left: calc(var(--Layout-column-gap)*-1)
|
861
|
+
}
|
862
|
+
|
863
|
+
.PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-end:not(.PageLayout--columnGap-none) .PageLayout-content {
|
864
|
+
margin-right: var(--Layout-column-gap)
|
865
|
+
}
|
866
|
+
|
867
|
+
.PageLayout .PageLayout-pane--sticky {
|
868
|
+
position: sticky;
|
869
|
+
top: 0;
|
870
|
+
max-height: 100vh;
|
871
|
+
overflow: auto;
|
872
|
+
scrollbar-width: thin
|
873
|
+
}
|
874
|
+
|
875
|
+
@supports(max-height: 100dvh) {
|
876
|
+
.PageLayout .PageLayout-pane--sticky {
|
877
|
+
max-height: 100dvh
|
878
|
+
}
|
879
|
+
}
|
880
|
+
|
881
|
+
.PageLayout [class^=PageLayout-content-centered-] {
|
882
|
+
max-width: calc(var(--Layout-content-width) + var(--Layout-pane-width) + var(--Layout-column-gap));
|
883
|
+
margin-right: auto;
|
884
|
+
margin-left: auto
|
885
|
+
}
|
886
|
+
|
887
|
+
.PageLayout.PageLayout--hasPaneDivider [class^=PageLayout-content-centered-] {
|
888
|
+
max-width: calc(var(--Layout-content-width) + var(--Layout-pane-width) + var(--Layout-column-gap)*2)
|
889
|
+
}
|
890
|
+
|
891
|
+
.PageLayout.PageLayout--panePos-start [class^=PageLayout-content-centered-]>[class^=container-] {
|
892
|
+
margin-left: 0
|
893
|
+
}
|
894
|
+
|
895
|
+
.PageLayout.PageLayout--panePos-end [class^=PageLayout-content-centered-]>[class^=container-] {
|
896
|
+
margin-right: 0
|
897
|
+
}
|
898
|
+
|
899
|
+
.PageLayout .PageLayout-content-centered-sm {
|
900
|
+
--Layout-content-width: 544px
|
901
|
+
}
|
902
|
+
|
903
|
+
.PageLayout .PageLayout-content-centered-md {
|
904
|
+
--Layout-content-width: 768px
|
905
|
+
}
|
906
|
+
|
907
|
+
.PageLayout .PageLayout-content-centered-lg {
|
908
|
+
--Layout-content-width: 1012px
|
909
|
+
}
|
910
|
+
|
911
|
+
.PageLayout .PageLayout-content-centered-xl {
|
912
|
+
--Layout-content-width: 1280px
|
913
|
+
}
|
914
|
+
}
|
915
|
+
|
916
|
+
@media(min-width: 768px)and (min-width: 544px) {
|
917
|
+
.PageLayout {
|
918
|
+
--Layout-pane-width: 220px
|
919
|
+
}
|
920
|
+
}
|
921
|
+
|
922
|
+
@media(min-width: 768px)and (min-width: 768px) {
|
923
|
+
.PageLayout {
|
924
|
+
--Layout-pane-width: 256px
|
925
|
+
}
|
926
|
+
}
|
927
|
+
|
928
|
+
@media(min-width: 768px)and (min-width: 1012px) {
|
929
|
+
.PageLayout {
|
930
|
+
--Layout-pane-width: 296px
|
931
|
+
}
|
932
|
+
}
|
933
|
+
|
934
|
+
@media(min-width: 768px)and (min-width: 768px) {
|
935
|
+
.PageLayout.PageLayout--paneWidth-narrow {
|
936
|
+
--Layout-pane-width: 240px
|
937
|
+
}
|
938
|
+
}
|
939
|
+
|
940
|
+
@media(min-width: 768px)and (min-width: 1012px) {
|
941
|
+
.PageLayout.PageLayout--paneWidth-narrow {
|
942
|
+
--Layout-pane-width: 256px
|
943
|
+
}
|
944
|
+
}
|
945
|
+
|
946
|
+
@media(min-width: 768px)and (min-width: 1012px) {
|
947
|
+
.PageLayout.PageLayout--paneWidth-wide {
|
948
|
+
--Layout-pane-width: 320px
|
949
|
+
}
|
950
|
+
}
|
951
|
+
|
952
|
+
@media(min-width: 768px)and (min-width: 1280px) {
|
953
|
+
.PageLayout.PageLayout--paneWidth-wide {
|
954
|
+
--Layout-pane-width: 336px
|
955
|
+
}
|
956
|
+
}
|
957
|
+
|
958
|
+
@media(max-width: 767.98px) {
|
959
|
+
.PageLayout.PageLayout--responsive-stackRegions {
|
960
|
+
--Layout-template-columns: 1fr;
|
961
|
+
--Layout-template-areas: "content" "pane"
|
962
|
+
}
|
963
|
+
|
964
|
+
.PageLayout.PageLayout--responsive-stackRegions.PageLayout--responsive-panePos-start {
|
965
|
+
--Layout-template-areas: "pane" "content"
|
966
|
+
}
|
967
|
+
|
968
|
+
.PageLayout.PageLayout--responsive-separateRegions {
|
969
|
+
--Layout-template-columns: 1fr;
|
970
|
+
--Layout-template-areas: "content"
|
971
|
+
}
|
972
|
+
|
973
|
+
.PageLayout.PageLayout--responsive-separateRegions.PageLayout--responsive-primary-content {
|
974
|
+
--Layout-template-areas: "content"
|
975
|
+
}
|
976
|
+
|
977
|
+
.PageLayout.PageLayout--responsive-separateRegions.PageLayout--responsive-primary-content .PageLayout-pane {
|
978
|
+
display: none
|
979
|
+
}
|
980
|
+
|
981
|
+
.PageLayout.PageLayout--responsive-separateRegions.PageLayout--responsive-primary-pane {
|
982
|
+
--Layout-template-areas: "pane"
|
983
|
+
}
|
984
|
+
|
985
|
+
.PageLayout.PageLayout--responsive-separateRegions.PageLayout--responsive-primary-pane .PageLayout-content {
|
986
|
+
display: none
|
987
|
+
}
|
988
|
+
|
989
|
+
.PageLayout .PageLayout-region--dividerNarrow-line-before {
|
990
|
+
position: relative;
|
991
|
+
margin-top: var(--Layout-row-gap)
|
992
|
+
}
|
993
|
+
|
994
|
+
.PageLayout .PageLayout-region--dividerNarrow-line-before::before {
|
995
|
+
position: absolute;
|
996
|
+
left: calc(var(--Layout-outer-spacing-x)*-1);
|
997
|
+
display: block;
|
998
|
+
width: calc(100% + var(--Layout-outer-spacing-x)*2);
|
999
|
+
height: 1px;
|
1000
|
+
content: "";
|
1001
|
+
background-color: var(--color-border-default);
|
1002
|
+
top: calc(-1px - var(--Layout-row-gap))
|
1003
|
+
}
|
1004
|
+
|
1005
|
+
.PageLayout .PageLayout-region--dividerNarrow-line-after {
|
1006
|
+
position: relative;
|
1007
|
+
margin-bottom: var(--Layout-row-gap)
|
1008
|
+
}
|
1009
|
+
|
1010
|
+
.PageLayout .PageLayout-region--dividerNarrow-line-after::after {
|
1011
|
+
position: absolute;
|
1012
|
+
left: calc(var(--Layout-outer-spacing-x)*-1);
|
1013
|
+
display: block;
|
1014
|
+
width: calc(100% + var(--Layout-outer-spacing-x)*2);
|
1015
|
+
height: 1px;
|
1016
|
+
content: "";
|
1017
|
+
background-color: var(--color-border-default);
|
1018
|
+
bottom: calc(-1px - var(--Layout-row-gap))
|
1019
|
+
}
|
1020
|
+
|
1021
|
+
.PageLayout .PageLayout-region--dividerNarrow-filled-before {
|
1022
|
+
position: relative;
|
1023
|
+
margin-top: calc(8px + var(--Layout-row-gap))
|
1024
|
+
}
|
1025
|
+
|
1026
|
+
.PageLayout .PageLayout-region--dividerNarrow-filled-before::after {
|
1027
|
+
position: absolute;
|
1028
|
+
bottom: calc(8px * -1);
|
1029
|
+
left: calc(var(--Layout-outer-spacing-x)*-1);
|
1030
|
+
display: block;
|
1031
|
+
width: calc(100% + var(--Layout-outer-spacing-x)*2);
|
1032
|
+
height: 8px;
|
1033
|
+
content: "";
|
1034
|
+
background-color: var(--color-canvas-inset);
|
1035
|
+
box-shadow: inset 0 1px var(--color-border-default), inset 0 -1px var(--color-border-default);
|
1036
|
+
top: calc(-8px - var(--Layout-row-gap))
|
1037
|
+
}
|
1038
|
+
|
1039
|
+
.PageLayout .PageLayout-region--dividerNarrow-filled-after {
|
1040
|
+
position: relative;
|
1041
|
+
margin-bottom: calc(8px + var(--Layout-row-gap))
|
1042
|
+
}
|
1043
|
+
|
1044
|
+
.PageLayout .PageLayout-region--dividerNarrow-filled-after::before {
|
1045
|
+
position: absolute;
|
1046
|
+
bottom: calc(8px * -1);
|
1047
|
+
left: calc(var(--Layout-outer-spacing-x)*-1);
|
1048
|
+
display: block;
|
1049
|
+
width: calc(100% + var(--Layout-outer-spacing-x)*2);
|
1050
|
+
height: 8px;
|
1051
|
+
content: "";
|
1052
|
+
background-color: var(--color-canvas-inset);
|
1053
|
+
box-shadow: inset 0 1px var(--color-border-default), inset 0 -1px var(--color-border-default);
|
1054
|
+
bottom: calc(-8px - var(--Layout-row-gap))
|
1055
|
+
}
|
1056
|
+
}
|
1057
|
+
|
1058
|
+
.PageLayout-wrapper {
|
1059
|
+
display: grid;
|
1060
|
+
grid: auto-flow/1fr;
|
1061
|
+
row-gap: var(--Layout-row-gap)
|
1062
|
+
}
|
1063
|
+
|
1064
|
+
.PageLayout-columns {
|
1065
|
+
display: grid;
|
1066
|
+
column-gap: var(--Layout-column-gap);
|
1067
|
+
row-gap: var(--Layout-row-gap);
|
1068
|
+
grid-template-columns: var(--Layout-template-columns);
|
1069
|
+
grid-template-rows: 1fr;
|
1070
|
+
grid-template-areas: var(--Layout-template-areas)
|
1071
|
+
}
|
1072
|
+
|
1073
|
+
.PageLayout-columns .PageLayout-content {
|
1074
|
+
padding-right: var(--Layout-inner-spacing-max);
|
1075
|
+
padding-left: var(--Layout-inner-spacing-max);
|
1076
|
+
grid-area: content
|
1077
|
+
}
|
1078
|
+
|
1079
|
+
.PageLayout-columns .PageLayout-pane {
|
1080
|
+
grid-area: pane
|
1081
|
+
}
|
1082
|
+
|
1083
|
+
.PageLayout--outerSpacing-normal {
|
1084
|
+
--Layout-outer-spacing-x: 16px;
|
1085
|
+
--Layout-outer-spacing-y: 16px
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
@media(min-width: 1012px) {
|
1089
|
+
.PageLayout--outerSpacing-normal {
|
1090
|
+
--Layout-outer-spacing-x: 24px;
|
1091
|
+
--Layout-outer-spacing-y: 24px
|
1092
|
+
}
|
1093
|
+
}
|
1094
|
+
|
1095
|
+
.PageLayout--outerSpacing-condensed {
|
1096
|
+
--Layout-outer-spacing-x: 16px;
|
1097
|
+
--Layout-outer-spacing-y: 16px
|
1098
|
+
}
|
1099
|
+
|
1100
|
+
.PageLayout--innerSpacing-normal {
|
1101
|
+
--Layout-inner-spacing-min: 16px;
|
1102
|
+
--Layout-inner-spacing-max: 16px
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
@media(min-width: 1012px) {
|
1106
|
+
.PageLayout--innerSpacing-normal {
|
1107
|
+
--Layout-inner-spacing-max: 24px
|
1108
|
+
}
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
.PageLayout--innerSpacing-condensed {
|
1112
|
+
--Layout-inner-spacing-min: 16px;
|
1113
|
+
--Layout-inner-spacing-max: 16px
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
.PageLayout--columnGap-normal {
|
1117
|
+
--Layout-column-gap: 16px
|
1118
|
+
}
|
1119
|
+
|
1120
|
+
@media(min-width: 1012px) {
|
1121
|
+
.PageLayout--columnGap-normal {
|
1122
|
+
--Layout-column-gap: 24px
|
1123
|
+
}
|
1124
|
+
}
|
1125
|
+
|
1126
|
+
.PageLayout--columnGap-condensed {
|
1127
|
+
--Layout-column-gap: 16px
|
1128
|
+
}
|
1129
|
+
|
1130
|
+
.PageLayout--columnGap-none {
|
1131
|
+
--Layout-column-gap: 0px
|
1132
|
+
}
|
1133
|
+
|
1134
|
+
.PageLayout--rowGap-normal {
|
1135
|
+
--Layout-row-gap: 16px
|
1136
|
+
}
|
1137
|
+
|
1138
|
+
@media(min-width: 1012px) {
|
1139
|
+
.PageLayout--rowGap-normal {
|
1140
|
+
--Layout-row-gap: 24px
|
1141
|
+
}
|
1142
|
+
}
|
1143
|
+
|
1144
|
+
.PageLayout--rowGap-none {
|
1145
|
+
--Layout-row-gap: 0px
|
1146
|
+
}
|
1147
|
+
|
1148
|
+
.PageLayout--rowGap-condensed {
|
1149
|
+
--Layout-row-gap: 16px
|
1150
|
+
}
|
1151
|
+
|
1152
|
+
.PageLayout-header,
|
1153
|
+
.PageLayout-content,
|
1154
|
+
.PageLayout-pane,
|
1155
|
+
.PageLayout-footer {
|
1156
|
+
padding: var(--Layout-inner-spacing-min)
|
1157
|
+
}
|
1158
|
+
|
1159
|
+
.Stack {
|
1160
|
+
--Stack-gap-whenRegular: var(--yattho-stack-gap-normal, 16px);
|
1161
|
+
--Stack-gap-whenNarrow: var(--yattho-stack-gap-normal, 16px);
|
1162
|
+
--Stack-gap-whenWide: var(--Stack-gap-whenRegular);
|
1163
|
+
--Stack-divider-color: var(--color-border-default);
|
1164
|
+
display: flex;
|
1165
|
+
flex-flow: column;
|
1166
|
+
align-items: stretch;
|
1167
|
+
align-content: flex-start;
|
1168
|
+
gap: var(--Stack-gap-whenRegular)
|
1169
|
+
}
|
1170
|
+
|
1171
|
+
@media(max-width: 767.98px) {
|
1172
|
+
.Stack {
|
1173
|
+
gap: var(--Stack-gap-whenNarrow)
|
1174
|
+
}
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
@media(min-width: 1400px) {
|
1178
|
+
.Stack {
|
1179
|
+
gap: var(--Stack-gap-whenWide)
|
1180
|
+
}
|
1181
|
+
}
|
1182
|
+
|
1183
|
+
.Stack-divider {
|
1184
|
+
display: none;
|
1185
|
+
padding: 0;
|
1186
|
+
margin: 0;
|
1187
|
+
border: 0;
|
1188
|
+
align-self: stretch
|
1189
|
+
}
|
1190
|
+
|
1191
|
+
.Stack-item {
|
1192
|
+
flex: 0 1 auto;
|
1193
|
+
min-inline-size: 0
|
1194
|
+
}
|
1195
|
+
|
1196
|
+
@media(max-width: 767.98px) {
|
1197
|
+
.Stack--dir-inline-whenNarrow {
|
1198
|
+
flex-flow: row
|
1199
|
+
}
|
1200
|
+
|
1201
|
+
.Stack--dir-block-whenNarrow {
|
1202
|
+
flex-flow: column
|
1203
|
+
}
|
1204
|
+
|
1205
|
+
.Stack--gap-none-whenNarrow {
|
1206
|
+
--Stack-gap-whenNarrow: 0
|
1207
|
+
}
|
1208
|
+
|
1209
|
+
.Stack--gap-condensed-whenNarrow {
|
1210
|
+
--Stack-gap-whenNarrow: var(--yattho-stack-gap-condensed, 8px)
|
1211
|
+
}
|
1212
|
+
|
1213
|
+
.Stack--gap-normal-whenNarrow {
|
1214
|
+
--Stack-gap-whenNarrow: var(--yattho-stack-gap-normal, 16px)
|
1215
|
+
}
|
1216
|
+
|
1217
|
+
.Stack--align-start-whenNarrow {
|
1218
|
+
align-items: flex-start
|
1219
|
+
}
|
1220
|
+
|
1221
|
+
.Stack--align-center-whenNarrow {
|
1222
|
+
align-items: center
|
1223
|
+
}
|
1224
|
+
|
1225
|
+
.Stack--align-end-whenNarrow {
|
1226
|
+
align-items: flex-end
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
.Stack--align-baseline-whenNarrow {
|
1230
|
+
align-items: baseline
|
1231
|
+
}
|
1232
|
+
|
1233
|
+
.Stack--alignWrap-start-whenNarrow {
|
1234
|
+
align-content: flex-start
|
1235
|
+
}
|
1236
|
+
|
1237
|
+
.Stack--alignWrap-center-whenNarrow {
|
1238
|
+
align-content: center
|
1239
|
+
}
|
1240
|
+
|
1241
|
+
.Stack--alignWrap-end-whenNarrow {
|
1242
|
+
align-content: flex-end
|
1243
|
+
}
|
1244
|
+
|
1245
|
+
.Stack--alignWrap-distribute-whenNarrow {
|
1246
|
+
align-content: space-between
|
1247
|
+
}
|
1248
|
+
|
1249
|
+
.Stack--alignWrap-distributeEvenly-whenNarrow {
|
1250
|
+
align-content: space-evenly
|
1251
|
+
}
|
1252
|
+
|
1253
|
+
.Stack--spread-start-whenNarrow {
|
1254
|
+
justify-content: flex-start
|
1255
|
+
}
|
1256
|
+
|
1257
|
+
.Stack--spread-center-whenNarrow {
|
1258
|
+
justify-content: center
|
1259
|
+
}
|
1260
|
+
|
1261
|
+
.Stack--spread-end-whenNarrow {
|
1262
|
+
justify-content: flex-end
|
1263
|
+
}
|
1264
|
+
|
1265
|
+
.Stack--spread-distribute-whenNarrow {
|
1266
|
+
justify-content: space-between
|
1267
|
+
}
|
1268
|
+
|
1269
|
+
.Stack--spread-distributeEvenly-whenNarrow {
|
1270
|
+
justify-content: space-evenly
|
1271
|
+
}
|
1272
|
+
|
1273
|
+
.Stack--wrap-whenNarrow {
|
1274
|
+
flex-wrap: wrap
|
1275
|
+
}
|
1276
|
+
|
1277
|
+
.Stack--nowrap-whenNarrow {
|
1278
|
+
flex-wrap: nowrap
|
1279
|
+
}
|
1280
|
+
|
1281
|
+
.Stack--showDividers-whenNarrow>.Stack-divider,
|
1282
|
+
.Stack--showDividers-whenNarrow>.Stack-item>.Stack-divider {
|
1283
|
+
display: block
|
1284
|
+
}
|
1285
|
+
|
1286
|
+
:not(.Stack--dir-inline-whenNarrow)>.Stack-divider,
|
1287
|
+
:not(.Stack--dir-inline-whenNarrow)>.Stack-item>.Stack-divider {
|
1288
|
+
border-block-end: var(--yattho-borderWidth-thin, 1px) solid var(--Stack-divider-color);
|
1289
|
+
inline-size: auto;
|
1290
|
+
block-size: 0
|
1291
|
+
}
|
1292
|
+
|
1293
|
+
.Stack--dir-inline-whenNarrow>.Stack-divider,
|
1294
|
+
.Stack--dir-inline-whenNarrow>.Stack-item>.Stack-divider {
|
1295
|
+
border-inline-end: var(--yattho-borderWidth-thin, 1px) solid var(--Stack-divider-color);
|
1296
|
+
inline-size: 0;
|
1297
|
+
block-size: auto
|
1298
|
+
}
|
1299
|
+
|
1300
|
+
.Stack-item--expand-whenNarrow {
|
1301
|
+
flex-grow: 1
|
1302
|
+
}
|
1303
|
+
|
1304
|
+
.Stack-item--keepSize-whenNarrow {
|
1305
|
+
flex-shrink: 0
|
1306
|
+
}
|
1307
|
+
}
|
1308
|
+
|
1309
|
+
@media(min-width: 768px) {
|
1310
|
+
.Stack--dir-inline-whenRegular {
|
1311
|
+
flex-flow: row
|
1312
|
+
}
|
1313
|
+
|
1314
|
+
.Stack--dir-block-whenRegular {
|
1315
|
+
flex-flow: column
|
1316
|
+
}
|
1317
|
+
|
1318
|
+
.Stack--gap-none-whenRegular {
|
1319
|
+
--Stack-gap-whenRegular: 0
|
1320
|
+
}
|
1321
|
+
|
1322
|
+
.Stack--gap-condensed-whenRegular {
|
1323
|
+
--Stack-gap-whenRegular: var(--yattho-stack-gap-condensed, 8px)
|
1324
|
+
}
|
1325
|
+
|
1326
|
+
.Stack--gap-normal-whenRegular {
|
1327
|
+
--Stack-gap-whenRegular: var(--yattho-stack-gap-normal, 16px)
|
1328
|
+
}
|
1329
|
+
|
1330
|
+
.Stack--gap-spacious-whenRegular {
|
1331
|
+
--Stack-gap-whenRegular: var(--yattho-stack-gap-spacious, 24px)
|
1332
|
+
}
|
1333
|
+
|
1334
|
+
.Stack--align-start-whenRegular {
|
1335
|
+
align-items: flex-start
|
1336
|
+
}
|
1337
|
+
|
1338
|
+
.Stack--align-center-whenRegular {
|
1339
|
+
align-items: center
|
1340
|
+
}
|
1341
|
+
|
1342
|
+
.Stack--align-end-whenRegular {
|
1343
|
+
align-items: flex-end
|
1344
|
+
}
|
1345
|
+
|
1346
|
+
.Stack--align-baseline-whenRegular {
|
1347
|
+
align-items: baseline
|
1348
|
+
}
|
1349
|
+
|
1350
|
+
.Stack--alignWrap-start-whenRegular {
|
1351
|
+
align-content: flex-start
|
1352
|
+
}
|
1353
|
+
|
1354
|
+
.Stack--alignWrap-center-whenRegular {
|
1355
|
+
align-content: center
|
1356
|
+
}
|
1357
|
+
|
1358
|
+
.Stack--alignWrap-end-whenRegular {
|
1359
|
+
align-content: flex-end
|
1360
|
+
}
|
1361
|
+
|
1362
|
+
.Stack--alignWrap-distribute-whenRegular {
|
1363
|
+
align-content: space-between
|
1364
|
+
}
|
1365
|
+
|
1366
|
+
.Stack--alignWrap-distributeEvenly-whenRegular {
|
1367
|
+
align-content: space-evenly
|
1368
|
+
}
|
1369
|
+
|
1370
|
+
.Stack--spread-start-whenRegular {
|
1371
|
+
justify-content: flex-start
|
1372
|
+
}
|
1373
|
+
|
1374
|
+
.Stack--spread-center-whenRegular {
|
1375
|
+
justify-content: center
|
1376
|
+
}
|
1377
|
+
|
1378
|
+
.Stack--spread-end-whenRegular {
|
1379
|
+
justify-content: flex-end
|
1380
|
+
}
|
1381
|
+
|
1382
|
+
.Stack--spread-distribute-whenRegular {
|
1383
|
+
justify-content: space-between
|
1384
|
+
}
|
1385
|
+
|
1386
|
+
.Stack--spread-distributeEvenly-whenRegular {
|
1387
|
+
justify-content: space-evenly
|
1388
|
+
}
|
1389
|
+
|
1390
|
+
.Stack--wrap-whenRegular {
|
1391
|
+
flex-wrap: wrap
|
1392
|
+
}
|
1393
|
+
|
1394
|
+
.Stack--nowrap-whenRegular {
|
1395
|
+
flex-wrap: nowrap
|
1396
|
+
}
|
1397
|
+
|
1398
|
+
.Stack--showDividers-whenRegular>.Stack-divider,
|
1399
|
+
.Stack--showDividers-whenRegular>.Stack-item>.Stack-divider {
|
1400
|
+
display: block
|
1401
|
+
}
|
1402
|
+
|
1403
|
+
:not(.Stack--dir-inline-whenRegular)>.Stack-divider,
|
1404
|
+
:not(.Stack--dir-inline-whenRegular)>.Stack-item>.Stack-divider {
|
1405
|
+
border-block-end: var(--yattho-borderWidth-thin, 1px) solid var(--Stack-divider-color);
|
1406
|
+
inline-size: auto;
|
1407
|
+
block-size: 0
|
1408
|
+
}
|
1409
|
+
|
1410
|
+
.Stack--dir-inline-whenRegular>.Stack-divider,
|
1411
|
+
.Stack--dir-inline-whenRegular>.Stack-item>.Stack-divider {
|
1412
|
+
border-inline-end: var(--yattho-borderWidth-thin, 1px) solid var(--Stack-divider-color);
|
1413
|
+
inline-size: 0;
|
1414
|
+
block-size: auto
|
1415
|
+
}
|
1416
|
+
|
1417
|
+
.Stack-item--expand-whenRegular {
|
1418
|
+
flex-grow: 1
|
1419
|
+
}
|
1420
|
+
|
1421
|
+
.Stack-item--keepSize-whenRegular {
|
1422
|
+
flex-shrink: 0
|
1423
|
+
}
|
1424
|
+
}
|
1425
|
+
|
1426
|
+
@media(min-width: 1400px) {
|
1427
|
+
.Stack--dir-inline-whenWide {
|
1428
|
+
flex-flow: row
|
1429
|
+
}
|
1430
|
+
|
1431
|
+
.Stack--dir-block-whenWide {
|
1432
|
+
flex-flow: column
|
1433
|
+
}
|
1434
|
+
|
1435
|
+
.Stack--gap-none-whenWide {
|
1436
|
+
--Stack-gap-whenWide: 0
|
1437
|
+
}
|
1438
|
+
|
1439
|
+
.Stack--gap-condensed-whenWide {
|
1440
|
+
--Stack-gap-whenWide: var(--yattho-stack-gap-condensed, 8px)
|
1441
|
+
}
|
1442
|
+
|
1443
|
+
.Stack--gap-normal-whenWide {
|
1444
|
+
--Stack-gap-whenWide: var(--yattho-stack-gap-normal, 16px)
|
1445
|
+
}
|
1446
|
+
|
1447
|
+
.Stack--gap-spacious-whenWide {
|
1448
|
+
--Stack-gap-whenWide: var(--yattho-stack-gap-spacious, 24px)
|
1449
|
+
}
|
1450
|
+
|
1451
|
+
.Stack--align-start-whenWide {
|
1452
|
+
align-items: flex-start
|
1453
|
+
}
|
1454
|
+
|
1455
|
+
.Stack--align-center-whenWide {
|
1456
|
+
align-items: center
|
1457
|
+
}
|
1458
|
+
|
1459
|
+
.Stack--align-end-whenWide {
|
1460
|
+
align-items: flex-end
|
1461
|
+
}
|
1462
|
+
|
1463
|
+
.Stack--align-baseline-whenWide {
|
1464
|
+
align-items: baseline
|
1465
|
+
}
|
1466
|
+
|
1467
|
+
.Stack--alignWrap-start-whenWide {
|
1468
|
+
align-content: flex-start
|
1469
|
+
}
|
1470
|
+
|
1471
|
+
.Stack--alignWrap-center-whenWide {
|
1472
|
+
align-content: center
|
1473
|
+
}
|
1474
|
+
|
1475
|
+
.Stack--alignWrap-end-whenWide {
|
1476
|
+
align-content: flex-end
|
1477
|
+
}
|
1478
|
+
|
1479
|
+
.Stack--alignWrap-distribute-whenWide {
|
1480
|
+
align-content: space-between
|
1481
|
+
}
|
1482
|
+
|
1483
|
+
.Stack--alignWrap-distributeEvenly-whenWide {
|
1484
|
+
align-content: space-evenly
|
1485
|
+
}
|
1486
|
+
|
1487
|
+
.Stack--spread-start-whenWide {
|
1488
|
+
justify-content: flex-start
|
1489
|
+
}
|
1490
|
+
|
1491
|
+
.Stack--spread-center-whenWide {
|
1492
|
+
justify-content: center
|
1493
|
+
}
|
1494
|
+
|
1495
|
+
.Stack--spread-end-whenWide {
|
1496
|
+
justify-content: flex-end
|
1497
|
+
}
|
1498
|
+
|
1499
|
+
.Stack--spread-distribute-whenWide {
|
1500
|
+
justify-content: space-between
|
1501
|
+
}
|
1502
|
+
|
1503
|
+
.Stack--spread-distributeEvenly-whenWide {
|
1504
|
+
justify-content: space-evenly
|
1505
|
+
}
|
1506
|
+
|
1507
|
+
.Stack--wrap-whenWide {
|
1508
|
+
flex-wrap: wrap
|
1509
|
+
}
|
1510
|
+
|
1511
|
+
.Stack--nowrap-whenWide {
|
1512
|
+
flex-wrap: nowrap
|
1513
|
+
}
|
1514
|
+
|
1515
|
+
.Stack--showDividers-whenWide>.Stack-divider,
|
1516
|
+
.Stack--showDividers-whenWide>.Stack-item>.Stack-divider {
|
1517
|
+
display: block
|
1518
|
+
}
|
1519
|
+
|
1520
|
+
:not(.Stack--dir-inline-whenWide)>.Stack-divider,
|
1521
|
+
:not(.Stack--dir-inline-whenWide)>.Stack-item>.Stack-divider {
|
1522
|
+
border-block-end: var(--yattho-borderWidth-thin, 1px) solid var(--Stack-divider-color);
|
1523
|
+
inline-size: auto;
|
1524
|
+
block-size: 0
|
1525
|
+
}
|
1526
|
+
|
1527
|
+
.Stack--dir-inline-whenWide>.Stack-divider,
|
1528
|
+
.Stack--dir-inline-whenWide>.Stack-item>.Stack-divider {
|
1529
|
+
border-inline-end: var(--yattho-borderWidth-thin, 1px) solid var(--Stack-divider-color);
|
1530
|
+
inline-size: 0;
|
1531
|
+
block-size: auto
|
1532
|
+
}
|
1533
|
+
|
1534
|
+
.Stack-item--expand-whenWide {
|
1535
|
+
flex-grow: 1
|
1536
|
+
}
|
1537
|
+
|
1538
|
+
.Stack-item--keepSize-whenWide {
|
1539
|
+
flex-shrink: 0
|
1540
|
+
}
|
1541
|
+
}
|