lookbook 1.5.2 → 2.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +33 -35
- data/app/components/lookbook/base_component.rb +3 -1
- data/app/components/lookbook/button/component.html.erb +14 -25
- data/app/components/lookbook/button/component.js +24 -7
- data/app/components/lookbook/button/component.rb +16 -25
- data/app/components/lookbook/code/component.rb +0 -2
- data/app/components/lookbook/code/highlight_github.css +16 -17
- data/app/components/lookbook/copy_button/component.html.erb +5 -5
- data/app/components/lookbook/copy_button/component.js +1 -1
- data/app/components/lookbook/copy_button/component.rb +6 -3
- data/app/components/lookbook/debug_menu/component.html.erb +3 -2
- data/app/components/lookbook/debug_menu/component.rb +12 -1
- data/app/components/lookbook/dimensions_display/component.html.erb +4 -4
- data/app/components/lookbook/dimensions_display/component.js +4 -7
- data/app/components/lookbook/display_options/editor/component.html.erb +1 -1
- data/app/components/lookbook/display_options/field/component.css +0 -26
- data/app/components/lookbook/display_options/field/component.html.erb +1 -1
- data/app/components/lookbook/display_options/field/component.js +1 -1
- data/app/components/lookbook/embed/component.html.erb +6 -51
- data/app/components/lookbook/embed/component.rb +17 -16
- data/app/components/lookbook/embed/inspector/component.html.erb +117 -0
- data/app/components/lookbook/embed/inspector/component.js +58 -0
- data/app/components/lookbook/embed/inspector/component.rb +64 -0
- data/app/components/lookbook/embed_code_dropdown/component.css +19 -0
- data/app/components/lookbook/embed_code_dropdown/component.html.erb +64 -0
- data/app/components/lookbook/embed_code_dropdown/component.js +3 -0
- data/app/components/lookbook/embed_code_dropdown/component.rb +51 -0
- data/app/components/lookbook/file_source/component.html.erb +9 -0
- data/app/components/lookbook/file_source/component.rb +73 -0
- data/app/components/lookbook/filter/component.html.erb +15 -15
- data/app/components/lookbook/header/component.css +12 -0
- data/app/components/lookbook/header/component.html.erb +28 -19
- data/app/components/lookbook/header/component.rb +9 -3
- data/app/components/lookbook/icon/component.css +9 -1
- data/app/components/lookbook/icon/component.html.erb +3 -3
- data/app/components/lookbook/icon/component.rb +7 -8
- data/app/components/lookbook/icon_button/component.html.erb +20 -0
- data/app/components/lookbook/icon_button/component.rb +46 -0
- data/app/components/lookbook/logo/component.html.erb +6 -0
- data/app/components/lookbook/logo/component.rb +15 -0
- data/app/components/lookbook/message/component.css +34 -0
- data/app/components/lookbook/message/component.html.erb +26 -0
- data/app/components/lookbook/message/component.rb +13 -0
- data/app/components/lookbook/nav/component.html.erb +1 -2
- data/app/components/lookbook/nav/directory/component.html.erb +4 -4
- data/app/components/lookbook/nav/entity/component.html.erb +9 -6
- data/app/components/lookbook/nav/entity/component.rb +3 -3
- data/app/components/lookbook/nav/item/component.js +9 -11
- data/app/components/lookbook/nav/item/component.rb +1 -1
- data/app/components/lookbook/page_tabs/component.html.erb +4 -4
- data/app/components/lookbook/params/editor/component.html.erb +1 -1
- data/app/components/lookbook/params/editor/component.rb +2 -1
- data/app/components/lookbook/params/field/component.css +3 -3
- data/app/components/lookbook/params/field/component.rb +2 -2
- data/app/components/lookbook/prose/component.css +14 -1
- data/app/components/lookbook/prose/component.html.erb +6 -1
- data/app/components/lookbook/prose/component.rb +3 -5
- data/app/components/lookbook/split_layout/component.html.erb +4 -4
- data/app/components/lookbook/tab_panels/component.rb +1 -1
- data/app/components/lookbook/tabs/component.html.erb +2 -2
- data/app/components/lookbook/tabs/component.js +2 -2
- data/app/components/lookbook/tabs/dropdown_tab/component.html.erb +1 -1
- data/app/components/lookbook/tabs/tab/component.html.erb +2 -2
- data/app/components/lookbook/tag_component.rb +10 -2
- data/app/components/lookbook/text_button/component.html.erb +26 -0
- data/app/components/lookbook/text_button/component.rb +42 -0
- data/app/components/lookbook/toolbar/component.html.erb +1 -1
- data/app/components/lookbook/viewport/component.html.erb +8 -8
- data/app/components/lookbook/viewport/component.rb +0 -4
- data/app/controllers/concerns/lookbook/targetable_concern.rb +27 -35
- data/app/controllers/concerns/lookbook/with_panels_concern.rb +30 -0
- data/app/controllers/concerns/lookbook/with_preview_controller_concern.rb +24 -5
- data/app/controllers/lookbook/application_controller.rb +55 -24
- data/app/controllers/lookbook/embeds_controller.rb +147 -0
- data/app/controllers/lookbook/inspector_controller.rb +5 -32
- data/app/controllers/lookbook/page_controller.rb +8 -7
- data/app/controllers/lookbook/pages_controller.rb +17 -30
- data/app/controllers/lookbook/preview_controller.rb +45 -0
- data/app/controllers/lookbook/previews_controller.rb +36 -32
- data/app/helpers/lookbook/application_helper.rb +12 -18
- data/app/views/layouts/lookbook/application.html.erb +104 -60
- data/app/views/layouts/lookbook/embed.html.erb +34 -0
- data/app/views/layouts/lookbook/skeleton.html.erb +16 -15
- data/app/views/lookbook/embeds/show.html.erb +12 -0
- data/app/views/lookbook/errors/default.html.erb +40 -0
- data/app/views/lookbook/errors/not_found.html.erb +10 -0
- data/app/views/lookbook/index.html.erb +39 -24
- data/app/views/lookbook/inspector/inputs/_color.html.erb +2 -1
- data/app/views/lookbook/inspector/inputs/_text_two_step.html.erb +19 -0
- data/app/views/lookbook/inspector/inputs/_toggle.html.erb +1 -1
- data/app/views/lookbook/inspector/panels/_notes.html.erb +1 -1
- data/app/views/lookbook/inspector/panels/_output.html.erb +3 -3
- data/app/views/lookbook/inspector/panels/_preview.html.erb +1 -0
- data/app/views/lookbook/inspector/panels/_source.html.erb +6 -6
- data/app/views/lookbook/inspector/show.html.erb +142 -123
- data/app/views/lookbook/pages/show.html.erb +91 -36
- data/app/views/lookbook/partials/_blank_slate.html.erb +7 -0
- data/app/views/lookbook/partials/_iframe_content_scripts.html.erb +1 -0
- data/app/views/lookbook/partials/_user_styles.html.erb +5 -0
- data/app/views/lookbook/previews/group.html.erb +15 -0
- data/app/views/lookbook/previews/preview.html.erb +13 -0
- data/app/views/lookbook/previews/show.html.erb +1 -0
- data/assets/css/fonts.css +33 -0
- data/{app/assets/lookbook → assets}/css/lookbook.css +23 -3
- data/{app/assets/lookbook → assets}/css/themes/blue.css +14 -1
- data/{app/assets/lookbook → assets}/css/themes/green.css +14 -1
- data/{app/assets/lookbook → assets}/css/themes/indigo.css +14 -1
- data/{app/assets/lookbook → assets}/css/themes/rose.css +14 -1
- data/{app/assets/lookbook → assets}/css/themes/zinc.css +14 -1
- data/{app/assets/lookbook → assets}/css/tooltip.css +9 -6
- data/assets/fonts/Inter-italic.var.woff2 +0 -0
- data/assets/fonts/Inter-roman.var.woff2 +0 -0
- data/assets/fonts/SourceCodeVariable-Italic.ttf.woff2 +0 -0
- data/assets/fonts/SourceCodeVariable-Roman.ttf.woff2 +0 -0
- data/assets/icons/accessibility.svg +1 -0
- data/assets/icons/activity.svg +1 -0
- data/assets/icons/air-vent.svg +1 -0
- data/assets/icons/airplay.svg +1 -0
- data/assets/icons/alarm-check.svg +1 -0
- data/assets/icons/alarm-clock-off.svg +1 -0
- data/assets/icons/alarm-clock.svg +1 -0
- data/assets/icons/alarm-minus.svg +1 -0
- data/assets/icons/alarm-plus.svg +1 -0
- data/assets/icons/album.svg +1 -0
- data/assets/icons/alert-circle.svg +1 -0
- data/assets/icons/alert-octagon.svg +1 -0
- data/assets/icons/alert-triangle.svg +1 -0
- data/assets/icons/align-center-horizontal.svg +1 -0
- data/assets/icons/align-center-vertical.svg +1 -0
- data/assets/icons/align-center.svg +1 -0
- data/assets/icons/align-end-horizontal.svg +1 -0
- data/assets/icons/align-end-vertical.svg +1 -0
- data/assets/icons/align-horizontal-distribute-center.svg +1 -0
- data/assets/icons/align-horizontal-distribute-end.svg +1 -0
- data/assets/icons/align-horizontal-distribute-start.svg +1 -0
- data/assets/icons/align-horizontal-justify-center.svg +1 -0
- data/assets/icons/align-horizontal-justify-end.svg +1 -0
- data/assets/icons/align-horizontal-justify-start.svg +1 -0
- data/assets/icons/align-horizontal-space-around.svg +1 -0
- data/assets/icons/align-horizontal-space-between.svg +1 -0
- data/assets/icons/align-justify.svg +1 -0
- data/assets/icons/align-left.svg +1 -0
- data/assets/icons/align-right.svg +1 -0
- data/assets/icons/align-start-horizontal.svg +1 -0
- data/assets/icons/align-start-vertical.svg +1 -0
- data/assets/icons/align-vertical-distribute-center.svg +1 -0
- data/assets/icons/align-vertical-distribute-end.svg +1 -0
- data/assets/icons/align-vertical-distribute-start.svg +1 -0
- data/assets/icons/align-vertical-justify-center.svg +1 -0
- data/assets/icons/align-vertical-justify-end.svg +1 -0
- data/assets/icons/align-vertical-justify-start.svg +1 -0
- data/assets/icons/align-vertical-space-around.svg +1 -0
- data/assets/icons/align-vertical-space-between.svg +1 -0
- data/assets/icons/anchor.svg +1 -0
- data/assets/icons/angry.svg +1 -0
- data/assets/icons/annoyed.svg +1 -0
- data/assets/icons/aperture.svg +1 -0
- data/assets/icons/apple.svg +1 -0
- data/assets/icons/archive-restore.svg +1 -0
- data/assets/icons/archive.svg +1 -0
- data/assets/icons/armchair.svg +1 -0
- data/assets/icons/arrow-big-down.svg +1 -0
- data/assets/icons/arrow-big-left.svg +1 -0
- data/assets/icons/arrow-big-right.svg +1 -0
- data/assets/icons/arrow-big-up.svg +1 -0
- data/assets/icons/arrow-down-circle.svg +1 -0
- data/assets/icons/arrow-down-left.svg +1 -0
- data/assets/icons/arrow-down-right.svg +1 -0
- data/assets/icons/arrow-down.svg +1 -0
- data/assets/icons/arrow-left-circle.svg +1 -0
- data/assets/icons/arrow-left-right.svg +1 -0
- data/assets/icons/arrow-left.svg +1 -0
- data/assets/icons/arrow-right-circle.svg +1 -0
- data/assets/icons/arrow-right.svg +1 -0
- data/assets/icons/arrow-up-circle.svg +1 -0
- data/assets/icons/arrow-up-down.svg +1 -0
- data/assets/icons/arrow-up-left.svg +1 -0
- data/assets/icons/arrow-up-right.svg +1 -0
- data/assets/icons/arrow-up.svg +1 -0
- data/assets/icons/asterisk.svg +1 -0
- data/assets/icons/at-sign.svg +1 -0
- data/assets/icons/award.svg +1 -0
- data/assets/icons/axe.svg +1 -0
- data/assets/icons/axis-3d.svg +1 -0
- data/assets/icons/baby.svg +1 -0
- data/assets/icons/backpack.svg +1 -0
- data/assets/icons/baggage-claim.svg +1 -0
- data/assets/icons/banana.svg +1 -0
- data/assets/icons/banknote.svg +1 -0
- data/assets/icons/bar-chart-2.svg +1 -0
- data/assets/icons/bar-chart-3.svg +1 -0
- data/assets/icons/bar-chart-4.svg +1 -0
- data/assets/icons/bar-chart-horizontal.svg +1 -0
- data/assets/icons/bar-chart.svg +1 -0
- data/assets/icons/baseline.svg +1 -0
- data/assets/icons/bath.svg +1 -0
- data/assets/icons/battery-charging.svg +1 -0
- data/assets/icons/battery-full.svg +1 -0
- data/assets/icons/battery-low.svg +1 -0
- data/assets/icons/battery-medium.svg +1 -0
- data/assets/icons/battery-warning.svg +1 -0
- data/assets/icons/battery.svg +1 -0
- data/assets/icons/beaker.svg +1 -0
- data/assets/icons/bean-off.svg +1 -0
- data/assets/icons/bean.svg +1 -0
- data/assets/icons/bed-double.svg +1 -0
- data/assets/icons/bed-single.svg +1 -0
- data/assets/icons/bed.svg +1 -0
- data/assets/icons/beef.svg +1 -0
- data/assets/icons/beer.svg +1 -0
- data/assets/icons/bell-minus.svg +1 -0
- data/assets/icons/bell-off.svg +1 -0
- data/assets/icons/bell-plus.svg +1 -0
- data/assets/icons/bell-ring.svg +1 -0
- data/assets/icons/bell.svg +1 -0
- data/assets/icons/bike.svg +1 -0
- data/assets/icons/binary.svg +1 -0
- data/assets/icons/bird.svg +1 -0
- data/assets/icons/bitcoin.svg +1 -0
- data/assets/icons/blinds.svg +1 -0
- data/assets/icons/bluetooth-connected.svg +1 -0
- data/assets/icons/bluetooth-off.svg +1 -0
- data/assets/icons/bluetooth-searching.svg +1 -0
- data/assets/icons/bluetooth.svg +1 -0
- data/assets/icons/bold.svg +1 -0
- data/assets/icons/bomb.svg +1 -0
- data/assets/icons/bone.svg +1 -0
- data/assets/icons/book-open-check.svg +1 -0
- data/assets/icons/book-open.svg +1 -0
- data/assets/icons/book.svg +1 -0
- data/assets/icons/bookmark-minus.svg +1 -0
- data/assets/icons/bookmark-plus.svg +1 -0
- data/assets/icons/bookmark.svg +1 -0
- data/assets/icons/bot.svg +1 -0
- data/assets/icons/box-select.svg +1 -0
- data/assets/icons/box.svg +1 -0
- data/assets/icons/boxes.svg +1 -0
- data/assets/icons/briefcase.svg +1 -0
- data/assets/icons/brush.svg +1 -0
- data/assets/icons/bug.svg +1 -0
- data/assets/icons/building-2.svg +1 -0
- data/assets/icons/building.svg +1 -0
- data/assets/icons/bus.svg +1 -0
- data/assets/icons/cake.svg +1 -0
- data/assets/icons/calculator.svg +1 -0
- data/assets/icons/calendar-check-2.svg +1 -0
- data/assets/icons/calendar-check.svg +1 -0
- data/assets/icons/calendar-clock.svg +1 -0
- data/assets/icons/calendar-days.svg +1 -0
- data/assets/icons/calendar-heart.svg +1 -0
- data/assets/icons/calendar-minus.svg +1 -0
- data/assets/icons/calendar-off.svg +1 -0
- data/assets/icons/calendar-plus.svg +1 -0
- data/assets/icons/calendar-range.svg +1 -0
- data/assets/icons/calendar-search.svg +1 -0
- data/assets/icons/calendar-x-2.svg +1 -0
- data/assets/icons/calendar-x.svg +1 -0
- data/assets/icons/calendar.svg +1 -0
- data/assets/icons/camera-off.svg +1 -0
- data/assets/icons/camera.svg +1 -0
- data/assets/icons/candy-off.svg +1 -0
- data/assets/icons/candy.svg +1 -0
- data/assets/icons/car.svg +1 -0
- data/assets/icons/carrot.svg +1 -0
- data/assets/icons/cast.svg +1 -0
- data/assets/icons/cat.svg +1 -0
- data/assets/icons/check-check.svg +1 -0
- data/assets/icons/check-circle-2.svg +1 -0
- data/assets/icons/check-circle.svg +1 -0
- data/assets/icons/check-square.svg +1 -0
- data/assets/icons/check.svg +1 -0
- data/assets/icons/chef-hat.svg +1 -0
- data/assets/icons/cherry.svg +1 -0
- data/assets/icons/chevron-down.svg +1 -0
- data/assets/icons/chevron-first.svg +1 -0
- data/assets/icons/chevron-last.svg +1 -0
- data/assets/icons/chevron-left.svg +1 -0
- data/assets/icons/chevron-right.svg +1 -0
- data/assets/icons/chevron-up.svg +1 -0
- data/assets/icons/chevrons-down-up.svg +1 -0
- data/assets/icons/chevrons-down.svg +1 -0
- data/assets/icons/chevrons-left-right.svg +1 -0
- data/assets/icons/chevrons-left.svg +1 -0
- data/assets/icons/chevrons-right-left.svg +1 -0
- data/assets/icons/chevrons-right.svg +1 -0
- data/assets/icons/chevrons-up-down.svg +1 -0
- data/assets/icons/chevrons-up.svg +1 -0
- data/assets/icons/chrome.svg +1 -0
- data/assets/icons/cigarette-off.svg +1 -0
- data/assets/icons/cigarette.svg +1 -0
- data/assets/icons/circle-dot.svg +1 -0
- data/assets/icons/circle-ellipsis.svg +1 -0
- data/assets/icons/circle-slashed.svg +1 -0
- data/assets/icons/circle.svg +1 -0
- data/assets/icons/citrus.svg +1 -0
- data/assets/icons/clapperboard.svg +1 -0
- data/assets/icons/clipboard-check.svg +1 -0
- data/assets/icons/clipboard-copy.svg +1 -0
- data/assets/icons/clipboard-edit.svg +1 -0
- data/assets/icons/clipboard-list.svg +1 -0
- data/assets/icons/clipboard-signature.svg +1 -0
- data/assets/icons/clipboard-type.svg +1 -0
- data/assets/icons/clipboard-x.svg +1 -0
- data/assets/icons/clipboard.svg +1 -0
- data/assets/icons/clock-1.svg +1 -0
- data/assets/icons/clock-10.svg +1 -0
- data/assets/icons/clock-11.svg +1 -0
- data/assets/icons/clock-12.svg +1 -0
- data/assets/icons/clock-2.svg +1 -0
- data/assets/icons/clock-3.svg +1 -0
- data/assets/icons/clock-4.svg +1 -0
- data/assets/icons/clock-5.svg +1 -0
- data/assets/icons/clock-6.svg +1 -0
- data/assets/icons/clock-7.svg +1 -0
- data/assets/icons/clock-8.svg +1 -0
- data/assets/icons/clock-9.svg +1 -0
- data/assets/icons/clock.svg +1 -0
- data/assets/icons/cloud-cog.svg +1 -0
- data/assets/icons/cloud-drizzle.svg +1 -0
- data/assets/icons/cloud-fog.svg +1 -0
- data/assets/icons/cloud-hail.svg +1 -0
- data/assets/icons/cloud-lightning.svg +1 -0
- data/assets/icons/cloud-moon-rain.svg +1 -0
- data/assets/icons/cloud-moon.svg +1 -0
- data/assets/icons/cloud-off.svg +1 -0
- data/assets/icons/cloud-rain-wind.svg +1 -0
- data/assets/icons/cloud-rain.svg +1 -0
- data/assets/icons/cloud-snow.svg +1 -0
- data/assets/icons/cloud-sun-rain.svg +1 -0
- data/assets/icons/cloud-sun.svg +1 -0
- data/assets/icons/cloud.svg +1 -0
- data/assets/icons/cloudy.svg +1 -0
- data/assets/icons/clover.svg +1 -0
- data/assets/icons/code-2.svg +1 -0
- data/assets/icons/code.svg +1 -0
- data/assets/icons/codepen.svg +1 -0
- data/assets/icons/codesandbox.svg +1 -0
- data/assets/icons/coffee.svg +1 -0
- data/assets/icons/cog.svg +1 -0
- data/assets/icons/coins.svg +1 -0
- data/assets/icons/columns.svg +1 -0
- data/assets/icons/command.svg +1 -0
- data/assets/icons/compass.svg +1 -0
- data/assets/icons/component.svg +1 -0
- data/assets/icons/concierge-bell.svg +1 -0
- data/assets/icons/construction.svg +1 -0
- data/assets/icons/contact.svg +1 -0
- data/assets/icons/contrast.svg +1 -0
- data/assets/icons/cookie.svg +1 -0
- data/assets/icons/copy.svg +1 -0
- data/assets/icons/copyleft.svg +1 -0
- data/assets/icons/copyright.svg +1 -0
- data/assets/icons/corner-down-left.svg +1 -0
- data/assets/icons/corner-down-right.svg +1 -0
- data/assets/icons/corner-left-down.svg +1 -0
- data/assets/icons/corner-left-up.svg +1 -0
- data/assets/icons/corner-right-down.svg +1 -0
- data/assets/icons/corner-right-up.svg +1 -0
- data/assets/icons/corner-up-left.svg +1 -0
- data/assets/icons/corner-up-right.svg +1 -0
- data/assets/icons/cpu.svg +1 -0
- data/assets/icons/creative-commons.svg +1 -0
- data/assets/icons/credit-card.svg +1 -0
- data/assets/icons/croissant.svg +1 -0
- data/assets/icons/crop.svg +1 -0
- data/assets/icons/cross.svg +1 -0
- data/assets/icons/crosshair.svg +1 -0
- data/assets/icons/crown.svg +1 -0
- data/assets/icons/cup-soda.svg +1 -0
- data/assets/icons/curly-braces.svg +1 -0
- data/assets/icons/currency.svg +1 -0
- data/assets/icons/database-backup.svg +1 -0
- data/assets/icons/database.svg +1 -0
- data/assets/icons/delete.svg +1 -0
- data/assets/icons/diamond.svg +1 -0
- data/assets/icons/dice-1.svg +1 -0
- data/assets/icons/dice-2.svg +1 -0
- data/assets/icons/dice-3.svg +1 -0
- data/assets/icons/dice-4.svg +1 -0
- data/assets/icons/dice-5.svg +1 -0
- data/assets/icons/dice-6.svg +1 -0
- data/assets/icons/dices.svg +1 -0
- data/assets/icons/diff.svg +1 -0
- data/assets/icons/disc.svg +1 -0
- data/assets/icons/divide-circle.svg +1 -0
- data/assets/icons/divide-square.svg +1 -0
- data/assets/icons/divide.svg +1 -0
- data/assets/icons/dna-off.svg +1 -0
- data/assets/icons/dna.svg +1 -0
- data/assets/icons/dog.svg +1 -0
- data/assets/icons/dollar-sign.svg +1 -0
- data/assets/icons/download-cloud.svg +1 -0
- data/assets/icons/download.svg +1 -0
- data/assets/icons/dribbble.svg +1 -0
- data/assets/icons/droplet.svg +1 -0
- data/assets/icons/droplets.svg +1 -0
- data/assets/icons/drumstick.svg +1 -0
- data/assets/icons/dumbbell.svg +1 -0
- data/assets/icons/ear-off.svg +1 -0
- data/assets/icons/ear.svg +1 -0
- data/assets/icons/edit-2.svg +1 -0
- data/assets/icons/edit-3.svg +1 -0
- data/assets/icons/edit.svg +1 -0
- data/assets/icons/egg-fried.svg +1 -0
- data/assets/icons/egg-off.svg +1 -0
- data/assets/icons/egg.svg +1 -0
- data/assets/icons/equal-not.svg +1 -0
- data/assets/icons/equal.svg +1 -0
- data/assets/icons/eraser.svg +1 -0
- data/assets/icons/euro.svg +1 -0
- data/assets/icons/expand.svg +1 -0
- data/assets/icons/external-link.svg +1 -0
- data/assets/icons/eye-off.svg +1 -0
- data/assets/icons/eye.svg +1 -0
- data/assets/icons/facebook.svg +1 -0
- data/assets/icons/factory.svg +1 -0
- data/assets/icons/fan.svg +1 -0
- data/assets/icons/fast-forward.svg +1 -0
- data/assets/icons/feather.svg +1 -0
- data/assets/icons/figma.svg +1 -0
- data/assets/icons/file-archive.svg +1 -0
- data/assets/icons/file-audio-2.svg +1 -0
- data/assets/icons/file-audio.svg +1 -0
- data/assets/icons/file-axis-3d.svg +1 -0
- data/assets/icons/file-badge-2.svg +1 -0
- data/assets/icons/file-badge.svg +1 -0
- data/assets/icons/file-bar-chart-2.svg +1 -0
- data/assets/icons/file-bar-chart.svg +1 -0
- data/assets/icons/file-box.svg +1 -0
- data/assets/icons/file-check-2.svg +1 -0
- data/assets/icons/file-check.svg +1 -0
- data/assets/icons/file-clock.svg +1 -0
- data/assets/icons/file-code.svg +1 -0
- data/assets/icons/file-cog-2.svg +1 -0
- data/assets/icons/file-cog.svg +1 -0
- data/assets/icons/file-diff.svg +1 -0
- data/assets/icons/file-digit.svg +1 -0
- data/assets/icons/file-down.svg +1 -0
- data/assets/icons/file-edit.svg +1 -0
- data/assets/icons/file-heart.svg +1 -0
- data/assets/icons/file-image.svg +1 -0
- data/assets/icons/file-input.svg +1 -0
- data/assets/icons/file-json-2.svg +1 -0
- data/assets/icons/file-json.svg +1 -0
- data/assets/icons/file-key-2.svg +1 -0
- data/assets/icons/file-key.svg +1 -0
- data/assets/icons/file-line-chart.svg +1 -0
- data/assets/icons/file-lock-2.svg +1 -0
- data/assets/icons/file-lock.svg +1 -0
- data/assets/icons/file-minus-2.svg +1 -0
- data/assets/icons/file-minus.svg +1 -0
- data/assets/icons/file-output.svg +1 -0
- data/assets/icons/file-pie-chart.svg +1 -0
- data/assets/icons/file-plus-2.svg +1 -0
- data/assets/icons/file-plus.svg +1 -0
- data/assets/icons/file-question.svg +1 -0
- data/assets/icons/file-scan.svg +1 -0
- data/assets/icons/file-search-2.svg +1 -0
- data/assets/icons/file-search.svg +1 -0
- data/assets/icons/file-signature.svg +1 -0
- data/assets/icons/file-spreadsheet.svg +1 -0
- data/assets/icons/file-symlink.svg +1 -0
- data/assets/icons/file-terminal.svg +1 -0
- data/assets/icons/file-text.svg +1 -0
- data/assets/icons/file-type-2.svg +1 -0
- data/assets/icons/file-type.svg +1 -0
- data/assets/icons/file-up.svg +1 -0
- data/assets/icons/file-video-2.svg +1 -0
- data/assets/icons/file-video.svg +1 -0
- data/assets/icons/file-volume-2.svg +1 -0
- data/assets/icons/file-volume.svg +1 -0
- data/assets/icons/file-warning.svg +1 -0
- data/assets/icons/file-x-2.svg +1 -0
- data/assets/icons/file-x.svg +1 -0
- data/assets/icons/file.svg +1 -0
- data/assets/icons/files.svg +1 -0
- data/assets/icons/film.svg +1 -0
- data/assets/icons/filter-x.svg +1 -0
- data/assets/icons/filter.svg +1 -0
- data/assets/icons/fingerprint.svg +1 -0
- data/assets/icons/fish-off.svg +1 -0
- data/assets/icons/fish.svg +1 -0
- data/assets/icons/flag-off.svg +1 -0
- data/assets/icons/flag-triangle-left.svg +1 -0
- data/assets/icons/flag-triangle-right.svg +1 -0
- data/assets/icons/flag.svg +1 -0
- data/assets/icons/flame.svg +1 -0
- data/assets/icons/flashlight-off.svg +1 -0
- data/assets/icons/flashlight.svg +1 -0
- data/assets/icons/flask-conical-off.svg +1 -0
- data/assets/icons/flask-conical.svg +1 -0
- data/assets/icons/flask-round.svg +1 -0
- data/assets/icons/flip-horizontal-2.svg +1 -0
- data/assets/icons/flip-horizontal.svg +1 -0
- data/assets/icons/flip-vertical-2.svg +1 -0
- data/assets/icons/flip-vertical.svg +1 -0
- data/assets/icons/flower-2.svg +1 -0
- data/assets/icons/flower.svg +1 -0
- data/assets/icons/focus.svg +1 -0
- data/assets/icons/folder-archive.svg +1 -0
- data/assets/icons/folder-check.svg +1 -0
- data/assets/icons/folder-clock.svg +1 -0
- data/assets/icons/folder-closed.svg +1 -0
- data/assets/icons/folder-cog-2.svg +1 -0
- data/assets/icons/folder-cog.svg +1 -0
- data/assets/icons/folder-down.svg +1 -0
- data/assets/icons/folder-edit.svg +1 -0
- data/assets/icons/folder-heart.svg +1 -0
- data/assets/icons/folder-input.svg +1 -0
- data/assets/icons/folder-key.svg +1 -0
- data/assets/icons/folder-lock.svg +1 -0
- data/assets/icons/folder-minus.svg +1 -0
- data/assets/icons/folder-open.svg +1 -0
- data/assets/icons/folder-output.svg +1 -0
- data/assets/icons/folder-plus.svg +1 -0
- data/assets/icons/folder-search-2.svg +1 -0
- data/assets/icons/folder-search.svg +1 -0
- data/assets/icons/folder-symlink.svg +1 -0
- data/assets/icons/folder-tree.svg +1 -0
- data/assets/icons/folder-up.svg +1 -0
- data/assets/icons/folder-x.svg +1 -0
- data/assets/icons/folder.svg +1 -0
- data/assets/icons/folders.svg +1 -0
- data/assets/icons/footprints.svg +1 -0
- data/assets/icons/forklift.svg +1 -0
- data/assets/icons/form-input.svg +1 -0
- data/assets/icons/forward.svg +1 -0
- data/assets/icons/frame.svg +1 -0
- data/assets/icons/framer.svg +1 -0
- data/assets/icons/frown.svg +1 -0
- data/assets/icons/fuel.svg +1 -0
- data/assets/icons/function-square.svg +1 -0
- data/assets/icons/gamepad-2.svg +1 -0
- data/assets/icons/gamepad.svg +1 -0
- data/assets/icons/gauge.svg +1 -0
- data/assets/icons/gavel.svg +1 -0
- data/assets/icons/gem.svg +1 -0
- data/assets/icons/ghost.svg +1 -0
- data/assets/icons/gift.svg +1 -0
- data/assets/icons/git-branch-plus.svg +1 -0
- data/assets/icons/git-branch.svg +1 -0
- data/assets/icons/git-commit.svg +1 -0
- data/assets/icons/git-compare.svg +1 -0
- data/assets/icons/git-fork.svg +1 -0
- data/assets/icons/git-merge.svg +1 -0
- data/assets/icons/git-pull-request-closed.svg +1 -0
- data/assets/icons/git-pull-request-draft.svg +1 -0
- data/assets/icons/git-pull-request.svg +1 -0
- data/assets/icons/github.svg +1 -0
- data/assets/icons/gitlab.svg +1 -0
- data/assets/icons/glass-water.svg +1 -0
- data/assets/icons/glasses.svg +1 -0
- data/assets/icons/globe-2.svg +1 -0
- data/assets/icons/globe.svg +1 -0
- data/assets/icons/grab.svg +1 -0
- data/assets/icons/graduation-cap.svg +1 -0
- data/assets/icons/grape.svg +1 -0
- data/assets/icons/grid.svg +1 -0
- data/assets/icons/grip-horizontal.svg +1 -0
- data/assets/icons/grip-vertical.svg +1 -0
- data/assets/icons/grip.svg +1 -0
- data/assets/icons/hammer.svg +1 -0
- data/assets/icons/hand-metal.svg +1 -0
- data/assets/icons/hand.svg +1 -0
- data/assets/icons/hard-drive.svg +1 -0
- data/assets/icons/hard-hat.svg +1 -0
- data/assets/icons/hash.svg +1 -0
- data/assets/icons/haze.svg +1 -0
- data/assets/icons/heading-1.svg +1 -0
- data/assets/icons/heading-2.svg +1 -0
- data/assets/icons/heading-3.svg +1 -0
- data/assets/icons/heading-4.svg +1 -0
- data/assets/icons/heading-5.svg +1 -0
- data/assets/icons/heading-6.svg +1 -0
- data/assets/icons/heading.svg +1 -0
- data/assets/icons/headphones.svg +1 -0
- data/assets/icons/heart-crack.svg +1 -0
- data/assets/icons/heart-handshake.svg +1 -0
- data/assets/icons/heart-off.svg +1 -0
- data/assets/icons/heart-pulse.svg +1 -0
- data/assets/icons/heart.svg +1 -0
- data/assets/icons/help-circle.svg +1 -0
- data/assets/icons/helping-hand.svg +1 -0
- data/assets/icons/hexagon.svg +1 -0
- data/assets/icons/highlighter.svg +1 -0
- data/assets/icons/history.svg +1 -0
- data/assets/icons/home.svg +1 -0
- data/assets/icons/hop-off.svg +1 -0
- data/assets/icons/hop.svg +1 -0
- data/assets/icons/hourglass.svg +1 -0
- data/assets/icons/ice-cream-2.svg +1 -0
- data/assets/icons/ice-cream.svg +1 -0
- data/assets/icons/image-minus.svg +1 -0
- data/assets/icons/image-off.svg +1 -0
- data/assets/icons/image-plus.svg +1 -0
- data/assets/icons/image.svg +1 -0
- data/assets/icons/import.svg +1 -0
- data/assets/icons/inbox.svg +1 -0
- data/assets/icons/indent.svg +1 -0
- data/assets/icons/indian-rupee.svg +1 -0
- data/assets/icons/infinity.svg +1 -0
- data/assets/icons/info.svg +1 -0
- data/assets/icons/inspect.svg +1 -0
- data/assets/icons/instagram.svg +1 -0
- data/assets/icons/italic.svg +1 -0
- data/assets/icons/japanese-yen.svg +1 -0
- data/assets/icons/joystick.svg +1 -0
- data/assets/icons/key.svg +1 -0
- data/assets/icons/keyboard.svg +1 -0
- data/assets/icons/lamp-ceiling.svg +1 -0
- data/assets/icons/lamp-desk.svg +1 -0
- data/assets/icons/lamp-floor.svg +1 -0
- data/assets/icons/lamp-wall-down.svg +1 -0
- data/assets/icons/lamp-wall-up.svg +1 -0
- data/assets/icons/lamp.svg +1 -0
- data/assets/icons/landmark.svg +1 -0
- data/assets/icons/languages.svg +1 -0
- data/assets/icons/laptop-2.svg +1 -0
- data/assets/icons/laptop.svg +1 -0
- data/assets/icons/lasso-select.svg +1 -0
- data/assets/icons/lasso.svg +1 -0
- data/assets/icons/laugh.svg +1 -0
- data/assets/icons/layers.svg +1 -0
- data/assets/icons/layout-dashboard.svg +1 -0
- data/assets/icons/layout-grid.svg +1 -0
- data/assets/icons/layout-list.svg +1 -0
- data/assets/icons/layout-template.svg +1 -0
- data/assets/icons/layout.svg +1 -0
- data/assets/icons/leaf.svg +1 -0
- data/assets/icons/library.svg +1 -0
- data/assets/icons/life-buoy.svg +1 -0
- data/assets/icons/lightbulb-off.svg +1 -0
- data/assets/icons/lightbulb.svg +1 -0
- data/assets/icons/line-chart.svg +1 -0
- data/assets/icons/link-2-off.svg +1 -0
- data/assets/icons/link-2.svg +1 -0
- data/assets/icons/link.svg +1 -0
- data/assets/icons/linkedin.svg +1 -0
- data/assets/icons/list-checks.svg +1 -0
- data/assets/icons/list-end.svg +1 -0
- data/assets/icons/list-minus.svg +1 -0
- data/assets/icons/list-music.svg +1 -0
- data/assets/icons/list-ordered.svg +1 -0
- data/assets/icons/list-plus.svg +1 -0
- data/assets/icons/list-start.svg +1 -0
- data/assets/icons/list-video.svg +1 -0
- data/assets/icons/list-x.svg +1 -0
- data/assets/icons/list.svg +1 -0
- data/assets/icons/loader-2.svg +1 -0
- data/assets/icons/loader.svg +1 -0
- data/assets/icons/locate-fixed.svg +1 -0
- data/assets/icons/locate-off.svg +1 -0
- data/assets/icons/locate.svg +1 -0
- data/assets/icons/lock.svg +1 -0
- data/assets/icons/log-in.svg +1 -0
- data/assets/icons/log-out.svg +1 -0
- data/assets/icons/luggage.svg +1 -0
- data/assets/icons/magnet.svg +1 -0
- data/assets/icons/mail-check.svg +1 -0
- data/assets/icons/mail-minus.svg +1 -0
- data/assets/icons/mail-open.svg +1 -0
- data/assets/icons/mail-plus.svg +1 -0
- data/assets/icons/mail-question.svg +1 -0
- data/assets/icons/mail-search.svg +1 -0
- data/assets/icons/mail-warning.svg +1 -0
- data/assets/icons/mail-x.svg +1 -0
- data/assets/icons/mail.svg +1 -0
- data/assets/icons/mails.svg +1 -0
- data/assets/icons/map-pin-off.svg +1 -0
- data/assets/icons/map-pin.svg +1 -0
- data/assets/icons/map.svg +1 -0
- data/assets/icons/martini.svg +1 -0
- data/assets/icons/maximize-2.svg +1 -0
- data/assets/icons/maximize.svg +1 -0
- data/assets/icons/medal.svg +1 -0
- data/assets/icons/megaphone-off.svg +1 -0
- data/assets/icons/megaphone.svg +1 -0
- data/assets/icons/meh.svg +1 -0
- data/assets/icons/menu.svg +1 -0
- data/assets/icons/message-circle.svg +1 -0
- data/assets/icons/message-square.svg +1 -0
- data/assets/icons/mic-2.svg +1 -0
- data/assets/icons/mic-off.svg +1 -0
- data/assets/icons/mic.svg +1 -0
- data/assets/icons/microscope.svg +1 -0
- data/assets/icons/microwave.svg +1 -0
- data/assets/icons/milestone.svg +1 -0
- data/assets/icons/milk-off.svg +1 -0
- data/assets/icons/milk.svg +1 -0
- data/assets/icons/minimize-2.svg +1 -0
- data/assets/icons/minimize.svg +1 -0
- data/assets/icons/minus-circle.svg +1 -0
- data/assets/icons/minus-square.svg +1 -0
- data/assets/icons/minus.svg +1 -0
- data/assets/icons/monitor-off.svg +1 -0
- data/assets/icons/monitor-smartphone.svg +1 -0
- data/assets/icons/monitor-speaker.svg +1 -0
- data/assets/icons/monitor.svg +1 -0
- data/assets/icons/moon.svg +1 -0
- data/assets/icons/more-horizontal.svg +1 -0
- data/assets/icons/more-vertical.svg +1 -0
- data/assets/icons/mountain-snow.svg +1 -0
- data/assets/icons/mountain.svg +1 -0
- data/assets/icons/mouse-pointer-2.svg +1 -0
- data/assets/icons/mouse-pointer-click.svg +1 -0
- data/assets/icons/mouse-pointer.svg +1 -0
- data/assets/icons/mouse.svg +1 -0
- data/assets/icons/move-3d.svg +1 -0
- data/assets/icons/move-diagonal-2.svg +1 -0
- data/assets/icons/move-diagonal.svg +1 -0
- data/assets/icons/move-horizontal.svg +1 -0
- data/assets/icons/move-vertical.svg +1 -0
- data/assets/icons/move.svg +1 -0
- data/assets/icons/music-2.svg +1 -0
- data/assets/icons/music-3.svg +1 -0
- data/assets/icons/music-4.svg +1 -0
- data/assets/icons/music.svg +1 -0
- data/assets/icons/navigation-2-off.svg +1 -0
- data/assets/icons/navigation-2.svg +1 -0
- data/assets/icons/navigation-off.svg +1 -0
- data/assets/icons/navigation.svg +1 -0
- data/assets/icons/network.svg +1 -0
- data/assets/icons/newspaper.svg +1 -0
- data/assets/icons/nfc.svg +1 -0
- data/assets/icons/nut-off.svg +1 -0
- data/assets/icons/nut.svg +1 -0
- data/assets/icons/octagon.svg +1 -0
- data/assets/icons/option.svg +1 -0
- data/assets/icons/outdent.svg +1 -0
- data/assets/icons/package-2.svg +1 -0
- data/assets/icons/package-check.svg +1 -0
- data/assets/icons/package-minus.svg +1 -0
- data/assets/icons/package-open.svg +1 -0
- data/assets/icons/package-plus.svg +1 -0
- data/assets/icons/package-search.svg +1 -0
- data/assets/icons/package-x.svg +1 -0
- data/assets/icons/package.svg +1 -0
- data/assets/icons/paint-bucket.svg +1 -0
- data/assets/icons/paintbrush-2.svg +1 -0
- data/assets/icons/paintbrush.svg +1 -0
- data/assets/icons/palette.svg +1 -0
- data/assets/icons/palmtree.svg +1 -0
- data/assets/icons/paperclip.svg +1 -0
- data/assets/icons/party-popper.svg +1 -0
- data/assets/icons/pause-circle.svg +1 -0
- data/assets/icons/pause-octagon.svg +1 -0
- data/assets/icons/pause.svg +1 -0
- data/assets/icons/pen-tool.svg +1 -0
- data/assets/icons/pencil.svg +1 -0
- data/assets/icons/percent.svg +1 -0
- data/assets/icons/person-standing.svg +1 -0
- data/assets/icons/phone-call.svg +1 -0
- data/assets/icons/phone-forwarded.svg +1 -0
- data/assets/icons/phone-incoming.svg +1 -0
- data/assets/icons/phone-missed.svg +1 -0
- data/assets/icons/phone-off.svg +1 -0
- data/assets/icons/phone-outgoing.svg +1 -0
- data/assets/icons/phone.svg +1 -0
- data/assets/icons/picture-in-picture-2.svg +1 -0
- data/assets/icons/picture-in-picture.svg +1 -0
- data/assets/icons/pie-chart.svg +1 -0
- data/assets/icons/piggy-bank.svg +1 -0
- data/assets/icons/pilcrow.svg +1 -0
- data/assets/icons/pill.svg +1 -0
- data/assets/icons/pin-off.svg +1 -0
- data/assets/icons/pin.svg +1 -0
- data/assets/icons/pipette.svg +1 -0
- data/assets/icons/pizza.svg +1 -0
- data/assets/icons/plane.svg +1 -0
- data/assets/icons/play-circle.svg +1 -0
- data/assets/icons/play.svg +1 -0
- data/assets/icons/plug-2.svg +1 -0
- data/assets/icons/plug-zap.svg +1 -0
- data/assets/icons/plug.svg +1 -0
- data/assets/icons/plus-circle.svg +1 -0
- data/assets/icons/plus-square.svg +1 -0
- data/assets/icons/plus.svg +1 -0
- data/assets/icons/pocket.svg +1 -0
- data/assets/icons/podcast.svg +1 -0
- data/assets/icons/pointer.svg +1 -0
- data/assets/icons/pound-sterling.svg +1 -0
- data/assets/icons/power-off.svg +1 -0
- data/assets/icons/power.svg +1 -0
- data/assets/icons/printer.svg +1 -0
- data/assets/icons/puzzle.svg +1 -0
- data/assets/icons/qr-code.svg +1 -0
- data/assets/icons/quote.svg +1 -0
- data/assets/icons/radio-receiver.svg +1 -0
- data/assets/icons/radio.svg +1 -0
- data/assets/icons/rectangle-horizontal.svg +1 -0
- data/assets/icons/rectangle-vertical.svg +1 -0
- data/assets/icons/recycle.svg +1 -0
- data/assets/icons/redo-2.svg +1 -0
- data/assets/icons/redo.svg +1 -0
- data/assets/icons/refresh-ccw.svg +1 -0
- data/assets/icons/refresh-cw.svg +1 -0
- data/assets/icons/refrigerator.svg +1 -0
- data/assets/icons/regex.svg +1 -0
- data/assets/icons/remove-formatting.svg +1 -0
- data/assets/icons/repeat-1.svg +1 -0
- data/assets/icons/repeat.svg +1 -0
- data/assets/icons/reply-all.svg +1 -0
- data/assets/icons/reply.svg +1 -0
- data/assets/icons/rewind.svg +1 -0
- data/assets/icons/rocket.svg +1 -0
- data/assets/icons/rocking-chair.svg +1 -0
- data/assets/icons/rotate-3d.svg +1 -0
- data/assets/icons/rotate-ccw.svg +1 -0
- data/assets/icons/rotate-cw.svg +1 -0
- data/assets/icons/router.svg +1 -0
- data/assets/icons/rss.svg +1 -0
- data/assets/icons/ruler.svg +1 -0
- data/assets/icons/russian-ruble.svg +1 -0
- data/assets/icons/sailboat.svg +1 -0
- data/assets/icons/salad.svg +1 -0
- data/assets/icons/sandwich.svg +1 -0
- data/assets/icons/save.svg +1 -0
- data/assets/icons/scale-3d.svg +1 -0
- data/assets/icons/scale.svg +1 -0
- data/assets/icons/scaling.svg +1 -0
- data/assets/icons/scan-face.svg +1 -0
- data/assets/icons/scan-line.svg +1 -0
- data/assets/icons/scan.svg +1 -0
- data/assets/icons/scissors.svg +1 -0
- data/assets/icons/screen-share-off.svg +1 -0
- data/assets/icons/screen-share.svg +1 -0
- data/assets/icons/scroll.svg +1 -0
- data/assets/icons/search.svg +1 -0
- data/assets/icons/send.svg +1 -0
- data/assets/icons/separator-horizontal.svg +1 -0
- data/assets/icons/separator-vertical.svg +1 -0
- data/assets/icons/server-cog.svg +1 -0
- data/assets/icons/server-crash.svg +1 -0
- data/assets/icons/server-off.svg +1 -0
- data/assets/icons/server.svg +1 -0
- data/assets/icons/settings-2.svg +1 -0
- data/assets/icons/settings.svg +1 -0
- data/assets/icons/share-2.svg +1 -0
- data/assets/icons/share.svg +1 -0
- data/assets/icons/sheet.svg +1 -0
- data/assets/icons/shield-alert.svg +1 -0
- data/assets/icons/shield-check.svg +1 -0
- data/assets/icons/shield-close.svg +1 -0
- data/assets/icons/shield-off.svg +1 -0
- data/assets/icons/shield.svg +1 -0
- data/assets/icons/ship.svg +1 -0
- data/assets/icons/shirt.svg +1 -0
- data/assets/icons/shopping-bag.svg +1 -0
- data/assets/icons/shopping-cart.svg +1 -0
- data/assets/icons/shovel.svg +1 -0
- data/assets/icons/shower-head.svg +1 -0
- data/assets/icons/shrink.svg +1 -0
- data/assets/icons/shrub.svg +1 -0
- data/assets/icons/shuffle.svg +1 -0
- data/assets/icons/sidebar-close.svg +1 -0
- data/assets/icons/sidebar-open.svg +1 -0
- data/assets/icons/sidebar.svg +1 -0
- data/assets/icons/sigma.svg +1 -0
- data/assets/icons/signal-high.svg +1 -0
- data/assets/icons/signal-low.svg +1 -0
- data/assets/icons/signal-medium.svg +1 -0
- data/assets/icons/signal-zero.svg +1 -0
- data/assets/icons/signal.svg +1 -0
- data/assets/icons/siren.svg +1 -0
- data/assets/icons/skip-back.svg +1 -0
- data/assets/icons/skip-forward.svg +1 -0
- data/assets/icons/skull.svg +1 -0
- data/assets/icons/slack.svg +1 -0
- data/assets/icons/slash.svg +1 -0
- data/assets/icons/slice.svg +1 -0
- data/assets/icons/sliders-horizontal.svg +1 -0
- data/assets/icons/sliders.svg +1 -0
- data/assets/icons/smartphone-charging.svg +1 -0
- data/assets/icons/smartphone-nfc.svg +1 -0
- data/assets/icons/smartphone.svg +1 -0
- data/assets/icons/smile-plus.svg +1 -0
- data/assets/icons/smile.svg +1 -0
- data/assets/icons/snowflake.svg +1 -0
- data/assets/icons/sofa.svg +1 -0
- data/assets/icons/sort-asc.svg +1 -0
- data/assets/icons/sort-desc.svg +1 -0
- data/assets/icons/soup.svg +1 -0
- data/assets/icons/speaker.svg +1 -0
- data/assets/icons/spline.svg +1 -0
- data/assets/icons/split-square-horizontal.svg +1 -0
- data/assets/icons/split-square-vertical.svg +1 -0
- data/assets/icons/sprout.svg +1 -0
- data/assets/icons/square.svg +1 -0
- data/assets/icons/stamp.svg +1 -0
- data/assets/icons/star-half.svg +1 -0
- data/assets/icons/star-off.svg +1 -0
- data/assets/icons/star.svg +1 -0
- data/assets/icons/stethoscope.svg +1 -0
- data/assets/icons/sticker.svg +1 -0
- data/assets/icons/sticky-note.svg +1 -0
- data/assets/icons/stop-circle.svg +1 -0
- data/assets/icons/stretch-horizontal.svg +1 -0
- data/assets/icons/stretch-vertical.svg +1 -0
- data/assets/icons/strikethrough.svg +1 -0
- data/assets/icons/subscript.svg +1 -0
- data/assets/icons/subtitles.svg +1 -0
- data/assets/icons/sun-dim.svg +1 -0
- data/assets/icons/sun-medium.svg +1 -0
- data/assets/icons/sun-moon.svg +1 -0
- data/assets/icons/sun-snow.svg +1 -0
- data/assets/icons/sun.svg +1 -0
- data/assets/icons/sunrise.svg +1 -0
- data/assets/icons/sunset.svg +1 -0
- data/assets/icons/superscript.svg +1 -0
- data/assets/icons/swiss-franc.svg +1 -0
- data/assets/icons/switch-camera.svg +1 -0
- data/assets/icons/sword.svg +1 -0
- data/assets/icons/swords.svg +1 -0
- data/assets/icons/syringe.svg +1 -0
- data/assets/icons/table-2.svg +1 -0
- data/assets/icons/table.svg +1 -0
- data/assets/icons/tablet.svg +1 -0
- data/assets/icons/tablets.svg +1 -0
- data/assets/icons/tag.svg +1 -0
- data/assets/icons/tags.svg +1 -0
- data/assets/icons/target.svg +1 -0
- data/assets/icons/tent.svg +1 -0
- data/assets/icons/terminal-square.svg +1 -0
- data/assets/icons/terminal.svg +1 -0
- data/assets/icons/text-cursor-input.svg +1 -0
- data/assets/icons/text-cursor.svg +1 -0
- data/assets/icons/thermometer-snowflake.svg +1 -0
- data/assets/icons/thermometer-sun.svg +1 -0
- data/assets/icons/thermometer.svg +1 -0
- data/assets/icons/thumbs-down.svg +1 -0
- data/assets/icons/thumbs-up.svg +1 -0
- data/assets/icons/ticket.svg +1 -0
- data/assets/icons/timer-off.svg +1 -0
- data/assets/icons/timer-reset.svg +1 -0
- data/assets/icons/timer.svg +1 -0
- data/assets/icons/toggle-left.svg +1 -0
- data/assets/icons/toggle-right.svg +1 -0
- data/assets/icons/tornado.svg +1 -0
- data/assets/icons/tower-control.svg +1 -0
- data/assets/icons/toy-brick.svg +1 -0
- data/assets/icons/train.svg +1 -0
- data/assets/icons/trash-2.svg +1 -0
- data/assets/icons/trash.svg +1 -0
- data/assets/icons/tree-deciduous.svg +1 -0
- data/assets/icons/tree-pine.svg +1 -0
- data/assets/icons/trees.svg +1 -0
- data/assets/icons/trello.svg +1 -0
- data/assets/icons/trending-down.svg +1 -0
- data/assets/icons/trending-up.svg +1 -0
- data/assets/icons/triangle.svg +1 -0
- data/assets/icons/trophy.svg +1 -0
- data/assets/icons/truck.svg +1 -0
- data/assets/icons/tv-2.svg +1 -0
- data/assets/icons/tv.svg +1 -0
- data/assets/icons/twitch.svg +1 -0
- data/assets/icons/twitter.svg +1 -0
- data/assets/icons/type.svg +1 -0
- data/assets/icons/umbrella.svg +1 -0
- data/assets/icons/underline.svg +1 -0
- data/assets/icons/undo-2.svg +1 -0
- data/assets/icons/undo.svg +1 -0
- data/assets/icons/unlink-2.svg +1 -0
- data/assets/icons/unlink.svg +1 -0
- data/assets/icons/unlock.svg +1 -0
- data/assets/icons/upload-cloud.svg +1 -0
- data/assets/icons/upload.svg +1 -0
- data/assets/icons/usb.svg +1 -0
- data/assets/icons/user-check.svg +1 -0
- data/assets/icons/user-cog.svg +1 -0
- data/assets/icons/user-minus.svg +1 -0
- data/assets/icons/user-plus.svg +1 -0
- data/assets/icons/user-x.svg +1 -0
- data/assets/icons/user.svg +1 -0
- data/assets/icons/users.svg +1 -0
- data/assets/icons/utensils-crossed.svg +1 -0
- data/assets/icons/utensils.svg +1 -0
- data/assets/icons/utility-pole.svg +1 -0
- data/assets/icons/vegan.svg +1 -0
- data/assets/icons/venetian-mask.svg +1 -0
- data/assets/icons/verified.svg +1 -0
- data/assets/icons/vibrate-off.svg +1 -0
- data/assets/icons/vibrate.svg +1 -0
- data/assets/icons/video-off.svg +1 -0
- data/assets/icons/video.svg +1 -0
- data/assets/icons/view.svg +1 -0
- data/assets/icons/voicemail.svg +1 -0
- data/assets/icons/volume-1.svg +1 -0
- data/assets/icons/volume-2.svg +1 -0
- data/assets/icons/volume-x.svg +1 -0
- data/assets/icons/volume.svg +1 -0
- data/assets/icons/vote.svg +1 -0
- data/assets/icons/wallet.svg +1 -0
- data/assets/icons/wand-2.svg +1 -0
- data/assets/icons/wand.svg +1 -0
- data/assets/icons/watch.svg +1 -0
- data/assets/icons/waves.svg +1 -0
- data/assets/icons/webcam.svg +1 -0
- data/assets/icons/webhook.svg +1 -0
- data/assets/icons/wheat-off.svg +1 -0
- data/assets/icons/wheat.svg +1 -0
- data/assets/icons/wifi-off.svg +1 -0
- data/assets/icons/wifi.svg +1 -0
- data/assets/icons/wind.svg +1 -0
- data/assets/icons/wine-off.svg +1 -0
- data/assets/icons/wine.svg +1 -0
- data/assets/icons/wrap-text.svg +1 -0
- data/assets/icons/wrench.svg +1 -0
- data/assets/icons/x-circle.svg +1 -0
- data/assets/icons/x-octagon.svg +1 -0
- data/assets/icons/x-square.svg +1 -0
- data/assets/icons/x.svg +1 -0
- data/assets/icons/youtube.svg +1 -0
- data/assets/icons/zap-off.svg +1 -0
- data/assets/icons/zap.svg +1 -0
- data/assets/icons/zoom-in.svg +1 -0
- data/assets/icons/zoom-out.svg +1 -0
- data/assets/img/favicon_dark.svg +1 -0
- data/assets/img/favicon_light.svg +1 -0
- data/{app/assets/lookbook → assets}/js/app.js +35 -8
- data/{app/assets/lookbook → assets}/js/helpers/dom.js +4 -7
- data/assets/js/helpers/request.js +14 -0
- data/{app/assets/lookbook → assets}/js/helpers/string.js +4 -11
- data/{app/assets/lookbook/js/lookbook.js → assets/js/index.js} +2 -2
- data/assets/js/lib/lookbook.js +125 -0
- data/{app/assets/lookbook → assets}/js/lib/tippy.js +1 -0
- data/assets/js/lookbook-core.js +1 -0
- data/assets/js/lookbook.js +2 -0
- data/config/app.yml +51 -18
- data/config/inputs.yml +2 -2
- data/config/panels.yml +23 -25
- data/config/routes.rb +7 -1
- data/config/tags.yml +10 -2
- data/lib/lookbook/cable/cable.rb +53 -0
- data/lib/lookbook/engine.rb +178 -86
- data/lib/lookbook/entities/collections/concerns/hierarchical_collection.rb +9 -4
- data/lib/lookbook/entities/collections/entity_collection.rb +11 -6
- data/lib/lookbook/entities/collections/page_collection.rb +35 -8
- data/lib/lookbook/entities/collections/preview_collection.rb +51 -17
- data/lib/lookbook/entities/collections/render_target_collection.rb +4 -0
- data/lib/lookbook/entities/collections/scenario_collection.rb +4 -0
- data/lib/lookbook/entities/concerns/annotatable_entity.rb +84 -0
- data/lib/lookbook/entities/concerns/{inspectable.rb → inspectable_entity.rb} +18 -2
- data/lib/lookbook/entities/concerns/locatable_entity.rb +116 -0
- data/lib/lookbook/entities/concerns/navigable_entity.rb +62 -0
- data/lib/lookbook/entities/entity.rb +40 -9
- data/lib/lookbook/entities/page_entity.rb +142 -0
- data/lib/lookbook/entities/{page_section.rb → page_section_entity.rb} +5 -1
- data/lib/lookbook/entities/preview_entity.rb +214 -0
- data/lib/lookbook/entities/renderable_entity.rb +101 -0
- data/lib/lookbook/entities/rendered_scenario_entity.rb +69 -0
- data/lib/lookbook/entities/scenario_entity.rb +182 -0
- data/lib/lookbook/entities/scenario_group_entity.rb +135 -0
- data/lib/lookbook/file_watcher.rb +13 -35
- data/lib/lookbook/helpers/class_names_helper.rb +28 -0
- data/lib/lookbook/helpers/page_helper.rb +43 -0
- data/{app/helpers/lookbook → lib/lookbook/helpers}/preview_helper.rb +3 -0
- data/lib/lookbook/helpers/ui_elements_helper.rb +91 -0
- data/lib/lookbook/param.rb +8 -2
- data/lib/lookbook/preview.rb +85 -0
- data/lib/lookbook/preview_after_render.rb +13 -0
- data/lib/lookbook/preview_controller_actions.rb +64 -0
- data/lib/lookbook/preview_parser.rb +4 -2
- data/lib/lookbook/reloaders.rb +75 -0
- data/lib/lookbook/runtime_context.rb +49 -0
- data/lib/lookbook/services/data/resolvers/data_resolver.rb +5 -7
- data/lib/lookbook/services/entities/page_tree_builder.rb +40 -0
- data/lib/lookbook/services/entities/preview_tree_builder.rb +34 -0
- data/lib/lookbook/services/list_resolver.rb +35 -0
- data/lib/lookbook/services/markdown_renderer.rb +10 -2
- data/lib/lookbook/services/priority_prefix_parser.rb +16 -0
- data/lib/lookbook/services/tags/tag_options_parser.rb +13 -4
- data/lib/lookbook/services/templates/action_view_config_handler.rb +50 -0
- data/lib/lookbook/services/urls/data_uri_encoder.rb +14 -0
- data/lib/lookbook/services/urls/file_data_uri_encoder.rb +24 -0
- data/lib/lookbook/services/urls/search_param_encoder.rb +16 -0
- data/lib/lookbook/services/urls/search_param_parser.rb +7 -6
- data/lib/lookbook/stores/config_store.rb +63 -26
- data/lib/lookbook/stores/hook_store.rb +0 -10
- data/lib/lookbook/stores/input_store.rb +8 -4
- data/lib/lookbook/stores/panel_store.rb +30 -49
- data/lib/lookbook/stores/tag_store.rb +6 -5
- data/lib/lookbook/support/deprecation.rb +5 -0
- data/lib/lookbook/support/errors/config_error.rb +2 -2
- data/lib/lookbook/support/errors/error.rb +64 -0
- data/lib/lookbook/support/errors/parser_error.rb +2 -2
- data/lib/lookbook/support/errors/preview_template_error.rb +7 -0
- data/lib/lookbook/support/errors/routing_error.rb +7 -0
- data/lib/lookbook/support/errors/template_error.rb +7 -0
- data/lib/lookbook/support/evented_file_update_checker.rb +69 -0
- data/lib/lookbook/support/null_websocket.rb +9 -0
- data/lib/lookbook/support/store.rb +10 -1
- data/lib/lookbook/support/tree_node.rb +7 -7
- data/lib/lookbook/support/utils/path_utils.rb +9 -3
- data/lib/lookbook/support/utils/utils.rb +9 -1
- data/lib/lookbook/support/utils/where.rb +49 -0
- data/lib/lookbook/tags/after_render_tag.rb +7 -0
- data/lib/lookbook/tags/param_tag.rb +14 -4
- data/lib/lookbook/tags/{position_tag.rb → priority_tag.rb} +4 -4
- data/lib/lookbook/tags/renders_tag.rb +4 -0
- data/lib/lookbook/tags/tag_provider.rb +3 -0
- data/lib/lookbook/tags/type_tag.rb +7 -0
- data/lib/lookbook/tags/yard_tag.rb +15 -11
- data/lib/lookbook/theme.rb +2 -6
- data/lib/lookbook/version.rb +1 -1
- data/lib/lookbook/websocket.rb +6 -53
- data/lib/lookbook.rb +180 -54
- data/public/lookbook-assets/Inter-italic.var.53a0de5f.woff2 +0 -0
- data/public/lookbook-assets/Inter-italic.var.69eb0fe1.woff2 +0 -0
- data/public/lookbook-assets/Inter-italic.var.736a7044.woff2 +0 -0
- data/public/lookbook-assets/Inter-roman.var.b695afbe.woff2 +0 -0
- data/public/lookbook-assets/Inter-roman.var.d4f9805a.woff2 +0 -0
- data/public/lookbook-assets/Inter-roman.var.fbdd51d0.woff2 +0 -0
- data/public/lookbook-assets/SourceCodeVariable-Italic.cad97b83.otf +0 -0
- data/public/lookbook-assets/SourceCodeVariable-Italic.ttf.09b4354a.woff2 +0 -0
- data/public/lookbook-assets/SourceCodeVariable-Italic.ttf.a93fa22f.woff2 +0 -0
- data/public/lookbook-assets/SourceCodeVariable-Italic.ttf.fcd7e9f4.woff2 +0 -0
- data/public/lookbook-assets/SourceCodeVariable-Roman.185ddb17.otf +0 -0
- data/public/lookbook-assets/SourceCodeVariable-Roman.ttf.118e9f22.woff2 +0 -0
- data/public/lookbook-assets/SourceCodeVariable-Roman.ttf.91043609.woff2 +0 -0
- data/public/lookbook-assets/SourceCodeVariable-Roman.ttf.f1c8fcce.woff2 +0 -0
- data/public/lookbook-assets/css/lookbook.css +1538 -717
- data/public/lookbook-assets/css/lookbook.css.map +1 -1
- data/public/lookbook-assets/css/themes/blue.css +14 -2
- data/public/lookbook-assets/css/themes/blue.css.map +1 -1
- data/public/lookbook-assets/css/themes/green.css +14 -2
- data/public/lookbook-assets/css/themes/green.css.map +1 -1
- data/public/lookbook-assets/css/themes/indigo.css +14 -2
- data/public/lookbook-assets/css/themes/indigo.css.map +1 -1
- data/public/lookbook-assets/css/themes/rose.css +14 -2
- data/public/lookbook-assets/css/themes/rose.css.map +1 -1
- data/public/lookbook-assets/css/themes/zinc.css +14 -2
- data/public/lookbook-assets/css/themes/zinc.css.map +1 -1
- data/public/lookbook-assets/img/lucide-sprite.svg +4960 -0
- data/public/lookbook-assets/js/{embed.js → iframe.js} +196 -195
- data/public/lookbook-assets/js/iframe.js.map +1 -0
- data/public/lookbook-assets/js/index.js +13739 -0
- data/public/lookbook-assets/js/index.js.map +1 -0
- data/public/lookbook-assets/js/lookbook-core.js +87 -0
- data/public/lookbook-assets/js/lookbook.js +248 -12835
- metadata +1057 -118
- data/app/assets/lookbook/js/helpers/request.js +0 -16
- data/app/components/lookbook/embed/component.js +0 -39
- data/app/components/lookbook/icon/component.js +0 -5
- data/app/helpers/lookbook/component_helper.rb +0 -84
- data/app/helpers/lookbook/output_helper.rb +0 -19
- data/app/helpers/lookbook/page_helper.rb +0 -34
- data/app/views/layouts/lookbook/inspector.html.erb +0 -7
- data/app/views/layouts/lookbook/page.html.erb +0 -53
- data/app/views/layouts/lookbook/shell.html.erb +0 -25
- data/app/views/layouts/lookbook/standalone.html.erb +0 -5
- data/app/views/lookbook/404.html.erb +0 -15
- data/app/views/lookbook/error.html.erb +0 -46
- data/app/views/lookbook/preview.html.erb +0 -14
- data/config/hooks.yml +0 -4
- data/lib/lookbook/entities/collections/component_collection.rb +0 -4
- data/lib/lookbook/entities/collections/preview_example_collection.rb +0 -4
- data/lib/lookbook/entities/component.rb +0 -31
- data/lib/lookbook/entities/concerns/annotatable.rb +0 -58
- data/lib/lookbook/entities/concerns/locatable.rb +0 -73
- data/lib/lookbook/entities/concerns/navigable.rb +0 -43
- data/lib/lookbook/entities/page.rb +0 -80
- data/lib/lookbook/entities/preview.rb +0 -87
- data/lib/lookbook/entities/preview_example.rb +0 -104
- data/lib/lookbook/entities/preview_group.rb +0 -52
- data/lib/lookbook/error.rb +0 -120
- data/lib/lookbook/features.rb +0 -24
- data/lib/lookbook/preview_actions.rb +0 -43
- data/lib/lookbook/process.rb +0 -21
- data/lib/lookbook/rendered_example.rb +0 -37
- data/lib/lookbook/services/entities/entity_tree_builder.rb +0 -45
- data/lib/lookbook/services/position_prefix_parser.rb +0 -16
- data/lib/lookbook/services/templates/action_view_annotations_handler.rb +0 -21
- data/lib/lookbook/services/urls/search_param_builder.rb +0 -13
- data/lib/lookbook/support/errors/lookbook_error.rb +0 -21
- data/lib/lookbook/tags/component_tag.rb +0 -13
- data/lib/tasks/lookbook_tasks.rake +0 -10
- data/public/lookbook-assets/css/app.css +0 -2341
- data/public/lookbook-assets/css/app.css.map +0 -11
- data/public/lookbook-assets/css/themes/zinc.css.map.91837.5 +0 -1
- data/public/lookbook-assets/feather-sprite.svg +0 -1
- data/public/lookbook-assets/js/app.js +0 -10862
- data/public/lookbook-assets/js/app.js.map +0 -2571
- data/public/lookbook-assets/js/embed.js.91837.6 +0 -0
- data/public/lookbook-assets/js/embed.js.map +0 -1
- data/public/lookbook-assets/js/lookbook.js.map +0 -1
- /data/{app/assets/lookbook → assets}/js/components/clipboard.js +0 -0
- /data/{app/assets/lookbook → assets}/js/components/params_input.js +0 -0
- /data/{app/assets/lookbook → assets}/js/components/tooltip.js +0 -0
- /data/{app/assets/lookbook → assets}/js/config.js +0 -0
- /data/{app/assets/lookbook → assets}/js/helpers/build.js +0 -0
- /data/{app/assets/lookbook → assets}/js/helpers/layout.js +0 -0
- /data/{app/assets/lookbook/js/embed.js → assets/js/iframe.js} +0 -0
- /data/{app/assets/lookbook → assets}/js/lib/socket.js +0 -0
- /data/{app/assets/lookbook → assets}/js/plugins/logger.js +0 -0
- /data/{app/assets/lookbook → assets}/js/stores/filter.js +0 -0
- /data/{app/assets/lookbook → assets}/js/stores/inspector.js +0 -0
- /data/{app/assets/lookbook → assets}/js/stores/layout.js +0 -0
- /data/{app/assets/lookbook → assets}/js/stores/nav.js +0 -0
- /data/{app/assets/lookbook → assets}/js/stores/pages.js +0 -0
- /data/{app/assets/lookbook → assets}/js/stores/settings.js +0 -0
- /data/{app/assets/lookbook → assets}/js/stores/workbench.js +0 -0
- /data/{app/channels/lookbook → lib/lookbook/cable}/connection.rb +0 -0
- /data/{app/channels/lookbook → lib/lookbook/cable}/reload_channel.rb +0 -0
@@ -1,3 +1,37 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: Inter var;
|
3
|
+
font-weight: 100 900;
|
4
|
+
font-display: swap;
|
5
|
+
font-style: normal;
|
6
|
+
font-named-instance: "Regular";
|
7
|
+
src: url("../Inter-roman.var.b695afbe.woff2") format("woff2");
|
8
|
+
}
|
9
|
+
|
10
|
+
@font-face {
|
11
|
+
font-family: Inter var;
|
12
|
+
font-weight: 100 900;
|
13
|
+
font-display: swap;
|
14
|
+
font-style: italic;
|
15
|
+
font-named-instance: "Italic";
|
16
|
+
src: url("../Inter-italic.var.69eb0fe1.woff2") format("woff2");
|
17
|
+
}
|
18
|
+
|
19
|
+
@font-face {
|
20
|
+
font-family: Source Code Variable;
|
21
|
+
font-weight: 200 900;
|
22
|
+
font-style: normal;
|
23
|
+
font-stretch: normal;
|
24
|
+
src: url("../SourceCodeVariable-Roman.ttf.118e9f22.woff2") format("woff2");
|
25
|
+
}
|
26
|
+
|
27
|
+
@font-face {
|
28
|
+
font-family: Source Code Variable;
|
29
|
+
font-weight: 200 900;
|
30
|
+
font-style: italic;
|
31
|
+
font-stretch: normal;
|
32
|
+
src: url("../SourceCodeVariable-Italic.ttf.09b4354a.woff2") format("woff2");
|
33
|
+
}
|
34
|
+
|
1
35
|
*, :before, :after {
|
2
36
|
box-sizing: border-box;
|
3
37
|
border: 0 solid #e5e7eb;
|
@@ -7,11 +41,13 @@
|
|
7
41
|
--tw-content: "";
|
8
42
|
}
|
9
43
|
|
10
|
-
html {
|
44
|
+
html, :host {
|
11
45
|
-webkit-text-size-adjust: 100%;
|
12
46
|
tab-size: 4;
|
13
47
|
font-feature-settings: normal;
|
14
|
-
font-
|
48
|
+
font-variation-settings: normal;
|
49
|
+
-webkit-tap-highlight-color: transparent;
|
50
|
+
font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
15
51
|
line-height: 1.5;
|
16
52
|
}
|
17
53
|
|
@@ -45,7 +81,9 @@ b, strong {
|
|
45
81
|
}
|
46
82
|
|
47
83
|
code, kbd, samp, pre {
|
48
|
-
font-
|
84
|
+
font-feature-settings: normal;
|
85
|
+
font-variation-settings: normal;
|
86
|
+
font-family: Source Code Variable, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
|
49
87
|
font-size: 1em;
|
50
88
|
}
|
51
89
|
|
@@ -75,10 +113,13 @@ table {
|
|
75
113
|
}
|
76
114
|
|
77
115
|
button, input, optgroup, select, textarea {
|
116
|
+
font-feature-settings: inherit;
|
117
|
+
font-variation-settings: inherit;
|
78
118
|
font-family: inherit;
|
79
119
|
font-size: 100%;
|
80
120
|
font-weight: inherit;
|
81
121
|
line-height: inherit;
|
122
|
+
letter-spacing: inherit;
|
82
123
|
color: inherit;
|
83
124
|
margin: 0;
|
84
125
|
padding: 0;
|
@@ -88,7 +129,7 @@ button, select {
|
|
88
129
|
text-transform: none;
|
89
130
|
}
|
90
131
|
|
91
|
-
button, [type="button"], [type="reset"], [type="submit"] {
|
132
|
+
button, input:where([type="button"]), input:where([type="reset"]), input:where([type="submit"]) {
|
92
133
|
-webkit-appearance: button;
|
93
134
|
background-color: #0000;
|
94
135
|
background-image: none;
|
@@ -106,7 +147,11 @@ progress {
|
|
106
147
|
vertical-align: baseline;
|
107
148
|
}
|
108
149
|
|
109
|
-
::-webkit-inner-spin-button
|
150
|
+
::-webkit-inner-spin-button {
|
151
|
+
height: auto;
|
152
|
+
}
|
153
|
+
|
154
|
+
::-webkit-outer-spin-button {
|
110
155
|
height: auto;
|
111
156
|
}
|
112
157
|
|
@@ -147,6 +192,10 @@ ol, ul, menu {
|
|
147
192
|
list-style: none;
|
148
193
|
}
|
149
194
|
|
195
|
+
dialog {
|
196
|
+
padding: 0;
|
197
|
+
}
|
198
|
+
|
150
199
|
textarea {
|
151
200
|
resize: vertical;
|
152
201
|
}
|
@@ -178,7 +227,7 @@ img, video {
|
|
178
227
|
display: none;
|
179
228
|
}
|
180
229
|
|
181
|
-
[type="text"], [type="email"], [type="url"], [type="password"], [type="number"], [type="date"], [type="datetime-local"], [type="month"], [type="search"], [type="tel"], [type="time"], [type="week"], [multiple], textarea, select {
|
230
|
+
[type="text"], input:where(:not([type])), [type="email"], [type="url"], [type="password"], [type="number"], [type="date"], [type="datetime-local"], [type="month"], [type="search"], [type="tel"], [type="time"], [type="week"], [multiple], textarea, select {
|
182
231
|
appearance: none;
|
183
232
|
--tw-shadow: 0 0 #0000;
|
184
233
|
background-color: #fff;
|
@@ -190,7 +239,7 @@ img, video {
|
|
190
239
|
line-height: 1.5rem;
|
191
240
|
}
|
192
241
|
|
193
|
-
[type="text"]:focus, [type="email"]:focus, [type="url"]:focus, [type="password"]:focus, [type="number"]:focus, [type="date"]:focus, [type="datetime-local"]:focus, [type="month"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="time"]:focus, [type="week"]:focus, [multiple]:focus, textarea:focus, select:focus {
|
242
|
+
[type="text"]:focus, input:where(:not([type])):focus, [type="email"]:focus, [type="url"]:focus, [type="password"]:focus, [type="number"]:focus, [type="date"]:focus, [type="datetime-local"]:focus, [type="month"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="time"]:focus, [type="week"]:focus, [multiple]:focus, textarea:focus, select:focus {
|
194
243
|
outline-offset: 2px;
|
195
244
|
--tw-ring-inset: var(--tw-empty, );
|
196
245
|
--tw-ring-offset-width: 0px;
|
@@ -214,9 +263,54 @@ input::placeholder, textarea::placeholder {
|
|
214
263
|
|
215
264
|
::-webkit-date-and-time-value {
|
216
265
|
min-height: 1.5em;
|
266
|
+
text-align: inherit;
|
267
|
+
}
|
268
|
+
|
269
|
+
::-webkit-datetime-edit {
|
270
|
+
display: inline-flex;
|
271
|
+
}
|
272
|
+
|
273
|
+
::-webkit-datetime-edit {
|
274
|
+
padding-top: 0;
|
275
|
+
padding-bottom: 0;
|
276
|
+
}
|
277
|
+
|
278
|
+
::-webkit-datetime-edit-year-field {
|
279
|
+
padding-top: 0;
|
280
|
+
padding-bottom: 0;
|
281
|
+
}
|
282
|
+
|
283
|
+
::-webkit-datetime-edit-month-field {
|
284
|
+
padding-top: 0;
|
285
|
+
padding-bottom: 0;
|
286
|
+
}
|
287
|
+
|
288
|
+
::-webkit-datetime-edit-day-field {
|
289
|
+
padding-top: 0;
|
290
|
+
padding-bottom: 0;
|
291
|
+
}
|
292
|
+
|
293
|
+
::-webkit-datetime-edit-hour-field {
|
294
|
+
padding-top: 0;
|
295
|
+
padding-bottom: 0;
|
296
|
+
}
|
297
|
+
|
298
|
+
::-webkit-datetime-edit-minute-field {
|
299
|
+
padding-top: 0;
|
300
|
+
padding-bottom: 0;
|
301
|
+
}
|
302
|
+
|
303
|
+
::-webkit-datetime-edit-second-field {
|
304
|
+
padding-top: 0;
|
305
|
+
padding-bottom: 0;
|
306
|
+
}
|
307
|
+
|
308
|
+
::-webkit-datetime-edit-millisecond-field {
|
309
|
+
padding-top: 0;
|
310
|
+
padding-bottom: 0;
|
217
311
|
}
|
218
312
|
|
219
|
-
::-webkit-datetime-edit
|
313
|
+
::-webkit-datetime-edit-meridiem-field {
|
220
314
|
padding-top: 0;
|
221
315
|
padding-bottom: 0;
|
222
316
|
}
|
@@ -230,7 +324,7 @@ select {
|
|
230
324
|
padding-right: 2.5rem;
|
231
325
|
}
|
232
326
|
|
233
|
-
[multiple] {
|
327
|
+
[multiple], [size]:where(select:not([size="1"])) {
|
234
328
|
background-image: initial;
|
235
329
|
background-position: initial;
|
236
330
|
background-repeat: unset;
|
@@ -243,10 +337,7 @@ select {
|
|
243
337
|
appearance: none;
|
244
338
|
print-color-adjust: exact;
|
245
339
|
vertical-align: middle;
|
246
|
-
-webkit-user-select: none;
|
247
340
|
user-select: none;
|
248
|
-
height: 1rem;
|
249
|
-
width: 1rem;
|
250
341
|
color: #2563eb;
|
251
342
|
--tw-shadow: 0 0 #0000;
|
252
343
|
background-color: #fff;
|
@@ -254,6 +345,8 @@ select {
|
|
254
345
|
border-width: 1px;
|
255
346
|
border-color: #6b7280;
|
256
347
|
flex-shrink: 0;
|
348
|
+
width: 1rem;
|
349
|
+
height: 1rem;
|
257
350
|
padding: 0;
|
258
351
|
display: inline-block;
|
259
352
|
}
|
@@ -324,13 +417,14 @@ select {
|
|
324
417
|
}
|
325
418
|
|
326
419
|
[type="file"]:focus {
|
327
|
-
outline: 1px solid
|
420
|
+
outline: 1px solid buttontext;
|
328
421
|
outline: 1px auto -webkit-focus-ring-color;
|
329
422
|
}
|
330
423
|
|
331
424
|
html {
|
332
|
-
height: 100vh;
|
333
425
|
scroll-behavior: smooth;
|
426
|
+
width: 100vw;
|
427
|
+
height: 100vh;
|
334
428
|
}
|
335
429
|
|
336
430
|
@media screen and (prefers-reduced-motion: reduce) {
|
@@ -340,10 +434,9 @@ html {
|
|
340
434
|
}
|
341
435
|
|
342
436
|
body {
|
437
|
+
width: 100vw;
|
343
438
|
color: var(--lookbook-text);
|
344
|
-
|
345
|
-
-moz-osx-font-smoothing: grayscale;
|
346
|
-
font-family: -apple-system, \.SFNSText-Regular, San Francisco, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
|
439
|
+
font-family: Inter var, ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
347
440
|
font-size: .875rem;
|
348
441
|
line-height: 1.25rem;
|
349
442
|
overflow: hidden;
|
@@ -359,8 +452,8 @@ pre[class*="language-"] {
|
|
359
452
|
}
|
360
453
|
|
361
454
|
::-webkit-scrollbar {
|
362
|
-
height: .25rem;
|
363
455
|
width: .25rem;
|
456
|
+
height: .25rem;
|
364
457
|
}
|
365
458
|
|
366
459
|
::-webkit-scrollbar-track {
|
@@ -394,6 +487,9 @@ pre[class*="language-"] {
|
|
394
487
|
--tw-pan-y: ;
|
395
488
|
--tw-pinch-zoom: ;
|
396
489
|
--tw-scroll-snap-strictness: proximity;
|
490
|
+
--tw-gradient-from-position: ;
|
491
|
+
--tw-gradient-via-position: ;
|
492
|
+
--tw-gradient-to-position: ;
|
397
493
|
--tw-ordinal: ;
|
398
494
|
--tw-slashed-zero: ;
|
399
495
|
--tw-numeric-figure: ;
|
@@ -425,6 +521,10 @@ pre[class*="language-"] {
|
|
425
521
|
--tw-backdrop-opacity: ;
|
426
522
|
--tw-backdrop-saturate: ;
|
427
523
|
--tw-backdrop-sepia: ;
|
524
|
+
--tw-contain-size: ;
|
525
|
+
--tw-contain-layout: ;
|
526
|
+
--tw-contain-paint: ;
|
527
|
+
--tw-contain-style: ;
|
428
528
|
}
|
429
529
|
|
430
530
|
.form-input, .form-textarea, .form-select, .form-multiselect {
|
@@ -463,9 +563,54 @@ pre[class*="language-"] {
|
|
463
563
|
|
464
564
|
.form-input::-webkit-date-and-time-value {
|
465
565
|
min-height: 1.5em;
|
566
|
+
text-align: inherit;
|
567
|
+
}
|
568
|
+
|
569
|
+
.form-input::-webkit-datetime-edit {
|
570
|
+
display: inline-flex;
|
571
|
+
}
|
572
|
+
|
573
|
+
.form-input::-webkit-datetime-edit {
|
574
|
+
padding-top: 0;
|
575
|
+
padding-bottom: 0;
|
576
|
+
}
|
577
|
+
|
578
|
+
.form-input::-webkit-datetime-edit-year-field {
|
579
|
+
padding-top: 0;
|
580
|
+
padding-bottom: 0;
|
581
|
+
}
|
582
|
+
|
583
|
+
.form-input::-webkit-datetime-edit-month-field {
|
584
|
+
padding-top: 0;
|
585
|
+
padding-bottom: 0;
|
586
|
+
}
|
587
|
+
|
588
|
+
.form-input::-webkit-datetime-edit-day-field {
|
589
|
+
padding-top: 0;
|
590
|
+
padding-bottom: 0;
|
591
|
+
}
|
592
|
+
|
593
|
+
.form-input::-webkit-datetime-edit-hour-field {
|
594
|
+
padding-top: 0;
|
595
|
+
padding-bottom: 0;
|
596
|
+
}
|
597
|
+
|
598
|
+
.form-input::-webkit-datetime-edit-minute-field {
|
599
|
+
padding-top: 0;
|
600
|
+
padding-bottom: 0;
|
601
|
+
}
|
602
|
+
|
603
|
+
.form-input::-webkit-datetime-edit-second-field {
|
604
|
+
padding-top: 0;
|
605
|
+
padding-bottom: 0;
|
606
|
+
}
|
607
|
+
|
608
|
+
.form-input::-webkit-datetime-edit-millisecond-field {
|
609
|
+
padding-top: 0;
|
610
|
+
padding-bottom: 0;
|
466
611
|
}
|
467
612
|
|
468
|
-
.form-input::-webkit-datetime-edit
|
613
|
+
.form-input::-webkit-datetime-edit-meridiem-field {
|
469
614
|
padding-top: 0;
|
470
615
|
padding-bottom: 0;
|
471
616
|
}
|
@@ -475,12 +620,12 @@ pre[class*="language-"] {
|
|
475
620
|
max-width: 65ch;
|
476
621
|
}
|
477
622
|
|
478
|
-
.prose :where(p):not(:where([class~="not-prose"] *)) {
|
623
|
+
.prose :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
479
624
|
margin-top: 1.25em;
|
480
625
|
margin-bottom: 1.25em;
|
481
626
|
}
|
482
627
|
|
483
|
-
.prose :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
|
628
|
+
.prose :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
484
629
|
color: var(--tw-prose-lead);
|
485
630
|
margin-top: 1.2em;
|
486
631
|
margin-bottom: 1.2em;
|
@@ -488,116 +633,114 @@ pre[class*="language-"] {
|
|
488
633
|
line-height: 1.6;
|
489
634
|
}
|
490
635
|
|
491
|
-
.prose :where(a):not(:where([class~="not-prose"] *)) {
|
636
|
+
.prose :where(a):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
492
637
|
color: var(--tw-prose-links);
|
493
638
|
font-weight: 500;
|
494
639
|
text-decoration: underline;
|
495
640
|
}
|
496
641
|
|
497
|
-
.prose :where(strong):not(:where([class~="not-prose"] *)) {
|
642
|
+
.prose :where(strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
498
643
|
color: var(--tw-prose-bold);
|
499
644
|
font-weight: 600;
|
500
645
|
}
|
501
646
|
|
502
|
-
.prose :where(a strong):not(:where([class~="not-prose"] *)) {
|
503
|
-
color: inherit;
|
504
|
-
}
|
505
|
-
|
506
|
-
.prose :where(blockquote strong):not(:where([class~="not-prose"] *)) {
|
647
|
+
.prose :where(a strong):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(blockquote strong):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(thead th strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
507
648
|
color: inherit;
|
508
649
|
}
|
509
650
|
|
510
|
-
.prose :where(
|
511
|
-
color: inherit;
|
512
|
-
}
|
513
|
-
|
514
|
-
.prose :where(ol):not(:where([class~="not-prose"] *)) {
|
651
|
+
.prose :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
515
652
|
margin-top: 1.25em;
|
516
653
|
margin-bottom: 1.25em;
|
517
|
-
padding-
|
654
|
+
padding-inline-start: 1.625em;
|
518
655
|
list-style-type: decimal;
|
519
656
|
}
|
520
657
|
|
521
|
-
.prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)) {
|
658
|
+
.prose :where(ol[type="A"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
522
659
|
list-style-type: upper-alpha;
|
523
660
|
}
|
524
661
|
|
525
|
-
.prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)) {
|
662
|
+
.prose :where(ol[type="a"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
526
663
|
list-style-type: lower-alpha;
|
527
664
|
}
|
528
665
|
|
529
|
-
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)) {
|
666
|
+
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
530
667
|
list-style-type: upper-alpha;
|
531
668
|
}
|
532
669
|
|
533
|
-
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)) {
|
670
|
+
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
534
671
|
list-style-type: lower-alpha;
|
535
672
|
}
|
536
673
|
|
537
|
-
.prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)) {
|
674
|
+
.prose :where(ol[type="I"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
538
675
|
list-style-type: upper-roman;
|
539
676
|
}
|
540
677
|
|
541
|
-
.prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)) {
|
678
|
+
.prose :where(ol[type="i"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
542
679
|
list-style-type: lower-roman;
|
543
680
|
}
|
544
681
|
|
545
|
-
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)) {
|
682
|
+
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
546
683
|
list-style-type: upper-roman;
|
547
684
|
}
|
548
685
|
|
549
|
-
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)) {
|
686
|
+
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
550
687
|
list-style-type: lower-roman;
|
551
688
|
}
|
552
689
|
|
553
|
-
.prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)) {
|
690
|
+
.prose :where(ol[type="1"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
554
691
|
list-style-type: decimal;
|
555
692
|
}
|
556
693
|
|
557
|
-
.prose :where(ul):not(:where([class~="not-prose"] *)) {
|
694
|
+
.prose :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
558
695
|
margin-top: 1.25em;
|
559
696
|
margin-bottom: 1.25em;
|
560
|
-
padding-
|
697
|
+
padding-inline-start: 1.625em;
|
561
698
|
list-style-type: disc;
|
562
699
|
}
|
563
700
|
|
564
|
-
.prose :where(ol > li):not(:where([class~="not-prose"] *))::marker {
|
701
|
+
.prose :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *))::marker {
|
565
702
|
color: var(--tw-prose-counters);
|
566
703
|
font-weight: 400;
|
567
704
|
}
|
568
705
|
|
569
|
-
.prose :where(ul > li):not(:where([class~="not-prose"] *))::marker {
|
706
|
+
.prose :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *))::marker {
|
570
707
|
color: var(--tw-prose-bullets);
|
571
708
|
}
|
572
709
|
|
573
|
-
.prose :where(
|
710
|
+
.prose :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
711
|
+
color: var(--tw-prose-headings);
|
712
|
+
margin-top: 1.25em;
|
713
|
+
font-weight: 600;
|
714
|
+
}
|
715
|
+
|
716
|
+
.prose :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
574
717
|
border-color: var(--tw-prose-hr);
|
575
718
|
border-top-width: 1px;
|
576
719
|
margin-top: 3em;
|
577
720
|
margin-bottom: 3em;
|
578
721
|
}
|
579
722
|
|
580
|
-
.prose :where(blockquote):not(:where([class~="not-prose"] *)) {
|
723
|
+
.prose :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
581
724
|
color: var(--tw-prose-quotes);
|
582
|
-
border-
|
583
|
-
border-
|
725
|
+
border-inline-start-width: .25rem;
|
726
|
+
border-inline-start-color: var(--tw-prose-quote-borders);
|
584
727
|
quotes: "“""”""‘""’";
|
585
728
|
margin-top: 1.6em;
|
586
729
|
margin-bottom: 1.6em;
|
587
|
-
padding-
|
730
|
+
padding-inline-start: 1em;
|
588
731
|
font-style: italic;
|
589
732
|
font-weight: 500;
|
590
733
|
}
|
591
734
|
|
592
|
-
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *)):before {
|
735
|
+
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"], [class~="not-prose"] *)):before {
|
593
736
|
content: open-quote;
|
594
737
|
}
|
595
738
|
|
596
|
-
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *)):after {
|
739
|
+
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"], [class~="not-prose"] *)):after {
|
597
740
|
content: close-quote;
|
598
741
|
}
|
599
742
|
|
600
|
-
.prose :where(h1):not(:where([class~="not-prose"] *)) {
|
743
|
+
.prose :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
601
744
|
color: var(--tw-prose-headings);
|
602
745
|
margin-top: 0;
|
603
746
|
margin-bottom: .888889em;
|
@@ -606,12 +749,12 @@ pre[class*="language-"] {
|
|
606
749
|
line-height: 1.11111;
|
607
750
|
}
|
608
751
|
|
609
|
-
.prose :where(h1 strong):not(:where([class~="not-prose"] *)) {
|
752
|
+
.prose :where(h1 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
610
753
|
color: inherit;
|
611
754
|
font-weight: 900;
|
612
755
|
}
|
613
756
|
|
614
|
-
.prose :where(h2):not(:where([class~="not-prose"] *)) {
|
757
|
+
.prose :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
615
758
|
color: var(--tw-prose-headings);
|
616
759
|
margin-top: 2em;
|
617
760
|
margin-bottom: 1em;
|
@@ -620,12 +763,12 @@ pre[class*="language-"] {
|
|
620
763
|
line-height: 1.33333;
|
621
764
|
}
|
622
765
|
|
623
|
-
.prose :where(h2 strong):not(:where([class~="not-prose"] *)) {
|
766
|
+
.prose :where(h2 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
624
767
|
color: inherit;
|
625
768
|
font-weight: 800;
|
626
769
|
}
|
627
770
|
|
628
|
-
.prose :where(h3):not(:where([class~="not-prose"] *)) {
|
771
|
+
.prose :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
629
772
|
color: var(--tw-prose-headings);
|
630
773
|
margin-top: 1.6em;
|
631
774
|
margin-bottom: .6em;
|
@@ -634,12 +777,12 @@ pre[class*="language-"] {
|
|
634
777
|
line-height: 1.6;
|
635
778
|
}
|
636
779
|
|
637
|
-
.prose :where(h3 strong):not(:where([class~="not-prose"] *)) {
|
780
|
+
.prose :where(h3 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
638
781
|
color: inherit;
|
639
782
|
font-weight: 700;
|
640
783
|
}
|
641
784
|
|
642
|
-
.prose :where(h4):not(:where([class~="not-prose"] *)) {
|
785
|
+
.prose :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
643
786
|
color: var(--tw-prose-headings);
|
644
787
|
margin-top: 1.5em;
|
645
788
|
margin-bottom: .5em;
|
@@ -647,82 +790,85 @@ pre[class*="language-"] {
|
|
647
790
|
line-height: 1.5;
|
648
791
|
}
|
649
792
|
|
650
|
-
.prose :where(h4 strong):not(:where([class~="not-prose"] *)) {
|
793
|
+
.prose :where(h4 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
651
794
|
color: inherit;
|
652
795
|
font-weight: 700;
|
653
796
|
}
|
654
797
|
|
655
|
-
.prose :where(img):not(:where([class~="not-prose"] *)) {
|
798
|
+
.prose :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
656
799
|
margin-top: 2em;
|
657
800
|
margin-bottom: 2em;
|
658
801
|
}
|
659
802
|
|
660
|
-
.prose :where(
|
661
|
-
margin-top:
|
662
|
-
margin-bottom:
|
803
|
+
.prose :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
804
|
+
margin-top: 2em;
|
805
|
+
margin-bottom: 2em;
|
806
|
+
display: block;
|
663
807
|
}
|
664
808
|
|
665
|
-
.prose :where(
|
666
|
-
|
667
|
-
margin-
|
809
|
+
.prose :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
810
|
+
margin-top: 2em;
|
811
|
+
margin-bottom: 2em;
|
812
|
+
}
|
813
|
+
|
814
|
+
.prose :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
815
|
+
color: var(--tw-prose-kbd);
|
816
|
+
box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
|
817
|
+
padding-top: .1875em;
|
818
|
+
padding-inline-end: .375em;
|
819
|
+
padding-bottom: .1875em;
|
820
|
+
border-radius: .3125rem;
|
821
|
+
padding-inline-start: .375em;
|
822
|
+
font-family: inherit;
|
668
823
|
font-size: .875em;
|
669
|
-
|
824
|
+
font-weight: 500;
|
670
825
|
}
|
671
826
|
|
672
|
-
.prose :where(code):not(:where([class~="not-prose"] *)) {
|
827
|
+
.prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
673
828
|
color: var(--tw-prose-code);
|
674
829
|
font-size: .875em;
|
675
830
|
font-weight: 600;
|
676
831
|
}
|
677
832
|
|
678
|
-
.prose :where(code):not(:where([class~="not-prose"] *)):before, .prose :where(code):not(:where([class~="not-prose"] *)):after {
|
833
|
+
.prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)):before, .prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)):after {
|
679
834
|
content: "`";
|
680
835
|
}
|
681
836
|
|
682
|
-
.prose :where(a code):not(:where([class~="not-prose"] *)) {
|
683
|
-
color: inherit;
|
684
|
-
}
|
685
|
-
|
686
|
-
.prose :where(h1 code):not(:where([class~="not-prose"] *)) {
|
837
|
+
.prose :where(a code):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(h1 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
687
838
|
color: inherit;
|
688
839
|
}
|
689
840
|
|
690
|
-
.prose :where(h2 code):not(:where([class~="not-prose"] *)) {
|
841
|
+
.prose :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
691
842
|
color: inherit;
|
692
843
|
font-size: .875em;
|
693
844
|
}
|
694
845
|
|
695
|
-
.prose :where(h3 code):not(:where([class~="not-prose"] *)) {
|
846
|
+
.prose :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
696
847
|
color: inherit;
|
697
848
|
font-size: .9em;
|
698
849
|
}
|
699
850
|
|
700
|
-
.prose :where(h4 code):not(:where([class~="not-prose"] *)) {
|
701
|
-
color: inherit;
|
702
|
-
}
|
703
|
-
|
704
|
-
.prose :where(blockquote code):not(:where([class~="not-prose"] *)) {
|
851
|
+
.prose :where(h4 code):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(blockquote code):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(thead th code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
705
852
|
color: inherit;
|
706
853
|
}
|
707
854
|
|
708
|
-
.prose :where(
|
709
|
-
color: inherit;
|
710
|
-
}
|
711
|
-
|
712
|
-
.prose :where(pre):not(:where([class~="not-prose"] *)) {
|
855
|
+
.prose :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
713
856
|
color: var(--tw-prose-pre-code);
|
714
857
|
background-color: var(--tw-prose-pre-bg);
|
858
|
+
padding-top: .857143em;
|
859
|
+
padding-inline-end: 1.14286em;
|
860
|
+
padding-bottom: .857143em;
|
715
861
|
border-radius: .375rem;
|
716
862
|
margin-top: 1.71429em;
|
717
863
|
margin-bottom: 1.71429em;
|
718
|
-
padding:
|
864
|
+
padding-inline-start: 1.14286em;
|
719
865
|
font-size: .875em;
|
720
866
|
font-weight: 400;
|
721
867
|
line-height: 1.71429;
|
722
868
|
overflow-x: auto;
|
723
869
|
}
|
724
870
|
|
725
|
-
.prose :where(pre code):not(:where([class~="not-prose"] *)) {
|
871
|
+
.prose :where(pre code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
726
872
|
font-weight: inherit;
|
727
873
|
color: inherit;
|
728
874
|
font-size: inherit;
|
@@ -734,56 +880,71 @@ pre[class*="language-"] {
|
|
734
880
|
padding: 0;
|
735
881
|
}
|
736
882
|
|
737
|
-
.prose :where(pre code):not(:where([class~="not-prose"] *)):before, .prose :where(pre code):not(:where([class~="not-prose"] *)):after {
|
883
|
+
.prose :where(pre code):not(:where([class~="not-prose"], [class~="not-prose"] *)):before, .prose :where(pre code):not(:where([class~="not-prose"], [class~="not-prose"] *)):after {
|
738
884
|
content: none;
|
739
885
|
}
|
740
886
|
|
741
|
-
.prose :where(table):not(:where([class~="not-prose"] *)) {
|
742
|
-
width: 100%;
|
887
|
+
.prose :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
743
888
|
table-layout: auto;
|
744
|
-
|
889
|
+
width: 100%;
|
745
890
|
margin-top: 2em;
|
746
891
|
margin-bottom: 2em;
|
747
892
|
font-size: .875em;
|
748
893
|
line-height: 1.71429;
|
749
894
|
}
|
750
895
|
|
751
|
-
.prose :where(thead):not(:where([class~="not-prose"] *)) {
|
896
|
+
.prose :where(thead):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
752
897
|
border-bottom-width: 1px;
|
753
898
|
border-bottom-color: var(--tw-prose-th-borders);
|
754
899
|
}
|
755
900
|
|
756
|
-
.prose :where(thead th):not(:where([class~="not-prose"] *)) {
|
901
|
+
.prose :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
757
902
|
color: var(--tw-prose-headings);
|
758
903
|
vertical-align: bottom;
|
904
|
+
padding-inline-end: .571429em;
|
759
905
|
padding-bottom: .571429em;
|
760
|
-
padding-
|
761
|
-
padding-right: .571429em;
|
906
|
+
padding-inline-start: .571429em;
|
762
907
|
font-weight: 600;
|
763
908
|
}
|
764
909
|
|
765
|
-
.prose :where(tbody tr):not(:where([class~="not-prose"] *)) {
|
910
|
+
.prose :where(tbody tr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
766
911
|
border-bottom-width: 1px;
|
767
912
|
border-bottom-color: var(--tw-prose-td-borders);
|
768
913
|
}
|
769
914
|
|
770
|
-
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)) {
|
915
|
+
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
771
916
|
border-bottom-width: 0;
|
772
917
|
}
|
773
918
|
|
774
|
-
.prose :where(tbody td):not(:where([class~="not-prose"] *)) {
|
919
|
+
.prose :where(tbody td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
775
920
|
vertical-align: baseline;
|
776
921
|
}
|
777
922
|
|
778
|
-
.prose :where(tfoot):not(:where([class~="not-prose"] *)) {
|
923
|
+
.prose :where(tfoot):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
779
924
|
border-top-width: 1px;
|
780
925
|
border-top-color: var(--tw-prose-th-borders);
|
781
926
|
}
|
782
927
|
|
783
|
-
.prose :where(tfoot td):not(:where([class~="not-prose"] *)) {
|
928
|
+
.prose :where(tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
784
929
|
vertical-align: top;
|
785
930
|
}
|
786
931
|
|
932
|
+
.prose :where(th, td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
933
|
+
text-align: start;
|
934
|
+
}
|
935
|
+
|
936
|
+
.prose :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
937
|
+
margin-top: 0;
|
938
|
+
margin-bottom: 0;
|
939
|
+
}
|
940
|
+
|
941
|
+
.prose :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
942
|
+
color: var(--tw-prose-captions);
|
943
|
+
margin-top: .857143em;
|
944
|
+
font-size: .875em;
|
945
|
+
line-height: 1.42857;
|
946
|
+
}
|
947
|
+
|
787
948
|
.prose {
|
788
949
|
--tw-prose-body: #374151;
|
789
950
|
--tw-prose-headings: #111827;
|
@@ -796,6 +957,8 @@ pre[class*="language-"] {
|
|
796
957
|
--tw-prose-quotes: #111827;
|
797
958
|
--tw-prose-quote-borders: #e5e7eb;
|
798
959
|
--tw-prose-captions: #6b7280;
|
960
|
+
--tw-prose-kbd: #111827;
|
961
|
+
--tw-prose-kbd-shadows: 17 24 39;
|
799
962
|
--tw-prose-code: #111827;
|
800
963
|
--tw-prose-pre-code: #e5e7eb;
|
801
964
|
--tw-prose-pre-bg: #1f2937;
|
@@ -812,6 +975,8 @@ pre[class*="language-"] {
|
|
812
975
|
--tw-prose-invert-quotes: #f3f4f6;
|
813
976
|
--tw-prose-invert-quote-borders: #374151;
|
814
977
|
--tw-prose-invert-captions: #9ca3af;
|
978
|
+
--tw-prose-invert-kbd: #fff;
|
979
|
+
--tw-prose-invert-kbd-shadows: 255 255 255;
|
815
980
|
--tw-prose-invert-code: #fff;
|
816
981
|
--tw-prose-invert-pre-code: #d1d5db;
|
817
982
|
--tw-prose-invert-pre-bg: #00000080;
|
@@ -821,96 +986,93 @@ pre[class*="language-"] {
|
|
821
986
|
line-height: 1.75;
|
822
987
|
}
|
823
988
|
|
824
|
-
.prose :where(
|
825
|
-
margin-top:
|
826
|
-
margin-bottom:
|
827
|
-
}
|
828
|
-
|
829
|
-
.prose :where(figure):not(:where([class~="not-prose"] *)) {
|
830
|
-
margin-top: 2em;
|
831
|
-
margin-bottom: 2em;
|
989
|
+
.prose :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
990
|
+
margin-top: 0;
|
991
|
+
margin-bottom: 0;
|
832
992
|
}
|
833
993
|
|
834
|
-
.prose :where(li):not(:where([class~="not-prose"] *)) {
|
994
|
+
.prose :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
835
995
|
margin-top: .5em;
|
836
996
|
margin-bottom: .5em;
|
837
997
|
}
|
838
998
|
|
839
|
-
.prose :where(ol > li):not(:where([class~="not-prose"] *)) {
|
840
|
-
padding-
|
841
|
-
}
|
842
|
-
|
843
|
-
.prose :where(ul > li):not(:where([class~="not-prose"] *)) {
|
844
|
-
padding-left: .375em;
|
999
|
+
.prose :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1000
|
+
padding-inline-start: .375em;
|
845
1001
|
}
|
846
1002
|
|
847
|
-
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
|
1003
|
+
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
848
1004
|
margin-top: .75em;
|
849
1005
|
margin-bottom: .75em;
|
850
1006
|
}
|
851
1007
|
|
852
|
-
.prose :where(.prose > ul > li > :first-child):not(:where([class~="not-prose"] *)) {
|
1008
|
+
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
853
1009
|
margin-top: 1.25em;
|
854
1010
|
}
|
855
1011
|
|
856
|
-
.prose :where(.prose > ul > li > :last-child):not(:where([class~="not-prose"] *)) {
|
1012
|
+
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
857
1013
|
margin-bottom: 1.25em;
|
858
1014
|
}
|
859
1015
|
|
860
|
-
.prose :where(.prose > ol > li > :first-child):not(:where([class~="not-prose"] *)) {
|
1016
|
+
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
861
1017
|
margin-top: 1.25em;
|
862
1018
|
}
|
863
1019
|
|
864
|
-
.prose :where(.prose > ol > li > :last-child):not(:where([class~="not-prose"] *)) {
|
1020
|
+
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
865
1021
|
margin-bottom: 1.25em;
|
866
1022
|
}
|
867
1023
|
|
868
|
-
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
|
1024
|
+
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
869
1025
|
margin-top: .75em;
|
870
1026
|
margin-bottom: .75em;
|
871
1027
|
}
|
872
1028
|
|
873
|
-
.prose :where(
|
874
|
-
margin-top:
|
1029
|
+
.prose :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1030
|
+
margin-top: 1.25em;
|
1031
|
+
margin-bottom: 1.25em;
|
875
1032
|
}
|
876
1033
|
|
877
|
-
.prose :where(
|
878
|
-
margin-top:
|
1034
|
+
.prose :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1035
|
+
margin-top: .5em;
|
1036
|
+
padding-inline-start: 1.625em;
|
879
1037
|
}
|
880
1038
|
|
881
|
-
.prose :where(h3 + *):not(:where([class~="not-prose"] *)) {
|
1039
|
+
.prose :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
882
1040
|
margin-top: 0;
|
883
1041
|
}
|
884
1042
|
|
885
|
-
.prose :where(
|
886
|
-
|
1043
|
+
.prose :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1044
|
+
padding-inline-start: 0;
|
887
1045
|
}
|
888
1046
|
|
889
|
-
.prose :where(thead th:
|
890
|
-
padding-
|
1047
|
+
.prose :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1048
|
+
padding-inline-end: 0;
|
891
1049
|
}
|
892
1050
|
|
893
|
-
.prose :where(
|
894
|
-
padding-
|
1051
|
+
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1052
|
+
padding-top: .571429em;
|
1053
|
+
padding-inline-end: .571429em;
|
1054
|
+
padding-bottom: .571429em;
|
1055
|
+
padding-inline-start: .571429em;
|
895
1056
|
}
|
896
1057
|
|
897
|
-
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
|
898
|
-
padding:
|
1058
|
+
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1059
|
+
padding-inline-start: 0;
|
899
1060
|
}
|
900
1061
|
|
901
|
-
.prose :where(tbody td:
|
902
|
-
padding-
|
1062
|
+
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1063
|
+
padding-inline-end: 0;
|
903
1064
|
}
|
904
1065
|
|
905
|
-
.prose :where(
|
906
|
-
|
1066
|
+
.prose :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1067
|
+
margin-top: 2em;
|
1068
|
+
margin-bottom: 2em;
|
907
1069
|
}
|
908
1070
|
|
909
|
-
.prose :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
|
1071
|
+
.prose :where(.prose > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
910
1072
|
margin-top: 0;
|
911
1073
|
}
|
912
1074
|
|
913
|
-
.prose :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
|
1075
|
+
.prose :where(.prose > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
914
1076
|
margin-bottom: 0;
|
915
1077
|
}
|
916
1078
|
|
@@ -919,206 +1081,218 @@ pre[class*="language-"] {
|
|
919
1081
|
line-height: 1.71429;
|
920
1082
|
}
|
921
1083
|
|
922
|
-
.prose-sm :where(p):not(:where([class~="not-prose"] *)) {
|
1084
|
+
.prose-sm :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
923
1085
|
margin-top: 1.14286em;
|
924
1086
|
margin-bottom: 1.14286em;
|
925
1087
|
}
|
926
1088
|
|
927
|
-
.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
|
1089
|
+
.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
928
1090
|
margin-top: .888889em;
|
929
1091
|
margin-bottom: .888889em;
|
930
1092
|
font-size: 1.28571em;
|
931
1093
|
line-height: 1.55556;
|
932
1094
|
}
|
933
1095
|
|
934
|
-
.prose-sm :where(blockquote):not(:where([class~="not-prose"] *)) {
|
1096
|
+
.prose-sm :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
935
1097
|
margin-top: 1.33333em;
|
936
1098
|
margin-bottom: 1.33333em;
|
937
|
-
padding-
|
1099
|
+
padding-inline-start: 1.11111em;
|
938
1100
|
}
|
939
1101
|
|
940
|
-
.prose-sm :where(h1):not(:where([class~="not-prose"] *)) {
|
1102
|
+
.prose-sm :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
941
1103
|
margin-top: 0;
|
942
1104
|
margin-bottom: .8em;
|
943
1105
|
font-size: 2.14286em;
|
944
1106
|
line-height: 1.2;
|
945
1107
|
}
|
946
1108
|
|
947
|
-
.prose-sm :where(h2):not(:where([class~="not-prose"] *)) {
|
1109
|
+
.prose-sm :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
948
1110
|
margin-top: 1.6em;
|
949
1111
|
margin-bottom: .8em;
|
950
1112
|
font-size: 1.42857em;
|
951
1113
|
line-height: 1.4;
|
952
1114
|
}
|
953
1115
|
|
954
|
-
.prose-sm :where(h3):not(:where([class~="not-prose"] *)) {
|
1116
|
+
.prose-sm :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
955
1117
|
margin-top: 1.55556em;
|
956
1118
|
margin-bottom: .444444em;
|
957
1119
|
font-size: 1.28571em;
|
958
1120
|
line-height: 1.55556;
|
959
1121
|
}
|
960
1122
|
|
961
|
-
.prose-sm :where(h4):not(:where([class~="not-prose"] *)) {
|
1123
|
+
.prose-sm :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
962
1124
|
margin-top: 1.42857em;
|
963
1125
|
margin-bottom: .571429em;
|
964
1126
|
line-height: 1.42857;
|
965
1127
|
}
|
966
1128
|
|
967
|
-
.prose-sm :where(img):not(:where([class~="not-prose"] *)) {
|
1129
|
+
.prose-sm :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
968
1130
|
margin-top: 1.71429em;
|
969
1131
|
margin-bottom: 1.71429em;
|
970
1132
|
}
|
971
1133
|
|
972
|
-
.prose-sm :where(
|
973
|
-
margin-top:
|
974
|
-
margin-bottom:
|
1134
|
+
.prose-sm :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1135
|
+
margin-top: 0;
|
1136
|
+
margin-bottom: 0;
|
975
1137
|
}
|
976
1138
|
|
977
|
-
.prose-sm :where(
|
1139
|
+
.prose-sm :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
978
1140
|
margin-top: 1.71429em;
|
979
1141
|
margin-bottom: 1.71429em;
|
980
1142
|
}
|
981
1143
|
|
982
|
-
.prose-sm :where(
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
margin-top: .666667em;
|
1144
|
+
.prose-sm :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1145
|
+
padding-top: .142857em;
|
1146
|
+
padding-inline-end: .357143em;
|
1147
|
+
padding-bottom: .142857em;
|
1148
|
+
border-radius: .3125rem;
|
1149
|
+
padding-inline-start: .357143em;
|
989
1150
|
font-size: .857143em;
|
990
|
-
line-height: 1.33333;
|
991
1151
|
}
|
992
1152
|
|
993
|
-
.prose-sm :where(code):not(:where([class~="not-prose"] *)) {
|
1153
|
+
.prose-sm :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
994
1154
|
font-size: .857143em;
|
995
1155
|
}
|
996
1156
|
|
997
|
-
.prose-sm :where(h2 code):not(:where([class~="not-prose"] *)) {
|
1157
|
+
.prose-sm :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
998
1158
|
font-size: .9em;
|
999
1159
|
}
|
1000
1160
|
|
1001
|
-
.prose-sm :where(h3 code):not(:where([class~="not-prose"] *)) {
|
1161
|
+
.prose-sm :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1002
1162
|
font-size: .888889em;
|
1003
1163
|
}
|
1004
1164
|
|
1005
|
-
.prose-sm :where(pre):not(:where([class~="not-prose"] *)) {
|
1165
|
+
.prose-sm :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1166
|
+
padding-top: .666667em;
|
1167
|
+
padding-inline-end: 1em;
|
1168
|
+
padding-bottom: .666667em;
|
1006
1169
|
border-radius: .25rem;
|
1007
1170
|
margin-top: 1.66667em;
|
1008
1171
|
margin-bottom: 1.66667em;
|
1009
|
-
padding:
|
1172
|
+
padding-inline-start: 1em;
|
1010
1173
|
font-size: .857143em;
|
1011
1174
|
line-height: 1.66667;
|
1012
1175
|
}
|
1013
1176
|
|
1014
|
-
.prose-sm :where(ol):not(:where([class~="not-prose"] *)) {
|
1015
|
-
margin-top: 1.14286em;
|
1016
|
-
margin-bottom: 1.14286em;
|
1017
|
-
padding-left: 1.57143em;
|
1018
|
-
}
|
1019
|
-
|
1020
|
-
.prose-sm :where(ul):not(:where([class~="not-prose"] *)) {
|
1177
|
+
.prose-sm :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1021
1178
|
margin-top: 1.14286em;
|
1022
1179
|
margin-bottom: 1.14286em;
|
1023
|
-
padding-
|
1180
|
+
padding-inline-start: 1.57143em;
|
1024
1181
|
}
|
1025
1182
|
|
1026
|
-
.prose-sm :where(li):not(:where([class~="not-prose"] *)) {
|
1183
|
+
.prose-sm :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1027
1184
|
margin-top: .285714em;
|
1028
1185
|
margin-bottom: .285714em;
|
1029
1186
|
}
|
1030
1187
|
|
1031
|
-
.prose-sm :where(ol > li):not(:where([class~="not-prose"] *)) {
|
1032
|
-
padding-
|
1188
|
+
.prose-sm :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1189
|
+
padding-inline-start: .428571em;
|
1033
1190
|
}
|
1034
1191
|
|
1035
|
-
.prose-sm :where(ul > li):not(:where([class~="not-prose"] *)) {
|
1036
|
-
padding-left: .428571em;
|
1037
|
-
}
|
1038
|
-
|
1039
|
-
.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"] *)) {
|
1192
|
+
.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1040
1193
|
margin-top: .571429em;
|
1041
1194
|
margin-bottom: .571429em;
|
1042
1195
|
}
|
1043
1196
|
|
1044
|
-
.prose-sm :where(.prose-sm > ul > li > :first-child):not(:where([class~="not-prose"] *)) {
|
1197
|
+
.prose-sm :where(.prose-sm > ul > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1045
1198
|
margin-top: 1.14286em;
|
1046
1199
|
}
|
1047
1200
|
|
1048
|
-
.prose-sm :where(.prose-sm > ul > li > :last-child):not(:where([class~="not-prose"] *)) {
|
1201
|
+
.prose-sm :where(.prose-sm > ul > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1049
1202
|
margin-bottom: 1.14286em;
|
1050
1203
|
}
|
1051
1204
|
|
1052
|
-
.prose-sm :where(.prose-sm > ol > li > :first-child):not(:where([class~="not-prose"] *)) {
|
1205
|
+
.prose-sm :where(.prose-sm > ol > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1053
1206
|
margin-top: 1.14286em;
|
1054
1207
|
}
|
1055
1208
|
|
1056
|
-
.prose-sm :where(.prose-sm > ol > li > :last-child):not(:where([class~="not-prose"] *)) {
|
1209
|
+
.prose-sm :where(.prose-sm > ol > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1057
1210
|
margin-bottom: 1.14286em;
|
1058
1211
|
}
|
1059
1212
|
|
1060
|
-
.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
|
1213
|
+
.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1061
1214
|
margin-top: .571429em;
|
1062
1215
|
margin-bottom: .571429em;
|
1063
1216
|
}
|
1064
1217
|
|
1065
|
-
.prose-sm :where(
|
1066
|
-
margin-top:
|
1067
|
-
margin-bottom:
|
1218
|
+
.prose-sm :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1219
|
+
margin-top: 1.14286em;
|
1220
|
+
margin-bottom: 1.14286em;
|
1068
1221
|
}
|
1069
1222
|
|
1070
|
-
.prose-sm :where(
|
1071
|
-
margin-top:
|
1223
|
+
.prose-sm :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1224
|
+
margin-top: 1.14286em;
|
1072
1225
|
}
|
1073
1226
|
|
1074
|
-
.prose-sm :where(
|
1075
|
-
margin-top:
|
1227
|
+
.prose-sm :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1228
|
+
margin-top: .285714em;
|
1229
|
+
padding-inline-start: 1.57143em;
|
1076
1230
|
}
|
1077
1231
|
|
1078
|
-
.prose-sm :where(
|
1079
|
-
margin-top:
|
1232
|
+
.prose-sm :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1233
|
+
margin-top: 2.85714em;
|
1234
|
+
margin-bottom: 2.85714em;
|
1080
1235
|
}
|
1081
1236
|
|
1082
|
-
.prose-sm :where(h4 + *):not(:where([class~="not-prose"] *)) {
|
1237
|
+
.prose-sm :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-sm :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1083
1238
|
margin-top: 0;
|
1084
1239
|
}
|
1085
1240
|
|
1086
|
-
.prose-sm :where(table):not(:where([class~="not-prose"] *)) {
|
1241
|
+
.prose-sm :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1087
1242
|
font-size: .857143em;
|
1088
1243
|
line-height: 1.5;
|
1089
1244
|
}
|
1090
1245
|
|
1091
|
-
.prose-sm :where(thead th):not(:where([class~="not-prose"] *)) {
|
1246
|
+
.prose-sm :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1247
|
+
padding-inline-end: 1em;
|
1092
1248
|
padding-bottom: .666667em;
|
1093
|
-
padding-
|
1094
|
-
padding-right: 1em;
|
1249
|
+
padding-inline-start: 1em;
|
1095
1250
|
}
|
1096
1251
|
|
1097
|
-
.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
|
1098
|
-
padding-
|
1252
|
+
.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1253
|
+
padding-inline-start: 0;
|
1099
1254
|
}
|
1100
1255
|
|
1101
|
-
.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
|
1102
|
-
padding-
|
1256
|
+
.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1257
|
+
padding-inline-end: 0;
|
1258
|
+
}
|
1259
|
+
|
1260
|
+
.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1261
|
+
padding-top: .666667em;
|
1262
|
+
padding-inline-end: 1em;
|
1263
|
+
padding-bottom: .666667em;
|
1264
|
+
padding-inline-start: 1em;
|
1103
1265
|
}
|
1104
1266
|
|
1105
|
-
.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
|
1106
|
-
padding:
|
1267
|
+
.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1268
|
+
padding-inline-start: 0;
|
1107
1269
|
}
|
1108
1270
|
|
1109
|
-
.prose-sm :where(tbody td:
|
1110
|
-
padding-
|
1271
|
+
.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1272
|
+
padding-inline-end: 0;
|
1111
1273
|
}
|
1112
1274
|
|
1113
|
-
.prose-sm :where(
|
1114
|
-
|
1275
|
+
.prose-sm :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1276
|
+
margin-top: 1.71429em;
|
1277
|
+
margin-bottom: 1.71429em;
|
1278
|
+
}
|
1279
|
+
|
1280
|
+
.prose-sm :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1281
|
+
margin-top: 0;
|
1282
|
+
margin-bottom: 0;
|
1283
|
+
}
|
1284
|
+
|
1285
|
+
.prose-sm :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1286
|
+
margin-top: .666667em;
|
1287
|
+
font-size: .857143em;
|
1288
|
+
line-height: 1.33333;
|
1115
1289
|
}
|
1116
1290
|
|
1117
|
-
.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"] *)) {
|
1291
|
+
.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1118
1292
|
margin-top: 0;
|
1119
1293
|
}
|
1120
1294
|
|
1121
|
-
.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"] *)) {
|
1295
|
+
.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1122
1296
|
margin-bottom: 0;
|
1123
1297
|
}
|
1124
1298
|
|
@@ -1127,214 +1301,226 @@ pre[class*="language-"] {
|
|
1127
1301
|
line-height: 1.77778;
|
1128
1302
|
}
|
1129
1303
|
|
1130
|
-
.prose-lg :where(p):not(:where([class~="not-prose"] *)) {
|
1304
|
+
.prose-lg :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1131
1305
|
margin-top: 1.33333em;
|
1132
1306
|
margin-bottom: 1.33333em;
|
1133
1307
|
}
|
1134
1308
|
|
1135
|
-
.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
|
1309
|
+
.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1136
1310
|
margin-top: 1.09091em;
|
1137
1311
|
margin-bottom: 1.09091em;
|
1138
1312
|
font-size: 1.22222em;
|
1139
1313
|
line-height: 1.45455;
|
1140
1314
|
}
|
1141
1315
|
|
1142
|
-
.prose-lg :where(blockquote):not(:where([class~="not-prose"] *)) {
|
1316
|
+
.prose-lg :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1143
1317
|
margin-top: 1.66667em;
|
1144
1318
|
margin-bottom: 1.66667em;
|
1145
|
-
padding-
|
1319
|
+
padding-inline-start: 1em;
|
1146
1320
|
}
|
1147
1321
|
|
1148
|
-
.prose-lg :where(h1):not(:where([class~="not-prose"] *)) {
|
1322
|
+
.prose-lg :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1149
1323
|
margin-top: 0;
|
1150
1324
|
margin-bottom: .833333em;
|
1151
1325
|
font-size: 2.66667em;
|
1152
1326
|
line-height: 1;
|
1153
1327
|
}
|
1154
1328
|
|
1155
|
-
.prose-lg :where(h2):not(:where([class~="not-prose"] *)) {
|
1329
|
+
.prose-lg :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1156
1330
|
margin-top: 1.86667em;
|
1157
1331
|
margin-bottom: 1.06667em;
|
1158
1332
|
font-size: 1.66667em;
|
1159
1333
|
line-height: 1.33333;
|
1160
1334
|
}
|
1161
1335
|
|
1162
|
-
.prose-lg :where(h3):not(:where([class~="not-prose"] *)) {
|
1336
|
+
.prose-lg :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1163
1337
|
margin-top: 1.66667em;
|
1164
1338
|
margin-bottom: .666667em;
|
1165
1339
|
font-size: 1.33333em;
|
1166
1340
|
line-height: 1.5;
|
1167
1341
|
}
|
1168
1342
|
|
1169
|
-
.prose-lg :where(h4):not(:where([class~="not-prose"] *)) {
|
1343
|
+
.prose-lg :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1170
1344
|
margin-top: 1.77778em;
|
1171
1345
|
margin-bottom: .444444em;
|
1172
1346
|
line-height: 1.55556;
|
1173
1347
|
}
|
1174
1348
|
|
1175
|
-
.prose-lg :where(img):not(:where([class~="not-prose"] *)) {
|
1349
|
+
.prose-lg :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1176
1350
|
margin-top: 1.77778em;
|
1177
1351
|
margin-bottom: 1.77778em;
|
1178
1352
|
}
|
1179
1353
|
|
1180
|
-
.prose-lg :where(
|
1181
|
-
margin-top:
|
1182
|
-
margin-bottom:
|
1354
|
+
.prose-lg :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1355
|
+
margin-top: 0;
|
1356
|
+
margin-bottom: 0;
|
1183
1357
|
}
|
1184
1358
|
|
1185
|
-
.prose-lg :where(
|
1359
|
+
.prose-lg :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1186
1360
|
margin-top: 1.77778em;
|
1187
1361
|
margin-bottom: 1.77778em;
|
1188
1362
|
}
|
1189
1363
|
|
1190
|
-
.prose-lg :where(
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
margin-top: 1em;
|
1364
|
+
.prose-lg :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1365
|
+
padding-top: .222222em;
|
1366
|
+
padding-inline-end: .444444em;
|
1367
|
+
padding-bottom: .222222em;
|
1368
|
+
border-radius: .3125rem;
|
1369
|
+
padding-inline-start: .444444em;
|
1197
1370
|
font-size: .888889em;
|
1198
|
-
line-height: 1.5;
|
1199
1371
|
}
|
1200
1372
|
|
1201
|
-
.prose-lg :where(code):not(:where([class~="not-prose"] *)) {
|
1373
|
+
.prose-lg :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1202
1374
|
font-size: .888889em;
|
1203
1375
|
}
|
1204
1376
|
|
1205
|
-
.prose-lg :where(h2 code):not(:where([class~="not-prose"] *)) {
|
1377
|
+
.prose-lg :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1206
1378
|
font-size: .866667em;
|
1207
1379
|
}
|
1208
1380
|
|
1209
|
-
.prose-lg :where(h3 code):not(:where([class~="not-prose"] *)) {
|
1381
|
+
.prose-lg :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1210
1382
|
font-size: .875em;
|
1211
1383
|
}
|
1212
1384
|
|
1213
|
-
.prose-lg :where(pre):not(:where([class~="not-prose"] *)) {
|
1385
|
+
.prose-lg :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1386
|
+
padding-top: 1em;
|
1387
|
+
padding-inline-end: 1.5em;
|
1388
|
+
padding-bottom: 1em;
|
1214
1389
|
border-radius: .375rem;
|
1215
1390
|
margin-top: 2em;
|
1216
1391
|
margin-bottom: 2em;
|
1217
|
-
padding:
|
1392
|
+
padding-inline-start: 1.5em;
|
1218
1393
|
font-size: .888889em;
|
1219
1394
|
line-height: 1.75;
|
1220
1395
|
}
|
1221
1396
|
|
1222
|
-
.prose-lg :where(ol):not(:where([class~="not-prose"] *)) {
|
1223
|
-
margin-top: 1.33333em;
|
1224
|
-
margin-bottom: 1.33333em;
|
1225
|
-
padding-left: 1.55556em;
|
1226
|
-
}
|
1227
|
-
|
1228
|
-
.prose-lg :where(ul):not(:where([class~="not-prose"] *)) {
|
1397
|
+
.prose-lg :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1229
1398
|
margin-top: 1.33333em;
|
1230
1399
|
margin-bottom: 1.33333em;
|
1231
|
-
padding-
|
1400
|
+
padding-inline-start: 1.55556em;
|
1232
1401
|
}
|
1233
1402
|
|
1234
|
-
.prose-lg :where(li):not(:where([class~="not-prose"] *)) {
|
1403
|
+
.prose-lg :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1235
1404
|
margin-top: .666667em;
|
1236
1405
|
margin-bottom: .666667em;
|
1237
1406
|
}
|
1238
1407
|
|
1239
|
-
.prose-lg :where(ol > li):not(:where([class~="not-prose"] *)) {
|
1240
|
-
padding-
|
1241
|
-
}
|
1242
|
-
|
1243
|
-
.prose-lg :where(ul > li):not(:where([class~="not-prose"] *)) {
|
1244
|
-
padding-left: .444444em;
|
1408
|
+
.prose-lg :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1409
|
+
padding-inline-start: .444444em;
|
1245
1410
|
}
|
1246
1411
|
|
1247
|
-
.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"] *)) {
|
1412
|
+
.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1248
1413
|
margin-top: .888889em;
|
1249
1414
|
margin-bottom: .888889em;
|
1250
1415
|
}
|
1251
1416
|
|
1252
|
-
.prose-lg :where(.prose-lg > ul > li > :first-child):not(:where([class~="not-prose"] *)) {
|
1417
|
+
.prose-lg :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1253
1418
|
margin-top: 1.33333em;
|
1254
1419
|
}
|
1255
1420
|
|
1256
|
-
.prose-lg :where(.prose-lg > ul > li > :last-child):not(:where([class~="not-prose"] *)) {
|
1421
|
+
.prose-lg :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1257
1422
|
margin-bottom: 1.33333em;
|
1258
1423
|
}
|
1259
1424
|
|
1260
|
-
.prose-lg :where(.prose-lg > ol > li > :first-child):not(:where([class~="not-prose"] *)) {
|
1425
|
+
.prose-lg :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1261
1426
|
margin-top: 1.33333em;
|
1262
1427
|
}
|
1263
1428
|
|
1264
|
-
.prose-lg :where(.prose-lg > ol > li > :last-child):not(:where([class~="not-prose"] *)) {
|
1429
|
+
.prose-lg :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1265
1430
|
margin-bottom: 1.33333em;
|
1266
1431
|
}
|
1267
1432
|
|
1268
|
-
.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
|
1433
|
+
.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1269
1434
|
margin-top: .888889em;
|
1270
1435
|
margin-bottom: .888889em;
|
1271
1436
|
}
|
1272
1437
|
|
1273
|
-
.prose-lg :where(
|
1274
|
-
margin-top:
|
1275
|
-
margin-bottom:
|
1438
|
+
.prose-lg :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1439
|
+
margin-top: 1.33333em;
|
1440
|
+
margin-bottom: 1.33333em;
|
1276
1441
|
}
|
1277
1442
|
|
1278
|
-
.prose-lg :where(
|
1279
|
-
margin-top:
|
1443
|
+
.prose-lg :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1444
|
+
margin-top: 1.33333em;
|
1280
1445
|
}
|
1281
1446
|
|
1282
|
-
.prose-lg :where(
|
1283
|
-
margin-top:
|
1447
|
+
.prose-lg :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1448
|
+
margin-top: .666667em;
|
1449
|
+
padding-inline-start: 1.55556em;
|
1284
1450
|
}
|
1285
1451
|
|
1286
|
-
.prose-lg :where(
|
1287
|
-
margin-top:
|
1452
|
+
.prose-lg :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1453
|
+
margin-top: 3.11111em;
|
1454
|
+
margin-bottom: 3.11111em;
|
1288
1455
|
}
|
1289
1456
|
|
1290
|
-
.prose-lg :where(h4 + *):not(:where([class~="not-prose"] *)) {
|
1457
|
+
.prose-lg :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .prose-lg :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1291
1458
|
margin-top: 0;
|
1292
1459
|
}
|
1293
1460
|
|
1294
|
-
.prose-lg :where(table):not(:where([class~="not-prose"] *)) {
|
1461
|
+
.prose-lg :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1295
1462
|
font-size: .888889em;
|
1296
1463
|
line-height: 1.5;
|
1297
1464
|
}
|
1298
1465
|
|
1299
|
-
.prose-lg :where(thead th):not(:where([class~="not-prose"] *)) {
|
1466
|
+
.prose-lg :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1467
|
+
padding-inline-end: .75em;
|
1300
1468
|
padding-bottom: .75em;
|
1301
|
-
padding-
|
1302
|
-
padding-right: .75em;
|
1469
|
+
padding-inline-start: .75em;
|
1303
1470
|
}
|
1304
1471
|
|
1305
|
-
.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
|
1306
|
-
padding-
|
1472
|
+
.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1473
|
+
padding-inline-start: 0;
|
1307
1474
|
}
|
1308
1475
|
|
1309
|
-
.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
|
1310
|
-
padding-
|
1476
|
+
.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1477
|
+
padding-inline-end: 0;
|
1311
1478
|
}
|
1312
1479
|
|
1313
|
-
.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
|
1314
|
-
padding: .75em;
|
1480
|
+
.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1481
|
+
padding-top: .75em;
|
1482
|
+
padding-inline-end: .75em;
|
1483
|
+
padding-bottom: .75em;
|
1484
|
+
padding-inline-start: .75em;
|
1315
1485
|
}
|
1316
1486
|
|
1317
|
-
.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) {
|
1318
|
-
padding-
|
1487
|
+
.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1488
|
+
padding-inline-start: 0;
|
1319
1489
|
}
|
1320
1490
|
|
1321
|
-
.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) {
|
1322
|
-
padding-
|
1491
|
+
.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1492
|
+
padding-inline-end: 0;
|
1323
1493
|
}
|
1324
1494
|
|
1325
|
-
.prose-lg :where(
|
1326
|
-
margin-top:
|
1495
|
+
.prose-lg :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1496
|
+
margin-top: 1.77778em;
|
1497
|
+
margin-bottom: 1.77778em;
|
1327
1498
|
}
|
1328
1499
|
|
1329
|
-
.prose-lg :where(
|
1500
|
+
.prose-lg :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1501
|
+
margin-top: 0;
|
1330
1502
|
margin-bottom: 0;
|
1331
1503
|
}
|
1332
1504
|
|
1333
|
-
[
|
1334
|
-
|
1335
|
-
|
1336
|
-
|
1337
|
-
|
1505
|
+
.prose-lg :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1506
|
+
margin-top: 1em;
|
1507
|
+
font-size: .888889em;
|
1508
|
+
line-height: 1.5;
|
1509
|
+
}
|
1510
|
+
|
1511
|
+
.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1512
|
+
margin-top: 0;
|
1513
|
+
}
|
1514
|
+
|
1515
|
+
.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
1516
|
+
margin-bottom: 0;
|
1517
|
+
}
|
1518
|
+
|
1519
|
+
[data-component="code"] {
|
1520
|
+
padding-left: 1rem;
|
1521
|
+
padding-right: 1rem;
|
1522
|
+
font-size: .875rem;
|
1523
|
+
line-height: 1.25rem;
|
1338
1524
|
overflow-x: hidden;
|
1339
1525
|
}
|
1340
1526
|
|
@@ -1346,8 +1532,7 @@ pre[class*="language-"] {
|
|
1346
1532
|
[data-component="code"] .code {
|
1347
1533
|
padding-top: 1rem;
|
1348
1534
|
padding-bottom: 1rem;
|
1349
|
-
overflow
|
1350
|
-
overflow-y: hidden;
|
1535
|
+
overflow: auto hidden;
|
1351
1536
|
}
|
1352
1537
|
|
1353
1538
|
[data-component="code"].numbered {
|
@@ -1355,22 +1540,21 @@ pre[class*="language-"] {
|
|
1355
1540
|
}
|
1356
1541
|
|
1357
1542
|
[data-component="code"].numbered .wrapper {
|
1358
|
-
height: 100%;
|
1359
|
-
width: 100%;
|
1360
1543
|
grid-template-columns: min-content 1fr;
|
1544
|
+
width: 100%;
|
1545
|
+
height: 100%;
|
1361
1546
|
display: grid;
|
1362
1547
|
position: relative;
|
1363
1548
|
}
|
1364
1549
|
|
1365
1550
|
[data-component="code"].numbered .line-numbers {
|
1366
|
-
width: min-content;
|
1367
1551
|
z-index: 10;
|
1368
|
-
height: 100%;
|
1369
|
-
-webkit-user-select: none;
|
1370
1552
|
user-select: none;
|
1371
1553
|
text-align: right;
|
1372
1554
|
border-style: dashed;
|
1373
1555
|
border-right-width: 1px;
|
1556
|
+
width: min-content;
|
1557
|
+
height: 100%;
|
1374
1558
|
padding: .75rem;
|
1375
1559
|
}
|
1376
1560
|
|
@@ -1401,42 +1585,70 @@ pre[class*="language-"] {
|
|
1401
1585
|
background-color: rgb(254 252 232 / var(--tw-bg-opacity));
|
1402
1586
|
}
|
1403
1587
|
|
1404
|
-
[data-component="display-options-field"] [type="text"], [data-component="display-options-field"] [type="email"], [data-component="display-options-field"] [type="url"], [data-component="display-options-field"] [type="password"], [data-component="display-options-field"] [type="number"], [data-component="display-options-field"] [type="date"], [data-component="display-options-field"] [type="datetime-local"], [data-component="display-options-field"] [type="month"], [data-component="display-options-field"] [type="search"], [data-component="display-options-field"] [type="tel"], [data-component="display-options-field"] [type="time"], [data-component="display-options-field"] [type="week"], [data-component="display-options-field"] textarea, [data-component="display-options-field"] select {
|
1405
|
-
padding: .26rem .6rem;
|
1406
|
-
font-size: .8rem;
|
1407
|
-
line-height: 1.1rem;
|
1408
|
-
}
|
1409
|
-
|
1410
1588
|
[data-component="display-options-field"] label {
|
1411
1589
|
cursor: pointer;
|
1412
1590
|
color: var(--lookbook-input-text);
|
1413
1591
|
font-size: .82rem;
|
1414
1592
|
}
|
1415
1593
|
|
1416
|
-
[data-component="
|
1417
|
-
|
1418
|
-
|
1419
|
-
border-
|
1420
|
-
|
1594
|
+
[data-component="embed-code-dropdown"] [data-component="code"] {
|
1595
|
+
border-style: dashed;
|
1596
|
+
border-width: 1px;
|
1597
|
+
border-color: var(--lookbook-divider);
|
1598
|
+
background-color: var(--lookbook-base-50);
|
1599
|
+
padding: .5rem;
|
1600
|
+
}
|
1601
|
+
|
1602
|
+
[data-component="embed-code-dropdown"] pre.code.highlight {
|
1603
|
+
white-space: normal;
|
1604
|
+
padding: 0;
|
1605
|
+
font-size: 11px;
|
1606
|
+
overflow: hidden;
|
1607
|
+
}
|
1608
|
+
|
1609
|
+
[data-component="embed-code-dropdown"] .line-clamp-2 {
|
1610
|
+
-webkit-line-clamp: 2;
|
1611
|
+
-webkit-box-orient: vertical;
|
1612
|
+
display: -webkit-box;
|
1613
|
+
overflow: hidden;
|
1614
|
+
}
|
1615
|
+
|
1616
|
+
[data-component="header"] .header-project-icon {
|
1617
|
+
flex: none;
|
1618
|
+
width: min-content;
|
1619
|
+
height: 1.25rem;
|
1620
|
+
display: inline-block;
|
1621
|
+
}
|
1622
|
+
|
1623
|
+
[data-component="header"] .header-project-icon svg {
|
1624
|
+
width: auto;
|
1625
|
+
height: 100%;
|
1421
1626
|
}
|
1422
1627
|
|
1423
1628
|
[data-component="icon"] {
|
1424
1629
|
flex: none;
|
1425
1630
|
line-height: 1;
|
1426
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
|
1631
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
1427
1632
|
transition-duration: .15s;
|
1428
1633
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
1429
1634
|
display: block;
|
1430
1635
|
}
|
1431
1636
|
|
1432
1637
|
[data-component="icon"] svg {
|
1433
|
-
height: 100%;
|
1434
|
-
width: 100%;
|
1435
1638
|
fill: #0000;
|
1436
1639
|
stroke: currentColor;
|
1437
|
-
stroke-width: 2px;
|
1438
1640
|
stroke-linecap: round;
|
1439
1641
|
stroke-linejoin: round;
|
1642
|
+
width: 100%;
|
1643
|
+
height: 100%;
|
1644
|
+
}
|
1645
|
+
|
1646
|
+
[data-component="icon"].icon-stroke-2 svg {
|
1647
|
+
stroke-width: 2px;
|
1648
|
+
}
|
1649
|
+
|
1650
|
+
[data-component="icon"].icon-stroke-1 svg {
|
1651
|
+
stroke-width: 1px;
|
1440
1652
|
}
|
1441
1653
|
|
1442
1654
|
.lookbook-panel {
|
@@ -1444,16 +1656,83 @@ pre[class*="language-"] {
|
|
1444
1656
|
padding: 1rem;
|
1445
1657
|
}
|
1446
1658
|
|
1447
|
-
[data-component="
|
1659
|
+
[data-component="message"] {
|
1660
|
+
border-width: 1px;
|
1661
|
+
border-color: var(--lookbook-divider);
|
1662
|
+
background-color: var(--lookbook-message-bg);
|
1663
|
+
--tw-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
|
1664
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
1448
1665
|
width: 100%;
|
1666
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1667
|
+
border-radius: .25rem;
|
1668
|
+
gap: 1.5rem;
|
1669
|
+
padding: 1rem;
|
1670
|
+
display: flex;
|
1671
|
+
}
|
1672
|
+
|
1673
|
+
@media (width >= 480px) {
|
1674
|
+
[data-component="message"] {
|
1675
|
+
padding: 1.5rem;
|
1676
|
+
}
|
1677
|
+
}
|
1678
|
+
|
1679
|
+
[data-component="message"].icon-right {
|
1680
|
+
flex-direction: row-reverse;
|
1681
|
+
align-items: center;
|
1682
|
+
}
|
1683
|
+
|
1684
|
+
[data-component="message"].icon-left {
|
1685
|
+
align-items: flex-start;
|
1686
|
+
}
|
1687
|
+
|
1688
|
+
[data-component="message"] .message-title {
|
1689
|
+
text-transform: uppercase;
|
1690
|
+
letter-spacing: .025em;
|
1691
|
+
color: var(--lookbook-message-title);
|
1692
|
+
overflow-wrap: anywhere;
|
1693
|
+
margin-bottom: .5rem;
|
1694
|
+
font-size: 1rem;
|
1695
|
+
font-weight: 700;
|
1696
|
+
line-height: 1.5rem;
|
1697
|
+
}
|
1698
|
+
|
1699
|
+
[data-component="message"] .message-icon {
|
1700
|
+
opacity: .3;
|
1701
|
+
flex: none;
|
1702
|
+
display: none;
|
1703
|
+
}
|
1704
|
+
|
1705
|
+
@media (width >= 480px) {
|
1706
|
+
[data-component="message"] .message-icon {
|
1707
|
+
display: block;
|
1708
|
+
}
|
1709
|
+
}
|
1710
|
+
|
1711
|
+
[data-component="message"].theme-error {
|
1712
|
+
--tw-border-opacity: 1;
|
1713
|
+
border-color: rgb(254 202 202 / var(--tw-border-opacity));
|
1714
|
+
}
|
1715
|
+
|
1716
|
+
[data-component="message"].theme-error .message-title {
|
1717
|
+
--tw-text-opacity: 1;
|
1718
|
+
color: rgb(185 28 28 / var(--tw-text-opacity));
|
1719
|
+
}
|
1720
|
+
|
1721
|
+
[data-component="message"].theme-error .message-icon {
|
1722
|
+
--tw-text-opacity: 1;
|
1723
|
+
color: rgb(220 38 38 / var(--tw-text-opacity));
|
1724
|
+
opacity: .5;
|
1725
|
+
}
|
1726
|
+
|
1727
|
+
[data-component="nav"] .nav-action {
|
1449
1728
|
cursor: pointer;
|
1450
|
-
-webkit-user-select: none;
|
1451
1729
|
user-select: none;
|
1730
|
+
width: 100%;
|
1452
1731
|
color: var(--lookbook-nav-text);
|
1453
1732
|
align-items: center;
|
1454
1733
|
padding-top: .25rem;
|
1455
1734
|
padding-bottom: .25rem;
|
1456
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
|
1735
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
1457
1736
|
transition-duration: .15s;
|
1458
1737
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
1459
1738
|
display: flex;
|
@@ -1464,8 +1743,8 @@ pre[class*="language-"] {
|
|
1464
1743
|
}
|
1465
1744
|
|
1466
1745
|
[data-component="nav"] .nav-action-inner {
|
1467
|
-
width: 100%;
|
1468
1746
|
align-items: center;
|
1747
|
+
width: 100%;
|
1469
1748
|
display: flex;
|
1470
1749
|
position: relative;
|
1471
1750
|
}
|
@@ -1486,7 +1765,7 @@ pre[class*="language-"] {
|
|
1486
1765
|
text-align: left;
|
1487
1766
|
vertical-align: middle;
|
1488
1767
|
padding: 1rem;
|
1489
|
-
font-weight:
|
1768
|
+
font-weight: 600;
|
1490
1769
|
}
|
1491
1770
|
|
1492
1771
|
[data-component="params-editor"] table:not(.linear) thead th.param-label {
|
@@ -1508,7 +1787,7 @@ pre[class*="language-"] {
|
|
1508
1787
|
}
|
1509
1788
|
|
1510
1789
|
[data-component="params-editor"] table:not(.linear) tbody td.param-label {
|
1511
|
-
font-weight:
|
1790
|
+
font-weight: 600;
|
1512
1791
|
}
|
1513
1792
|
|
1514
1793
|
[data-component="params-editor"] table:not(.linear) tbody .param-input-wrapper {
|
@@ -1546,24 +1825,38 @@ pre[class*="language-"] {
|
|
1546
1825
|
}
|
1547
1826
|
|
1548
1827
|
[data-component="params-editor"] table.linear td.param-label {
|
1549
|
-
font-weight:
|
1828
|
+
font-weight: 600;
|
1550
1829
|
}
|
1551
1830
|
|
1552
1831
|
[data-component="params-editor"] table.linear td.param-description-empty {
|
1553
1832
|
display: none;
|
1554
1833
|
}
|
1555
1834
|
|
1835
|
+
[data-component="prose"] {
|
1836
|
+
font-family: system-ui, sans-serif;
|
1837
|
+
}
|
1838
|
+
|
1556
1839
|
[data-component="prose"] [data-component="code"] {
|
1557
1840
|
border-width: 1px;
|
1558
1841
|
border-color: var(--lookbook-divider);
|
1559
1842
|
border-radius: .375rem;
|
1560
1843
|
}
|
1561
1844
|
|
1562
|
-
[data-component="prose"] [data-component="embed"], [data-component="prose"] [data-component="code"] {
|
1845
|
+
[data-component="prose"] [data-component="embed"], [data-component="prose"] [data-component="code"], [data-component="prose"] [data-lookbook-embed] {
|
1563
1846
|
margin-top: 2rem;
|
1564
1847
|
margin-bottom: 2rem;
|
1565
1848
|
}
|
1566
1849
|
|
1850
|
+
[data-component="prose"] [data-lookbook-embed] {
|
1851
|
+
border-radius: .375rem;
|
1852
|
+
}
|
1853
|
+
|
1854
|
+
#page [data-component="prose"] h2 {
|
1855
|
+
border-bottom-width: 1px;
|
1856
|
+
border-color: var(--lookbook-divider);
|
1857
|
+
padding-bottom: .75rem;
|
1858
|
+
}
|
1859
|
+
|
1567
1860
|
[data-component="tabs-dropdown-tab"]:not(.hidden) {
|
1568
1861
|
border-bottom-width: 1px;
|
1569
1862
|
border-bottom-color: var(--lookbook-divider);
|
@@ -1574,10 +1867,10 @@ pre[class*="language-"] {
|
|
1574
1867
|
}
|
1575
1868
|
|
1576
1869
|
[data-component="toolbar"] .toolbar-sections > * {
|
1577
|
-
height: 2.5rem;
|
1578
1870
|
white-space: nowrap;
|
1579
1871
|
border-color: var(--lookbook-toolbar-divider);
|
1580
1872
|
align-items: center;
|
1873
|
+
height: 2.5rem;
|
1581
1874
|
display: flex;
|
1582
1875
|
}
|
1583
1876
|
|
@@ -1599,12 +1892,12 @@ pre[class*="language-"] {
|
|
1599
1892
|
}
|
1600
1893
|
|
1601
1894
|
[data-component="viewport"] .resize-handle {
|
1602
|
-
height: 100%;
|
1603
|
-
width: 100%;
|
1604
1895
|
border-color: var(--lookbook-divider);
|
1605
1896
|
background-color: var(--lookbook-viewport-handle);
|
1606
1897
|
justify-content: center;
|
1607
1898
|
align-items: center;
|
1899
|
+
width: 100%;
|
1900
|
+
height: 100%;
|
1608
1901
|
display: flex;
|
1609
1902
|
}
|
1610
1903
|
|
@@ -1615,10 +1908,9 @@ pre[class*="language-"] {
|
|
1615
1908
|
|
1616
1909
|
[data-component="viewport"] .resize-handle {
|
1617
1910
|
touch-action: none;
|
1618
|
-
-webkit-user-select: none;
|
1619
1911
|
user-select: none;
|
1620
1912
|
color: var(--lookbook-viewport-handle-icon-stroke);
|
1621
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
|
1913
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
1622
1914
|
transition-duration: .15s;
|
1623
1915
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
1624
1916
|
}
|
@@ -1646,9 +1938,9 @@ pre[class*="language-"] {
|
|
1646
1938
|
}
|
1647
1939
|
|
1648
1940
|
[type="text"], [type="email"], [type="url"], [type="password"], [type="number"], [type="date"], [type="datetime-local"], [type="month"], [type="search"], [type="tel"], [type="time"], [type="week"], textarea, select {
|
1649
|
-
width: 100%;
|
1650
1941
|
background-color: var(--lookbook-input-bg);
|
1651
1942
|
border-radius: .375rem;
|
1943
|
+
width: 100%;
|
1652
1944
|
font-size: .875rem;
|
1653
1945
|
line-height: 1.25rem;
|
1654
1946
|
display: block;
|
@@ -1657,8 +1949,8 @@ pre[class*="language-"] {
|
|
1657
1949
|
input[type="range"] {
|
1658
1950
|
appearance: none;
|
1659
1951
|
cursor: pointer;
|
1660
|
-
width: 100%;
|
1661
1952
|
background: none;
|
1953
|
+
width: 100%;
|
1662
1954
|
}
|
1663
1955
|
|
1664
1956
|
input[type="range"]:focus {
|
@@ -1667,34 +1959,40 @@ input[type="range"]:focus {
|
|
1667
1959
|
|
1668
1960
|
input[type="range"]::-webkit-slider-runnable-track {
|
1669
1961
|
background-color: var(--lookbook-input-toggle);
|
1670
|
-
height: .5rem;
|
1671
1962
|
border-radius: .5rem;
|
1963
|
+
height: .5rem;
|
1672
1964
|
}
|
1673
1965
|
|
1674
1966
|
input[type="range"]::-webkit-slider-thumb {
|
1675
1967
|
appearance: none;
|
1676
1968
|
background-color: var(--lookbook-input-toggle-active);
|
1677
|
-
height: 1rem;
|
1678
|
-
width: 1rem;
|
1679
1969
|
border-radius: .5rem;
|
1970
|
+
width: 1rem;
|
1971
|
+
height: 1rem;
|
1680
1972
|
margin-top: -4px;
|
1681
1973
|
}
|
1682
1974
|
|
1683
1975
|
input[type="range"]::-moz-range-track {
|
1684
1976
|
background-color: var(--lookbook-input-toggle);
|
1685
|
-
height: .5rem;
|
1686
1977
|
border-radius: .5rem;
|
1978
|
+
height: .5rem;
|
1687
1979
|
}
|
1688
1980
|
|
1689
1981
|
input[type="range"]::-moz-range-thumb {
|
1690
1982
|
background-color: var(--lookbook-input-toggle-active);
|
1691
|
-
height: 1rem;
|
1692
|
-
width: 1rem;
|
1693
1983
|
border: none;
|
1694
1984
|
border-radius: .5rem;
|
1985
|
+
width: 1rem;
|
1986
|
+
height: 1rem;
|
1987
|
+
}
|
1988
|
+
|
1989
|
+
input[type="range"]:focus::-webkit-slider-thumb {
|
1990
|
+
outline-offset: 2px;
|
1991
|
+
outline-width: 1px;
|
1992
|
+
outline-color: var(--lookbook-input-toggle-active);
|
1695
1993
|
}
|
1696
1994
|
|
1697
|
-
input[type="range"]:focus::-
|
1995
|
+
input[type="range"]:focus::-moz-range-thumb {
|
1698
1996
|
outline-offset: 2px;
|
1699
1997
|
outline-width: 1px;
|
1700
1998
|
outline-color: var(--lookbook-input-toggle-active);
|
@@ -1702,11 +2000,11 @@ input[type="range"]:focus::-webkit-slider-thumb, input[type="range"]:focus::-moz
|
|
1702
2000
|
|
1703
2001
|
input[type="color"] {
|
1704
2002
|
-webkit-appearance: none;
|
1705
|
-
width: 46px;
|
1706
2003
|
cursor: pointer;
|
1707
2004
|
border-width: 1px;
|
1708
2005
|
border-color: var(--lookbook-input-border);
|
1709
2006
|
border-radius: .5rem;
|
2007
|
+
width: 46px;
|
1710
2008
|
}
|
1711
2009
|
|
1712
2010
|
input[type="color"]::-webkit-color-swatch-wrapper {
|
@@ -1718,6 +2016,19 @@ input[type="color"]::-webkit-color-swatch {
|
|
1718
2016
|
border-radius: .5rem;
|
1719
2017
|
}
|
1720
2018
|
|
2019
|
+
select.compact {
|
2020
|
+
background-position: right .4rem center;
|
2021
|
+
background-size: 1.2em 1.2em;
|
2022
|
+
border-radius: .375rem;
|
2023
|
+
padding: .26rem 1.5rem .26rem .6rem;
|
2024
|
+
font-size: .8rem;
|
2025
|
+
line-height: 1.1rem;
|
2026
|
+
}
|
2027
|
+
|
2028
|
+
#inspector .split-layout-gutter-horizontal {
|
2029
|
+
top: 4px;
|
2030
|
+
}
|
2031
|
+
|
1721
2032
|
.pointer-events-none {
|
1722
2033
|
pointer-events: none;
|
1723
2034
|
}
|
@@ -1742,40 +2053,32 @@ input[type="color"]::-webkit-color-swatch {
|
|
1742
2053
|
position: relative;
|
1743
2054
|
}
|
1744
2055
|
|
1745
|
-
|
1746
|
-
|
2056
|
+
.-inset-px {
|
2057
|
+
inset: -1px;
|
1747
2058
|
}
|
1748
2059
|
|
1749
2060
|
.inset-0 {
|
1750
2061
|
inset: 0;
|
1751
2062
|
}
|
1752
2063
|
|
1753
|
-
.-
|
1754
|
-
|
2064
|
+
.-bottom-px {
|
2065
|
+
bottom: -1px;
|
1755
2066
|
}
|
1756
2067
|
|
1757
|
-
|
1758
|
-
|
2068
|
+
.-left-px {
|
2069
|
+
left: -1px;
|
1759
2070
|
}
|
1760
2071
|
|
1761
|
-
|
1762
|
-
|
2072
|
+
.-top-px {
|
2073
|
+
top: -1px;
|
1763
2074
|
}
|
1764
2075
|
|
1765
2076
|
.bottom-0 {
|
1766
2077
|
bottom: 0;
|
1767
2078
|
}
|
1768
2079
|
|
1769
|
-
.
|
1770
|
-
|
1771
|
-
}
|
1772
|
-
|
1773
|
-
.top-\[39px\] {
|
1774
|
-
top: 39px;
|
1775
|
-
}
|
1776
|
-
|
1777
|
-
.top-1\/2 {
|
1778
|
-
top: 50%;
|
2080
|
+
.right-0 {
|
2081
|
+
right: 0;
|
1779
2082
|
}
|
1780
2083
|
|
1781
2084
|
.right-3 {
|
@@ -1786,32 +2089,40 @@ input[type="color"]::-webkit-color-swatch {
|
|
1786
2089
|
right: 18px;
|
1787
2090
|
}
|
1788
2091
|
|
1789
|
-
|
1790
|
-
|
2092
|
+
.right-px {
|
2093
|
+
right: 1px;
|
1791
2094
|
}
|
1792
2095
|
|
1793
|
-
|
1794
|
-
|
2096
|
+
.top-0 {
|
2097
|
+
top: 0;
|
2098
|
+
}
|
2099
|
+
|
2100
|
+
.top-1\/2 {
|
2101
|
+
top: 50%;
|
2102
|
+
}
|
2103
|
+
|
2104
|
+
.top-\[-1px\] {
|
2105
|
+
top: -1px;
|
1795
2106
|
}
|
1796
2107
|
|
1797
2108
|
.top-\[2px\] {
|
1798
2109
|
top: 2px;
|
1799
2110
|
}
|
1800
2111
|
|
1801
|
-
|
1802
|
-
|
2112
|
+
.top-\[39px\] {
|
2113
|
+
top: 39px;
|
1803
2114
|
}
|
1804
2115
|
|
1805
|
-
.
|
1806
|
-
|
2116
|
+
.top-\[40px\] {
|
2117
|
+
top: 40px;
|
1807
2118
|
}
|
1808
2119
|
|
1809
|
-
.
|
1810
|
-
|
2120
|
+
.top-px {
|
2121
|
+
top: 1px;
|
1811
2122
|
}
|
1812
2123
|
|
1813
|
-
.\!z
|
1814
|
-
z-index:
|
2124
|
+
.\!z-\[1000\] {
|
2125
|
+
z-index: 1000 !important;
|
1815
2126
|
}
|
1816
2127
|
|
1817
2128
|
.z-0 {
|
@@ -1822,9 +2133,16 @@ input[type="color"]::-webkit-color-swatch {
|
|
1822
2133
|
z-index: 10;
|
1823
2134
|
}
|
1824
2135
|
|
1825
|
-
.
|
1826
|
-
|
1827
|
-
|
2136
|
+
.z-50 {
|
2137
|
+
z-index: 50;
|
2138
|
+
}
|
2139
|
+
|
2140
|
+
.z-\[-1\] {
|
2141
|
+
z-index: -1;
|
2142
|
+
}
|
2143
|
+
|
2144
|
+
.z-\[1001\] {
|
2145
|
+
z-index: 1001;
|
1828
2146
|
}
|
1829
2147
|
|
1830
2148
|
.mx-8 {
|
@@ -1832,98 +2150,122 @@ input[type="color"]::-webkit-color-swatch {
|
|
1832
2150
|
margin-right: 2rem;
|
1833
2151
|
}
|
1834
2152
|
|
1835
|
-
.
|
1836
|
-
margin-
|
1837
|
-
|
1838
|
-
|
1839
|
-
.mt-2 {
|
1840
|
-
margin-top: .5rem;
|
2153
|
+
.mx-auto {
|
2154
|
+
margin-left: auto;
|
2155
|
+
margin-right: auto;
|
1841
2156
|
}
|
1842
2157
|
|
1843
|
-
|
1844
|
-
margin-
|
2158
|
+
.\!ml-2 {
|
2159
|
+
margin-left: .5rem !important;
|
1845
2160
|
}
|
1846
2161
|
|
1847
|
-
|
1848
|
-
margin-
|
2162
|
+
.-ml-3 {
|
2163
|
+
margin-left: -.75rem;
|
1849
2164
|
}
|
1850
2165
|
|
1851
|
-
|
1852
|
-
margin-
|
2166
|
+
.-mr-1 {
|
2167
|
+
margin-right: -.25rem;
|
1853
2168
|
}
|
1854
2169
|
|
1855
|
-
|
1856
|
-
margin-
|
2170
|
+
.-mr-1\.5 {
|
2171
|
+
margin-right: -.375rem;
|
1857
2172
|
}
|
1858
2173
|
|
1859
|
-
|
1860
|
-
margin-top:
|
2174
|
+
.-mt-1 {
|
2175
|
+
margin-top: -.25rem;
|
1861
2176
|
}
|
1862
2177
|
|
1863
|
-
|
1864
|
-
margin-
|
2178
|
+
.-mt-px {
|
2179
|
+
margin-top: -1px;
|
1865
2180
|
}
|
1866
2181
|
|
1867
|
-
.
|
1868
|
-
margin-
|
2182
|
+
.mb-2 {
|
2183
|
+
margin-bottom: .5rem;
|
1869
2184
|
}
|
1870
2185
|
|
1871
|
-
.
|
1872
|
-
margin-
|
2186
|
+
.mb-3 {
|
2187
|
+
margin-bottom: .75rem;
|
1873
2188
|
}
|
1874
2189
|
|
1875
2190
|
.mb-4 {
|
1876
2191
|
margin-bottom: 1rem;
|
1877
2192
|
}
|
1878
2193
|
|
1879
|
-
.
|
1880
|
-
margin-
|
2194
|
+
.mb-6 {
|
2195
|
+
margin-bottom: 1.5rem;
|
1881
2196
|
}
|
1882
2197
|
|
1883
|
-
.
|
1884
|
-
margin-
|
2198
|
+
.mb-8 {
|
2199
|
+
margin-bottom: 2rem;
|
1885
2200
|
}
|
1886
2201
|
|
1887
2202
|
.mb-\[-2px\] {
|
1888
2203
|
margin-bottom: -2px;
|
1889
2204
|
}
|
1890
2205
|
|
1891
|
-
.
|
1892
|
-
margin-
|
2206
|
+
.ml-2 {
|
2207
|
+
margin-left: .5rem;
|
1893
2208
|
}
|
1894
2209
|
|
1895
|
-
.
|
1896
|
-
margin-
|
2210
|
+
.ml-auto {
|
2211
|
+
margin-left: auto;
|
1897
2212
|
}
|
1898
2213
|
|
1899
|
-
|
1900
|
-
margin-
|
2214
|
+
.mr-0 {
|
2215
|
+
margin-right: 0;
|
1901
2216
|
}
|
1902
2217
|
|
1903
|
-
.mr-
|
1904
|
-
margin-right:
|
2218
|
+
.mr-0\.5 {
|
2219
|
+
margin-right: .125rem;
|
2220
|
+
}
|
2221
|
+
|
2222
|
+
.mr-1 {
|
2223
|
+
margin-right: .25rem;
|
1905
2224
|
}
|
1906
2225
|
|
1907
2226
|
.mr-1\.5 {
|
1908
2227
|
margin-right: .375rem;
|
1909
2228
|
}
|
1910
2229
|
|
1911
|
-
.mr-
|
1912
|
-
margin-right: .
|
2230
|
+
.mr-2 {
|
2231
|
+
margin-right: .5rem;
|
1913
2232
|
}
|
1914
2233
|
|
1915
|
-
.mr-
|
1916
|
-
margin-right:
|
2234
|
+
.mr-6 {
|
2235
|
+
margin-right: 1.5rem;
|
1917
2236
|
}
|
1918
2237
|
|
1919
|
-
.
|
1920
|
-
|
2238
|
+
.mr-auto {
|
2239
|
+
margin-right: auto;
|
2240
|
+
}
|
2241
|
+
|
2242
|
+
.mt-12 {
|
2243
|
+
margin-top: 3rem;
|
2244
|
+
}
|
2245
|
+
|
2246
|
+
.mt-6 {
|
2247
|
+
margin-top: 1.5rem;
|
2248
|
+
}
|
2249
|
+
|
2250
|
+
.mt-8 {
|
2251
|
+
margin-top: 2rem;
|
2252
|
+
}
|
2253
|
+
|
2254
|
+
.line-clamp-2 {
|
2255
|
+
-webkit-line-clamp: 2;
|
2256
|
+
-webkit-box-orient: vertical;
|
2257
|
+
display: -webkit-box;
|
2258
|
+
overflow: hidden;
|
1921
2259
|
}
|
1922
2260
|
|
1923
2261
|
.\!block {
|
1924
2262
|
display: block !important;
|
1925
2263
|
}
|
1926
2264
|
|
2265
|
+
.block {
|
2266
|
+
display: block;
|
2267
|
+
}
|
2268
|
+
|
1927
2269
|
.inline-block {
|
1928
2270
|
display: inline-block;
|
1929
2271
|
}
|
@@ -1956,56 +2298,52 @@ input[type="color"]::-webkit-color-swatch {
|
|
1956
2298
|
display: none;
|
1957
2299
|
}
|
1958
2300
|
|
1959
|
-
.h-
|
1960
|
-
height:
|
2301
|
+
.h-10 {
|
2302
|
+
height: 2.5rem;
|
1961
2303
|
}
|
1962
2304
|
|
1963
|
-
.h-
|
1964
|
-
height:
|
2305
|
+
.h-3 {
|
2306
|
+
height: .75rem;
|
1965
2307
|
}
|
1966
2308
|
|
1967
|
-
.h
|
1968
|
-
height:
|
2309
|
+
.h-3\.5 {
|
2310
|
+
height: .875rem;
|
1969
2311
|
}
|
1970
2312
|
|
1971
|
-
.h
|
1972
|
-
height:
|
2313
|
+
.h-4 {
|
2314
|
+
height: 1rem;
|
1973
2315
|
}
|
1974
2316
|
|
1975
|
-
.h
|
1976
|
-
height:
|
2317
|
+
.h-5 {
|
2318
|
+
height: 1.25rem;
|
1977
2319
|
}
|
1978
2320
|
|
1979
2321
|
.h-6 {
|
1980
2322
|
height: 1.5rem;
|
1981
2323
|
}
|
1982
2324
|
|
1983
|
-
.h
|
1984
|
-
height:
|
1985
|
-
}
|
1986
|
-
|
1987
|
-
.h-3\.5 {
|
1988
|
-
height: .875rem;
|
2325
|
+
.h-\[9px\] {
|
2326
|
+
height: 9px;
|
1989
2327
|
}
|
1990
2328
|
|
1991
|
-
.h-
|
1992
|
-
height:
|
2329
|
+
.h-\[calc\(100\%_-_40px\)\] {
|
2330
|
+
height: calc(100% - 40px);
|
1993
2331
|
}
|
1994
2332
|
|
1995
|
-
.h-\[
|
1996
|
-
height:
|
2333
|
+
.h-\[calc\(100vh_-_2\.5rem\)\] {
|
2334
|
+
height: calc(100vh - 2.5rem);
|
1997
2335
|
}
|
1998
2336
|
|
1999
|
-
.h-
|
2000
|
-
height:
|
2337
|
+
.h-\[calc\(100vh_-_40px\)\] {
|
2338
|
+
height: calc(100vh - 40px);
|
2001
2339
|
}
|
2002
2340
|
|
2003
|
-
.h-
|
2004
|
-
height:
|
2341
|
+
.h-full {
|
2342
|
+
height: 100%;
|
2005
2343
|
}
|
2006
2344
|
|
2007
|
-
|
2008
|
-
height:
|
2345
|
+
.h-screen {
|
2346
|
+
height: 100vh;
|
2009
2347
|
}
|
2010
2348
|
|
2011
2349
|
.max-h-full {
|
@@ -2016,56 +2354,56 @@ input[type="color"]::-webkit-color-swatch {
|
|
2016
2354
|
min-height: 0;
|
2017
2355
|
}
|
2018
2356
|
|
2019
|
-
.
|
2020
|
-
|
2021
|
-
}
|
2022
|
-
|
2023
|
-
.w-\[140px\] {
|
2024
|
-
width: 140px;
|
2025
|
-
}
|
2026
|
-
|
2027
|
-
.w-screen {
|
2028
|
-
width: 100vw;
|
2357
|
+
.min-h-\[calc\(100vh_-_400px\)\] {
|
2358
|
+
min-height: calc(100vh - 400px);
|
2029
2359
|
}
|
2030
2360
|
|
2031
2361
|
.w-11 {
|
2032
2362
|
width: 2.75rem;
|
2033
2363
|
}
|
2034
2364
|
|
2035
|
-
.w-
|
2036
|
-
width:
|
2365
|
+
.w-3 {
|
2366
|
+
width: .75rem;
|
2037
2367
|
}
|
2038
2368
|
|
2039
2369
|
.w-3\.5 {
|
2040
2370
|
width: .875rem;
|
2041
2371
|
}
|
2042
2372
|
|
2043
|
-
.w-
|
2044
|
-
width:
|
2373
|
+
.w-4 {
|
2374
|
+
width: 1rem;
|
2375
|
+
}
|
2376
|
+
|
2377
|
+
.w-5 {
|
2378
|
+
width: 1.25rem;
|
2379
|
+
}
|
2380
|
+
|
2381
|
+
.w-\[360px\] {
|
2382
|
+
width: 360px;
|
2045
2383
|
}
|
2046
2384
|
|
2047
2385
|
.w-\[9px\] {
|
2048
2386
|
width: 9px;
|
2049
2387
|
}
|
2050
2388
|
|
2051
|
-
.w-
|
2052
|
-
width:
|
2389
|
+
.w-full {
|
2390
|
+
width: 100%;
|
2053
2391
|
}
|
2054
2392
|
|
2055
|
-
.
|
2056
|
-
|
2393
|
+
.w-screen {
|
2394
|
+
width: 100vw;
|
2057
2395
|
}
|
2058
2396
|
|
2059
2397
|
.min-w-0 {
|
2060
2398
|
min-width: 0;
|
2061
2399
|
}
|
2062
2400
|
|
2063
|
-
.
|
2064
|
-
|
2401
|
+
.min-w-\[180px\] {
|
2402
|
+
min-width: 180px;
|
2065
2403
|
}
|
2066
2404
|
|
2067
|
-
.max-w
|
2068
|
-
max-width:
|
2405
|
+
.max-w-\[40\%\] {
|
2406
|
+
max-width: 40%;
|
2069
2407
|
}
|
2070
2408
|
|
2071
2409
|
.max-w-\[420px\] {
|
@@ -2076,8 +2414,8 @@ input[type="color"]::-webkit-color-swatch {
|
|
2076
2414
|
max-width: none;
|
2077
2415
|
}
|
2078
2416
|
|
2079
|
-
.max-w-
|
2080
|
-
max-width:
|
2417
|
+
.max-w-screen-lg {
|
2418
|
+
max-width: 1024px;
|
2081
2419
|
}
|
2082
2420
|
|
2083
2421
|
.flex-none {
|
@@ -2088,32 +2426,36 @@ input[type="color"]::-webkit-color-swatch {
|
|
2088
2426
|
flex-shrink: 0;
|
2089
2427
|
}
|
2090
2428
|
|
2429
|
+
.flex-grow {
|
2430
|
+
flex-grow: 1;
|
2431
|
+
}
|
2432
|
+
|
2091
2433
|
.border-collapse {
|
2092
2434
|
border-collapse: collapse;
|
2093
2435
|
}
|
2094
2436
|
|
2095
|
-
|
2096
|
-
--tw-translate-x:
|
2437
|
+
.-translate-x-1\/2 {
|
2438
|
+
--tw-translate-x: -50%;
|
2097
2439
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
2098
2440
|
}
|
2099
2441
|
|
2100
|
-
|
2101
|
-
--tw-translate-
|
2442
|
+
.-translate-y-1\/2 {
|
2443
|
+
--tw-translate-y: -50%;
|
2102
2444
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
2103
2445
|
}
|
2104
2446
|
|
2105
|
-
.translate-x-
|
2106
|
-
--tw-translate-x:
|
2447
|
+
.translate-x-0 {
|
2448
|
+
--tw-translate-x: 0px;
|
2107
2449
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
2108
2450
|
}
|
2109
2451
|
|
2110
|
-
|
2111
|
-
--tw-translate-
|
2452
|
+
.translate-x-5 {
|
2453
|
+
--tw-translate-x: 1.25rem;
|
2112
2454
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
2113
2455
|
}
|
2114
2456
|
|
2115
|
-
|
2116
|
-
--tw-translate-x:
|
2457
|
+
.translate-x-full {
|
2458
|
+
--tw-translate-x: 100%;
|
2117
2459
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
2118
2460
|
}
|
2119
2461
|
|
@@ -2122,13 +2464,19 @@ input[type="color"]::-webkit-color-swatch {
|
|
2122
2464
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
2123
2465
|
}
|
2124
2466
|
|
2467
|
+
.rotate-45 {
|
2468
|
+
--tw-rotate: 45deg;
|
2469
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
2470
|
+
}
|
2471
|
+
|
2125
2472
|
.rotate-90 {
|
2126
2473
|
--tw-rotate: 90deg;
|
2127
2474
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
2128
2475
|
}
|
2129
2476
|
|
2130
|
-
.
|
2131
|
-
--tw-
|
2477
|
+
.scale-75 {
|
2478
|
+
--tw-scale-x: .75;
|
2479
|
+
--tw-scale-y: .75;
|
2132
2480
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
2133
2481
|
}
|
2134
2482
|
|
@@ -2146,32 +2494,35 @@ input[type="color"]::-webkit-color-swatch {
|
|
2146
2494
|
cursor: default !important;
|
2147
2495
|
}
|
2148
2496
|
|
2149
|
-
|
2150
|
-
cursor:
|
2151
|
-
}
|
2152
|
-
|
2153
|
-
.cursor-\[not-allowed\] {
|
2154
|
-
cursor: not-allowed;
|
2497
|
+
.\!cursor-not-allowed {
|
2498
|
+
cursor: not-allowed !important;
|
2155
2499
|
}
|
2156
2500
|
|
2157
2501
|
.cursor-\[col-resize\] {
|
2158
2502
|
cursor: col-resize;
|
2159
2503
|
}
|
2160
2504
|
|
2161
|
-
.cursor-\[
|
2162
|
-
cursor:
|
2505
|
+
.cursor-\[not-allowed\] {
|
2506
|
+
cursor: not-allowed;
|
2163
2507
|
}
|
2164
2508
|
|
2165
2509
|
.cursor-\[nwse-resize\] {
|
2166
2510
|
cursor: nwse-resize;
|
2167
2511
|
}
|
2168
2512
|
|
2513
|
+
.cursor-\[row-resize\] {
|
2514
|
+
cursor: row-resize;
|
2515
|
+
}
|
2516
|
+
|
2169
2517
|
.cursor-help {
|
2170
2518
|
cursor: help;
|
2171
2519
|
}
|
2172
2520
|
|
2521
|
+
.cursor-pointer {
|
2522
|
+
cursor: pointer;
|
2523
|
+
}
|
2524
|
+
|
2173
2525
|
.select-none {
|
2174
|
-
-webkit-user-select: none;
|
2175
2526
|
user-select: none;
|
2176
2527
|
}
|
2177
2528
|
|
@@ -2191,10 +2542,6 @@ input[type="color"]::-webkit-color-swatch {
|
|
2191
2542
|
grid-template-columns: 1fr 17px;
|
2192
2543
|
}
|
2193
2544
|
|
2194
|
-
.grid-rows-\[40px_1fr\] {
|
2195
|
-
grid-template-rows: 40px 1fr;
|
2196
|
-
}
|
2197
|
-
|
2198
2545
|
.\!grid-rows-\[1fr\] {
|
2199
2546
|
grid-template-rows: 1fr !important;
|
2200
2547
|
}
|
@@ -2203,6 +2550,10 @@ input[type="color"]::-webkit-color-swatch {
|
|
2203
2550
|
grid-template-rows: 1fr 17px;
|
2204
2551
|
}
|
2205
2552
|
|
2553
|
+
.grid-rows-\[40px_1fr\] {
|
2554
|
+
grid-template-rows: 40px 1fr;
|
2555
|
+
}
|
2556
|
+
|
2206
2557
|
.flex-col {
|
2207
2558
|
flex-direction: column;
|
2208
2559
|
}
|
@@ -2223,10 +2574,20 @@ input[type="color"]::-webkit-color-swatch {
|
|
2223
2574
|
justify-content: space-between;
|
2224
2575
|
}
|
2225
2576
|
|
2226
|
-
.
|
2227
|
-
|
2228
|
-
|
2229
|
-
|
2577
|
+
.gap-2 {
|
2578
|
+
gap: .5rem;
|
2579
|
+
}
|
2580
|
+
|
2581
|
+
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
2582
|
+
--tw-space-x-reverse: 0;
|
2583
|
+
margin-right: calc(.25rem * var(--tw-space-x-reverse));
|
2584
|
+
margin-left: calc(.25rem * calc(1 - var(--tw-space-x-reverse)));
|
2585
|
+
}
|
2586
|
+
|
2587
|
+
.space-x-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
2588
|
+
--tw-space-x-reverse: 0;
|
2589
|
+
margin-right: calc(.375rem * var(--tw-space-x-reverse));
|
2590
|
+
margin-left: calc(.375rem * calc(1 - var(--tw-space-x-reverse)));
|
2230
2591
|
}
|
2231
2592
|
|
2232
2593
|
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
@@ -2235,10 +2596,10 @@ input[type="color"]::-webkit-color-swatch {
|
|
2235
2596
|
margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse)));
|
2236
2597
|
}
|
2237
2598
|
|
2238
|
-
.space-x-
|
2599
|
+
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
|
2239
2600
|
--tw-space-x-reverse: 0;
|
2240
|
-
margin-right: calc(.
|
2241
|
-
margin-left: calc(.
|
2601
|
+
margin-right: calc(.75rem * var(--tw-space-x-reverse));
|
2602
|
+
margin-left: calc(.75rem * calc(1 - var(--tw-space-x-reverse)));
|
2242
2603
|
}
|
2243
2604
|
|
2244
2605
|
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
|
@@ -2247,10 +2608,10 @@ input[type="color"]::-webkit-color-swatch {
|
|
2247
2608
|
margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
|
2248
2609
|
}
|
2249
2610
|
|
2250
|
-
.space-
|
2251
|
-
--tw-space-
|
2252
|
-
margin-
|
2253
|
-
margin-
|
2611
|
+
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
2612
|
+
--tw-space-y-reverse: 0;
|
2613
|
+
margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
|
2614
|
+
margin-bottom: calc(.5rem * var(--tw-space-y-reverse));
|
2254
2615
|
}
|
2255
2616
|
|
2256
2617
|
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
|
@@ -2259,12 +2620,6 @@ input[type="color"]::-webkit-color-swatch {
|
|
2259
2620
|
margin-bottom: calc(.75rem * var(--tw-space-y-reverse));
|
2260
2621
|
}
|
2261
2622
|
|
2262
|
-
.space-x-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
2263
|
-
--tw-space-x-reverse: 0;
|
2264
|
-
margin-right: calc(.375rem * var(--tw-space-x-reverse));
|
2265
|
-
margin-left: calc(.375rem * calc(1 - var(--tw-space-x-reverse)));
|
2266
|
-
}
|
2267
|
-
|
2268
2623
|
.divide-y > :not([hidden]) ~ :not([hidden]) {
|
2269
2624
|
--tw-divide-y-reverse: 0;
|
2270
2625
|
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
@@ -2279,6 +2634,10 @@ input[type="color"]::-webkit-color-swatch {
|
|
2279
2634
|
border-color: var(--lookbook-divider);
|
2280
2635
|
}
|
2281
2636
|
|
2637
|
+
.divide-lookbook-viewport-handle-icon-stroke-hover > :not([hidden]) ~ :not([hidden]) {
|
2638
|
+
border-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2639
|
+
}
|
2640
|
+
|
2282
2641
|
.overflow-auto {
|
2283
2642
|
overflow: auto;
|
2284
2643
|
}
|
@@ -2317,12 +2676,12 @@ input[type="color"]::-webkit-color-swatch {
|
|
2317
2676
|
white-space: pre-wrap;
|
2318
2677
|
}
|
2319
2678
|
|
2320
|
-
.
|
2321
|
-
|
2679
|
+
.break-all {
|
2680
|
+
word-break: break-all;
|
2322
2681
|
}
|
2323
2682
|
|
2324
|
-
.rounded-
|
2325
|
-
border-radius:
|
2683
|
+
.rounded-full {
|
2684
|
+
border-radius: 9999px;
|
2326
2685
|
}
|
2327
2686
|
|
2328
2687
|
.rounded-md {
|
@@ -2345,90 +2704,116 @@ input[type="color"]::-webkit-color-swatch {
|
|
2345
2704
|
border-width: 2px;
|
2346
2705
|
}
|
2347
2706
|
|
2348
|
-
.border-t {
|
2349
|
-
border-top-width: 1px;
|
2350
|
-
}
|
2351
|
-
|
2352
2707
|
.border-b {
|
2353
2708
|
border-bottom-width: 1px;
|
2354
2709
|
}
|
2355
2710
|
|
2356
|
-
.border-l {
|
2357
|
-
border-left-width: 1px;
|
2358
|
-
}
|
2359
|
-
|
2360
2711
|
.border-b-0 {
|
2361
2712
|
border-bottom-width: 0;
|
2362
2713
|
}
|
2363
2714
|
|
2364
|
-
.border-
|
2365
|
-
border-
|
2715
|
+
.border-b-2 {
|
2716
|
+
border-bottom-width: 2px;
|
2717
|
+
}
|
2718
|
+
|
2719
|
+
.border-l {
|
2720
|
+
border-left-width: 1px;
|
2366
2721
|
}
|
2367
2722
|
|
2368
2723
|
.border-l-2 {
|
2369
2724
|
border-left-width: 2px;
|
2370
2725
|
}
|
2371
2726
|
|
2372
|
-
.border-
|
2373
|
-
border-
|
2727
|
+
.border-r {
|
2728
|
+
border-right-width: 1px;
|
2374
2729
|
}
|
2375
2730
|
|
2376
|
-
.border-t
|
2377
|
-
border-top-width:
|
2731
|
+
.border-t {
|
2732
|
+
border-top-width: 1px;
|
2378
2733
|
}
|
2379
2734
|
|
2380
2735
|
.border-dashed {
|
2381
2736
|
border-style: dashed;
|
2382
2737
|
}
|
2383
2738
|
|
2384
|
-
|
2739
|
+
.\!border-lookbook-header-border {
|
2740
|
+
border-color: var(--lookbook-header-border) !important;
|
2741
|
+
}
|
2742
|
+
|
2743
|
+
.border-gray-300 {
|
2385
2744
|
--tw-border-opacity: 1;
|
2386
|
-
border-color: rgb(
|
2745
|
+
border-color: rgb(209 213 219 / var(--tw-border-opacity));
|
2387
2746
|
}
|
2388
2747
|
|
2389
2748
|
.border-lookbook-divider {
|
2390
2749
|
border-color: var(--lookbook-divider);
|
2391
2750
|
}
|
2392
2751
|
|
2393
|
-
.border-
|
2752
|
+
.border-lookbook-page-header-border {
|
2753
|
+
border-color: var(--lookbook-page-header-border);
|
2754
|
+
}
|
2755
|
+
|
2756
|
+
.border-lookbook-tabs-border-active {
|
2757
|
+
border-color: var(--lookbook-tabs-border-active);
|
2758
|
+
}
|
2759
|
+
|
2760
|
+
.border-lookbook-viewport-handle-icon-stroke-hover {
|
2761
|
+
border-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2762
|
+
}
|
2763
|
+
|
2764
|
+
.border-red-200 {
|
2394
2765
|
--tw-border-opacity: 1;
|
2395
|
-
border-color: rgb(
|
2766
|
+
border-color: rgb(254 202 202 / var(--tw-border-opacity));
|
2396
2767
|
}
|
2397
2768
|
|
2398
2769
|
.border-transparent {
|
2399
2770
|
border-color: #0000;
|
2400
2771
|
}
|
2401
2772
|
|
2402
|
-
.border-
|
2403
|
-
|
2404
|
-
border-color:
|
2773
|
+
.border-x-lookbook-viewport-handle-icon-stroke-hover {
|
2774
|
+
border-left-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2775
|
+
border-right-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2405
2776
|
}
|
2406
2777
|
|
2407
|
-
|
2408
|
-
border-color: var(--lookbook-
|
2778
|
+
.border-y-lookbook-viewport-handle-icon-stroke-hover {
|
2779
|
+
border-top-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2780
|
+
border-bottom-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2409
2781
|
}
|
2410
2782
|
|
2411
|
-
.border-lookbook-
|
2412
|
-
border-color: var(--lookbook-
|
2783
|
+
.border-b-lookbook-viewport-handle-icon-stroke-hover {
|
2784
|
+
border-bottom-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2413
2785
|
}
|
2414
2786
|
|
2415
|
-
.
|
2416
|
-
|
2417
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
2787
|
+
.border-e-lookbook-viewport-handle-icon-stroke-hover {
|
2788
|
+
border-inline-end-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2418
2789
|
}
|
2419
2790
|
|
2420
|
-
.
|
2421
|
-
|
2422
|
-
background-color: rgb(254 242 242 / var(--tw-bg-opacity));
|
2791
|
+
.border-l-lookbook-viewport-handle-icon-stroke-hover {
|
2792
|
+
border-left-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2423
2793
|
}
|
2424
2794
|
|
2425
|
-
.
|
2426
|
-
|
2427
|
-
background-color: rgb(254 226 226 / var(--tw-bg-opacity));
|
2795
|
+
.border-r-lookbook-viewport-handle-icon-stroke-hover {
|
2796
|
+
border-right-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2428
2797
|
}
|
2429
2798
|
|
2430
|
-
.
|
2431
|
-
|
2799
|
+
.border-s-lookbook-viewport-handle-icon-stroke-hover {
|
2800
|
+
border-inline-start-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2801
|
+
}
|
2802
|
+
|
2803
|
+
.border-t-lookbook-viewport-handle-icon-stroke-hover {
|
2804
|
+
border-top-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2805
|
+
}
|
2806
|
+
|
2807
|
+
.\!bg-lookbook-button-bg {
|
2808
|
+
background-color: var(--lookbook-button-bg) !important;
|
2809
|
+
}
|
2810
|
+
|
2811
|
+
.\!bg-lookbook-header-bg {
|
2812
|
+
background-color: var(--lookbook-header-bg) !important;
|
2813
|
+
}
|
2814
|
+
|
2815
|
+
.\!bg-lookbook-nav-item-active {
|
2816
|
+
background-color: var(--lookbook-nav-item-active) !important;
|
2432
2817
|
}
|
2433
2818
|
|
2434
2819
|
.bg-black {
|
@@ -2436,61 +2821,111 @@ input[type="color"]::-webkit-color-swatch {
|
|
2436
2821
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
2437
2822
|
}
|
2438
2823
|
|
2439
|
-
.bg-
|
2440
|
-
background-color:
|
2824
|
+
.bg-gray-100\/80 {
|
2825
|
+
background-color: #f3f4f6cc;
|
2441
2826
|
}
|
2442
2827
|
|
2443
|
-
.bg-
|
2444
|
-
background-color:
|
2828
|
+
.bg-lookbook-base-50 {
|
2829
|
+
background-color: var(--lookbook-base-50);
|
2830
|
+
}
|
2831
|
+
|
2832
|
+
.bg-lookbook-button-bg {
|
2833
|
+
background-color: var(--lookbook-button-bg);
|
2834
|
+
}
|
2835
|
+
|
2836
|
+
.bg-lookbook-button-bg-hover {
|
2837
|
+
background-color: var(--lookbook-button-bg-hover);
|
2838
|
+
}
|
2839
|
+
|
2840
|
+
.bg-lookbook-divider {
|
2841
|
+
background-color: var(--lookbook-divider);
|
2445
2842
|
}
|
2446
2843
|
|
2447
2844
|
.bg-lookbook-drawer-bg {
|
2448
2845
|
background-color: var(--lookbook-drawer-bg);
|
2449
2846
|
}
|
2450
2847
|
|
2848
|
+
.bg-lookbook-input-toggle {
|
2849
|
+
background-color: var(--lookbook-input-toggle);
|
2850
|
+
}
|
2851
|
+
|
2451
2852
|
.bg-lookbook-input-toggle-active {
|
2452
2853
|
background-color: var(--lookbook-input-toggle-active);
|
2453
2854
|
}
|
2454
2855
|
|
2455
|
-
.bg-lookbook-
|
2456
|
-
background-color: var(--lookbook-
|
2856
|
+
.bg-lookbook-page-bg {
|
2857
|
+
background-color: var(--lookbook-page-bg);
|
2858
|
+
}
|
2859
|
+
|
2860
|
+
.bg-lookbook-page-header-bg {
|
2861
|
+
background-color: var(--lookbook-page-header-bg);
|
2862
|
+
}
|
2863
|
+
|
2864
|
+
.bg-lookbook-params-editor-bg {
|
2865
|
+
background-color: var(--lookbook-params-editor-bg);
|
2457
2866
|
}
|
2458
2867
|
|
2459
2868
|
.bg-lookbook-prose-bg {
|
2460
2869
|
background-color: var(--lookbook-prose-bg);
|
2461
2870
|
}
|
2462
2871
|
|
2463
|
-
.bg-
|
2872
|
+
.bg-lookbook-sidebar-bg {
|
2873
|
+
background-color: var(--lookbook-sidebar-bg);
|
2874
|
+
}
|
2875
|
+
|
2876
|
+
.bg-lookbook-toolbar-bg {
|
2877
|
+
background-color: var(--lookbook-toolbar-bg);
|
2878
|
+
}
|
2879
|
+
|
2880
|
+
.bg-lookbook-viewport-handle-icon-stroke-hover {
|
2881
|
+
background-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2882
|
+
}
|
2883
|
+
|
2884
|
+
.bg-red-100 {
|
2464
2885
|
--tw-bg-opacity: 1;
|
2465
|
-
background-color: rgb(
|
2886
|
+
background-color: rgb(254 226 226 / var(--tw-bg-opacity));
|
2466
2887
|
}
|
2467
2888
|
|
2468
|
-
|
2469
|
-
|
2889
|
+
.bg-red-50 {
|
2890
|
+
--tw-bg-opacity: 1;
|
2891
|
+
background-color: rgb(254 242 242 / var(--tw-bg-opacity));
|
2470
2892
|
}
|
2471
2893
|
|
2472
|
-
.bg-
|
2473
|
-
background-color:
|
2894
|
+
.bg-transparent {
|
2895
|
+
background-color: #0000;
|
2474
2896
|
}
|
2475
2897
|
|
2476
|
-
.bg-
|
2477
|
-
|
2898
|
+
.bg-white {
|
2899
|
+
--tw-bg-opacity: 1;
|
2900
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
2478
2901
|
}
|
2479
2902
|
|
2480
|
-
.bg-
|
2481
|
-
|
2903
|
+
.bg-zinc-50 {
|
2904
|
+
--tw-bg-opacity: 1;
|
2905
|
+
background-color: rgb(250 250 250 / var(--tw-bg-opacity));
|
2482
2906
|
}
|
2483
2907
|
|
2484
|
-
|
2485
|
-
|
2908
|
+
.from-lookbook-viewport-handle-icon-stroke-hover {
|
2909
|
+
--tw-gradient-from: var(--lookbook-viewport-handle-icon-stroke-hover) var(--tw-gradient-from-position);
|
2910
|
+
--tw-gradient-to: #fff0 var(--tw-gradient-to-position);
|
2911
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
2486
2912
|
}
|
2487
2913
|
|
2488
|
-
.
|
2489
|
-
|
2914
|
+
.via-lookbook-viewport-handle-icon-stroke-hover {
|
2915
|
+
--tw-gradient-to: #fff0 var(--tw-gradient-to-position);
|
2916
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--lookbook-viewport-handle-icon-stroke-hover) var(--tw-gradient-via-position), var(--tw-gradient-to);
|
2490
2917
|
}
|
2491
2918
|
|
2492
|
-
.
|
2493
|
-
|
2919
|
+
.to-lookbook-viewport-handle-icon-stroke-hover {
|
2920
|
+
--tw-gradient-to: var(--lookbook-viewport-handle-icon-stroke-hover) var(--tw-gradient-to-position);
|
2921
|
+
}
|
2922
|
+
|
2923
|
+
.fill-lookbook-viewport-handle-icon-stroke-hover {
|
2924
|
+
fill: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2925
|
+
}
|
2926
|
+
|
2927
|
+
.stroke-lookbook-viewport-handle-icon-stroke-hover {
|
2928
|
+
stroke: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2494
2929
|
}
|
2495
2930
|
|
2496
2931
|
.p-1 {
|
@@ -2501,16 +2936,27 @@ input[type="color"]::-webkit-color-swatch {
|
|
2501
2936
|
padding: .5rem;
|
2502
2937
|
}
|
2503
2938
|
|
2504
|
-
.p-6 {
|
2505
|
-
padding: 1.5rem;
|
2506
|
-
}
|
2507
|
-
|
2508
2939
|
.p-3 {
|
2509
2940
|
padding: .75rem;
|
2510
2941
|
}
|
2511
2942
|
|
2512
|
-
.p-
|
2513
|
-
padding:
|
2943
|
+
.p-4 {
|
2944
|
+
padding: 1rem;
|
2945
|
+
}
|
2946
|
+
|
2947
|
+
.px-1 {
|
2948
|
+
padding-left: .25rem;
|
2949
|
+
padding-right: .25rem;
|
2950
|
+
}
|
2951
|
+
|
2952
|
+
.px-2 {
|
2953
|
+
padding-left: .5rem;
|
2954
|
+
padding-right: .5rem;
|
2955
|
+
}
|
2956
|
+
|
2957
|
+
.px-3 {
|
2958
|
+
padding-left: .75rem;
|
2959
|
+
padding-right: .75rem;
|
2514
2960
|
}
|
2515
2961
|
|
2516
2962
|
.px-4 {
|
@@ -2518,29 +2964,24 @@ input[type="color"]::-webkit-color-swatch {
|
|
2518
2964
|
padding-right: 1rem;
|
2519
2965
|
}
|
2520
2966
|
|
2521
|
-
.py-6 {
|
2522
|
-
padding-top: 1.5rem;
|
2523
|
-
padding-bottom: 1.5rem;
|
2524
|
-
}
|
2525
|
-
|
2526
2967
|
.px-8 {
|
2527
2968
|
padding-left: 2rem;
|
2528
2969
|
padding-right: 2rem;
|
2529
2970
|
}
|
2530
2971
|
|
2531
|
-
.py-
|
2532
|
-
padding-top: .
|
2533
|
-
padding-bottom: .
|
2972
|
+
.py-1 {
|
2973
|
+
padding-top: .25rem;
|
2974
|
+
padding-bottom: .25rem;
|
2534
2975
|
}
|
2535
2976
|
|
2536
|
-
.
|
2537
|
-
padding-
|
2538
|
-
padding-
|
2977
|
+
.py-1\.5 {
|
2978
|
+
padding-top: .375rem;
|
2979
|
+
padding-bottom: .375rem;
|
2539
2980
|
}
|
2540
2981
|
|
2541
|
-
.
|
2542
|
-
padding-
|
2543
|
-
padding-
|
2982
|
+
.py-2 {
|
2983
|
+
padding-top: .5rem;
|
2984
|
+
padding-bottom: .5rem;
|
2544
2985
|
}
|
2545
2986
|
|
2546
2987
|
.py-3 {
|
@@ -2548,81 +2989,81 @@ input[type="color"]::-webkit-color-swatch {
|
|
2548
2989
|
padding-bottom: .75rem;
|
2549
2990
|
}
|
2550
2991
|
|
2551
|
-
.
|
2552
|
-
padding-
|
2553
|
-
padding-
|
2992
|
+
.py-6 {
|
2993
|
+
padding-top: 1.5rem;
|
2994
|
+
padding-bottom: 1.5rem;
|
2554
2995
|
}
|
2555
2996
|
|
2556
|
-
.pb-
|
2557
|
-
padding-bottom:
|
2997
|
+
.pb-0 {
|
2998
|
+
padding-bottom: 0;
|
2558
2999
|
}
|
2559
3000
|
|
2560
|
-
.pb-
|
2561
|
-
padding-bottom:
|
3001
|
+
.pb-1 {
|
3002
|
+
padding-bottom: .25rem;
|
2562
3003
|
}
|
2563
3004
|
|
2564
|
-
.
|
2565
|
-
padding-
|
3005
|
+
.pb-1\.5 {
|
3006
|
+
padding-bottom: .375rem;
|
2566
3007
|
}
|
2567
3008
|
|
2568
|
-
.
|
2569
|
-
padding-
|
3009
|
+
.pb-10 {
|
3010
|
+
padding-bottom: 2.5rem;
|
2570
3011
|
}
|
2571
3012
|
|
2572
|
-
.
|
2573
|
-
padding-
|
3013
|
+
.pb-12 {
|
3014
|
+
padding-bottom: 3rem;
|
2574
3015
|
}
|
2575
3016
|
|
2576
|
-
.pb-
|
2577
|
-
padding-bottom: .
|
3017
|
+
.pb-6 {
|
3018
|
+
padding-bottom: 1.5rem;
|
2578
3019
|
}
|
2579
3020
|
|
2580
|
-
.
|
2581
|
-
padding-
|
3021
|
+
.pl-0 {
|
3022
|
+
padding-left: 0;
|
2582
3023
|
}
|
2583
3024
|
|
2584
3025
|
.pl-0\.5 {
|
2585
3026
|
padding-left: .125rem;
|
2586
3027
|
}
|
2587
3028
|
|
2588
|
-
.pl-
|
2589
|
-
padding-left:
|
2590
|
-
}
|
2591
|
-
|
2592
|
-
.pt-8 {
|
2593
|
-
padding-top: 2rem;
|
3029
|
+
.pl-1 {
|
3030
|
+
padding-left: .25rem;
|
2594
3031
|
}
|
2595
3032
|
|
2596
|
-
.
|
2597
|
-
padding-
|
3033
|
+
.pl-2 {
|
3034
|
+
padding-left: .5rem;
|
2598
3035
|
}
|
2599
3036
|
|
2600
|
-
.
|
2601
|
-
padding-
|
3037
|
+
.pr-0 {
|
3038
|
+
padding-right: 0;
|
2602
3039
|
}
|
2603
3040
|
|
2604
|
-
.
|
2605
|
-
padding-
|
3041
|
+
.pr-0\.5 {
|
3042
|
+
padding-right: .125rem;
|
2606
3043
|
}
|
2607
3044
|
|
2608
3045
|
.pr-1 {
|
2609
3046
|
padding-right: .25rem;
|
2610
3047
|
}
|
2611
3048
|
|
2612
|
-
.
|
2613
|
-
padding-
|
3049
|
+
.pt-1 {
|
3050
|
+
padding-top: .25rem;
|
2614
3051
|
}
|
2615
3052
|
|
2616
3053
|
.pt-1\.5 {
|
2617
3054
|
padding-top: .375rem;
|
2618
3055
|
}
|
2619
3056
|
|
3057
|
+
.pt-2 {
|
3058
|
+
padding-top: .5rem;
|
3059
|
+
}
|
3060
|
+
|
2620
3061
|
.pt-2\.5 {
|
2621
3062
|
padding-top: .625rem;
|
2622
3063
|
}
|
2623
3064
|
|
2624
|
-
.
|
2625
|
-
padding-
|
3065
|
+
.pt-8 {
|
3066
|
+
padding-top: 2rem;
|
2626
3067
|
}
|
2627
3068
|
|
2628
3069
|
.text-left {
|
@@ -2634,11 +3075,15 @@ input[type="color"]::-webkit-color-swatch {
|
|
2634
3075
|
}
|
2635
3076
|
|
2636
3077
|
.font-mono {
|
2637
|
-
font-family: SFMono-Regular, Consolas, Liberation Mono,
|
3078
|
+
font-family: Source Code Variable, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
|
2638
3079
|
}
|
2639
3080
|
|
2640
|
-
.font-
|
2641
|
-
font-family: -
|
3081
|
+
.font-ui {
|
3082
|
+
font-family: Inter var, ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
3083
|
+
}
|
3084
|
+
|
3085
|
+
.text-\[11px\] {
|
3086
|
+
font-size: 11px;
|
2642
3087
|
}
|
2643
3088
|
|
2644
3089
|
.text-base {
|
@@ -2646,6 +3091,11 @@ input[type="color"]::-webkit-color-swatch {
|
|
2646
3091
|
line-height: 1.5rem;
|
2647
3092
|
}
|
2648
3093
|
|
3094
|
+
.text-lg {
|
3095
|
+
font-size: 1.125rem;
|
3096
|
+
line-height: 1.75rem;
|
3097
|
+
}
|
3098
|
+
|
2649
3099
|
.text-sm {
|
2650
3100
|
font-size: .875rem;
|
2651
3101
|
line-height: 1.25rem;
|
@@ -2661,17 +3111,16 @@ input[type="color"]::-webkit-color-swatch {
|
|
2661
3111
|
line-height: 1rem;
|
2662
3112
|
}
|
2663
3113
|
|
2664
|
-
.
|
2665
|
-
font-
|
2666
|
-
line-height: 1.75rem;
|
3114
|
+
.font-black {
|
3115
|
+
font-weight: 900;
|
2667
3116
|
}
|
2668
3117
|
|
2669
3118
|
.font-bold {
|
2670
3119
|
font-weight: 700;
|
2671
3120
|
}
|
2672
3121
|
|
2673
|
-
.font-
|
2674
|
-
font-weight:
|
3122
|
+
.font-semibold {
|
3123
|
+
font-weight: 600;
|
2675
3124
|
}
|
2676
3125
|
|
2677
3126
|
.uppercase {
|
@@ -2690,27 +3139,20 @@ input[type="color"]::-webkit-color-swatch {
|
|
2690
3139
|
line-height: 1.25;
|
2691
3140
|
}
|
2692
3141
|
|
2693
|
-
.tracking-wide {
|
2694
|
-
letter-spacing: .025em;
|
2695
|
-
}
|
2696
|
-
|
2697
3142
|
.tracking-wider {
|
2698
3143
|
letter-spacing: .05em;
|
2699
3144
|
}
|
2700
3145
|
|
2701
|
-
|
2702
|
-
--
|
2703
|
-
color: rgb(252 165 165 / var(--tw-text-opacity));
|
3146
|
+
.\!text-lookbook-button-text {
|
3147
|
+
color: var(--lookbook-button-text) !important;
|
2704
3148
|
}
|
2705
3149
|
|
2706
|
-
|
2707
|
-
--
|
2708
|
-
color: rgb(185 28 28 / var(--tw-text-opacity));
|
3150
|
+
.\!text-lookbook-header-text {
|
3151
|
+
color: var(--lookbook-header-text) !important;
|
2709
3152
|
}
|
2710
3153
|
|
2711
|
-
|
2712
|
-
--
|
2713
|
-
color: rgb(127 29 29 / var(--tw-text-opacity));
|
3154
|
+
.\!text-lookbook-tabs-text-disabled {
|
3155
|
+
color: var(--lookbook-tabs-text-disabled) !important;
|
2714
3156
|
}
|
2715
3157
|
|
2716
3158
|
.text-gray-400 {
|
@@ -2718,16 +3160,9 @@ input[type="color"]::-webkit-color-swatch {
|
|
2718
3160
|
color: rgb(156 163 175 / var(--tw-text-opacity));
|
2719
3161
|
}
|
2720
3162
|
|
2721
|
-
.text-
|
2722
|
-
|
2723
|
-
|
2724
|
-
|
2725
|
-
.text-lookbook-icon-button-stroke {
|
2726
|
-
color: var(--lookbook-icon-button-stroke);
|
2727
|
-
}
|
2728
|
-
|
2729
|
-
.text-lookbook-icon-button-stroke-hover {
|
2730
|
-
color: var(--lookbook-icon-button-stroke-hover);
|
3163
|
+
.text-gray-600 {
|
3164
|
+
--tw-text-opacity: 1;
|
3165
|
+
color: rgb(75 85 99 / var(--tw-text-opacity));
|
2731
3166
|
}
|
2732
3167
|
|
2733
3168
|
.text-green-500 {
|
@@ -2740,26 +3175,42 @@ input[type="color"]::-webkit-color-swatch {
|
|
2740
3175
|
color: rgb(22 163 74 / var(--tw-text-opacity));
|
2741
3176
|
}
|
2742
3177
|
|
2743
|
-
|
2744
|
-
color: var(--lookbook-
|
3178
|
+
.text-lookbook-branding-text {
|
3179
|
+
color: var(--lookbook-branding-text);
|
3180
|
+
}
|
3181
|
+
|
3182
|
+
.text-lookbook-button-text {
|
3183
|
+
color: var(--lookbook-button-text);
|
3184
|
+
}
|
3185
|
+
|
3186
|
+
.text-lookbook-embed-title {
|
3187
|
+
color: var(--lookbook-embed-title);
|
3188
|
+
}
|
3189
|
+
|
3190
|
+
.text-lookbook-header-text {
|
3191
|
+
color: var(--lookbook-header-text);
|
3192
|
+
}
|
3193
|
+
|
3194
|
+
.text-lookbook-icon-button-stroke {
|
3195
|
+
color: var(--lookbook-icon-button-stroke);
|
3196
|
+
}
|
3197
|
+
|
3198
|
+
.text-lookbook-icon-button-stroke-hover {
|
3199
|
+
color: var(--lookbook-icon-button-stroke-hover);
|
2745
3200
|
}
|
2746
3201
|
|
2747
|
-
.text-lookbook-
|
2748
|
-
color: var(--lookbook-
|
3202
|
+
.text-lookbook-nav-icon-stroke {
|
3203
|
+
color: var(--lookbook-nav-icon-stroke);
|
2749
3204
|
}
|
2750
3205
|
|
2751
|
-
.text-lookbook-header-text {
|
2752
|
-
color: var(--lookbook-header-text);
|
3206
|
+
.text-lookbook-page-header-text {
|
3207
|
+
color: var(--lookbook-page-header-text);
|
2753
3208
|
}
|
2754
3209
|
|
2755
3210
|
.text-lookbook-prose-text {
|
2756
3211
|
color: var(--lookbook-prose-text);
|
2757
3212
|
}
|
2758
3213
|
|
2759
|
-
.text-lookbook-nav-icon-stroke {
|
2760
|
-
color: var(--lookbook-nav-icon-stroke);
|
2761
|
-
}
|
2762
|
-
|
2763
3214
|
.text-lookbook-tabs-text {
|
2764
3215
|
color: var(--lookbook-tabs-text);
|
2765
3216
|
}
|
@@ -2768,56 +3219,82 @@ input[type="color"]::-webkit-color-swatch {
|
|
2768
3219
|
color: var(--lookbook-tabs-text-hover);
|
2769
3220
|
}
|
2770
3221
|
|
2771
|
-
|
2772
|
-
color: var(--lookbook-
|
3222
|
+
.text-lookbook-viewport-handle-icon-stroke-hover {
|
3223
|
+
color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
3224
|
+
}
|
3225
|
+
|
3226
|
+
.text-red-700 {
|
3227
|
+
--tw-text-opacity: 1;
|
3228
|
+
color: rgb(185 28 28 / var(--tw-text-opacity));
|
3229
|
+
}
|
3230
|
+
|
3231
|
+
.text-red-900 {
|
3232
|
+
--tw-text-opacity: 1;
|
3233
|
+
color: rgb(127 29 29 / var(--tw-text-opacity));
|
2773
3234
|
}
|
2774
3235
|
|
2775
3236
|
.underline {
|
2776
3237
|
text-decoration-line: underline;
|
2777
3238
|
}
|
2778
3239
|
|
2779
|
-
.
|
2780
|
-
|
3240
|
+
.decoration-lookbook-viewport-handle-icon-stroke-hover {
|
3241
|
+
text-decoration-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2781
3242
|
}
|
2782
3243
|
|
2783
|
-
.
|
2784
|
-
|
3244
|
+
.placeholder-lookbook-viewport-handle-icon-stroke-hover::placeholder {
|
3245
|
+
color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
2785
3246
|
}
|
2786
3247
|
|
2787
|
-
.
|
2788
|
-
|
3248
|
+
.caret-lookbook-viewport-handle-icon-stroke-hover {
|
3249
|
+
caret-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
3250
|
+
}
|
3251
|
+
|
3252
|
+
.accent-lookbook-viewport-handle-icon-stroke-hover {
|
3253
|
+
accent-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
3254
|
+
}
|
3255
|
+
|
3256
|
+
.\!opacity-100 {
|
3257
|
+
opacity: 1 !important;
|
2789
3258
|
}
|
2790
3259
|
|
2791
3260
|
.\!opacity-30 {
|
2792
3261
|
opacity: .3 !important;
|
2793
3262
|
}
|
2794
3263
|
|
2795
|
-
.opacity-
|
2796
|
-
opacity:
|
3264
|
+
.opacity-0 {
|
3265
|
+
opacity: 0;
|
3266
|
+
}
|
3267
|
+
|
3268
|
+
.opacity-25 {
|
3269
|
+
opacity: .25;
|
2797
3270
|
}
|
2798
3271
|
|
2799
3272
|
.opacity-40 {
|
2800
3273
|
opacity: .4;
|
2801
3274
|
}
|
2802
3275
|
|
2803
|
-
.opacity-
|
2804
|
-
opacity: .
|
3276
|
+
.opacity-50 {
|
3277
|
+
opacity: .5;
|
3278
|
+
}
|
3279
|
+
|
3280
|
+
.opacity-60 {
|
3281
|
+
opacity: .6;
|
2805
3282
|
}
|
2806
3283
|
|
2807
3284
|
.opacity-70 {
|
2808
3285
|
opacity: .7;
|
2809
3286
|
}
|
2810
3287
|
|
2811
|
-
|
2812
|
-
opacity:
|
3288
|
+
.opacity-75 {
|
3289
|
+
opacity: .75;
|
2813
3290
|
}
|
2814
3291
|
|
2815
|
-
.opacity-
|
2816
|
-
opacity: .
|
3292
|
+
.opacity-80 {
|
3293
|
+
opacity: .8;
|
2817
3294
|
}
|
2818
3295
|
|
2819
|
-
.opacity-
|
2820
|
-
opacity: .
|
3296
|
+
.opacity-90 {
|
3297
|
+
opacity: .9;
|
2821
3298
|
}
|
2822
3299
|
|
2823
3300
|
.shadow {
|
@@ -2826,12 +3303,29 @@ input[type="color"]::-webkit-color-swatch {
|
|
2826
3303
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
2827
3304
|
}
|
2828
3305
|
|
3306
|
+
.shadow-lookbook-viewport-handle-icon-stroke-hover {
|
3307
|
+
--tw-shadow-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
3308
|
+
--tw-shadow: var(--tw-shadow-colored);
|
3309
|
+
}
|
3310
|
+
|
3311
|
+
.outline-lookbook-viewport-handle-icon-stroke-hover {
|
3312
|
+
outline-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
3313
|
+
}
|
3314
|
+
|
2829
3315
|
.ring-0 {
|
2830
3316
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2831
3317
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2832
3318
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
2833
3319
|
}
|
2834
3320
|
|
3321
|
+
.ring-lookbook-viewport-handle-icon-stroke-hover {
|
3322
|
+
--tw-ring-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
3323
|
+
}
|
3324
|
+
|
3325
|
+
.ring-offset-lookbook-viewport-handle-icon-stroke-hover {
|
3326
|
+
--tw-ring-offset-color: var(--lookbook-viewport-handle-icon-stroke-hover);
|
3327
|
+
}
|
3328
|
+
|
2835
3329
|
.blur {
|
2836
3330
|
--tw-blur: blur(8px);
|
2837
3331
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
@@ -2841,26 +3335,32 @@ input[type="color"]::-webkit-color-swatch {
|
|
2841
3335
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
2842
3336
|
}
|
2843
3337
|
|
2844
|
-
.transition
|
2845
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
3338
|
+
.transition {
|
3339
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
2846
3340
|
transition-duration: .15s;
|
2847
3341
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2848
3342
|
}
|
2849
3343
|
|
2850
|
-
.transition {
|
2851
|
-
transition-property:
|
3344
|
+
.transition-\[height\] {
|
3345
|
+
transition-property: height;
|
2852
3346
|
transition-duration: .15s;
|
2853
3347
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2854
3348
|
}
|
2855
3349
|
|
2856
|
-
.transition-
|
2857
|
-
transition-property:
|
3350
|
+
.transition-all {
|
3351
|
+
transition-property: all;
|
2858
3352
|
transition-duration: .15s;
|
2859
3353
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2860
3354
|
}
|
2861
3355
|
|
2862
|
-
.transition-
|
2863
|
-
transition-property:
|
3356
|
+
.transition-colors {
|
3357
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
3358
|
+
transition-duration: .15s;
|
3359
|
+
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
3360
|
+
}
|
3361
|
+
|
3362
|
+
.transition-opacity {
|
3363
|
+
transition-property: opacity;
|
2864
3364
|
transition-duration: .15s;
|
2865
3365
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2866
3366
|
}
|
@@ -2869,14 +3369,26 @@ input[type="color"]::-webkit-color-swatch {
|
|
2869
3369
|
transition-duration: .1s;
|
2870
3370
|
}
|
2871
3371
|
|
3372
|
+
.duration-150 {
|
3373
|
+
transition-duration: .15s;
|
3374
|
+
}
|
3375
|
+
|
2872
3376
|
.duration-200 {
|
2873
3377
|
transition-duration: .2s;
|
2874
3378
|
}
|
2875
3379
|
|
3380
|
+
.duration-300 {
|
3381
|
+
transition-duration: .3s;
|
3382
|
+
}
|
3383
|
+
|
2876
3384
|
.ease-in-out {
|
2877
3385
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2878
3386
|
}
|
2879
3387
|
|
3388
|
+
.bg-checked {
|
3389
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cg fill='%23f3f3f3' fill-opacity='1'%3E%3Cpath fill-rule='evenodd' d='M0 0h4v4H0V0zm4 4h4v4H4V4z'/%3E%3C/g%3E%3C/svg%3E");
|
3390
|
+
}
|
3391
|
+
|
2880
3392
|
.tippy-box[data-animation="fade"][data-state="hidden"] {
|
2881
3393
|
opacity: 0;
|
2882
3394
|
}
|
@@ -2948,9 +3460,9 @@ input[type="color"]::-webkit-color-swatch {
|
|
2948
3460
|
}
|
2949
3461
|
|
2950
3462
|
.tippy-arrow {
|
3463
|
+
color: #333;
|
2951
3464
|
width: 16px;
|
2952
3465
|
height: 16px;
|
2953
|
-
color: #333;
|
2954
3466
|
}
|
2955
3467
|
|
2956
3468
|
.tippy-arrow:before {
|
@@ -3051,14 +3563,13 @@ input[type="color"]::-webkit-color-swatch {
|
|
3051
3563
|
}
|
3052
3564
|
|
3053
3565
|
.tippy-box[data-theme~="menu"] {
|
3054
|
-
--tw-bg-opacity: 1;
|
3055
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
3056
|
-
--tw-text-opacity: 1;
|
3057
|
-
color: rgb(75 85 99 / var(--tw-text-opacity));
|
3058
3566
|
--tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
|
3059
3567
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
3060
3568
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
3061
|
-
border: 1px solid
|
3569
|
+
border: 1px solid var(--lookbook-dropdown-divider);
|
3570
|
+
color: var(--lookbook-dropdown-text);
|
3571
|
+
background: var(--lookbook-dropdown-bg);
|
3572
|
+
max-width: none !important;
|
3062
3573
|
}
|
3063
3574
|
|
3064
3575
|
.tippy-box[data-theme~="menu"] > .tippy-content {
|
@@ -3068,19 +3579,19 @@ input[type="color"]::-webkit-color-swatch {
|
|
3068
3579
|
}
|
3069
3580
|
|
3070
3581
|
.tippy-box[data-theme~="menu"][data-placement^="top"] > .tippy-arrow:before {
|
3071
|
-
border-top-color:
|
3582
|
+
border-top-color: var(--lookbook-dropdown-bg);
|
3072
3583
|
}
|
3073
3584
|
|
3074
3585
|
.tippy-box[data-theme~="menu"][data-placement^="bottom"] > .tippy-arrow:before {
|
3075
|
-
border-bottom-color:
|
3586
|
+
border-bottom-color: var(--lookbook-dropdown-bg);
|
3076
3587
|
}
|
3077
3588
|
|
3078
3589
|
.tippy-box[data-theme~="menu"][data-placement^="left"] > .tippy-arrow:before {
|
3079
|
-
border-left-color:
|
3590
|
+
border-left-color: var(--lookbook-dropdown-bg);
|
3080
3591
|
}
|
3081
3592
|
|
3082
3593
|
.tippy-box[data-theme~="menu"][data-placement^="right"] > .tippy-arrow:before {
|
3083
|
-
border-right-color:
|
3594
|
+
border-right-color: var(--lookbook-dropdown-bg);
|
3084
3595
|
}
|
3085
3596
|
|
3086
3597
|
.theme-github {
|
@@ -3247,7 +3758,6 @@ input[type="color"]::-webkit-color-swatch {
|
|
3247
3758
|
|
3248
3759
|
.theme-github .highlight .err {
|
3249
3760
|
color: var(--hl-error-fg);
|
3250
|
-
background-color: var(--hl-error-bg);
|
3251
3761
|
}
|
3252
3762
|
|
3253
3763
|
.theme-github .highlight .g {
|
@@ -3256,7 +3766,7 @@ input[type="color"]::-webkit-color-swatch {
|
|
3256
3766
|
|
3257
3767
|
.theme-github .highlight .k {
|
3258
3768
|
color: var(--hl-keyword);
|
3259
|
-
font-weight:
|
3769
|
+
font-weight: 600;
|
3260
3770
|
}
|
3261
3771
|
|
3262
3772
|
.theme-github .highlight .l {
|
@@ -3269,7 +3779,7 @@ input[type="color"]::-webkit-color-swatch {
|
|
3269
3779
|
|
3270
3780
|
.theme-github .highlight .o {
|
3271
3781
|
color: var(--hl-operator);
|
3272
|
-
font-weight:
|
3782
|
+
font-weight: 600;
|
3273
3783
|
}
|
3274
3784
|
|
3275
3785
|
.theme-github .highlight .x {
|
@@ -3287,7 +3797,7 @@ input[type="color"]::-webkit-color-swatch {
|
|
3287
3797
|
|
3288
3798
|
.theme-github .highlight .cp {
|
3289
3799
|
color: var(--hl-comment-preproc);
|
3290
|
-
font-weight:
|
3800
|
+
font-weight: 600;
|
3291
3801
|
}
|
3292
3802
|
|
3293
3803
|
.theme-github .highlight .c1 {
|
@@ -3299,7 +3809,7 @@ input[type="color"]::-webkit-color-swatch {
|
|
3299
3809
|
color: var(--hl-comment-special-fg);
|
3300
3810
|
background-color: var(--hl-comment-special-bg);
|
3301
3811
|
font-style: italic;
|
3302
|
-
font-weight:
|
3812
|
+
font-weight: 600;
|
3303
3813
|
}
|
3304
3814
|
|
3305
3815
|
.theme-github .highlight .gd {
|
@@ -3335,12 +3845,12 @@ input[type="color"]::-webkit-color-swatch {
|
|
3335
3845
|
|
3336
3846
|
.theme-github .highlight .gs {
|
3337
3847
|
color: var(--hl-subtle-fg);
|
3338
|
-
font-weight:
|
3848
|
+
font-weight: 600;
|
3339
3849
|
}
|
3340
3850
|
|
3341
3851
|
.theme-github .highlight .gu {
|
3342
3852
|
color: var(--hl-subheading);
|
3343
|
-
font-weight:
|
3853
|
+
font-weight: 600;
|
3344
3854
|
}
|
3345
3855
|
|
3346
3856
|
.theme-github .highlight .gt {
|
@@ -3349,12 +3859,12 @@ input[type="color"]::-webkit-color-swatch {
|
|
3349
3859
|
|
3350
3860
|
.theme-github .highlight .kc, .theme-github .highlight .kd, .theme-github .highlight .kn, .theme-github .highlight .kp, .theme-github .highlight .kr {
|
3351
3861
|
color: var(--hl-keyword-crude);
|
3352
|
-
font-weight:
|
3862
|
+
font-weight: 600;
|
3353
3863
|
}
|
3354
3864
|
|
3355
3865
|
.theme-github .highlight .kt {
|
3356
3866
|
color: var(--hl-keyword-subtle);
|
3357
|
-
font-weight:
|
3867
|
+
font-weight: 600;
|
3358
3868
|
}
|
3359
3869
|
|
3360
3870
|
.theme-github .highlight .ld {
|
@@ -3379,7 +3889,7 @@ input[type="color"]::-webkit-color-swatch {
|
|
3379
3889
|
|
3380
3890
|
.theme-github .highlight .nc {
|
3381
3891
|
color: var(--hl-class);
|
3382
|
-
font-weight:
|
3892
|
+
font-weight: 600;
|
3383
3893
|
}
|
3384
3894
|
|
3385
3895
|
.theme-github .highlight .no {
|
@@ -3396,12 +3906,12 @@ input[type="color"]::-webkit-color-swatch {
|
|
3396
3906
|
|
3397
3907
|
.theme-github .highlight .ne {
|
3398
3908
|
color: var(--hl-exception);
|
3399
|
-
font-weight:
|
3909
|
+
font-weight: 600;
|
3400
3910
|
}
|
3401
3911
|
|
3402
3912
|
.theme-github .highlight .nf {
|
3403
3913
|
color: var(--hl-function);
|
3404
|
-
font-weight:
|
3914
|
+
font-weight: 600;
|
3405
3915
|
}
|
3406
3916
|
|
3407
3917
|
.theme-github .highlight .nl {
|
@@ -3426,7 +3936,7 @@ input[type="color"]::-webkit-color-swatch {
|
|
3426
3936
|
|
3427
3937
|
.theme-github .highlight .ow {
|
3428
3938
|
color: var(--hl-word);
|
3429
|
-
font-weight:
|
3939
|
+
font-weight: 600;
|
3430
3940
|
}
|
3431
3941
|
|
3432
3942
|
.theme-github .highlight .w {
|
@@ -3478,6 +3988,232 @@ input[type="color"]::-webkit-color-swatch {
|
|
3478
3988
|
background-color: #0000;
|
3479
3989
|
}
|
3480
3990
|
|
3991
|
+
@media (width >= 1024px) {
|
3992
|
+
.lg\:prose-base {
|
3993
|
+
font-size: 1rem;
|
3994
|
+
line-height: 1.75;
|
3995
|
+
}
|
3996
|
+
|
3997
|
+
.lg\:prose-base :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
3998
|
+
margin-top: 1.25em;
|
3999
|
+
margin-bottom: 1.25em;
|
4000
|
+
}
|
4001
|
+
|
4002
|
+
.lg\:prose-base :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4003
|
+
margin-top: 1.2em;
|
4004
|
+
margin-bottom: 1.2em;
|
4005
|
+
font-size: 1.25em;
|
4006
|
+
line-height: 1.6;
|
4007
|
+
}
|
4008
|
+
|
4009
|
+
.lg\:prose-base :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4010
|
+
margin-top: 1.6em;
|
4011
|
+
margin-bottom: 1.6em;
|
4012
|
+
padding-inline-start: 1em;
|
4013
|
+
}
|
4014
|
+
|
4015
|
+
.lg\:prose-base :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4016
|
+
margin-top: 0;
|
4017
|
+
margin-bottom: .888889em;
|
4018
|
+
font-size: 2.25em;
|
4019
|
+
line-height: 1.11111;
|
4020
|
+
}
|
4021
|
+
|
4022
|
+
.lg\:prose-base :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4023
|
+
margin-top: 2em;
|
4024
|
+
margin-bottom: 1em;
|
4025
|
+
font-size: 1.5em;
|
4026
|
+
line-height: 1.33333;
|
4027
|
+
}
|
4028
|
+
|
4029
|
+
.lg\:prose-base :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4030
|
+
margin-top: 1.6em;
|
4031
|
+
margin-bottom: .6em;
|
4032
|
+
font-size: 1.25em;
|
4033
|
+
line-height: 1.6;
|
4034
|
+
}
|
4035
|
+
|
4036
|
+
.lg\:prose-base :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4037
|
+
margin-top: 1.5em;
|
4038
|
+
margin-bottom: .5em;
|
4039
|
+
line-height: 1.5;
|
4040
|
+
}
|
4041
|
+
|
4042
|
+
.lg\:prose-base :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)), .lg\:prose-base :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4043
|
+
margin-top: 2em;
|
4044
|
+
margin-bottom: 2em;
|
4045
|
+
}
|
4046
|
+
|
4047
|
+
.lg\:prose-base :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4048
|
+
margin-top: 0;
|
4049
|
+
margin-bottom: 0;
|
4050
|
+
}
|
4051
|
+
|
4052
|
+
.lg\:prose-base :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4053
|
+
margin-top: 2em;
|
4054
|
+
margin-bottom: 2em;
|
4055
|
+
}
|
4056
|
+
|
4057
|
+
.lg\:prose-base :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4058
|
+
padding-top: .1875em;
|
4059
|
+
padding-inline-end: .375em;
|
4060
|
+
padding-bottom: .1875em;
|
4061
|
+
border-radius: .3125rem;
|
4062
|
+
padding-inline-start: .375em;
|
4063
|
+
font-size: .875em;
|
4064
|
+
}
|
4065
|
+
|
4066
|
+
.lg\:prose-base :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)), .lg\:prose-base :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4067
|
+
font-size: .875em;
|
4068
|
+
}
|
4069
|
+
|
4070
|
+
.lg\:prose-base :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4071
|
+
font-size: .9em;
|
4072
|
+
}
|
4073
|
+
|
4074
|
+
.lg\:prose-base :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4075
|
+
padding-top: .857143em;
|
4076
|
+
padding-inline-end: 1.14286em;
|
4077
|
+
padding-bottom: .857143em;
|
4078
|
+
border-radius: .375rem;
|
4079
|
+
margin-top: 1.71429em;
|
4080
|
+
margin-bottom: 1.71429em;
|
4081
|
+
padding-inline-start: 1.14286em;
|
4082
|
+
font-size: .875em;
|
4083
|
+
line-height: 1.71429;
|
4084
|
+
}
|
4085
|
+
|
4086
|
+
.lg\:prose-base :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)), .lg\:prose-base :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4087
|
+
margin-top: 1.25em;
|
4088
|
+
margin-bottom: 1.25em;
|
4089
|
+
padding-inline-start: 1.625em;
|
4090
|
+
}
|
4091
|
+
|
4092
|
+
.lg\:prose-base :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4093
|
+
margin-top: .5em;
|
4094
|
+
margin-bottom: .5em;
|
4095
|
+
}
|
4096
|
+
|
4097
|
+
.lg\:prose-base :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)), .lg\:prose-base :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4098
|
+
padding-inline-start: .375em;
|
4099
|
+
}
|
4100
|
+
|
4101
|
+
.lg\:prose-base :where(.lg\:prose-base > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4102
|
+
margin-top: .75em;
|
4103
|
+
margin-bottom: .75em;
|
4104
|
+
}
|
4105
|
+
|
4106
|
+
.lg\:prose-base :where(.lg\:prose-base > ul > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4107
|
+
margin-top: 1.25em;
|
4108
|
+
}
|
4109
|
+
|
4110
|
+
.lg\:prose-base :where(.lg\:prose-base > ul > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4111
|
+
margin-bottom: 1.25em;
|
4112
|
+
}
|
4113
|
+
|
4114
|
+
.lg\:prose-base :where(.lg\:prose-base > ol > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4115
|
+
margin-top: 1.25em;
|
4116
|
+
}
|
4117
|
+
|
4118
|
+
.lg\:prose-base :where(.lg\:prose-base > ol > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4119
|
+
margin-bottom: 1.25em;
|
4120
|
+
}
|
4121
|
+
|
4122
|
+
.lg\:prose-base :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4123
|
+
margin-top: .75em;
|
4124
|
+
margin-bottom: .75em;
|
4125
|
+
}
|
4126
|
+
|
4127
|
+
.lg\:prose-base :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4128
|
+
margin-top: 1.25em;
|
4129
|
+
margin-bottom: 1.25em;
|
4130
|
+
}
|
4131
|
+
|
4132
|
+
.lg\:prose-base :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4133
|
+
margin-top: 1.25em;
|
4134
|
+
}
|
4135
|
+
|
4136
|
+
.lg\:prose-base :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4137
|
+
margin-top: .5em;
|
4138
|
+
padding-inline-start: 1.625em;
|
4139
|
+
}
|
4140
|
+
|
4141
|
+
.lg\:prose-base :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4142
|
+
margin-top: 3em;
|
4143
|
+
margin-bottom: 3em;
|
4144
|
+
}
|
4145
|
+
|
4146
|
+
.lg\:prose-base :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .lg\:prose-base :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .lg\:prose-base :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)), .lg\:prose-base :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4147
|
+
margin-top: 0;
|
4148
|
+
}
|
4149
|
+
|
4150
|
+
.lg\:prose-base :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4151
|
+
font-size: .875em;
|
4152
|
+
line-height: 1.71429;
|
4153
|
+
}
|
4154
|
+
|
4155
|
+
.lg\:prose-base :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4156
|
+
padding-inline-end: .571429em;
|
4157
|
+
padding-bottom: .571429em;
|
4158
|
+
padding-inline-start: .571429em;
|
4159
|
+
}
|
4160
|
+
|
4161
|
+
.lg\:prose-base :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4162
|
+
padding-inline-start: 0;
|
4163
|
+
}
|
4164
|
+
|
4165
|
+
.lg\:prose-base :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4166
|
+
padding-inline-end: 0;
|
4167
|
+
}
|
4168
|
+
|
4169
|
+
.lg\:prose-base :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4170
|
+
padding-top: .571429em;
|
4171
|
+
padding-inline-end: .571429em;
|
4172
|
+
padding-bottom: .571429em;
|
4173
|
+
padding-inline-start: .571429em;
|
4174
|
+
}
|
4175
|
+
|
4176
|
+
.lg\:prose-base :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4177
|
+
padding-inline-start: 0;
|
4178
|
+
}
|
4179
|
+
|
4180
|
+
.lg\:prose-base :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4181
|
+
padding-inline-end: 0;
|
4182
|
+
}
|
4183
|
+
|
4184
|
+
.lg\:prose-base :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4185
|
+
margin-top: 2em;
|
4186
|
+
margin-bottom: 2em;
|
4187
|
+
}
|
4188
|
+
|
4189
|
+
.lg\:prose-base :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4190
|
+
margin-top: 0;
|
4191
|
+
margin-bottom: 0;
|
4192
|
+
}
|
4193
|
+
|
4194
|
+
.lg\:prose-base :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4195
|
+
margin-top: .857143em;
|
4196
|
+
font-size: .875em;
|
4197
|
+
line-height: 1.42857;
|
4198
|
+
}
|
4199
|
+
|
4200
|
+
.lg\:prose-base :where(.lg\:prose-base > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4201
|
+
margin-top: 0;
|
4202
|
+
}
|
4203
|
+
|
4204
|
+
.lg\:prose-base :where(.lg\:prose-base > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4205
|
+
margin-bottom: 0;
|
4206
|
+
}
|
4207
|
+
}
|
4208
|
+
|
4209
|
+
.hover\:\!bg-lookbook-button-bg-hover:hover {
|
4210
|
+
background-color: var(--lookbook-button-bg-hover) !important;
|
4211
|
+
}
|
4212
|
+
|
4213
|
+
.hover\:bg-lookbook-button-bg-hover:hover {
|
4214
|
+
background-color: var(--lookbook-button-bg-hover);
|
4215
|
+
}
|
4216
|
+
|
3481
4217
|
.hover\:bg-lookbook-draggable-hint:hover {
|
3482
4218
|
background-color: var(--lookbook-draggable-hint);
|
3483
4219
|
}
|
@@ -3513,15 +4249,15 @@ input[type="color"]::-webkit-color-swatch {
|
|
3513
4249
|
outline: 2px solid #0000;
|
3514
4250
|
}
|
3515
4251
|
|
3516
|
-
.focus\:ring-
|
4252
|
+
.focus\:ring-0:focus {
|
3517
4253
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
3518
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(
|
4254
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
3519
4255
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
3520
4256
|
}
|
3521
4257
|
|
3522
|
-
.focus\:ring-
|
4258
|
+
.focus\:ring-2:focus {
|
3523
4259
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
3524
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(
|
4260
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
3525
4261
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
3526
4262
|
}
|
3527
4263
|
|
@@ -3534,11 +4270,71 @@ input[type="color"]::-webkit-color-swatch {
|
|
3534
4270
|
outline: 2px solid #0000;
|
3535
4271
|
}
|
3536
4272
|
|
3537
|
-
.
|
4273
|
+
.group:hover .group-hover\:opacity-100 {
|
4274
|
+
opacity: 1;
|
4275
|
+
}
|
4276
|
+
|
4277
|
+
.prose-headings\:font-semibold :where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4278
|
+
font-weight: 600;
|
4279
|
+
}
|
4280
|
+
|
4281
|
+
.prose-h1\:font-bold :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
4282
|
+
font-weight: 700;
|
4283
|
+
}
|
4284
|
+
|
4285
|
+
.prose-a\:text-lookbook-prose-link :where(a):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
3538
4286
|
color: var(--lookbook-prose-link);
|
3539
4287
|
}
|
3540
4288
|
|
3541
|
-
@media (
|
4289
|
+
@media (width >= 480px) {
|
4290
|
+
.xs\:mx-auto {
|
4291
|
+
margin-left: auto;
|
4292
|
+
margin-right: auto;
|
4293
|
+
}
|
4294
|
+
|
4295
|
+
.xs\:w-auto {
|
4296
|
+
width: auto;
|
4297
|
+
}
|
4298
|
+
|
4299
|
+
.xs\:min-w-\[440px\] {
|
4300
|
+
min-width: 440px;
|
4301
|
+
}
|
4302
|
+
|
4303
|
+
.xs\:max-w-\[680px\] {
|
4304
|
+
max-width: 680px;
|
4305
|
+
}
|
4306
|
+
|
4307
|
+
.xs\:py-8 {
|
4308
|
+
padding-top: 2rem;
|
4309
|
+
padding-bottom: 2rem;
|
4310
|
+
}
|
4311
|
+
}
|
4312
|
+
|
4313
|
+
@media (width >= 640px) {
|
4314
|
+
.sm\:p-8 {
|
4315
|
+
padding: 2rem;
|
4316
|
+
}
|
4317
|
+
}
|
4318
|
+
|
4319
|
+
@media (width >= 768px) {
|
4320
|
+
.md\:-mr-\[2px\] {
|
4321
|
+
margin-right: -2px;
|
4322
|
+
}
|
4323
|
+
|
4324
|
+
.md\:mt-0 {
|
4325
|
+
margin-top: 0;
|
4326
|
+
}
|
4327
|
+
|
4328
|
+
.md\:scale-100 {
|
4329
|
+
--tw-scale-x: 1;
|
4330
|
+
--tw-scale-y: 1;
|
4331
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
4332
|
+
}
|
4333
|
+
|
4334
|
+
.md\:p-12 {
|
4335
|
+
padding: 3rem;
|
4336
|
+
}
|
4337
|
+
|
3542
4338
|
.md\:px-10 {
|
3543
4339
|
padding-left: 2.5rem;
|
3544
4340
|
padding-right: 2.5rem;
|
@@ -3549,4 +4345,29 @@ input[type="color"]::-webkit-color-swatch {
|
|
3549
4345
|
}
|
3550
4346
|
}
|
3551
4347
|
|
4348
|
+
@media (width >= 1024px) {
|
4349
|
+
.lg\:mb-8 {
|
4350
|
+
margin-bottom: 2rem;
|
4351
|
+
}
|
4352
|
+
|
4353
|
+
.lg\:mb-9 {
|
4354
|
+
margin-bottom: 2.25rem;
|
4355
|
+
}
|
4356
|
+
|
4357
|
+
.lg\:mt-16 {
|
4358
|
+
margin-top: 4rem;
|
4359
|
+
}
|
4360
|
+
|
4361
|
+
.lg\:mt-8 {
|
4362
|
+
margin-top: 2rem;
|
4363
|
+
}
|
4364
|
+
|
4365
|
+
.lg\:pb-8 {
|
4366
|
+
padding-bottom: 2rem;
|
4367
|
+
}
|
4368
|
+
|
4369
|
+
.lg\:pt-12 {
|
4370
|
+
padding-top: 3rem;
|
4371
|
+
}
|
4372
|
+
}
|
3552
4373
|
/*# sourceMappingURL=lookbook.css.map */
|