lookbook 1.5.3 → 2.0.0.beta.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +15 -25
- data/app/assets/lookbook/css/lookbook.css +9 -0
- data/app/assets/lookbook/css/themes/blue.css +7 -0
- data/app/assets/lookbook/css/themes/green.css +7 -0
- data/app/assets/lookbook/css/themes/indigo.css +7 -0
- data/app/assets/lookbook/css/themes/rose.css +7 -0
- data/app/assets/lookbook/css/themes/zinc.css +7 -0
- data/app/assets/lookbook/css/tooltip.css +9 -6
- data/app/assets/lookbook/img/lucide-sprite.svg +4960 -0
- data/app/assets/lookbook/js/app.js +22 -4
- data/app/assets/lookbook/js/helpers/dom.js +4 -7
- data/app/assets/lookbook/js/helpers/string.js +4 -11
- data/app/assets/lookbook/js/index.js +61 -0
- data/app/assets/lookbook/js/lib/lookbook.js +113 -0
- data/app/assets/lookbook/js/lib/tippy.js +1 -0
- data/app/assets/lookbook/js/lookbook-core.js +1 -0
- data/app/assets/lookbook/js/lookbook.js +2 -61
- data/app/components/lookbook/base_component.rb +3 -1
- data/app/components/lookbook/button/component.html.erb +13 -24
- data/app/components/lookbook/button/component.js +13 -3
- data/app/components/lookbook/button/component.rb +16 -25
- data/app/components/lookbook/code/component.rb +0 -2
- data/app/components/lookbook/copy_button/component.html.erb +4 -4
- data/app/components/lookbook/copy_button/component.rb +6 -3
- data/app/components/lookbook/debug_menu/component.html.erb +1 -0
- data/app/components/lookbook/debug_menu/component.rb +12 -1
- 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/embed/component.html.erb +6 -51
- data/app/components/lookbook/embed/component.rb +17 -16
- data/app/components/lookbook/embed/inspector/component.html.erb +102 -0
- data/app/components/lookbook/embed/inspector/component.js +46 -0
- data/app/components/lookbook/embed/inspector/component.rb +64 -0
- data/app/components/lookbook/embed_code_dropdown/component.css +12 -0
- data/app/components/lookbook/embed_code_dropdown/component.html.erb +19 -0
- data/app/components/lookbook/embed_code_dropdown/component.js +26 -0
- data/app/components/lookbook/embed_code_dropdown/component.rb +41 -0
- data/app/components/lookbook/header/component.html.erb +7 -6
- data/app/components/lookbook/header/component.rb +5 -1
- data/app/components/lookbook/icon/component.html.erb +1 -1
- 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/nav/component.html.erb +0 -1
- data/app/components/lookbook/nav/entity/component.rb +2 -2
- data/app/components/lookbook/nav/item/component.rb +1 -1
- data/app/components/lookbook/params/editor/component.rb +1 -0
- data/app/components/lookbook/prose/component.rb +1 -3
- data/app/components/lookbook/tabs/component.html.erb +2 -2
- data/app/components/lookbook/tabs/component.js +1 -1
- data/app/components/lookbook/tag_component.rb +2 -1
- 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.rb +0 -4
- data/app/controllers/concerns/lookbook/targetable_concern.rb +26 -22
- data/app/controllers/concerns/lookbook/with_panels_concern.rb +30 -0
- data/app/controllers/concerns/lookbook/with_preview_controller_concern.rb +4 -3
- data/app/controllers/lookbook/application_controller.rb +9 -12
- data/app/controllers/lookbook/embeds_controller.rb +148 -0
- data/app/controllers/lookbook/inspector_controller.rb +3 -22
- data/app/controllers/lookbook/page_controller.rb +7 -6
- data/app/controllers/lookbook/pages_controller.rb +3 -4
- data/app/controllers/lookbook/preview_controller.rb +17 -0
- data/app/controllers/lookbook/previews_controller.rb +10 -30
- data/app/helpers/lookbook/application_helper.rb +3 -19
- data/app/views/layouts/lookbook/application.html.erb +85 -60
- data/app/views/layouts/lookbook/embed.html.erb +16 -0
- data/app/views/layouts/lookbook/shell.html.erb +1 -1
- data/app/views/layouts/lookbook/skeleton.html.erb +13 -8
- data/app/views/lookbook/embeds/show.html.erb +12 -0
- 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/_source.html.erb +6 -6
- data/app/views/lookbook/inspector/show.html.erb +130 -123
- data/app/views/lookbook/pages/show.html.erb +81 -34
- 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 +14 -0
- data/app/views/lookbook/previews/preview.html.erb +5 -0
- data/app/views/lookbook/previews/show.html.erb +1 -0
- data/config/app.yml +31 -16
- data/config/panels.yml +23 -25
- data/config/routes.rb +3 -1
- data/config/tags.yml +6 -2
- data/lib/lookbook/cable/cable.rb +53 -0
- data/lib/lookbook/engine.rb +105 -93
- data/lib/lookbook/entities/collections/entity_collection.rb +11 -6
- data/lib/lookbook/entities/collections/page_collection.rb +33 -8
- data/lib/lookbook/entities/collections/preview_collection.rb +42 -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.rb → annotatable_entity.rb} +7 -6
- data/lib/lookbook/entities/concerns/{inspectable.rb → inspectable_entity.rb} +2 -1
- data/lib/lookbook/entities/concerns/{locatable.rb → locatable_entity.rb} +8 -14
- data/lib/lookbook/entities/concerns/navigable_entity.rb +44 -0
- data/lib/lookbook/entities/entity.rb +7 -2
- data/lib/lookbook/entities/{page.rb → page_entity.rb} +10 -6
- data/lib/lookbook/entities/{page_section.rb → page_section_entity.rb} +1 -1
- data/lib/lookbook/entities/preview_entity.rb +99 -0
- data/lib/lookbook/entities/renderable_entity.rb +50 -0
- data/lib/lookbook/entities/rendered_scenario_entity.rb +53 -0
- data/lib/lookbook/entities/scenario_entity.rb +112 -0
- data/lib/lookbook/entities/scenario_group_entity.rb +53 -0
- data/lib/lookbook/error.rb +5 -5
- data/lib/lookbook/file_watcher.rb +19 -35
- data/lib/lookbook/helpers/class_names_helper.rb +28 -0
- data/lib/lookbook/helpers/page_helper.rb +18 -0
- data/{app/helpers/lookbook → lib/lookbook/helpers}/preview_helper.rb +3 -0
- data/lib/lookbook/helpers/ui_elements_helper.rb +115 -0
- data/lib/lookbook/preview.rb +79 -0
- data/lib/lookbook/preview_controller_actions.rb +50 -0
- data/lib/lookbook/preview_parser.rb +4 -2
- data/lib/lookbook/reloaders.rb +71 -0
- data/lib/lookbook/runtime_context.rb +49 -0
- data/lib/lookbook/services/data/resolvers/data_resolver.rb +4 -6
- data/lib/lookbook/services/entities/entity_tree_builder.rb +6 -6
- data/lib/lookbook/services/list_resolver.rb +35 -0
- data/lib/lookbook/services/markdown_renderer.rb +12 -2
- data/lib/lookbook/services/priority_prefix_parser.rb +16 -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 +16 -16
- data/lib/lookbook/stores/input_store.rb +1 -3
- data/lib/lookbook/stores/panel_store.rb +28 -50
- data/lib/lookbook/support/deprecation.rb +5 -0
- data/lib/lookbook/support/errors/preview_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 +9 -0
- data/lib/lookbook/support/tree_node.rb +7 -7
- data/lib/lookbook/support/utils/path_utils.rb +7 -1
- data/lib/lookbook/support/utils/utils.rb +8 -0
- 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 +1 -2
- data/lib/lookbook/version.rb +1 -1
- data/lib/lookbook/websocket.rb +6 -53
- data/lib/lookbook.rb +179 -53
- data/public/lookbook-assets/css/lookbook.css +433 -377
- data/public/lookbook-assets/css/lookbook.css.map +1 -1
- data/public/lookbook-assets/css/themes/blue.css +7 -0
- data/public/lookbook-assets/css/themes/blue.css.map +1 -1
- data/public/lookbook-assets/css/themes/green.css +7 -0
- data/public/lookbook-assets/css/themes/green.css.map +1 -1
- data/public/lookbook-assets/css/themes/indigo.css +7 -0
- data/public/lookbook-assets/css/themes/indigo.css.map +1 -1
- data/public/lookbook-assets/css/themes/rose.css +7 -0
- data/public/lookbook-assets/css/themes/rose.css.map +1 -1
- data/public/lookbook-assets/css/themes/zinc.css +7 -0
- 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 +1363 -842
- data/public/lookbook-assets/js/embed.js.map +1 -1
- data/public/lookbook-assets/js/iframe.js +906 -0
- data/public/lookbook-assets/js/iframe.js.map +1 -0
- data/public/lookbook-assets/js/index.js +13567 -0
- data/public/lookbook-assets/js/index.js.map +1 -0
- data/public/lookbook-assets/js/lookbook-core.js +85 -0
- data/public/lookbook-assets/js/lookbook-core.js.map +1 -0
- data/public/lookbook-assets/js/lookbook.js +143 -12733
- data/public/lookbook-assets/js/lookbook.js.map +1 -1
- data/public/lookbook-assets/lookbook-esm.js +1427 -0
- data/public/lookbook-assets/lookbook-esm.js.map +1 -0
- data/public/lookbook-assets/lookbook-global.js +1427 -0
- data/public/lookbook-assets/lookbook-global.js.map +1 -0
- data/public/lookbook-assets/lookbook.js +1427 -0
- data/public/lookbook-assets/lookbook.js.map +1 -0
- metadata +80 -72
- data/app/components/lookbook/embed/component.js +0 -39
- 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/standalone.html.erb +0 -5
- data/app/views/lookbook/preview.html.erb +0 -14
- 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/navigable.rb +0 -43
- 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/preview_actions.rb +0 -43
- data/lib/lookbook/process.rb +0 -21
- data/lib/lookbook/rendered_example.rb +0 -37
- data/lib/lookbook/services/position_prefix_parser.rb +0 -16
- data/lib/lookbook/services/urls/search_param_builder.rb +0 -13
- data/lib/lookbook/tags/component_tag.rb +0 -13
- /data/app/assets/lookbook/js/{embed.js → iframe.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
@@ -27,7 +27,6 @@ hr {
|
|
27
27
|
}
|
28
28
|
|
29
29
|
abbr:where([title]) {
|
30
|
-
-webkit-text-decoration: underline dotted;
|
31
30
|
text-decoration: underline dotted;
|
32
31
|
}
|
33
32
|
|
@@ -38,7 +37,6 @@ h1, h2, h3, h4, h5, h6 {
|
|
38
37
|
|
39
38
|
a {
|
40
39
|
color: inherit;
|
41
|
-
-webkit-text-decoration: inherit;
|
42
40
|
text-decoration: inherit;
|
43
41
|
}
|
44
42
|
|
@@ -373,7 +371,7 @@ pre[class*="language-"] {
|
|
373
371
|
background-color: var(--lookbook-scrollbar);
|
374
372
|
background-clip: content-box;
|
375
373
|
border-radius: 9999px;
|
376
|
-
transition-property: color, background-color, border-color,
|
374
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
377
375
|
transition-duration: .15s;
|
378
376
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
379
377
|
}
|
@@ -1403,29 +1401,27 @@ pre[class*="language-"] {
|
|
1403
1401
|
background-color: rgb(254 252 232 / var(--tw-bg-opacity));
|
1404
1402
|
}
|
1405
1403
|
|
1406
|
-
[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 {
|
1407
|
-
padding: .26rem .6rem;
|
1408
|
-
font-size: .8rem;
|
1409
|
-
line-height: 1.1rem;
|
1410
|
-
}
|
1411
|
-
|
1412
1404
|
[data-component="display-options-field"] label {
|
1413
1405
|
cursor: pointer;
|
1414
1406
|
color: var(--lookbook-input-text);
|
1415
1407
|
font-size: .82rem;
|
1416
1408
|
}
|
1417
1409
|
|
1418
|
-
[data-component="
|
1419
|
-
|
1420
|
-
|
1421
|
-
|
1422
|
-
|
1410
|
+
[data-component="embed-code-dropdown"] [data-component="code"] {
|
1411
|
+
padding: 0;
|
1412
|
+
}
|
1413
|
+
|
1414
|
+
[data-component="embed-code-dropdown"] pre.code.highlight {
|
1415
|
+
white-space: normal;
|
1416
|
+
padding: 0;
|
1417
|
+
font-size: 11px;
|
1418
|
+
overflow: hidden;
|
1423
1419
|
}
|
1424
1420
|
|
1425
1421
|
[data-component="icon"] {
|
1426
1422
|
flex: none;
|
1427
1423
|
line-height: 1;
|
1428
|
-
transition-property: color, background-color, border-color,
|
1424
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
|
1429
1425
|
transition-duration: .15s;
|
1430
1426
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
1431
1427
|
display: block;
|
@@ -1455,7 +1451,7 @@ pre[class*="language-"] {
|
|
1455
1451
|
align-items: center;
|
1456
1452
|
padding-top: .25rem;
|
1457
1453
|
padding-bottom: .25rem;
|
1458
|
-
transition-property: color, background-color, border-color,
|
1454
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
|
1459
1455
|
transition-duration: .15s;
|
1460
1456
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
1461
1457
|
display: flex;
|
@@ -1620,7 +1616,7 @@ pre[class*="language-"] {
|
|
1620
1616
|
-webkit-user-select: none;
|
1621
1617
|
user-select: none;
|
1622
1618
|
color: var(--lookbook-viewport-handle-icon-stroke);
|
1623
|
-
transition-property: color, background-color, border-color,
|
1619
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
|
1624
1620
|
transition-duration: .15s;
|
1625
1621
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
1626
1622
|
}
|
@@ -1720,6 +1716,15 @@ input[type="color"]::-webkit-color-swatch {
|
|
1720
1716
|
border-radius: .5rem;
|
1721
1717
|
}
|
1722
1718
|
|
1719
|
+
select.compact {
|
1720
|
+
background-position: right .4rem center;
|
1721
|
+
background-size: 1.2em 1.2em;
|
1722
|
+
border-radius: .375rem;
|
1723
|
+
padding: .26rem 1.5rem .26rem .6rem;
|
1724
|
+
font-size: .8rem;
|
1725
|
+
line-height: 1.1rem;
|
1726
|
+
}
|
1727
|
+
|
1723
1728
|
.pointer-events-none {
|
1724
1729
|
pointer-events: none;
|
1725
1730
|
}
|
@@ -1748,32 +1753,36 @@ input[type="color"]::-webkit-color-swatch {
|
|
1748
1753
|
position: sticky;
|
1749
1754
|
}
|
1750
1755
|
|
1751
|
-
.-inset-px {
|
1752
|
-
inset: -1px;
|
1753
|
-
}
|
1754
|
-
|
1755
1756
|
.inset-0 {
|
1756
1757
|
inset: 0;
|
1757
1758
|
}
|
1758
1759
|
|
1759
|
-
.-
|
1760
|
-
|
1760
|
+
.-inset-px {
|
1761
|
+
inset: -1px;
|
1761
1762
|
}
|
1762
1763
|
|
1763
|
-
|
1764
|
-
|
1764
|
+
.top-0 {
|
1765
|
+
top: 0;
|
1765
1766
|
}
|
1766
1767
|
|
1767
|
-
|
1768
|
-
|
1768
|
+
.right-0 {
|
1769
|
+
right: 0;
|
1769
1770
|
}
|
1770
1771
|
|
1771
1772
|
.bottom-0 {
|
1772
1773
|
bottom: 0;
|
1773
1774
|
}
|
1774
1775
|
|
1775
|
-
.
|
1776
|
-
|
1776
|
+
.top-\[40px\] {
|
1777
|
+
top: 40px;
|
1778
|
+
}
|
1779
|
+
|
1780
|
+
.top-\[39px\] {
|
1781
|
+
top: 39px;
|
1782
|
+
}
|
1783
|
+
|
1784
|
+
.top-1\/2 {
|
1785
|
+
top: 50%;
|
1777
1786
|
}
|
1778
1787
|
|
1779
1788
|
.right-3 {
|
@@ -1784,44 +1793,49 @@ input[type="color"]::-webkit-color-swatch {
|
|
1784
1793
|
right: 18px;
|
1785
1794
|
}
|
1786
1795
|
|
1787
|
-
|
1788
|
-
top:
|
1796
|
+
.-top-px {
|
1797
|
+
top: -1px;
|
1789
1798
|
}
|
1790
1799
|
|
1791
|
-
|
1792
|
-
|
1800
|
+
.-left-px {
|
1801
|
+
left: -1px;
|
1802
|
+
}
|
1803
|
+
|
1804
|
+
.top-\[-1px\] {
|
1805
|
+
top: -1px;
|
1793
1806
|
}
|
1794
1807
|
|
1795
1808
|
.top-\[2px\] {
|
1796
1809
|
top: 2px;
|
1797
1810
|
}
|
1798
1811
|
|
1799
|
-
|
1800
|
-
|
1812
|
+
.-bottom-px {
|
1813
|
+
bottom: -1px;
|
1801
1814
|
}
|
1802
1815
|
|
1803
|
-
.
|
1804
|
-
|
1816
|
+
.z-50 {
|
1817
|
+
z-index: 50;
|
1805
1818
|
}
|
1806
1819
|
|
1807
|
-
|
1808
|
-
z-index:
|
1820
|
+
.z-\[-1\] {
|
1821
|
+
z-index: -1;
|
1809
1822
|
}
|
1810
1823
|
|
1811
|
-
|
1812
|
-
z-index:
|
1824
|
+
.\!z-40 {
|
1825
|
+
z-index: 40 !important;
|
1813
1826
|
}
|
1814
1827
|
|
1815
1828
|
.z-10 {
|
1816
1829
|
z-index: 10;
|
1817
1830
|
}
|
1818
1831
|
|
1819
|
-
.z-
|
1820
|
-
z-index:
|
1832
|
+
.z-0 {
|
1833
|
+
z-index: 0;
|
1821
1834
|
}
|
1822
1835
|
|
1823
|
-
.
|
1824
|
-
|
1836
|
+
.mx-auto {
|
1837
|
+
margin-left: auto;
|
1838
|
+
margin-right: auto;
|
1825
1839
|
}
|
1826
1840
|
|
1827
1841
|
.mx-8 {
|
@@ -1829,33 +1843,32 @@ input[type="color"]::-webkit-color-swatch {
|
|
1829
1843
|
margin-right: 2rem;
|
1830
1844
|
}
|
1831
1845
|
|
1832
|
-
.
|
1833
|
-
margin-
|
1834
|
-
margin-right: auto;
|
1846
|
+
.mt-3 {
|
1847
|
+
margin-top: .75rem;
|
1835
1848
|
}
|
1836
1849
|
|
1837
|
-
|
1838
|
-
margin-
|
1850
|
+
.mt-2 {
|
1851
|
+
margin-top: .5rem;
|
1839
1852
|
}
|
1840
1853
|
|
1841
|
-
.mb-
|
1842
|
-
margin-bottom:
|
1854
|
+
.mb-8 {
|
1855
|
+
margin-bottom: 2rem;
|
1843
1856
|
}
|
1844
1857
|
|
1845
|
-
.mb-
|
1846
|
-
margin-bottom:
|
1858
|
+
.mb-2 {
|
1859
|
+
margin-bottom: .5rem;
|
1847
1860
|
}
|
1848
1861
|
|
1849
|
-
.
|
1850
|
-
margin-
|
1862
|
+
.mt-8 {
|
1863
|
+
margin-top: 2rem;
|
1851
1864
|
}
|
1852
1865
|
|
1853
|
-
.
|
1854
|
-
margin-
|
1866
|
+
.mt-6 {
|
1867
|
+
margin-top: 1.5rem;
|
1855
1868
|
}
|
1856
1869
|
|
1857
|
-
.
|
1858
|
-
margin-
|
1870
|
+
.mt-12 {
|
1871
|
+
margin-top: 3rem;
|
1859
1872
|
}
|
1860
1873
|
|
1861
1874
|
.ml-2 {
|
@@ -1866,56 +1879,64 @@ input[type="color"]::-webkit-color-swatch {
|
|
1866
1879
|
margin-left: auto;
|
1867
1880
|
}
|
1868
1881
|
|
1869
|
-
.mr-
|
1870
|
-
margin-right:
|
1882
|
+
.mr-2 {
|
1883
|
+
margin-right: .5rem;
|
1871
1884
|
}
|
1872
1885
|
|
1873
|
-
.
|
1874
|
-
margin-
|
1886
|
+
.mb-4 {
|
1887
|
+
margin-bottom: 1rem;
|
1875
1888
|
}
|
1876
1889
|
|
1877
1890
|
.mr-1 {
|
1878
1891
|
margin-right: .25rem;
|
1879
1892
|
}
|
1880
1893
|
|
1881
|
-
.mr-
|
1882
|
-
margin-right: .
|
1894
|
+
.mr-6 {
|
1895
|
+
margin-right: 1.5rem;
|
1883
1896
|
}
|
1884
1897
|
|
1885
|
-
.
|
1886
|
-
margin-
|
1898
|
+
.mb-3 {
|
1899
|
+
margin-bottom: .75rem;
|
1887
1900
|
}
|
1888
1901
|
|
1889
|
-
.
|
1890
|
-
margin-
|
1902
|
+
.mt-\[-2px\] {
|
1903
|
+
margin-top: -2px;
|
1891
1904
|
}
|
1892
1905
|
|
1893
|
-
|
1894
|
-
margin-
|
1906
|
+
.-mt-px {
|
1907
|
+
margin-top: -1px;
|
1895
1908
|
}
|
1896
1909
|
|
1897
|
-
.
|
1898
|
-
margin-
|
1910
|
+
.mb-6 {
|
1911
|
+
margin-bottom: 1.5rem;
|
1899
1912
|
}
|
1900
1913
|
|
1901
|
-
|
1902
|
-
margin-
|
1914
|
+
.-ml-3 {
|
1915
|
+
margin-left: -.75rem;
|
1903
1916
|
}
|
1904
1917
|
|
1905
|
-
.
|
1906
|
-
margin-
|
1918
|
+
.mr-auto {
|
1919
|
+
margin-right: auto;
|
1907
1920
|
}
|
1908
1921
|
|
1909
|
-
|
1910
|
-
margin-
|
1922
|
+
.\!ml-2 {
|
1923
|
+
margin-left: .5rem !important;
|
1911
1924
|
}
|
1912
1925
|
|
1913
|
-
.
|
1914
|
-
margin-
|
1926
|
+
.mb-\[-2px\] {
|
1927
|
+
margin-bottom: -2px;
|
1915
1928
|
}
|
1916
1929
|
|
1917
|
-
.
|
1918
|
-
margin-
|
1930
|
+
.mr-1\.5 {
|
1931
|
+
margin-right: .375rem;
|
1932
|
+
}
|
1933
|
+
|
1934
|
+
.mr-0\.5 {
|
1935
|
+
margin-right: .125rem;
|
1936
|
+
}
|
1937
|
+
|
1938
|
+
.mr-0 {
|
1939
|
+
margin-right: 0;
|
1919
1940
|
}
|
1920
1941
|
|
1921
1942
|
.\!block {
|
@@ -1958,56 +1979,52 @@ input[type="color"]::-webkit-color-swatch {
|
|
1958
1979
|
display: none;
|
1959
1980
|
}
|
1960
1981
|
|
1961
|
-
|
1962
|
-
height:
|
1963
|
-
}
|
1964
|
-
|
1965
|
-
.h-10 {
|
1966
|
-
height: 2.5rem;
|
1982
|
+
.h-screen {
|
1983
|
+
height: 100vh;
|
1967
1984
|
}
|
1968
1985
|
|
1969
|
-
.h-
|
1970
|
-
height:
|
1986
|
+
.h-full {
|
1987
|
+
height: 100%;
|
1971
1988
|
}
|
1972
1989
|
|
1973
|
-
.h-
|
1974
|
-
height:
|
1990
|
+
.h-\[calc\(100\%_-_40px\)\] {
|
1991
|
+
height: calc(100% - 40px);
|
1975
1992
|
}
|
1976
1993
|
|
1977
|
-
.h-
|
1978
|
-
height:
|
1994
|
+
.h-\[calc\(100vh_-_2\.5rem\)\] {
|
1995
|
+
height: calc(100vh - 2.5rem);
|
1979
1996
|
}
|
1980
1997
|
|
1981
|
-
.h-
|
1982
|
-
height:
|
1998
|
+
.h-\[calc\(100vh_-_40px\)\] {
|
1999
|
+
height: calc(100vh - 40px);
|
1983
2000
|
}
|
1984
2001
|
|
1985
2002
|
.h-6 {
|
1986
2003
|
height: 1.5rem;
|
1987
2004
|
}
|
1988
2005
|
|
1989
|
-
.h
|
1990
|
-
height:
|
2006
|
+
.h-5 {
|
2007
|
+
height: 1.25rem;
|
1991
2008
|
}
|
1992
2009
|
|
1993
|
-
.h
|
1994
|
-
height:
|
2010
|
+
.h-3\.5 {
|
2011
|
+
height: .875rem;
|
1995
2012
|
}
|
1996
2013
|
|
1997
|
-
.h
|
1998
|
-
height:
|
2014
|
+
.h-3 {
|
2015
|
+
height: .75rem;
|
1999
2016
|
}
|
2000
2017
|
|
2001
|
-
.h-\[
|
2002
|
-
height:
|
2018
|
+
.h-\[9px\] {
|
2019
|
+
height: 9px;
|
2003
2020
|
}
|
2004
2021
|
|
2005
|
-
.h-
|
2006
|
-
height:
|
2022
|
+
.h-10 {
|
2023
|
+
height: 2.5rem;
|
2007
2024
|
}
|
2008
2025
|
|
2009
|
-
.h-
|
2010
|
-
height:
|
2026
|
+
.h-4 {
|
2027
|
+
height: 1rem;
|
2011
2028
|
}
|
2012
2029
|
|
2013
2030
|
.max-h-full {
|
@@ -2018,68 +2035,68 @@ input[type="color"]::-webkit-color-swatch {
|
|
2018
2035
|
min-height: 0;
|
2019
2036
|
}
|
2020
2037
|
|
2021
|
-
.w-
|
2022
|
-
width:
|
2038
|
+
.w-full {
|
2039
|
+
width: 100%;
|
2023
2040
|
}
|
2024
2041
|
|
2025
|
-
.w
|
2026
|
-
width:
|
2042
|
+
.w-\[140px\] {
|
2043
|
+
width: 140px;
|
2027
2044
|
}
|
2028
2045
|
|
2029
|
-
.w-
|
2030
|
-
width:
|
2046
|
+
.w-screen {
|
2047
|
+
width: 100vw;
|
2031
2048
|
}
|
2032
2049
|
|
2033
|
-
.w-
|
2034
|
-
width:
|
2050
|
+
.w-11 {
|
2051
|
+
width: 2.75rem;
|
2035
2052
|
}
|
2036
2053
|
|
2037
2054
|
.w-5 {
|
2038
2055
|
width: 1.25rem;
|
2039
2056
|
}
|
2040
2057
|
|
2041
|
-
.w-\[
|
2042
|
-
width:
|
2058
|
+
.w-\[320px\] {
|
2059
|
+
width: 320px;
|
2043
2060
|
}
|
2044
2061
|
|
2045
|
-
.w
|
2046
|
-
width:
|
2062
|
+
.w-3\.5 {
|
2063
|
+
width: .875rem;
|
2047
2064
|
}
|
2048
2065
|
|
2049
|
-
.w-
|
2050
|
-
width:
|
2066
|
+
.w-3 {
|
2067
|
+
width: .75rem;
|
2051
2068
|
}
|
2052
2069
|
|
2053
|
-
.w
|
2054
|
-
width:
|
2070
|
+
.w-\[9px\] {
|
2071
|
+
width: 9px;
|
2055
2072
|
}
|
2056
2073
|
|
2057
|
-
.
|
2058
|
-
|
2074
|
+
.w-4 {
|
2075
|
+
width: 1rem;
|
2059
2076
|
}
|
2060
2077
|
|
2061
2078
|
.min-w-\[180px\] {
|
2062
2079
|
min-width: 180px;
|
2063
2080
|
}
|
2064
2081
|
|
2065
|
-
.
|
2066
|
-
|
2082
|
+
.min-w-0 {
|
2083
|
+
min-width: 0;
|
2067
2084
|
}
|
2068
2085
|
|
2069
|
-
.max-w-
|
2070
|
-
max-width:
|
2086
|
+
.max-w-sm {
|
2087
|
+
max-width: 24rem;
|
2071
2088
|
}
|
2072
2089
|
|
2073
2090
|
.max-w-screen-lg {
|
2074
2091
|
max-width: 1024px;
|
2075
2092
|
}
|
2076
2093
|
|
2077
|
-
.max-w
|
2078
|
-
max-width:
|
2094
|
+
.max-w-\[420px\] {
|
2095
|
+
max-width: 420px;
|
2079
2096
|
}
|
2080
2097
|
|
2081
|
-
.max-w-
|
2082
|
-
max-width:
|
2098
|
+
.max-w-none {
|
2099
|
+
max-width: none;
|
2083
2100
|
}
|
2084
2101
|
|
2085
2102
|
.flex-none {
|
@@ -2094,28 +2111,28 @@ input[type="color"]::-webkit-color-swatch {
|
|
2094
2111
|
border-collapse: collapse;
|
2095
2112
|
}
|
2096
2113
|
|
2097
|
-
|
2098
|
-
--tw-translate-x:
|
2114
|
+
.translate-x-0 {
|
2115
|
+
--tw-translate-x: 0px;
|
2099
2116
|
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));
|
2100
2117
|
}
|
2101
2118
|
|
2102
|
-
|
2103
|
-
--tw-translate-
|
2119
|
+
.translate-x-full {
|
2120
|
+
--tw-translate-x: 100%;
|
2104
2121
|
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));
|
2105
2122
|
}
|
2106
2123
|
|
2107
|
-
.translate-x-
|
2108
|
-
--tw-translate-x:
|
2124
|
+
.translate-x-5 {
|
2125
|
+
--tw-translate-x: 1.25rem;
|
2109
2126
|
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));
|
2110
2127
|
}
|
2111
2128
|
|
2112
|
-
|
2113
|
-
--tw-translate-
|
2129
|
+
.-translate-y-1\/2 {
|
2130
|
+
--tw-translate-y: -50%;
|
2114
2131
|
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));
|
2115
2132
|
}
|
2116
2133
|
|
2117
|
-
|
2118
|
-
--tw-translate-x:
|
2134
|
+
.-translate-x-1\/2 {
|
2135
|
+
--tw-translate-x: -50%;
|
2119
2136
|
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));
|
2120
2137
|
}
|
2121
2138
|
|
@@ -2124,13 +2141,13 @@ input[type="color"]::-webkit-color-swatch {
|
|
2124
2141
|
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));
|
2125
2142
|
}
|
2126
2143
|
|
2127
|
-
.rotate-
|
2128
|
-
--tw-rotate:
|
2144
|
+
.rotate-90 {
|
2145
|
+
--tw-rotate: 90deg;
|
2129
2146
|
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));
|
2130
2147
|
}
|
2131
2148
|
|
2132
|
-
.rotate-
|
2133
|
-
--tw-rotate:
|
2149
|
+
.rotate-45 {
|
2150
|
+
--tw-rotate: 45deg;
|
2134
2151
|
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));
|
2135
2152
|
}
|
2136
2153
|
|
@@ -2144,32 +2161,36 @@ input[type="color"]::-webkit-color-swatch {
|
|
2144
2161
|
animation: 1s linear infinite spin;
|
2145
2162
|
}
|
2146
2163
|
|
2164
|
+
.\!cursor-not-allowed {
|
2165
|
+
cursor: not-allowed !important;
|
2166
|
+
}
|
2167
|
+
|
2147
2168
|
.\!cursor-default {
|
2148
2169
|
cursor: default !important;
|
2149
2170
|
}
|
2150
2171
|
|
2151
|
-
.cursor
|
2152
|
-
cursor:
|
2172
|
+
.cursor-pointer {
|
2173
|
+
cursor: pointer;
|
2153
2174
|
}
|
2154
2175
|
|
2155
2176
|
.cursor-\[not-allowed\] {
|
2156
2177
|
cursor: not-allowed;
|
2157
2178
|
}
|
2158
2179
|
|
2159
|
-
.cursor-\[
|
2160
|
-
cursor:
|
2180
|
+
.cursor-\[col-resize\] {
|
2181
|
+
cursor: col-resize;
|
2161
2182
|
}
|
2162
2183
|
|
2163
2184
|
.cursor-\[row-resize\] {
|
2164
2185
|
cursor: row-resize;
|
2165
2186
|
}
|
2166
2187
|
|
2167
|
-
.cursor-
|
2168
|
-
cursor:
|
2188
|
+
.cursor-\[nwse-resize\] {
|
2189
|
+
cursor: nwse-resize;
|
2169
2190
|
}
|
2170
2191
|
|
2171
|
-
.cursor-
|
2172
|
-
cursor:
|
2192
|
+
.cursor-help {
|
2193
|
+
cursor: help;
|
2173
2194
|
}
|
2174
2195
|
|
2175
2196
|
.select-none {
|
@@ -2193,6 +2214,10 @@ input[type="color"]::-webkit-color-swatch {
|
|
2193
2214
|
grid-template-columns: 1fr 17px;
|
2194
2215
|
}
|
2195
2216
|
|
2217
|
+
.grid-rows-\[40px_1fr\] {
|
2218
|
+
grid-template-rows: 40px 1fr;
|
2219
|
+
}
|
2220
|
+
|
2196
2221
|
.\!grid-rows-\[1fr\] {
|
2197
2222
|
grid-template-rows: 1fr !important;
|
2198
2223
|
}
|
@@ -2201,10 +2226,6 @@ input[type="color"]::-webkit-color-swatch {
|
|
2201
2226
|
grid-template-rows: 1fr 17px;
|
2202
2227
|
}
|
2203
2228
|
|
2204
|
-
.grid-rows-\[40px_1fr\] {
|
2205
|
-
grid-template-rows: 40px 1fr;
|
2206
|
-
}
|
2207
|
-
|
2208
2229
|
.flex-col {
|
2209
2230
|
flex-direction: column;
|
2210
2231
|
}
|
@@ -2225,16 +2246,10 @@ input[type="color"]::-webkit-color-swatch {
|
|
2225
2246
|
justify-content: space-between;
|
2226
2247
|
}
|
2227
2248
|
|
2228
|
-
.space-
|
2229
|
-
--tw-space-
|
2230
|
-
margin-
|
2231
|
-
margin-
|
2232
|
-
}
|
2233
|
-
|
2234
|
-
.space-x-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
2235
|
-
--tw-space-x-reverse: 0;
|
2236
|
-
margin-right: calc(.375rem * var(--tw-space-x-reverse));
|
2237
|
-
margin-left: calc(.375rem * calc(1 - var(--tw-space-x-reverse)));
|
2249
|
+
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
2250
|
+
--tw-space-y-reverse: 0;
|
2251
|
+
margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
|
2252
|
+
margin-bottom: calc(.5rem * var(--tw-space-y-reverse));
|
2238
2253
|
}
|
2239
2254
|
|
2240
2255
|
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
@@ -2243,10 +2258,10 @@ input[type="color"]::-webkit-color-swatch {
|
|
2243
2258
|
margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse)));
|
2244
2259
|
}
|
2245
2260
|
|
2246
|
-
.space-x-
|
2261
|
+
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
2247
2262
|
--tw-space-x-reverse: 0;
|
2248
|
-
margin-right: calc(.
|
2249
|
-
margin-left: calc(.
|
2263
|
+
margin-right: calc(.25rem * var(--tw-space-x-reverse));
|
2264
|
+
margin-left: calc(.25rem * calc(1 - var(--tw-space-x-reverse)));
|
2250
2265
|
}
|
2251
2266
|
|
2252
2267
|
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
|
@@ -2255,10 +2270,10 @@ input[type="color"]::-webkit-color-swatch {
|
|
2255
2270
|
margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
|
2256
2271
|
}
|
2257
2272
|
|
2258
|
-
.space-
|
2259
|
-
--tw-space-
|
2260
|
-
margin-
|
2261
|
-
margin-
|
2273
|
+
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
|
2274
|
+
--tw-space-x-reverse: 0;
|
2275
|
+
margin-right: calc(.75rem * var(--tw-space-x-reverse));
|
2276
|
+
margin-left: calc(.75rem * calc(1 - var(--tw-space-x-reverse)));
|
2262
2277
|
}
|
2263
2278
|
|
2264
2279
|
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
|
@@ -2267,6 +2282,12 @@ input[type="color"]::-webkit-color-swatch {
|
|
2267
2282
|
margin-bottom: calc(.75rem * var(--tw-space-y-reverse));
|
2268
2283
|
}
|
2269
2284
|
|
2285
|
+
.space-x-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
2286
|
+
--tw-space-x-reverse: 0;
|
2287
|
+
margin-right: calc(.375rem * var(--tw-space-x-reverse));
|
2288
|
+
margin-left: calc(.375rem * calc(1 - var(--tw-space-x-reverse)));
|
2289
|
+
}
|
2290
|
+
|
2270
2291
|
.divide-y > :not([hidden]) ~ :not([hidden]) {
|
2271
2292
|
--tw-divide-y-reverse: 0;
|
2272
2293
|
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
@@ -2327,10 +2348,6 @@ input[type="color"]::-webkit-color-swatch {
|
|
2327
2348
|
border-radius: .375rem;
|
2328
2349
|
}
|
2329
2350
|
|
2330
|
-
.rounded-sm {
|
2331
|
-
border-radius: .125rem;
|
2332
|
-
}
|
2333
|
-
|
2334
2351
|
.rounded-bl-md {
|
2335
2352
|
border-bottom-left-radius: .375rem;
|
2336
2353
|
}
|
@@ -2347,49 +2364,41 @@ input[type="color"]::-webkit-color-swatch {
|
|
2347
2364
|
border-width: 2px;
|
2348
2365
|
}
|
2349
2366
|
|
2350
|
-
.border-
|
2351
|
-
border-
|
2352
|
-
}
|
2353
|
-
|
2354
|
-
.border-b-0 {
|
2355
|
-
border-bottom-width: 0;
|
2367
|
+
.border-t {
|
2368
|
+
border-top-width: 1px;
|
2356
2369
|
}
|
2357
2370
|
|
2358
|
-
.border-b
|
2359
|
-
border-bottom-width:
|
2371
|
+
.border-b {
|
2372
|
+
border-bottom-width: 1px;
|
2360
2373
|
}
|
2361
2374
|
|
2362
2375
|
.border-l {
|
2363
2376
|
border-left-width: 1px;
|
2364
2377
|
}
|
2365
2378
|
|
2366
|
-
.border-l-2 {
|
2367
|
-
border-left-width: 2px;
|
2368
|
-
}
|
2369
|
-
|
2370
2379
|
.border-r {
|
2371
2380
|
border-right-width: 1px;
|
2372
2381
|
}
|
2373
2382
|
|
2374
|
-
.border-
|
2375
|
-
border-
|
2383
|
+
.border-b-0 {
|
2384
|
+
border-bottom-width: 0;
|
2376
2385
|
}
|
2377
2386
|
|
2378
|
-
.border-
|
2379
|
-
border-
|
2387
|
+
.border-l-2 {
|
2388
|
+
border-left-width: 2px;
|
2380
2389
|
}
|
2381
2390
|
|
2382
|
-
.border-
|
2383
|
-
border-
|
2391
|
+
.border-b-2 {
|
2392
|
+
border-bottom-width: 2px;
|
2384
2393
|
}
|
2385
2394
|
|
2386
|
-
|
2387
|
-
border-
|
2395
|
+
.border-red-200 {
|
2396
|
+
--tw-border-opacity: 1;
|
2397
|
+
border-color: rgb(254 202 202 / var(--tw-border-opacity));
|
2388
2398
|
}
|
2389
2399
|
|
2390
|
-
.border-
|
2391
|
-
|
2392
|
-
border-color: rgb(229 231 235 / var(--tw-border-opacity));
|
2400
|
+
.border-lookbook-divider {
|
2401
|
+
border-color: var(--lookbook-divider);
|
2393
2402
|
}
|
2394
2403
|
|
2395
2404
|
.border-gray-300 {
|
@@ -2397,29 +2406,39 @@ input[type="color"]::-webkit-color-swatch {
|
|
2397
2406
|
border-color: rgb(209 213 219 / var(--tw-border-opacity));
|
2398
2407
|
}
|
2399
2408
|
|
2400
|
-
.border-
|
2401
|
-
border-color:
|
2409
|
+
.border-transparent {
|
2410
|
+
border-color: #0000;
|
2411
|
+
}
|
2412
|
+
|
2413
|
+
.border-lookbook-dropdown-divider {
|
2414
|
+
border-color: var(--lookbook-dropdown-divider);
|
2415
|
+
}
|
2416
|
+
|
2417
|
+
.\!border-lookbook-header-border {
|
2418
|
+
border-color: var(--lookbook-header-border) !important;
|
2402
2419
|
}
|
2403
2420
|
|
2404
2421
|
.border-lookbook-tabs-border-active {
|
2405
2422
|
border-color: var(--lookbook-tabs-border-active);
|
2406
2423
|
}
|
2407
2424
|
|
2408
|
-
.
|
2409
|
-
--tw-
|
2410
|
-
|
2425
|
+
.bg-white {
|
2426
|
+
--tw-bg-opacity: 1;
|
2427
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
2411
2428
|
}
|
2412
2429
|
|
2413
|
-
.
|
2414
|
-
|
2430
|
+
.bg-red-50 {
|
2431
|
+
--tw-bg-opacity: 1;
|
2432
|
+
background-color: rgb(254 242 242 / var(--tw-bg-opacity));
|
2415
2433
|
}
|
2416
2434
|
|
2417
|
-
|
2418
|
-
|
2435
|
+
.bg-red-100 {
|
2436
|
+
--tw-bg-opacity: 1;
|
2437
|
+
background-color: rgb(254 226 226 / var(--tw-bg-opacity));
|
2419
2438
|
}
|
2420
2439
|
|
2421
|
-
|
2422
|
-
background-color: var(--lookbook-
|
2440
|
+
.bg-lookbook-sidebar-bg {
|
2441
|
+
background-color: var(--lookbook-sidebar-bg);
|
2423
2442
|
}
|
2424
2443
|
|
2425
2444
|
.bg-black {
|
@@ -2427,68 +2446,73 @@ input[type="color"]::-webkit-color-swatch {
|
|
2427
2446
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
2428
2447
|
}
|
2429
2448
|
|
2430
|
-
.bg-
|
2431
|
-
background-color:
|
2449
|
+
.bg-lookbook-drawer-bg {
|
2450
|
+
background-color: var(--lookbook-drawer-bg);
|
2432
2451
|
}
|
2433
2452
|
|
2434
|
-
.bg-lookbook-
|
2435
|
-
background-color: var(--lookbook-
|
2453
|
+
.bg-lookbook-page-bg {
|
2454
|
+
background-color: var(--lookbook-page-bg);
|
2436
2455
|
}
|
2437
2456
|
|
2438
|
-
.bg-
|
2439
|
-
background-color:
|
2457
|
+
.bg-transparent {
|
2458
|
+
background-color: #0000;
|
2459
|
+
}
|
2460
|
+
|
2461
|
+
.bg-lookbook-input-toggle-active {
|
2462
|
+
background-color: var(--lookbook-input-toggle-active);
|
2440
2463
|
}
|
2441
2464
|
|
2442
2465
|
.bg-lookbook-input-toggle {
|
2443
2466
|
background-color: var(--lookbook-input-toggle);
|
2444
2467
|
}
|
2445
2468
|
|
2446
|
-
.bg-lookbook-
|
2447
|
-
background-color: var(--lookbook-
|
2469
|
+
.bg-lookbook-prose-bg {
|
2470
|
+
background-color: var(--lookbook-prose-bg);
|
2448
2471
|
}
|
2449
2472
|
|
2450
|
-
.bg-
|
2451
|
-
|
2473
|
+
.bg-zinc-50 {
|
2474
|
+
--tw-bg-opacity: 1;
|
2475
|
+
background-color: rgb(250 250 250 / var(--tw-bg-opacity));
|
2452
2476
|
}
|
2453
2477
|
|
2454
|
-
|
2455
|
-
background-color: var(--lookbook-
|
2478
|
+
.\!bg-lookbook-header-bg {
|
2479
|
+
background-color: var(--lookbook-header-bg) !important;
|
2456
2480
|
}
|
2457
2481
|
|
2458
|
-
.bg-lookbook-
|
2459
|
-
background-color: var(--lookbook-
|
2482
|
+
.bg-lookbook-divider {
|
2483
|
+
background-color: var(--lookbook-divider);
|
2460
2484
|
}
|
2461
2485
|
|
2462
|
-
.bg-lookbook-
|
2463
|
-
background-color: var(--lookbook-
|
2486
|
+
.bg-lookbook-button-bg {
|
2487
|
+
background-color: var(--lookbook-button-bg);
|
2488
|
+
}
|
2489
|
+
|
2490
|
+
.bg-lookbook-button-bg-hover {
|
2491
|
+
background-color: var(--lookbook-button-bg-hover);
|
2464
2492
|
}
|
2465
2493
|
|
2466
2494
|
.bg-lookbook-toolbar-bg {
|
2467
2495
|
background-color: var(--lookbook-toolbar-bg);
|
2468
2496
|
}
|
2469
2497
|
|
2470
|
-
.bg-
|
2471
|
-
|
2472
|
-
background-color: rgb(254 226 226 / var(--tw-bg-opacity));
|
2498
|
+
.bg-gray-100\/80 {
|
2499
|
+
background-color: #f3f4f6cc;
|
2473
2500
|
}
|
2474
2501
|
|
2475
|
-
|
2476
|
-
--
|
2477
|
-
background-color: rgb(254 242 242 / var(--tw-bg-opacity));
|
2502
|
+
.\!bg-lookbook-nav-item-active {
|
2503
|
+
background-color: var(--lookbook-nav-item-active) !important;
|
2478
2504
|
}
|
2479
2505
|
|
2480
|
-
.bg-
|
2481
|
-
background-color:
|
2506
|
+
.bg-lookbook-params-editor-bg {
|
2507
|
+
background-color: var(--lookbook-params-editor-bg);
|
2482
2508
|
}
|
2483
2509
|
|
2484
|
-
.
|
2485
|
-
|
2486
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
2510
|
+
.p-4 {
|
2511
|
+
padding: 1rem;
|
2487
2512
|
}
|
2488
2513
|
|
2489
|
-
.
|
2490
|
-
|
2491
|
-
background-color: rgb(250 250 250 / var(--tw-bg-opacity));
|
2514
|
+
.p-3 {
|
2515
|
+
padding: .75rem;
|
2492
2516
|
}
|
2493
2517
|
|
2494
2518
|
.p-1 {
|
@@ -2499,25 +2523,24 @@ input[type="color"]::-webkit-color-swatch {
|
|
2499
2523
|
padding: .5rem;
|
2500
2524
|
}
|
2501
2525
|
|
2502
|
-
.
|
2503
|
-
padding:
|
2504
|
-
|
2505
|
-
|
2506
|
-
.p-4 {
|
2507
|
-
padding: 1rem;
|
2526
|
+
.px-4 {
|
2527
|
+
padding-left: 1rem;
|
2528
|
+
padding-right: 1rem;
|
2508
2529
|
}
|
2509
2530
|
|
2510
|
-
.
|
2511
|
-
padding: 1.5rem;
|
2531
|
+
.py-6 {
|
2532
|
+
padding-top: 1.5rem;
|
2533
|
+
padding-bottom: 1.5rem;
|
2512
2534
|
}
|
2513
2535
|
|
2514
|
-
.
|
2515
|
-
padding: 2rem;
|
2536
|
+
.px-8 {
|
2537
|
+
padding-left: 2rem;
|
2538
|
+
padding-right: 2rem;
|
2516
2539
|
}
|
2517
2540
|
|
2518
|
-
.
|
2519
|
-
padding-
|
2520
|
-
padding-
|
2541
|
+
.py-2 {
|
2542
|
+
padding-top: .5rem;
|
2543
|
+
padding-bottom: .5rem;
|
2521
2544
|
}
|
2522
2545
|
|
2523
2546
|
.px-2 {
|
@@ -2530,101 +2553,104 @@ input[type="color"]::-webkit-color-swatch {
|
|
2530
2553
|
padding-right: .75rem;
|
2531
2554
|
}
|
2532
2555
|
|
2533
|
-
.
|
2534
|
-
padding-
|
2535
|
-
padding-
|
2556
|
+
.py-3 {
|
2557
|
+
padding-top: .75rem;
|
2558
|
+
padding-bottom: .75rem;
|
2536
2559
|
}
|
2537
2560
|
|
2538
|
-
.
|
2539
|
-
padding-
|
2540
|
-
padding-
|
2561
|
+
.py-1\.5 {
|
2562
|
+
padding-top: .375rem;
|
2563
|
+
padding-bottom: .375rem;
|
2541
2564
|
}
|
2542
2565
|
|
2543
|
-
.py-
|
2544
|
-
padding-top: .
|
2545
|
-
padding-bottom: .
|
2566
|
+
.py-1 {
|
2567
|
+
padding-top: .25rem;
|
2568
|
+
padding-bottom: .25rem;
|
2546
2569
|
}
|
2547
2570
|
|
2548
|
-
.
|
2549
|
-
padding-
|
2550
|
-
padding-
|
2571
|
+
.px-1 {
|
2572
|
+
padding-left: .25rem;
|
2573
|
+
padding-right: .25rem;
|
2551
2574
|
}
|
2552
2575
|
|
2553
|
-
.
|
2554
|
-
padding-
|
2555
|
-
padding-bottom: 1.5rem;
|
2576
|
+
.pb-10 {
|
2577
|
+
padding-bottom: 2.5rem;
|
2556
2578
|
}
|
2557
2579
|
|
2558
|
-
.pb-
|
2559
|
-
padding-bottom:
|
2580
|
+
.pb-4 {
|
2581
|
+
padding-bottom: 1rem;
|
2560
2582
|
}
|
2561
2583
|
|
2562
|
-
.
|
2563
|
-
padding-
|
2584
|
+
.pt-1 {
|
2585
|
+
padding-top: .25rem;
|
2564
2586
|
}
|
2565
2587
|
|
2566
|
-
.
|
2567
|
-
padding-
|
2588
|
+
.pr-0 {
|
2589
|
+
padding-right: 0;
|
2568
2590
|
}
|
2569
2591
|
|
2570
|
-
.
|
2571
|
-
padding-
|
2592
|
+
.pl-1 {
|
2593
|
+
padding-left: .25rem;
|
2572
2594
|
}
|
2573
2595
|
|
2574
|
-
.pb-
|
2575
|
-
padding-bottom:
|
2596
|
+
.pb-1 {
|
2597
|
+
padding-bottom: .25rem;
|
2576
2598
|
}
|
2577
2599
|
|
2578
|
-
.
|
2579
|
-
padding-
|
2600
|
+
.pr-0\.5 {
|
2601
|
+
padding-right: .125rem;
|
2602
|
+
}
|
2603
|
+
|
2604
|
+
.pl-0\.5 {
|
2605
|
+
padding-left: .125rem;
|
2580
2606
|
}
|
2581
2607
|
|
2582
2608
|
.pl-0 {
|
2583
2609
|
padding-left: 0;
|
2584
2610
|
}
|
2585
2611
|
|
2586
|
-
.
|
2587
|
-
padding-
|
2612
|
+
.pt-8 {
|
2613
|
+
padding-top: 2rem;
|
2588
2614
|
}
|
2589
2615
|
|
2590
|
-
.
|
2591
|
-
padding-
|
2616
|
+
.pb-12 {
|
2617
|
+
padding-bottom: 3rem;
|
2592
2618
|
}
|
2593
2619
|
|
2594
|
-
.
|
2595
|
-
padding-
|
2620
|
+
.pt-2 {
|
2621
|
+
padding-top: .5rem;
|
2596
2622
|
}
|
2597
2623
|
|
2598
|
-
.
|
2599
|
-
padding-
|
2624
|
+
.pt-3 {
|
2625
|
+
padding-top: .75rem;
|
2600
2626
|
}
|
2601
2627
|
|
2602
|
-
.
|
2603
|
-
padding-
|
2628
|
+
.pb-3 {
|
2629
|
+
padding-bottom: .75rem;
|
2630
|
+
}
|
2631
|
+
|
2632
|
+
.pb-0 {
|
2633
|
+
padding-bottom: 0;
|
2604
2634
|
}
|
2605
2635
|
|
2606
2636
|
.pr-1 {
|
2607
2637
|
padding-right: .25rem;
|
2608
2638
|
}
|
2609
2639
|
|
2610
|
-
.
|
2611
|
-
padding-
|
2640
|
+
.pl-2 {
|
2641
|
+
padding-left: .5rem;
|
2612
2642
|
}
|
2613
2643
|
|
2614
2644
|
.pt-1\.5 {
|
2615
2645
|
padding-top: .375rem;
|
2616
2646
|
}
|
2617
2647
|
|
2618
|
-
.pt-2 {
|
2619
|
-
padding-top: .5rem;
|
2620
|
-
}
|
2621
|
-
|
2622
2648
|
.pt-2\.5 {
|
2623
2649
|
padding-top: .625rem;
|
2624
2650
|
}
|
2625
2651
|
|
2626
|
-
.
|
2627
|
-
padding-
|
2652
|
+
.pb-1\.5 {
|
2653
|
+
padding-bottom: .375rem;
|
2628
2654
|
}
|
2629
2655
|
|
2630
2656
|
.text-left {
|
@@ -2648,11 +2674,6 @@ input[type="color"]::-webkit-color-swatch {
|
|
2648
2674
|
line-height: 1.5rem;
|
2649
2675
|
}
|
2650
2676
|
|
2651
|
-
.text-lg {
|
2652
|
-
font-size: 1.125rem;
|
2653
|
-
line-height: 1.75rem;
|
2654
|
-
}
|
2655
|
-
|
2656
2677
|
.text-sm {
|
2657
2678
|
font-size: .875rem;
|
2658
2679
|
line-height: 1.25rem;
|
@@ -2668,14 +2689,23 @@ input[type="color"]::-webkit-color-swatch {
|
|
2668
2689
|
line-height: 1rem;
|
2669
2690
|
}
|
2670
2691
|
|
2671
|
-
.
|
2672
|
-
font-
|
2692
|
+
.text-\[11px\] {
|
2693
|
+
font-size: 11px;
|
2694
|
+
}
|
2695
|
+
|
2696
|
+
.text-lg {
|
2697
|
+
font-size: 1.125rem;
|
2698
|
+
line-height: 1.75rem;
|
2673
2699
|
}
|
2674
2700
|
|
2675
2701
|
.font-bold {
|
2676
2702
|
font-weight: 700;
|
2677
2703
|
}
|
2678
2704
|
|
2705
|
+
.font-black {
|
2706
|
+
font-weight: 900;
|
2707
|
+
}
|
2708
|
+
|
2679
2709
|
.uppercase {
|
2680
2710
|
text-transform: uppercase;
|
2681
2711
|
}
|
@@ -2700,12 +2730,19 @@ input[type="color"]::-webkit-color-swatch {
|
|
2700
2730
|
letter-spacing: .05em;
|
2701
2731
|
}
|
2702
2732
|
|
2703
|
-
|
2704
|
-
|
2733
|
+
.text-red-300 {
|
2734
|
+
--tw-text-opacity: 1;
|
2735
|
+
color: rgb(252 165 165 / var(--tw-text-opacity));
|
2705
2736
|
}
|
2706
2737
|
|
2707
|
-
|
2708
|
-
|
2738
|
+
.text-red-700 {
|
2739
|
+
--tw-text-opacity: 1;
|
2740
|
+
color: rgb(185 28 28 / var(--tw-text-opacity));
|
2741
|
+
}
|
2742
|
+
|
2743
|
+
.text-red-900 {
|
2744
|
+
--tw-text-opacity: 1;
|
2745
|
+
color: rgb(127 29 29 / var(--tw-text-opacity));
|
2709
2746
|
}
|
2710
2747
|
|
2711
2748
|
.text-gray-400 {
|
@@ -2713,6 +2750,10 @@ input[type="color"]::-webkit-color-swatch {
|
|
2713
2750
|
color: rgb(156 163 175 / var(--tw-text-opacity));
|
2714
2751
|
}
|
2715
2752
|
|
2753
|
+
.text-lookbook-blank-slate-title {
|
2754
|
+
color: var(--lookbook-blank-slate-title);
|
2755
|
+
}
|
2756
|
+
|
2716
2757
|
.text-green-500 {
|
2717
2758
|
--tw-text-opacity: 1;
|
2718
2759
|
color: rgb(34 197 94 / var(--tw-text-opacity));
|
@@ -2723,8 +2764,17 @@ input[type="color"]::-webkit-color-swatch {
|
|
2723
2764
|
color: rgb(22 163 74 / var(--tw-text-opacity));
|
2724
2765
|
}
|
2725
2766
|
|
2726
|
-
.text-
|
2727
|
-
|
2767
|
+
.text-gray-600 {
|
2768
|
+
--tw-text-opacity: 1;
|
2769
|
+
color: rgb(75 85 99 / var(--tw-text-opacity));
|
2770
|
+
}
|
2771
|
+
|
2772
|
+
.text-lookbook-icon-button-stroke {
|
2773
|
+
color: var(--lookbook-icon-button-stroke);
|
2774
|
+
}
|
2775
|
+
|
2776
|
+
.\!text-lookbook-header-text {
|
2777
|
+
color: var(--lookbook-header-text) !important;
|
2728
2778
|
}
|
2729
2779
|
|
2730
2780
|
.text-lookbook-branding-text {
|
@@ -2735,91 +2785,84 @@ input[type="color"]::-webkit-color-swatch {
|
|
2735
2785
|
color: var(--lookbook-header-text);
|
2736
2786
|
}
|
2737
2787
|
|
2738
|
-
.text-lookbook-icon-button-stroke {
|
2739
|
-
color: var(--lookbook-icon-button-stroke);
|
2740
|
-
}
|
2741
|
-
|
2742
2788
|
.text-lookbook-icon-button-stroke-hover {
|
2743
2789
|
color: var(--lookbook-icon-button-stroke-hover);
|
2744
2790
|
}
|
2745
2791
|
|
2746
|
-
.text-lookbook-nav-icon-stroke {
|
2747
|
-
color: var(--lookbook-nav-icon-stroke);
|
2748
|
-
}
|
2749
|
-
|
2750
2792
|
.text-lookbook-prose-text {
|
2751
2793
|
color: var(--lookbook-prose-text);
|
2752
2794
|
}
|
2753
2795
|
|
2754
|
-
.text-lookbook-
|
2755
|
-
color: var(--lookbook-
|
2796
|
+
.text-lookbook-button-text {
|
2797
|
+
color: var(--lookbook-button-text);
|
2756
2798
|
}
|
2757
2799
|
|
2758
|
-
.text-lookbook-
|
2759
|
-
color: var(--lookbook-
|
2800
|
+
.text-lookbook-embed-title {
|
2801
|
+
color: var(--lookbook-embed-title);
|
2760
2802
|
}
|
2761
2803
|
|
2762
|
-
.text-
|
2763
|
-
--
|
2764
|
-
color: rgb(252 165 165 / var(--tw-text-opacity));
|
2804
|
+
.text-lookbook-nav-icon-stroke {
|
2805
|
+
color: var(--lookbook-nav-icon-stroke);
|
2765
2806
|
}
|
2766
2807
|
|
2767
|
-
.text-
|
2768
|
-
--
|
2769
|
-
color: rgb(185 28 28 / var(--tw-text-opacity));
|
2808
|
+
.text-lookbook-tabs-text {
|
2809
|
+
color: var(--lookbook-tabs-text);
|
2770
2810
|
}
|
2771
2811
|
|
2772
|
-
.text-
|
2773
|
-
--
|
2774
|
-
|
2812
|
+
.text-lookbook-tabs-text-hover {
|
2813
|
+
color: var(--lookbook-tabs-text-hover);
|
2814
|
+
}
|
2815
|
+
|
2816
|
+
.\!text-lookbook-tabs-text-disabled {
|
2817
|
+
color: var(--lookbook-tabs-text-disabled) !important;
|
2775
2818
|
}
|
2776
2819
|
|
2777
2820
|
.underline {
|
2778
2821
|
text-decoration-line: underline;
|
2779
2822
|
}
|
2780
2823
|
|
2781
|
-
|
2782
|
-
opacity:
|
2824
|
+
.opacity-50 {
|
2825
|
+
opacity: .5;
|
2783
2826
|
}
|
2784
2827
|
|
2785
|
-
|
2786
|
-
opacity: .
|
2828
|
+
.opacity-60 {
|
2829
|
+
opacity: .6;
|
2787
2830
|
}
|
2788
2831
|
|
2789
2832
|
.opacity-0 {
|
2790
2833
|
opacity: 0;
|
2791
2834
|
}
|
2792
2835
|
|
2793
|
-
|
2794
|
-
opacity: .
|
2836
|
+
.\!opacity-30 {
|
2837
|
+
opacity: .3 !important;
|
2795
2838
|
}
|
2796
2839
|
|
2797
|
-
.opacity-
|
2798
|
-
opacity: .
|
2840
|
+
.opacity-90 {
|
2841
|
+
opacity: .9;
|
2799
2842
|
}
|
2800
2843
|
|
2801
|
-
.opacity-
|
2802
|
-
opacity: .
|
2844
|
+
.opacity-40 {
|
2845
|
+
opacity: .4;
|
2803
2846
|
}
|
2804
2847
|
|
2805
|
-
.opacity-
|
2806
|
-
opacity: .
|
2848
|
+
.opacity-80 {
|
2849
|
+
opacity: .8;
|
2807
2850
|
}
|
2808
2851
|
|
2809
2852
|
.opacity-70 {
|
2810
2853
|
opacity: .7;
|
2811
2854
|
}
|
2812
2855
|
|
2813
|
-
|
2814
|
-
opacity:
|
2856
|
+
.\!opacity-100 {
|
2857
|
+
opacity: 1 !important;
|
2815
2858
|
}
|
2816
2859
|
|
2817
|
-
.opacity-
|
2818
|
-
opacity: .
|
2860
|
+
.opacity-25 {
|
2861
|
+
opacity: .25;
|
2819
2862
|
}
|
2820
2863
|
|
2821
|
-
.opacity-
|
2822
|
-
opacity: .
|
2864
|
+
.opacity-75 {
|
2865
|
+
opacity: .75;
|
2823
2866
|
}
|
2824
2867
|
|
2825
2868
|
.shadow {
|
@@ -2843,26 +2886,32 @@ input[type="color"]::-webkit-color-swatch {
|
|
2843
2886
|
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);
|
2844
2887
|
}
|
2845
2888
|
|
2889
|
+
.transition-colors {
|
2890
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
2891
|
+
transition-duration: .15s;
|
2892
|
+
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2893
|
+
}
|
2894
|
+
|
2846
2895
|
.transition {
|
2847
|
-
transition-property: color, background-color, border-color,
|
2896
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
|
2848
2897
|
transition-duration: .15s;
|
2849
2898
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2850
2899
|
}
|
2851
2900
|
|
2852
|
-
.transition-
|
2853
|
-
transition-property:
|
2901
|
+
.transition-opacity {
|
2902
|
+
transition-property: opacity;
|
2854
2903
|
transition-duration: .15s;
|
2855
2904
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2856
2905
|
}
|
2857
2906
|
|
2858
|
-
.transition-
|
2859
|
-
transition-property:
|
2907
|
+
.transition-all {
|
2908
|
+
transition-property: all;
|
2860
2909
|
transition-duration: .15s;
|
2861
2910
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2862
2911
|
}
|
2863
2912
|
|
2864
|
-
.transition
|
2865
|
-
transition-property:
|
2913
|
+
.transition-\[height\] {
|
2914
|
+
transition-property: height;
|
2866
2915
|
transition-duration: .15s;
|
2867
2916
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2868
2917
|
}
|
@@ -2875,6 +2924,10 @@ input[type="color"]::-webkit-color-swatch {
|
|
2875
2924
|
transition-duration: .2s;
|
2876
2925
|
}
|
2877
2926
|
|
2927
|
+
.duration-150 {
|
2928
|
+
transition-duration: .15s;
|
2929
|
+
}
|
2930
|
+
|
2878
2931
|
.ease-in-out {
|
2879
2932
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2880
2933
|
}
|
@@ -3053,14 +3106,13 @@ input[type="color"]::-webkit-color-swatch {
|
|
3053
3106
|
}
|
3054
3107
|
|
3055
3108
|
.tippy-box[data-theme~="menu"] {
|
3056
|
-
--tw-bg-opacity: 1;
|
3057
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
3058
|
-
--tw-text-opacity: 1;
|
3059
|
-
color: rgb(75 85 99 / var(--tw-text-opacity));
|
3060
3109
|
--tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
|
3061
3110
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
3062
3111
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
3063
|
-
border: 1px solid
|
3112
|
+
border: 1px solid var(--lookbook-dropdown-divider);
|
3113
|
+
color: var(--lookbook-dropdown-text);
|
3114
|
+
background: var(--lookbook-dropdown-bg);
|
3115
|
+
max-width: none !important;
|
3064
3116
|
}
|
3065
3117
|
|
3066
3118
|
.tippy-box[data-theme~="menu"] > .tippy-content {
|
@@ -3070,19 +3122,19 @@ input[type="color"]::-webkit-color-swatch {
|
|
3070
3122
|
}
|
3071
3123
|
|
3072
3124
|
.tippy-box[data-theme~="menu"][data-placement^="top"] > .tippy-arrow:before {
|
3073
|
-
border-top-color:
|
3125
|
+
border-top-color: var(--lookbook-dropdown-bg);
|
3074
3126
|
}
|
3075
3127
|
|
3076
3128
|
.tippy-box[data-theme~="menu"][data-placement^="bottom"] > .tippy-arrow:before {
|
3077
|
-
border-bottom-color:
|
3129
|
+
border-bottom-color: var(--lookbook-dropdown-bg);
|
3078
3130
|
}
|
3079
3131
|
|
3080
3132
|
.tippy-box[data-theme~="menu"][data-placement^="left"] > .tippy-arrow:before {
|
3081
|
-
border-left-color:
|
3133
|
+
border-left-color: var(--lookbook-dropdown-bg);
|
3082
3134
|
}
|
3083
3135
|
|
3084
3136
|
.tippy-box[data-theme~="menu"][data-placement^="right"] > .tippy-arrow:before {
|
3085
|
-
border-right-color:
|
3137
|
+
border-right-color: var(--lookbook-dropdown-bg);
|
3086
3138
|
}
|
3087
3139
|
|
3088
3140
|
.theme-github {
|
@@ -3484,6 +3536,10 @@ input[type="color"]::-webkit-color-swatch {
|
|
3484
3536
|
background-color: var(--lookbook-draggable-hint);
|
3485
3537
|
}
|
3486
3538
|
|
3539
|
+
.hover\:bg-lookbook-button-bg-hover:hover {
|
3540
|
+
background-color: var(--lookbook-button-bg-hover);
|
3541
|
+
}
|
3542
|
+
|
3487
3543
|
.hover\:text-gray-900:hover {
|
3488
3544
|
--tw-text-opacity: 1;
|
3489
3545
|
color: rgb(17 24 39 / var(--tw-text-opacity));
|
@@ -3515,15 +3571,15 @@ input[type="color"]::-webkit-color-swatch {
|
|
3515
3571
|
outline: 2px solid #0000;
|
3516
3572
|
}
|
3517
3573
|
|
3518
|
-
.focus\:ring-
|
3574
|
+
.focus\:ring-2:focus {
|
3519
3575
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
3520
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(
|
3576
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
3521
3577
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
3522
3578
|
}
|
3523
3579
|
|
3524
|
-
.focus\:ring-
|
3580
|
+
.focus\:ring-0:focus {
|
3525
3581
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
3526
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(
|
3582
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
3527
3583
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
3528
3584
|
}
|
3529
3585
|
|