@flywheel-io/vision 21.2.0 → 21.2.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
package/package.json
CHANGED
package/scss/config/overlay.scss
CHANGED
package/styles.css
CHANGED
|
@@ -1805,6 +1805,124 @@ a:visited {
|
|
|
1805
1805
|
font-style: normal;
|
|
1806
1806
|
font-display: block;
|
|
1807
1807
|
}
|
|
1808
|
+
.cdk-overlay-container, .cdk-global-overlay-wrapper {
|
|
1809
|
+
pointer-events: none;
|
|
1810
|
+
top: 0;
|
|
1811
|
+
left: 0;
|
|
1812
|
+
height: 100%;
|
|
1813
|
+
width: 100%;
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
.cdk-overlay-container {
|
|
1817
|
+
position: fixed;
|
|
1818
|
+
z-index: 1000;
|
|
1819
|
+
}
|
|
1820
|
+
.cdk-overlay-container:empty {
|
|
1821
|
+
display: none;
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
.cdk-global-overlay-wrapper {
|
|
1825
|
+
display: flex;
|
|
1826
|
+
position: absolute;
|
|
1827
|
+
z-index: 1000;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
.cdk-overlay-pane {
|
|
1831
|
+
position: absolute;
|
|
1832
|
+
pointer-events: auto;
|
|
1833
|
+
box-sizing: border-box;
|
|
1834
|
+
display: flex;
|
|
1835
|
+
max-width: 100%;
|
|
1836
|
+
max-height: 100%;
|
|
1837
|
+
z-index: 1000;
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
.cdk-overlay-backdrop {
|
|
1841
|
+
position: absolute;
|
|
1842
|
+
top: 0;
|
|
1843
|
+
bottom: 0;
|
|
1844
|
+
left: 0;
|
|
1845
|
+
right: 0;
|
|
1846
|
+
pointer-events: auto;
|
|
1847
|
+
-webkit-tap-highlight-color: transparent;
|
|
1848
|
+
opacity: 0;
|
|
1849
|
+
touch-action: manipulation;
|
|
1850
|
+
z-index: 1000;
|
|
1851
|
+
transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
1852
|
+
}
|
|
1853
|
+
@media (prefers-reduced-motion) {
|
|
1854
|
+
.cdk-overlay-backdrop {
|
|
1855
|
+
transition-duration: 1ms;
|
|
1856
|
+
}
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
.cdk-overlay-backdrop-showing {
|
|
1860
|
+
opacity: 1;
|
|
1861
|
+
}
|
|
1862
|
+
@media (forced-colors: active) {
|
|
1863
|
+
.cdk-overlay-backdrop-showing {
|
|
1864
|
+
opacity: 0.6;
|
|
1865
|
+
}
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
.cdk-overlay-dark-backdrop {
|
|
1869
|
+
background: rgba(0, 0, 0, 0.32);
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
.cdk-overlay-transparent-backdrop {
|
|
1873
|
+
transition: visibility 1ms linear, opacity 1ms linear;
|
|
1874
|
+
visibility: hidden;
|
|
1875
|
+
opacity: 1;
|
|
1876
|
+
}
|
|
1877
|
+
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing, .cdk-high-contrast-active .cdk-overlay-transparent-backdrop {
|
|
1878
|
+
opacity: 0;
|
|
1879
|
+
visibility: visible;
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
.cdk-overlay-backdrop-noop-animation {
|
|
1883
|
+
transition: none;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
.cdk-overlay-connected-position-bounding-box {
|
|
1887
|
+
position: absolute;
|
|
1888
|
+
display: flex;
|
|
1889
|
+
flex-direction: column;
|
|
1890
|
+
min-width: 1px;
|
|
1891
|
+
min-height: 1px;
|
|
1892
|
+
z-index: 1000;
|
|
1893
|
+
}
|
|
1894
|
+
|
|
1895
|
+
.cdk-global-scrollblock {
|
|
1896
|
+
position: fixed;
|
|
1897
|
+
width: 100%;
|
|
1898
|
+
overflow-y: scroll;
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
.cdk-overlay-popover {
|
|
1902
|
+
background: none;
|
|
1903
|
+
border: none;
|
|
1904
|
+
padding: 0;
|
|
1905
|
+
outline: 0;
|
|
1906
|
+
overflow: visible;
|
|
1907
|
+
position: fixed;
|
|
1908
|
+
pointer-events: none;
|
|
1909
|
+
white-space: normal;
|
|
1910
|
+
color: inherit;
|
|
1911
|
+
text-decoration: none;
|
|
1912
|
+
width: 100%;
|
|
1913
|
+
height: 100%;
|
|
1914
|
+
inset: auto;
|
|
1915
|
+
top: 0;
|
|
1916
|
+
left: 0;
|
|
1917
|
+
}
|
|
1918
|
+
.cdk-overlay-popover::backdrop {
|
|
1919
|
+
display: none;
|
|
1920
|
+
}
|
|
1921
|
+
.cdk-overlay-popover .cdk-overlay-backdrop {
|
|
1922
|
+
position: fixed;
|
|
1923
|
+
z-index: auto;
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1808
1926
|
.vision-overlay {
|
|
1809
1927
|
background-color: var(--separations-overlay);
|
|
1810
1928
|
animation: overlayShow 150ms cubic-bezier(0.16, 1, 0.3, 1);
|