lookbook 2.0.0.beta.0 → 2.0.0.beta.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/components/lookbook/embed/inspector/component.html.erb +1 -1
- data/app/components/lookbook/embed_code_dropdown/component.html.erb +4 -1
- data/app/components/lookbook/embed_code_dropdown/component.rb +3 -2
- data/app/components/lookbook/header/component.html.erb +1 -1
- data/app/controllers/concerns/lookbook/targetable_concern.rb +3 -2
- data/app/controllers/lookbook/previews_controller.rb +31 -5
- data/app/views/layouts/lookbook/application.html.erb +3 -3
- data/app/views/lookbook/inspector/show.html.erb +10 -7
- data/app/views/lookbook/previews/group.html.erb +1 -1
- data/config/app.yml +2 -1
- data/config/routes.rb +4 -2
- data/lib/lookbook/engine.rb +16 -1
- data/lib/lookbook/entities/scenario_entity.rb +4 -0
- data/lib/lookbook/entities/scenario_group_entity.rb +5 -1
- data/lib/lookbook/helpers/preview_helper.rb +4 -0
- data/lib/lookbook/preview_controller_actions.rb +0 -5
- data/lib/lookbook/version.rb +1 -1
- data/public/lookbook-assets/css/lookbook.css +385 -387
- data/public/lookbook-assets/css/lookbook.css.map +1 -1
- data/public/lookbook-assets/js/index.js +59 -59
- data/public/lookbook-assets/js/index.js.map +1 -1
- metadata +2 -2
@@ -27,6 +27,7 @@ hr {
|
|
27
27
|
}
|
28
28
|
|
29
29
|
abbr:where([title]) {
|
30
|
+
-webkit-text-decoration: underline dotted;
|
30
31
|
text-decoration: underline dotted;
|
31
32
|
}
|
32
33
|
|
@@ -37,6 +38,7 @@ h1, h2, h3, h4, h5, h6 {
|
|
37
38
|
|
38
39
|
a {
|
39
40
|
color: inherit;
|
41
|
+
-webkit-text-decoration: inherit;
|
40
42
|
text-decoration: inherit;
|
41
43
|
}
|
42
44
|
|
@@ -371,7 +373,7 @@ pre[class*="language-"] {
|
|
371
373
|
background-color: var(--lookbook-scrollbar);
|
372
374
|
background-clip: content-box;
|
373
375
|
border-radius: 9999px;
|
374
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
376
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke;
|
375
377
|
transition-duration: .15s;
|
376
378
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
377
379
|
}
|
@@ -1421,7 +1423,7 @@ pre[class*="language-"] {
|
|
1421
1423
|
[data-component="icon"] {
|
1422
1424
|
flex: none;
|
1423
1425
|
line-height: 1;
|
1424
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
|
1426
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
|
1425
1427
|
transition-duration: .15s;
|
1426
1428
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
1427
1429
|
display: block;
|
@@ -1451,7 +1453,7 @@ pre[class*="language-"] {
|
|
1451
1453
|
align-items: center;
|
1452
1454
|
padding-top: .25rem;
|
1453
1455
|
padding-bottom: .25rem;
|
1454
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
|
1456
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
|
1455
1457
|
transition-duration: .15s;
|
1456
1458
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
1457
1459
|
display: flex;
|
@@ -1616,7 +1618,7 @@ pre[class*="language-"] {
|
|
1616
1618
|
-webkit-user-select: none;
|
1617
1619
|
user-select: none;
|
1618
1620
|
color: var(--lookbook-viewport-handle-icon-stroke);
|
1619
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
|
1621
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
|
1620
1622
|
transition-duration: .15s;
|
1621
1623
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
1622
1624
|
}
|
@@ -1753,36 +1755,32 @@ select.compact {
|
|
1753
1755
|
position: sticky;
|
1754
1756
|
}
|
1755
1757
|
|
1756
|
-
.inset-0 {
|
1757
|
-
inset: 0;
|
1758
|
-
}
|
1759
|
-
|
1760
1758
|
.-inset-px {
|
1761
1759
|
inset: -1px;
|
1762
1760
|
}
|
1763
1761
|
|
1764
|
-
.
|
1765
|
-
|
1762
|
+
.inset-0 {
|
1763
|
+
inset: 0;
|
1766
1764
|
}
|
1767
1765
|
|
1768
|
-
|
1769
|
-
|
1766
|
+
.-bottom-px {
|
1767
|
+
bottom: -1px;
|
1770
1768
|
}
|
1771
1769
|
|
1772
|
-
|
1773
|
-
|
1770
|
+
.-left-px {
|
1771
|
+
left: -1px;
|
1774
1772
|
}
|
1775
1773
|
|
1776
|
-
|
1777
|
-
top:
|
1774
|
+
.-top-px {
|
1775
|
+
top: -1px;
|
1778
1776
|
}
|
1779
1777
|
|
1780
|
-
.
|
1781
|
-
|
1778
|
+
.bottom-0 {
|
1779
|
+
bottom: 0;
|
1782
1780
|
}
|
1783
1781
|
|
1784
|
-
.
|
1785
|
-
|
1782
|
+
.right-0 {
|
1783
|
+
right: 0;
|
1786
1784
|
}
|
1787
1785
|
|
1788
1786
|
.right-3 {
|
@@ -1793,12 +1791,12 @@ select.compact {
|
|
1793
1791
|
right: 18px;
|
1794
1792
|
}
|
1795
1793
|
|
1796
|
-
|
1797
|
-
top:
|
1794
|
+
.top-0 {
|
1795
|
+
top: 0;
|
1798
1796
|
}
|
1799
1797
|
|
1800
|
-
|
1801
|
-
|
1798
|
+
.top-1\/2 {
|
1799
|
+
top: 50%;
|
1802
1800
|
}
|
1803
1801
|
|
1804
1802
|
.top-\[-1px\] {
|
@@ -1809,33 +1807,32 @@ select.compact {
|
|
1809
1807
|
top: 2px;
|
1810
1808
|
}
|
1811
1809
|
|
1812
|
-
|
1813
|
-
|
1814
|
-
}
|
1815
|
-
|
1816
|
-
.z-50 {
|
1817
|
-
z-index: 50;
|
1810
|
+
.top-\[39px\] {
|
1811
|
+
top: 39px;
|
1818
1812
|
}
|
1819
1813
|
|
1820
|
-
.
|
1821
|
-
|
1814
|
+
.top-\[40px\] {
|
1815
|
+
top: 40px;
|
1822
1816
|
}
|
1823
1817
|
|
1824
1818
|
.\!z-40 {
|
1825
1819
|
z-index: 40 !important;
|
1826
1820
|
}
|
1827
1821
|
|
1822
|
+
.z-0 {
|
1823
|
+
z-index: 0;
|
1824
|
+
}
|
1825
|
+
|
1828
1826
|
.z-10 {
|
1829
1827
|
z-index: 10;
|
1830
1828
|
}
|
1831
1829
|
|
1832
|
-
.z-
|
1833
|
-
z-index:
|
1830
|
+
.z-50 {
|
1831
|
+
z-index: 50;
|
1834
1832
|
}
|
1835
1833
|
|
1836
|
-
.
|
1837
|
-
|
1838
|
-
margin-right: auto;
|
1834
|
+
.z-\[-1\] {
|
1835
|
+
z-index: -1;
|
1839
1836
|
}
|
1840
1837
|
|
1841
1838
|
.mx-8 {
|
@@ -1843,32 +1840,45 @@ select.compact {
|
|
1843
1840
|
margin-right: 2rem;
|
1844
1841
|
}
|
1845
1842
|
|
1846
|
-
.
|
1847
|
-
margin-
|
1843
|
+
.mx-auto {
|
1844
|
+
margin-left: auto;
|
1845
|
+
margin-right: auto;
|
1848
1846
|
}
|
1849
1847
|
|
1850
|
-
|
1851
|
-
margin-
|
1848
|
+
.\!ml-2 {
|
1849
|
+
margin-left: .5rem !important;
|
1852
1850
|
}
|
1853
1851
|
|
1854
|
-
|
1855
|
-
margin-
|
1852
|
+
.-ml-3 {
|
1853
|
+
margin-left: -.75rem;
|
1854
|
+
}
|
1855
|
+
|
1856
|
+
.-mt-px {
|
1857
|
+
margin-top: -1px;
|
1856
1858
|
}
|
1857
1859
|
|
1858
1860
|
.mb-2 {
|
1859
1861
|
margin-bottom: .5rem;
|
1860
1862
|
}
|
1861
1863
|
|
1862
|
-
.
|
1863
|
-
margin-
|
1864
|
+
.mb-3 {
|
1865
|
+
margin-bottom: .75rem;
|
1864
1866
|
}
|
1865
1867
|
|
1866
|
-
.
|
1867
|
-
margin-
|
1868
|
+
.mb-4 {
|
1869
|
+
margin-bottom: 1rem;
|
1868
1870
|
}
|
1869
1871
|
|
1870
|
-
.
|
1871
|
-
margin-
|
1872
|
+
.mb-6 {
|
1873
|
+
margin-bottom: 1.5rem;
|
1874
|
+
}
|
1875
|
+
|
1876
|
+
.mb-8 {
|
1877
|
+
margin-bottom: 2rem;
|
1878
|
+
}
|
1879
|
+
|
1880
|
+
.mb-\[-2px\] {
|
1881
|
+
margin-bottom: -2px;
|
1872
1882
|
}
|
1873
1883
|
|
1874
1884
|
.ml-2 {
|
@@ -1879,64 +1889,52 @@ select.compact {
|
|
1879
1889
|
margin-left: auto;
|
1880
1890
|
}
|
1881
1891
|
|
1882
|
-
.mr-
|
1883
|
-
margin-right:
|
1892
|
+
.mr-0 {
|
1893
|
+
margin-right: 0;
|
1884
1894
|
}
|
1885
1895
|
|
1886
|
-
.
|
1887
|
-
margin-
|
1896
|
+
.mr-0\.5 {
|
1897
|
+
margin-right: .125rem;
|
1888
1898
|
}
|
1889
1899
|
|
1890
1900
|
.mr-1 {
|
1891
1901
|
margin-right: .25rem;
|
1892
1902
|
}
|
1893
1903
|
|
1894
|
-
.mr-
|
1895
|
-
margin-right:
|
1896
|
-
}
|
1897
|
-
|
1898
|
-
.mb-3 {
|
1899
|
-
margin-bottom: .75rem;
|
1900
|
-
}
|
1901
|
-
|
1902
|
-
.mt-\[-2px\] {
|
1903
|
-
margin-top: -2px;
|
1904
|
-
}
|
1905
|
-
|
1906
|
-
.-mt-px {
|
1907
|
-
margin-top: -1px;
|
1904
|
+
.mr-1\.5 {
|
1905
|
+
margin-right: .375rem;
|
1908
1906
|
}
|
1909
1907
|
|
1910
|
-
.
|
1911
|
-
margin-
|
1908
|
+
.mr-2 {
|
1909
|
+
margin-right: .5rem;
|
1912
1910
|
}
|
1913
1911
|
|
1914
|
-
|
1915
|
-
margin-
|
1912
|
+
.mr-6 {
|
1913
|
+
margin-right: 1.5rem;
|
1916
1914
|
}
|
1917
1915
|
|
1918
1916
|
.mr-auto {
|
1919
1917
|
margin-right: auto;
|
1920
1918
|
}
|
1921
1919
|
|
1922
|
-
|
1923
|
-
margin-
|
1920
|
+
.mt-12 {
|
1921
|
+
margin-top: 3rem;
|
1924
1922
|
}
|
1925
1923
|
|
1926
|
-
.
|
1927
|
-
margin-
|
1924
|
+
.mt-2 {
|
1925
|
+
margin-top: .5rem;
|
1928
1926
|
}
|
1929
1927
|
|
1930
|
-
.
|
1931
|
-
margin-
|
1928
|
+
.mt-3 {
|
1929
|
+
margin-top: .75rem;
|
1932
1930
|
}
|
1933
1931
|
|
1934
|
-
.
|
1935
|
-
margin-
|
1932
|
+
.mt-6 {
|
1933
|
+
margin-top: 1.5rem;
|
1936
1934
|
}
|
1937
1935
|
|
1938
|
-
.
|
1939
|
-
margin-
|
1936
|
+
.mt-8 {
|
1937
|
+
margin-top: 2rem;
|
1940
1938
|
}
|
1941
1939
|
|
1942
1940
|
.\!block {
|
@@ -1979,52 +1977,52 @@ select.compact {
|
|
1979
1977
|
display: none;
|
1980
1978
|
}
|
1981
1979
|
|
1982
|
-
.h-
|
1983
|
-
height:
|
1980
|
+
.h-10 {
|
1981
|
+
height: 2.5rem;
|
1984
1982
|
}
|
1985
1983
|
|
1986
|
-
.h-
|
1987
|
-
height:
|
1984
|
+
.h-3 {
|
1985
|
+
height: .75rem;
|
1988
1986
|
}
|
1989
1987
|
|
1990
|
-
.h
|
1991
|
-
height:
|
1988
|
+
.h-3\.5 {
|
1989
|
+
height: .875rem;
|
1992
1990
|
}
|
1993
1991
|
|
1994
|
-
.h
|
1995
|
-
height:
|
1992
|
+
.h-4 {
|
1993
|
+
height: 1rem;
|
1996
1994
|
}
|
1997
1995
|
|
1998
|
-
.h
|
1999
|
-
height:
|
1996
|
+
.h-5 {
|
1997
|
+
height: 1.25rem;
|
2000
1998
|
}
|
2001
1999
|
|
2002
2000
|
.h-6 {
|
2003
2001
|
height: 1.5rem;
|
2004
2002
|
}
|
2005
2003
|
|
2006
|
-
.h
|
2007
|
-
height:
|
2004
|
+
.h-\[9px\] {
|
2005
|
+
height: 9px;
|
2008
2006
|
}
|
2009
2007
|
|
2010
|
-
.h-
|
2011
|
-
height:
|
2008
|
+
.h-\[calc\(100\%_-_40px\)\] {
|
2009
|
+
height: calc(100% - 40px);
|
2012
2010
|
}
|
2013
2011
|
|
2014
|
-
.h-
|
2015
|
-
height: .
|
2012
|
+
.h-\[calc\(100vh_-_2\.5rem\)\] {
|
2013
|
+
height: calc(100vh - 2.5rem);
|
2016
2014
|
}
|
2017
2015
|
|
2018
|
-
.h-\[
|
2019
|
-
height:
|
2016
|
+
.h-\[calc\(100vh_-_40px\)\] {
|
2017
|
+
height: calc(100vh - 40px);
|
2020
2018
|
}
|
2021
2019
|
|
2022
|
-
.h-
|
2023
|
-
height:
|
2020
|
+
.h-full {
|
2021
|
+
height: 100%;
|
2024
2022
|
}
|
2025
2023
|
|
2026
|
-
.h-
|
2027
|
-
height:
|
2024
|
+
.h-screen {
|
2025
|
+
height: 100vh;
|
2028
2026
|
}
|
2029
2027
|
|
2030
2028
|
.max-h-full {
|
@@ -2035,60 +2033,52 @@ select.compact {
|
|
2035
2033
|
min-height: 0;
|
2036
2034
|
}
|
2037
2035
|
|
2038
|
-
.w-
|
2039
|
-
width:
|
2036
|
+
.w-11 {
|
2037
|
+
width: 2.75rem;
|
2040
2038
|
}
|
2041
2039
|
|
2042
|
-
.w
|
2043
|
-
width:
|
2040
|
+
.w-3 {
|
2041
|
+
width: .75rem;
|
2044
2042
|
}
|
2045
2043
|
|
2046
|
-
.w-
|
2047
|
-
width:
|
2044
|
+
.w-3\.5 {
|
2045
|
+
width: .875rem;
|
2048
2046
|
}
|
2049
2047
|
|
2050
|
-
.w-
|
2051
|
-
width:
|
2048
|
+
.w-4 {
|
2049
|
+
width: 1rem;
|
2052
2050
|
}
|
2053
2051
|
|
2054
2052
|
.w-5 {
|
2055
2053
|
width: 1.25rem;
|
2056
2054
|
}
|
2057
2055
|
|
2058
|
-
.w-\[
|
2059
|
-
width:
|
2060
|
-
}
|
2061
|
-
|
2062
|
-
.w-3\.5 {
|
2063
|
-
width: .875rem;
|
2056
|
+
.w-\[140px\] {
|
2057
|
+
width: 140px;
|
2064
2058
|
}
|
2065
2059
|
|
2066
|
-
.w
|
2067
|
-
width:
|
2060
|
+
.w-\[320px\] {
|
2061
|
+
width: 320px;
|
2068
2062
|
}
|
2069
2063
|
|
2070
2064
|
.w-\[9px\] {
|
2071
2065
|
width: 9px;
|
2072
2066
|
}
|
2073
2067
|
|
2074
|
-
.w-
|
2075
|
-
width:
|
2068
|
+
.w-full {
|
2069
|
+
width: 100%;
|
2076
2070
|
}
|
2077
2071
|
|
2078
|
-
.
|
2079
|
-
|
2072
|
+
.w-screen {
|
2073
|
+
width: 100vw;
|
2080
2074
|
}
|
2081
2075
|
|
2082
2076
|
.min-w-0 {
|
2083
2077
|
min-width: 0;
|
2084
2078
|
}
|
2085
2079
|
|
2086
|
-
.
|
2087
|
-
|
2088
|
-
}
|
2089
|
-
|
2090
|
-
.max-w-screen-lg {
|
2091
|
-
max-width: 1024px;
|
2080
|
+
.min-w-\[180px\] {
|
2081
|
+
min-width: 180px;
|
2092
2082
|
}
|
2093
2083
|
|
2094
2084
|
.max-w-\[420px\] {
|
@@ -2099,6 +2089,14 @@ select.compact {
|
|
2099
2089
|
max-width: none;
|
2100
2090
|
}
|
2101
2091
|
|
2092
|
+
.max-w-screen-lg {
|
2093
|
+
max-width: 1024px;
|
2094
|
+
}
|
2095
|
+
|
2096
|
+
.max-w-sm {
|
2097
|
+
max-width: 24rem;
|
2098
|
+
}
|
2099
|
+
|
2102
2100
|
.flex-none {
|
2103
2101
|
flex: none;
|
2104
2102
|
}
|
@@ -2111,28 +2109,28 @@ select.compact {
|
|
2111
2109
|
border-collapse: collapse;
|
2112
2110
|
}
|
2113
2111
|
|
2114
|
-
|
2115
|
-
--tw-translate-x:
|
2112
|
+
.-translate-x-1\/2 {
|
2113
|
+
--tw-translate-x: -50%;
|
2116
2114
|
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));
|
2117
2115
|
}
|
2118
2116
|
|
2119
|
-
|
2120
|
-
--tw-translate-
|
2117
|
+
.-translate-y-1\/2 {
|
2118
|
+
--tw-translate-y: -50%;
|
2121
2119
|
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));
|
2122
2120
|
}
|
2123
2121
|
|
2124
|
-
.translate-x-
|
2125
|
-
--tw-translate-x:
|
2122
|
+
.translate-x-0 {
|
2123
|
+
--tw-translate-x: 0px;
|
2126
2124
|
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));
|
2127
2125
|
}
|
2128
2126
|
|
2129
|
-
|
2130
|
-
--tw-translate-
|
2127
|
+
.translate-x-5 {
|
2128
|
+
--tw-translate-x: 1.25rem;
|
2131
2129
|
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));
|
2132
2130
|
}
|
2133
2131
|
|
2134
|
-
|
2135
|
-
--tw-translate-x:
|
2132
|
+
.translate-x-full {
|
2133
|
+
--tw-translate-x: 100%;
|
2136
2134
|
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));
|
2137
2135
|
}
|
2138
2136
|
|
@@ -2141,13 +2139,13 @@ select.compact {
|
|
2141
2139
|
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));
|
2142
2140
|
}
|
2143
2141
|
|
2144
|
-
.rotate-
|
2145
|
-
--tw-rotate:
|
2142
|
+
.rotate-45 {
|
2143
|
+
--tw-rotate: 45deg;
|
2146
2144
|
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));
|
2147
2145
|
}
|
2148
2146
|
|
2149
|
-
.rotate-
|
2150
|
-
--tw-rotate:
|
2147
|
+
.rotate-90 {
|
2148
|
+
--tw-rotate: 90deg;
|
2151
2149
|
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));
|
2152
2150
|
}
|
2153
2151
|
|
@@ -2161,38 +2159,38 @@ select.compact {
|
|
2161
2159
|
animation: 1s linear infinite spin;
|
2162
2160
|
}
|
2163
2161
|
|
2164
|
-
.\!cursor-not-allowed {
|
2165
|
-
cursor: not-allowed !important;
|
2166
|
-
}
|
2167
|
-
|
2168
2162
|
.\!cursor-default {
|
2169
2163
|
cursor: default !important;
|
2170
2164
|
}
|
2171
2165
|
|
2172
|
-
|
2173
|
-
cursor:
|
2174
|
-
}
|
2175
|
-
|
2176
|
-
.cursor-\[not-allowed\] {
|
2177
|
-
cursor: not-allowed;
|
2166
|
+
.\!cursor-not-allowed {
|
2167
|
+
cursor: not-allowed !important;
|
2178
2168
|
}
|
2179
2169
|
|
2180
2170
|
.cursor-\[col-resize\] {
|
2181
2171
|
cursor: col-resize;
|
2182
2172
|
}
|
2183
2173
|
|
2184
|
-
.cursor-\[
|
2185
|
-
cursor:
|
2174
|
+
.cursor-\[not-allowed\] {
|
2175
|
+
cursor: not-allowed;
|
2186
2176
|
}
|
2187
2177
|
|
2188
2178
|
.cursor-\[nwse-resize\] {
|
2189
2179
|
cursor: nwse-resize;
|
2190
2180
|
}
|
2191
2181
|
|
2182
|
+
.cursor-\[row-resize\] {
|
2183
|
+
cursor: row-resize;
|
2184
|
+
}
|
2185
|
+
|
2192
2186
|
.cursor-help {
|
2193
2187
|
cursor: help;
|
2194
2188
|
}
|
2195
2189
|
|
2190
|
+
.cursor-pointer {
|
2191
|
+
cursor: pointer;
|
2192
|
+
}
|
2193
|
+
|
2196
2194
|
.select-none {
|
2197
2195
|
-webkit-user-select: none;
|
2198
2196
|
user-select: none;
|
@@ -2214,10 +2212,6 @@ select.compact {
|
|
2214
2212
|
grid-template-columns: 1fr 17px;
|
2215
2213
|
}
|
2216
2214
|
|
2217
|
-
.grid-rows-\[40px_1fr\] {
|
2218
|
-
grid-template-rows: 40px 1fr;
|
2219
|
-
}
|
2220
|
-
|
2221
2215
|
.\!grid-rows-\[1fr\] {
|
2222
2216
|
grid-template-rows: 1fr !important;
|
2223
2217
|
}
|
@@ -2226,6 +2220,10 @@ select.compact {
|
|
2226
2220
|
grid-template-rows: 1fr 17px;
|
2227
2221
|
}
|
2228
2222
|
|
2223
|
+
.grid-rows-\[40px_1fr\] {
|
2224
|
+
grid-template-rows: 40px 1fr;
|
2225
|
+
}
|
2226
|
+
|
2229
2227
|
.flex-col {
|
2230
2228
|
flex-direction: column;
|
2231
2229
|
}
|
@@ -2246,10 +2244,16 @@ select.compact {
|
|
2246
2244
|
justify-content: space-between;
|
2247
2245
|
}
|
2248
2246
|
|
2249
|
-
.space-
|
2250
|
-
--tw-space-
|
2251
|
-
margin-
|
2252
|
-
margin-
|
2247
|
+
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
2248
|
+
--tw-space-x-reverse: 0;
|
2249
|
+
margin-right: calc(.25rem * var(--tw-space-x-reverse));
|
2250
|
+
margin-left: calc(.25rem * calc(1 - var(--tw-space-x-reverse)));
|
2251
|
+
}
|
2252
|
+
|
2253
|
+
.space-x-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
2254
|
+
--tw-space-x-reverse: 0;
|
2255
|
+
margin-right: calc(.375rem * var(--tw-space-x-reverse));
|
2256
|
+
margin-left: calc(.375rem * calc(1 - var(--tw-space-x-reverse)));
|
2253
2257
|
}
|
2254
2258
|
|
2255
2259
|
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
@@ -2258,10 +2262,10 @@ select.compact {
|
|
2258
2262
|
margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse)));
|
2259
2263
|
}
|
2260
2264
|
|
2261
|
-
.space-x-
|
2265
|
+
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
|
2262
2266
|
--tw-space-x-reverse: 0;
|
2263
|
-
margin-right: calc(.
|
2264
|
-
margin-left: calc(.
|
2267
|
+
margin-right: calc(.75rem * var(--tw-space-x-reverse));
|
2268
|
+
margin-left: calc(.75rem * calc(1 - var(--tw-space-x-reverse)));
|
2265
2269
|
}
|
2266
2270
|
|
2267
2271
|
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
|
@@ -2270,10 +2274,10 @@ select.compact {
|
|
2270
2274
|
margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
|
2271
2275
|
}
|
2272
2276
|
|
2273
|
-
.space-
|
2274
|
-
--tw-space-
|
2275
|
-
margin-
|
2276
|
-
margin-
|
2277
|
+
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
2278
|
+
--tw-space-y-reverse: 0;
|
2279
|
+
margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
|
2280
|
+
margin-bottom: calc(.5rem * var(--tw-space-y-reverse));
|
2277
2281
|
}
|
2278
2282
|
|
2279
2283
|
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
|
@@ -2282,12 +2286,6 @@ select.compact {
|
|
2282
2286
|
margin-bottom: calc(.75rem * var(--tw-space-y-reverse));
|
2283
2287
|
}
|
2284
2288
|
|
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
|
-
|
2291
2289
|
.divide-y > :not([hidden]) ~ :not([hidden]) {
|
2292
2290
|
--tw-divide-y-reverse: 0;
|
2293
2291
|
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
@@ -2364,41 +2362,36 @@ select.compact {
|
|
2364
2362
|
border-width: 2px;
|
2365
2363
|
}
|
2366
2364
|
|
2367
|
-
.border-t {
|
2368
|
-
border-top-width: 1px;
|
2369
|
-
}
|
2370
|
-
|
2371
2365
|
.border-b {
|
2372
2366
|
border-bottom-width: 1px;
|
2373
2367
|
}
|
2374
2368
|
|
2375
|
-
.border-
|
2376
|
-
border-
|
2369
|
+
.border-b-0 {
|
2370
|
+
border-bottom-width: 0;
|
2377
2371
|
}
|
2378
2372
|
|
2379
|
-
.border-
|
2380
|
-
border-
|
2373
|
+
.border-b-2 {
|
2374
|
+
border-bottom-width: 2px;
|
2381
2375
|
}
|
2382
2376
|
|
2383
|
-
.border-
|
2384
|
-
border-
|
2377
|
+
.border-l {
|
2378
|
+
border-left-width: 1px;
|
2385
2379
|
}
|
2386
2380
|
|
2387
2381
|
.border-l-2 {
|
2388
2382
|
border-left-width: 2px;
|
2389
2383
|
}
|
2390
2384
|
|
2391
|
-
.border-
|
2392
|
-
border-
|
2385
|
+
.border-r {
|
2386
|
+
border-right-width: 1px;
|
2393
2387
|
}
|
2394
2388
|
|
2395
|
-
.border-
|
2396
|
-
|
2397
|
-
border-color: rgb(254 202 202 / var(--tw-border-opacity));
|
2389
|
+
.border-t {
|
2390
|
+
border-top-width: 1px;
|
2398
2391
|
}
|
2399
2392
|
|
2400
|
-
|
2401
|
-
border-color: var(--lookbook-
|
2393
|
+
.\!border-lookbook-header-border {
|
2394
|
+
border-color: var(--lookbook-header-border) !important;
|
2402
2395
|
}
|
2403
2396
|
|
2404
2397
|
.border-gray-300 {
|
@@ -2406,39 +2399,33 @@ select.compact {
|
|
2406
2399
|
border-color: rgb(209 213 219 / var(--tw-border-opacity));
|
2407
2400
|
}
|
2408
2401
|
|
2409
|
-
.border-
|
2410
|
-
border-color:
|
2402
|
+
.border-lookbook-divider {
|
2403
|
+
border-color: var(--lookbook-divider);
|
2411
2404
|
}
|
2412
2405
|
|
2413
2406
|
.border-lookbook-dropdown-divider {
|
2414
2407
|
border-color: var(--lookbook-dropdown-divider);
|
2415
2408
|
}
|
2416
2409
|
|
2417
|
-
.\!border-lookbook-header-border {
|
2418
|
-
border-color: var(--lookbook-header-border) !important;
|
2419
|
-
}
|
2420
|
-
|
2421
2410
|
.border-lookbook-tabs-border-active {
|
2422
2411
|
border-color: var(--lookbook-tabs-border-active);
|
2423
2412
|
}
|
2424
2413
|
|
2425
|
-
.
|
2426
|
-
--tw-
|
2427
|
-
|
2414
|
+
.border-red-200 {
|
2415
|
+
--tw-border-opacity: 1;
|
2416
|
+
border-color: rgb(254 202 202 / var(--tw-border-opacity));
|
2428
2417
|
}
|
2429
2418
|
|
2430
|
-
.
|
2431
|
-
|
2432
|
-
background-color: rgb(254 242 242 / var(--tw-bg-opacity));
|
2419
|
+
.border-transparent {
|
2420
|
+
border-color: #0000;
|
2433
2421
|
}
|
2434
2422
|
|
2435
|
-
|
2436
|
-
--
|
2437
|
-
background-color: rgb(254 226 226 / var(--tw-bg-opacity));
|
2423
|
+
.\!bg-lookbook-header-bg {
|
2424
|
+
background-color: var(--lookbook-header-bg) !important;
|
2438
2425
|
}
|
2439
2426
|
|
2440
|
-
|
2441
|
-
background-color: var(--lookbook-
|
2427
|
+
.\!bg-lookbook-nav-item-active {
|
2428
|
+
background-color: var(--lookbook-nav-item-active) !important;
|
2442
2429
|
}
|
2443
2430
|
|
2444
2431
|
.bg-black {
|
@@ -2446,73 +2433,76 @@ select.compact {
|
|
2446
2433
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
2447
2434
|
}
|
2448
2435
|
|
2449
|
-
.bg-
|
2450
|
-
background-color:
|
2436
|
+
.bg-gray-100\/80 {
|
2437
|
+
background-color: #f3f4f6cc;
|
2451
2438
|
}
|
2452
2439
|
|
2453
|
-
.bg-lookbook-
|
2454
|
-
background-color: var(--lookbook-
|
2440
|
+
.bg-lookbook-button-bg {
|
2441
|
+
background-color: var(--lookbook-button-bg);
|
2455
2442
|
}
|
2456
2443
|
|
2457
|
-
.bg-
|
2458
|
-
background-color:
|
2444
|
+
.bg-lookbook-button-bg-hover {
|
2445
|
+
background-color: var(--lookbook-button-bg-hover);
|
2459
2446
|
}
|
2460
2447
|
|
2461
|
-
.bg-lookbook-
|
2462
|
-
background-color: var(--lookbook-
|
2448
|
+
.bg-lookbook-divider {
|
2449
|
+
background-color: var(--lookbook-divider);
|
2463
2450
|
}
|
2464
2451
|
|
2465
|
-
.bg-lookbook-
|
2466
|
-
background-color: var(--lookbook-
|
2452
|
+
.bg-lookbook-drawer-bg {
|
2453
|
+
background-color: var(--lookbook-drawer-bg);
|
2467
2454
|
}
|
2468
2455
|
|
2469
|
-
.bg-lookbook-
|
2470
|
-
background-color: var(--lookbook-
|
2456
|
+
.bg-lookbook-input-toggle {
|
2457
|
+
background-color: var(--lookbook-input-toggle);
|
2471
2458
|
}
|
2472
2459
|
|
2473
|
-
.bg-
|
2474
|
-
--
|
2475
|
-
background-color: rgb(250 250 250 / var(--tw-bg-opacity));
|
2460
|
+
.bg-lookbook-input-toggle-active {
|
2461
|
+
background-color: var(--lookbook-input-toggle-active);
|
2476
2462
|
}
|
2477
2463
|
|
2478
|
-
|
2479
|
-
background-color: var(--lookbook-
|
2464
|
+
.bg-lookbook-page-bg {
|
2465
|
+
background-color: var(--lookbook-page-bg);
|
2480
2466
|
}
|
2481
2467
|
|
2482
|
-
.bg-lookbook-
|
2483
|
-
background-color: var(--lookbook-
|
2468
|
+
.bg-lookbook-params-editor-bg {
|
2469
|
+
background-color: var(--lookbook-params-editor-bg);
|
2484
2470
|
}
|
2485
2471
|
|
2486
|
-
.bg-lookbook-
|
2487
|
-
background-color: var(--lookbook-
|
2472
|
+
.bg-lookbook-prose-bg {
|
2473
|
+
background-color: var(--lookbook-prose-bg);
|
2488
2474
|
}
|
2489
2475
|
|
2490
|
-
.bg-lookbook-
|
2491
|
-
background-color: var(--lookbook-
|
2476
|
+
.bg-lookbook-sidebar-bg {
|
2477
|
+
background-color: var(--lookbook-sidebar-bg);
|
2492
2478
|
}
|
2493
2479
|
|
2494
2480
|
.bg-lookbook-toolbar-bg {
|
2495
2481
|
background-color: var(--lookbook-toolbar-bg);
|
2496
2482
|
}
|
2497
2483
|
|
2498
|
-
.bg-
|
2499
|
-
|
2484
|
+
.bg-red-100 {
|
2485
|
+
--tw-bg-opacity: 1;
|
2486
|
+
background-color: rgb(254 226 226 / var(--tw-bg-opacity));
|
2500
2487
|
}
|
2501
2488
|
|
2502
|
-
|
2503
|
-
|
2489
|
+
.bg-red-50 {
|
2490
|
+
--tw-bg-opacity: 1;
|
2491
|
+
background-color: rgb(254 242 242 / var(--tw-bg-opacity));
|
2504
2492
|
}
|
2505
2493
|
|
2506
|
-
.bg-
|
2507
|
-
background-color:
|
2494
|
+
.bg-transparent {
|
2495
|
+
background-color: #0000;
|
2508
2496
|
}
|
2509
2497
|
|
2510
|
-
.
|
2511
|
-
|
2498
|
+
.bg-white {
|
2499
|
+
--tw-bg-opacity: 1;
|
2500
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
2512
2501
|
}
|
2513
2502
|
|
2514
|
-
.
|
2515
|
-
|
2503
|
+
.bg-zinc-50 {
|
2504
|
+
--tw-bg-opacity: 1;
|
2505
|
+
background-color: rgb(250 250 250 / var(--tw-bg-opacity));
|
2516
2506
|
}
|
2517
2507
|
|
2518
2508
|
.p-1 {
|
@@ -2523,24 +2513,17 @@ select.compact {
|
|
2523
2513
|
padding: .5rem;
|
2524
2514
|
}
|
2525
2515
|
|
2526
|
-
.
|
2527
|
-
padding
|
2528
|
-
padding-right: 1rem;
|
2529
|
-
}
|
2530
|
-
|
2531
|
-
.py-6 {
|
2532
|
-
padding-top: 1.5rem;
|
2533
|
-
padding-bottom: 1.5rem;
|
2516
|
+
.p-3 {
|
2517
|
+
padding: .75rem;
|
2534
2518
|
}
|
2535
2519
|
|
2536
|
-
.
|
2537
|
-
padding
|
2538
|
-
padding-right: 2rem;
|
2520
|
+
.p-4 {
|
2521
|
+
padding: 1rem;
|
2539
2522
|
}
|
2540
2523
|
|
2541
|
-
.
|
2542
|
-
padding-
|
2543
|
-
padding-
|
2524
|
+
.px-1 {
|
2525
|
+
padding-left: .25rem;
|
2526
|
+
padding-right: .25rem;
|
2544
2527
|
}
|
2545
2528
|
|
2546
2529
|
.px-2 {
|
@@ -2553,9 +2536,19 @@ select.compact {
|
|
2553
2536
|
padding-right: .75rem;
|
2554
2537
|
}
|
2555
2538
|
|
2556
|
-
.
|
2557
|
-
padding-
|
2558
|
-
padding-
|
2539
|
+
.px-4 {
|
2540
|
+
padding-left: 1rem;
|
2541
|
+
padding-right: 1rem;
|
2542
|
+
}
|
2543
|
+
|
2544
|
+
.px-8 {
|
2545
|
+
padding-left: 2rem;
|
2546
|
+
padding-right: 2rem;
|
2547
|
+
}
|
2548
|
+
|
2549
|
+
.py-1 {
|
2550
|
+
padding-top: .25rem;
|
2551
|
+
padding-bottom: .25rem;
|
2559
2552
|
}
|
2560
2553
|
|
2561
2554
|
.py-1\.5 {
|
@@ -2563,94 +2556,99 @@ select.compact {
|
|
2563
2556
|
padding-bottom: .375rem;
|
2564
2557
|
}
|
2565
2558
|
|
2566
|
-
.py-
|
2567
|
-
padding-top: .
|
2568
|
-
padding-bottom: .
|
2559
|
+
.py-2 {
|
2560
|
+
padding-top: .5rem;
|
2561
|
+
padding-bottom: .5rem;
|
2569
2562
|
}
|
2570
2563
|
|
2571
|
-
.
|
2572
|
-
padding-
|
2573
|
-
padding-
|
2564
|
+
.py-3 {
|
2565
|
+
padding-top: .75rem;
|
2566
|
+
padding-bottom: .75rem;
|
2574
2567
|
}
|
2575
2568
|
|
2576
|
-
.
|
2577
|
-
padding-
|
2569
|
+
.py-6 {
|
2570
|
+
padding-top: 1.5rem;
|
2571
|
+
padding-bottom: 1.5rem;
|
2578
2572
|
}
|
2579
2573
|
|
2580
|
-
.pb-
|
2581
|
-
padding-bottom:
|
2574
|
+
.pb-0 {
|
2575
|
+
padding-bottom: 0;
|
2582
2576
|
}
|
2583
2577
|
|
2584
|
-
.
|
2585
|
-
padding-
|
2578
|
+
.pb-1 {
|
2579
|
+
padding-bottom: .25rem;
|
2586
2580
|
}
|
2587
2581
|
|
2588
|
-
.
|
2589
|
-
padding-
|
2582
|
+
.pb-1\.5 {
|
2583
|
+
padding-bottom: .375rem;
|
2590
2584
|
}
|
2591
2585
|
|
2592
|
-
.
|
2593
|
-
padding-
|
2586
|
+
.pb-10 {
|
2587
|
+
padding-bottom: 2.5rem;
|
2594
2588
|
}
|
2595
2589
|
|
2596
|
-
.pb-
|
2597
|
-
padding-bottom:
|
2590
|
+
.pb-12 {
|
2591
|
+
padding-bottom: 3rem;
|
2598
2592
|
}
|
2599
2593
|
|
2600
|
-
.
|
2601
|
-
padding-
|
2594
|
+
.pb-3 {
|
2595
|
+
padding-bottom: .75rem;
|
2602
2596
|
}
|
2603
2597
|
|
2604
|
-
.
|
2605
|
-
padding-
|
2598
|
+
.pb-4 {
|
2599
|
+
padding-bottom: 1rem;
|
2606
2600
|
}
|
2607
2601
|
|
2608
2602
|
.pl-0 {
|
2609
2603
|
padding-left: 0;
|
2610
2604
|
}
|
2611
2605
|
|
2612
|
-
.
|
2613
|
-
padding-
|
2614
|
-
}
|
2615
|
-
|
2616
|
-
.pb-12 {
|
2617
|
-
padding-bottom: 3rem;
|
2606
|
+
.pl-0\.5 {
|
2607
|
+
padding-left: .125rem;
|
2618
2608
|
}
|
2619
2609
|
|
2620
|
-
.
|
2621
|
-
padding-
|
2610
|
+
.pl-1 {
|
2611
|
+
padding-left: .25rem;
|
2622
2612
|
}
|
2623
2613
|
|
2624
|
-
.
|
2625
|
-
padding-
|
2614
|
+
.pl-2 {
|
2615
|
+
padding-left: .5rem;
|
2626
2616
|
}
|
2627
2617
|
|
2628
|
-
.
|
2629
|
-
padding-
|
2618
|
+
.pr-0 {
|
2619
|
+
padding-right: 0;
|
2630
2620
|
}
|
2631
2621
|
|
2632
|
-
.
|
2633
|
-
padding-
|
2622
|
+
.pr-0\.5 {
|
2623
|
+
padding-right: .125rem;
|
2634
2624
|
}
|
2635
2625
|
|
2636
2626
|
.pr-1 {
|
2637
2627
|
padding-right: .25rem;
|
2638
2628
|
}
|
2639
2629
|
|
2640
|
-
.
|
2641
|
-
padding-
|
2630
|
+
.pt-1 {
|
2631
|
+
padding-top: .25rem;
|
2642
2632
|
}
|
2643
2633
|
|
2644
2634
|
.pt-1\.5 {
|
2645
2635
|
padding-top: .375rem;
|
2646
2636
|
}
|
2647
2637
|
|
2638
|
+
.pt-2 {
|
2639
|
+
padding-top: .5rem;
|
2640
|
+
}
|
2641
|
+
|
2648
2642
|
.pt-2\.5 {
|
2649
2643
|
padding-top: .625rem;
|
2650
2644
|
}
|
2651
2645
|
|
2652
|
-
.
|
2653
|
-
padding-
|
2646
|
+
.pt-3 {
|
2647
|
+
padding-top: .75rem;
|
2648
|
+
}
|
2649
|
+
|
2650
|
+
.pt-8 {
|
2651
|
+
padding-top: 2rem;
|
2654
2652
|
}
|
2655
2653
|
|
2656
2654
|
.text-left {
|
@@ -2669,11 +2667,20 @@ select.compact {
|
|
2669
2667
|
font-family: -apple-system, \.SFNSText-Regular, San Francisco, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
|
2670
2668
|
}
|
2671
2669
|
|
2670
|
+
.text-\[11px\] {
|
2671
|
+
font-size: 11px;
|
2672
|
+
}
|
2673
|
+
|
2672
2674
|
.text-base {
|
2673
2675
|
font-size: 1rem;
|
2674
2676
|
line-height: 1.5rem;
|
2675
2677
|
}
|
2676
2678
|
|
2679
|
+
.text-lg {
|
2680
|
+
font-size: 1.125rem;
|
2681
|
+
line-height: 1.75rem;
|
2682
|
+
}
|
2683
|
+
|
2677
2684
|
.text-sm {
|
2678
2685
|
font-size: .875rem;
|
2679
2686
|
line-height: 1.25rem;
|
@@ -2689,23 +2696,14 @@ select.compact {
|
|
2689
2696
|
line-height: 1rem;
|
2690
2697
|
}
|
2691
2698
|
|
2692
|
-
.
|
2693
|
-
font-
|
2694
|
-
}
|
2695
|
-
|
2696
|
-
.text-lg {
|
2697
|
-
font-size: 1.125rem;
|
2698
|
-
line-height: 1.75rem;
|
2699
|
+
.font-black {
|
2700
|
+
font-weight: 900;
|
2699
2701
|
}
|
2700
2702
|
|
2701
2703
|
.font-bold {
|
2702
2704
|
font-weight: 700;
|
2703
2705
|
}
|
2704
2706
|
|
2705
|
-
.font-black {
|
2706
|
-
font-weight: 900;
|
2707
|
-
}
|
2708
|
-
|
2709
2707
|
.uppercase {
|
2710
2708
|
text-transform: uppercase;
|
2711
2709
|
}
|
@@ -2730,19 +2728,12 @@ select.compact {
|
|
2730
2728
|
letter-spacing: .05em;
|
2731
2729
|
}
|
2732
2730
|
|
2733
|
-
|
2734
|
-
--
|
2735
|
-
color: rgb(252 165 165 / var(--tw-text-opacity));
|
2736
|
-
}
|
2737
|
-
|
2738
|
-
.text-red-700 {
|
2739
|
-
--tw-text-opacity: 1;
|
2740
|
-
color: rgb(185 28 28 / var(--tw-text-opacity));
|
2731
|
+
.\!text-lookbook-header-text {
|
2732
|
+
color: var(--lookbook-header-text) !important;
|
2741
2733
|
}
|
2742
2734
|
|
2743
|
-
|
2744
|
-
--
|
2745
|
-
color: rgb(127 29 29 / var(--tw-text-opacity));
|
2735
|
+
.\!text-lookbook-tabs-text-disabled {
|
2736
|
+
color: var(--lookbook-tabs-text-disabled) !important;
|
2746
2737
|
}
|
2747
2738
|
|
2748
2739
|
.text-gray-400 {
|
@@ -2750,8 +2741,9 @@ select.compact {
|
|
2750
2741
|
color: rgb(156 163 175 / var(--tw-text-opacity));
|
2751
2742
|
}
|
2752
2743
|
|
2753
|
-
.text-
|
2754
|
-
|
2744
|
+
.text-gray-600 {
|
2745
|
+
--tw-text-opacity: 1;
|
2746
|
+
color: rgb(75 85 99 / var(--tw-text-opacity));
|
2755
2747
|
}
|
2756
2748
|
|
2757
2749
|
.text-green-500 {
|
@@ -2764,47 +2756,42 @@ select.compact {
|
|
2764
2756
|
color: rgb(22 163 74 / var(--tw-text-opacity));
|
2765
2757
|
}
|
2766
2758
|
|
2767
|
-
.text-
|
2768
|
-
--
|
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;
|
2759
|
+
.text-lookbook-blank-slate-title {
|
2760
|
+
color: var(--lookbook-blank-slate-title);
|
2778
2761
|
}
|
2779
2762
|
|
2780
2763
|
.text-lookbook-branding-text {
|
2781
2764
|
color: var(--lookbook-branding-text);
|
2782
2765
|
}
|
2783
2766
|
|
2784
|
-
.text-lookbook-
|
2785
|
-
color: var(--lookbook-
|
2767
|
+
.text-lookbook-button-text {
|
2768
|
+
color: var(--lookbook-button-text);
|
2786
2769
|
}
|
2787
2770
|
|
2788
|
-
.text-lookbook-
|
2789
|
-
color: var(--lookbook-
|
2771
|
+
.text-lookbook-embed-title {
|
2772
|
+
color: var(--lookbook-embed-title);
|
2790
2773
|
}
|
2791
2774
|
|
2792
|
-
.text-lookbook-
|
2793
|
-
color: var(--lookbook-
|
2775
|
+
.text-lookbook-header-text {
|
2776
|
+
color: var(--lookbook-header-text);
|
2794
2777
|
}
|
2795
2778
|
|
2796
|
-
.text-lookbook-button-
|
2797
|
-
color: var(--lookbook-button-
|
2779
|
+
.text-lookbook-icon-button-stroke {
|
2780
|
+
color: var(--lookbook-icon-button-stroke);
|
2798
2781
|
}
|
2799
2782
|
|
2800
|
-
.text-lookbook-
|
2801
|
-
color: var(--lookbook-
|
2783
|
+
.text-lookbook-icon-button-stroke-hover {
|
2784
|
+
color: var(--lookbook-icon-button-stroke-hover);
|
2802
2785
|
}
|
2803
2786
|
|
2804
2787
|
.text-lookbook-nav-icon-stroke {
|
2805
2788
|
color: var(--lookbook-nav-icon-stroke);
|
2806
2789
|
}
|
2807
2790
|
|
2791
|
+
.text-lookbook-prose-text {
|
2792
|
+
color: var(--lookbook-prose-text);
|
2793
|
+
}
|
2794
|
+
|
2808
2795
|
.text-lookbook-tabs-text {
|
2809
2796
|
color: var(--lookbook-tabs-text);
|
2810
2797
|
}
|
@@ -2813,56 +2800,67 @@ select.compact {
|
|
2813
2800
|
color: var(--lookbook-tabs-text-hover);
|
2814
2801
|
}
|
2815
2802
|
|
2816
|
-
|
2817
|
-
|
2803
|
+
.text-red-300 {
|
2804
|
+
--tw-text-opacity: 1;
|
2805
|
+
color: rgb(252 165 165 / var(--tw-text-opacity));
|
2818
2806
|
}
|
2819
2807
|
|
2820
|
-
.
|
2821
|
-
text-
|
2808
|
+
.text-red-700 {
|
2809
|
+
--tw-text-opacity: 1;
|
2810
|
+
color: rgb(185 28 28 / var(--tw-text-opacity));
|
2822
2811
|
}
|
2823
2812
|
|
2824
|
-
.
|
2825
|
-
opacity:
|
2813
|
+
.text-red-900 {
|
2814
|
+
--tw-text-opacity: 1;
|
2815
|
+
color: rgb(127 29 29 / var(--tw-text-opacity));
|
2826
2816
|
}
|
2827
2817
|
|
2828
|
-
.
|
2829
|
-
|
2818
|
+
.underline {
|
2819
|
+
text-decoration-line: underline;
|
2830
2820
|
}
|
2831
2821
|
|
2832
|
-
|
2833
|
-
opacity:
|
2822
|
+
.\!opacity-100 {
|
2823
|
+
opacity: 1 !important;
|
2834
2824
|
}
|
2835
2825
|
|
2836
2826
|
.\!opacity-30 {
|
2837
2827
|
opacity: .3 !important;
|
2838
2828
|
}
|
2839
2829
|
|
2840
|
-
.opacity-
|
2841
|
-
opacity:
|
2830
|
+
.opacity-0 {
|
2831
|
+
opacity: 0;
|
2832
|
+
}
|
2833
|
+
|
2834
|
+
.opacity-25 {
|
2835
|
+
opacity: .25;
|
2842
2836
|
}
|
2843
2837
|
|
2844
2838
|
.opacity-40 {
|
2845
2839
|
opacity: .4;
|
2846
2840
|
}
|
2847
2841
|
|
2848
|
-
.opacity-
|
2849
|
-
opacity: .
|
2842
|
+
.opacity-50 {
|
2843
|
+
opacity: .5;
|
2844
|
+
}
|
2845
|
+
|
2846
|
+
.opacity-60 {
|
2847
|
+
opacity: .6;
|
2850
2848
|
}
|
2851
2849
|
|
2852
2850
|
.opacity-70 {
|
2853
2851
|
opacity: .7;
|
2854
2852
|
}
|
2855
2853
|
|
2856
|
-
|
2857
|
-
opacity:
|
2854
|
+
.opacity-75 {
|
2855
|
+
opacity: .75;
|
2858
2856
|
}
|
2859
2857
|
|
2860
|
-
.opacity-
|
2861
|
-
opacity: .
|
2858
|
+
.opacity-80 {
|
2859
|
+
opacity: .8;
|
2862
2860
|
}
|
2863
2861
|
|
2864
|
-
.opacity-
|
2865
|
-
opacity: .
|
2862
|
+
.opacity-90 {
|
2863
|
+
opacity: .9;
|
2866
2864
|
}
|
2867
2865
|
|
2868
2866
|
.shadow {
|
@@ -2886,32 +2884,32 @@ select.compact {
|
|
2886
2884
|
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);
|
2887
2885
|
}
|
2888
2886
|
|
2889
|
-
.transition
|
2890
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
2887
|
+
.transition {
|
2888
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
|
2891
2889
|
transition-duration: .15s;
|
2892
2890
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2893
2891
|
}
|
2894
2892
|
|
2895
|
-
.transition {
|
2896
|
-
transition-property:
|
2893
|
+
.transition-\[height\] {
|
2894
|
+
transition-property: height;
|
2897
2895
|
transition-duration: .15s;
|
2898
2896
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2899
2897
|
}
|
2900
2898
|
|
2901
|
-
.transition-
|
2902
|
-
transition-property:
|
2899
|
+
.transition-all {
|
2900
|
+
transition-property: all;
|
2903
2901
|
transition-duration: .15s;
|
2904
2902
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2905
2903
|
}
|
2906
2904
|
|
2907
|
-
.transition-
|
2908
|
-
transition-property:
|
2905
|
+
.transition-colors {
|
2906
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke;
|
2909
2907
|
transition-duration: .15s;
|
2910
2908
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2911
2909
|
}
|
2912
2910
|
|
2913
|
-
.transition
|
2914
|
-
transition-property:
|
2911
|
+
.transition-opacity {
|
2912
|
+
transition-property: opacity;
|
2915
2913
|
transition-duration: .15s;
|
2916
2914
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2917
2915
|
}
|
@@ -2920,14 +2918,14 @@ select.compact {
|
|
2920
2918
|
transition-duration: .1s;
|
2921
2919
|
}
|
2922
2920
|
|
2923
|
-
.duration-200 {
|
2924
|
-
transition-duration: .2s;
|
2925
|
-
}
|
2926
|
-
|
2927
2921
|
.duration-150 {
|
2928
2922
|
transition-duration: .15s;
|
2929
2923
|
}
|
2930
2924
|
|
2925
|
+
.duration-200 {
|
2926
|
+
transition-duration: .2s;
|
2927
|
+
}
|
2928
|
+
|
2931
2929
|
.ease-in-out {
|
2932
2930
|
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
2933
2931
|
}
|
@@ -3532,14 +3530,14 @@ select.compact {
|
|
3532
3530
|
background-color: #0000;
|
3533
3531
|
}
|
3534
3532
|
|
3535
|
-
.hover\:bg-lookbook-draggable-hint:hover {
|
3536
|
-
background-color: var(--lookbook-draggable-hint);
|
3537
|
-
}
|
3538
|
-
|
3539
3533
|
.hover\:bg-lookbook-button-bg-hover:hover {
|
3540
3534
|
background-color: var(--lookbook-button-bg-hover);
|
3541
3535
|
}
|
3542
3536
|
|
3537
|
+
.hover\:bg-lookbook-draggable-hint:hover {
|
3538
|
+
background-color: var(--lookbook-draggable-hint);
|
3539
|
+
}
|
3540
|
+
|
3543
3541
|
.hover\:text-gray-900:hover {
|
3544
3542
|
--tw-text-opacity: 1;
|
3545
3543
|
color: rgb(17 24 39 / var(--tw-text-opacity));
|
@@ -3571,15 +3569,15 @@ select.compact {
|
|
3571
3569
|
outline: 2px solid #0000;
|
3572
3570
|
}
|
3573
3571
|
|
3574
|
-
.focus\:ring-
|
3572
|
+
.focus\:ring-0:focus {
|
3575
3573
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
3576
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(
|
3574
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
3577
3575
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
3578
3576
|
}
|
3579
3577
|
|
3580
|
-
.focus\:ring-
|
3578
|
+
.focus\:ring-2:focus {
|
3581
3579
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
3582
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(
|
3580
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
3583
3581
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
3584
3582
|
}
|
3585
3583
|
|