indicator-ui 0.0.170 → 0.0.173
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.
- package/dist/index.css +808 -3
- package/dist/index.css.map +1 -1
- package/dist/index.js +1590 -188
- package/dist/index.js.map +1 -1
- package/dist/types/src/assets/icons/index.d.ts +1 -0
- package/dist/types/src/test/pages/LoadingIndicatorPage.d.ts +1 -0
- package/dist/types/src/test/pages/MediaPlayerPage.d.ts +1 -0
- package/dist/types/src/test/pages/index.d.ts +1 -0
- package/dist/types/src/ui/Carousel/index.d.ts +1 -0
- package/dist/types/src/ui/Carousel/styles/index.d.ts +1 -0
- package/dist/types/src/ui/Carousel/types/CarouselTypes.d.ts +6 -0
- package/dist/types/src/ui/Carousel/types/index.d.ts +1 -0
- package/dist/types/src/ui/Carousel/ui/Carousel.d.ts +2 -0
- package/dist/types/src/ui/Carousel/ui/index.d.ts +1 -0
- package/dist/types/src/ui/InputFields/DateTimeField/styles/index.d.ts +1 -0
- package/dist/types/src/ui/InputFields/DateTimeField/types/DateFieldTypes.d.ts +1 -2
- package/dist/types/src/ui/InputFields/DateTimeField/types/DateTimeFieldTypes.d.ts +16 -0
- package/dist/types/src/ui/InputFields/DateTimeField/types/TimeFieldTypes.d.ts +4 -0
- package/dist/types/src/ui/InputFields/DateTimeField/ui/DateField.d.ts +1 -1
- package/dist/types/src/ui/InputFields/DateTimeField/ui/DateTimeField.d.ts +1 -1
- package/dist/types/src/ui/InputFields/DateTimeField/ui/TimeField.d.ts +1 -1
- package/dist/types/src/ui/Loaders/assets/index.d.ts +2 -0
- package/dist/types/src/ui/Loaders/index.d.ts +2 -0
- package/dist/types/src/ui/Loaders/styles/index.d.ts +1 -0
- package/dist/types/src/ui/Loaders/types/LoadingIndicatorTypes.d.ts +16 -0
- package/dist/types/src/ui/Loaders/types/index.d.ts +1 -0
- package/dist/types/src/ui/Loaders/ui/LoadingIndicator.d.ts +2 -0
- package/dist/types/src/ui/Loaders/ui/index.d.ts +1 -0
- package/dist/types/src/ui/MediaViewer/index.d.ts +2 -0
- package/dist/types/src/ui/MediaViewer/styles/components/index.d.ts +4 -0
- package/dist/types/src/ui/MediaViewer/styles/index.d.ts +2 -0
- package/dist/types/src/ui/MediaViewer/types/MediaViewerTypes.d.ts +14 -0
- package/dist/types/src/ui/MediaViewer/types/components/ControlBarTypes.d.ts +9 -0
- package/dist/types/src/ui/MediaViewer/types/components/ImageViewerTypes.d.ts +3 -0
- package/dist/types/src/ui/MediaViewer/types/components/ProgressBarTypes.d.ts +6 -0
- package/dist/types/src/ui/MediaViewer/types/components/VideoViewerTypes.d.ts +6 -0
- package/dist/types/src/ui/MediaViewer/types/components/index.d.ts +4 -0
- package/dist/types/src/ui/MediaViewer/types/index.d.ts +2 -0
- package/dist/types/src/ui/MediaViewer/ui/MediaViewer.d.ts +2 -0
- package/dist/types/src/ui/MediaViewer/ui/components/ControlBar.d.ts +2 -0
- package/dist/types/src/ui/MediaViewer/ui/components/ImageViewer.d.ts +2 -0
- package/dist/types/src/ui/MediaViewer/ui/components/VideoProgressBar.d.ts +2 -0
- package/dist/types/src/ui/MediaViewer/ui/components/VideoViewer.d.ts +2 -0
- package/dist/types/src/ui/MediaViewer/ui/components/index.d.ts +4 -0
- package/dist/types/src/ui/MediaViewer/ui/index.d.ts +1 -0
- package/dist/types/src/ui/PlayButton/assets/index.d.ts +2 -0
- package/dist/types/src/ui/PlayButton/index.d.ts +3 -0
- package/dist/types/src/ui/PlayButton/styles/index.d.ts +1 -0
- package/dist/types/src/ui/PlayButton/types/PlayButtonTypes.d.ts +9 -0
- package/dist/types/src/ui/PlayButton/types/index.d.ts +1 -0
- package/dist/types/src/ui/PlayButton/ui/PlayButton.d.ts +2 -0
- package/dist/types/src/ui/PlayButton/ui/index.d.ts +1 -0
- package/dist/types/src/ui/VideoPlayerBase/index.d.ts +2 -0
- package/dist/types/src/ui/VideoPlayerBase/types/VideoPlayerBaseTypes.d.ts +77 -0
- package/dist/types/src/ui/VideoPlayerBase/types/index.d.ts +1 -0
- package/dist/types/src/ui/VideoPlayerBase/ui/VideoPlayerBase.d.ts +2 -0
- package/dist/types/src/ui/VideoPlayerBase/ui/index.d.ts +1 -0
- package/dist/types/src/ui/index.d.ts +4 -0
- package/package.json +3 -5
package/dist/index.css
CHANGED
|
@@ -1931,16 +1931,231 @@
|
|
|
1931
1931
|
font-style: normal;
|
|
1932
1932
|
}
|
|
1933
1933
|
.DateTimeField-module__DateTimeField___k_mN4 {
|
|
1934
|
+
display: flex;
|
|
1935
|
+
width: 100%;
|
|
1936
|
+
align-items: center;
|
|
1937
|
+
height: fit-content;
|
|
1938
|
+
border: 1px solid var(--gray-300);
|
|
1939
|
+
box-shadow: 0 1px 0 0 rgba(16, 24, 40, 0.0509803922);
|
|
1940
|
+
padding: 9px 11px;
|
|
1941
|
+
border-radius: 8px;
|
|
1942
|
+
gap: 6px;
|
|
1943
|
+
background-color: var(--base-white);
|
|
1944
|
+
}
|
|
1945
|
+
.DateTimeField-module__DateTimeField___k_mN4 .DateTimeField-module__item___SY6gn {
|
|
1946
|
+
display: flex;
|
|
1947
|
+
align-items: center;
|
|
1948
|
+
gap: 6px;
|
|
1934
1949
|
flex: 1;
|
|
1950
|
+
min-width: 0;
|
|
1951
|
+
}
|
|
1952
|
+
.DateTimeField-module__DateTimeField___k_mN4 .DateTimeField-module__item___SY6gn .DateTimeField-module__icon___MluNf {
|
|
1953
|
+
padding: 2px 0;
|
|
1954
|
+
}
|
|
1955
|
+
.DateTimeField-module__DateTimeField___k_mN4 .DateTimeField-module__item___SY6gn .DateTimeField-module__icon___MluNf {
|
|
1956
|
+
display: flex;
|
|
1957
|
+
align-items: center;
|
|
1958
|
+
justify-content: center;
|
|
1959
|
+
}
|
|
1960
|
+
.DateTimeField-module__DateTimeField___k_mN4 .DateTimeField-module__item___SY6gn .DateTimeField-module__icon___MluNf svg * {
|
|
1961
|
+
stroke: var(--gray-400);
|
|
1962
|
+
}
|
|
1963
|
+
.DateTimeField-module__DateTimeField___k_mN4 .DateTimeField-module__item___SY6gn .DateTimeField-module__icon___MluNf svg {
|
|
1964
|
+
width: 20px;
|
|
1965
|
+
height: 20px;
|
|
1966
|
+
flex: none;
|
|
1967
|
+
}
|
|
1968
|
+
.DateTimeField-module__DateTimeField___k_mN4 .DateTimeField-module__item___SY6gn .DateTimeField-module__text___uHVVF {
|
|
1969
|
+
font-size: 16px;
|
|
1970
|
+
line-height: 24px;
|
|
1971
|
+
color: var(--gray-400);
|
|
1972
|
+
font-weight: 400;
|
|
1973
|
+
font-family: "Golos UI", sans-serif;
|
|
1974
|
+
font-stretch: normal;
|
|
1975
|
+
font-style: normal;
|
|
1976
|
+
font-variant: normal;
|
|
1977
|
+
}
|
|
1978
|
+
.DateTimeField-module__DateTimeField___k_mN4.DateTimeField-module__isFocus___jQRbb {
|
|
1979
|
+
border: 1px solid var(--gray-400);
|
|
1980
|
+
}
|
|
1981
|
+
.DateTimeField-module__DateTimeField___k_mN4.DateTimeField-module__isError___CbRIG {
|
|
1982
|
+
border: 1px solid var(--error-300);
|
|
1983
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
|
|
1984
|
+
}
|
|
1985
|
+
.DateTimeField-module__DateTimeField___k_mN4.DateTimeField-module__isError___CbRIG.DateTimeField-module__isFocus___jQRbb {
|
|
1986
|
+
border: 1px solid var(--error-400);
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1989
|
+
.DateTimeField-module__flexField___gDZ5r {
|
|
1935
1990
|
width: 100%;
|
|
1936
|
-
|
|
1991
|
+
height: fit-content;
|
|
1992
|
+
min-width: 0;
|
|
1993
|
+
flex: 1;
|
|
1994
|
+
gap: 12px;
|
|
1995
|
+
box-sizing: border-box;
|
|
1996
|
+
overflow: hidden;
|
|
1997
|
+
text-wrap: nowrap;
|
|
1998
|
+
text-overflow: ellipsis;
|
|
1999
|
+
outline: none;
|
|
1937
2000
|
}
|
|
1938
|
-
.DateTimeField-
|
|
2001
|
+
.DateTimeField-module__flexField___gDZ5r {
|
|
1939
2002
|
display: flex;
|
|
2003
|
+
align-items: center;
|
|
2004
|
+
justify-content: center;
|
|
1940
2005
|
}
|
|
1941
|
-
.DateTimeField-
|
|
2006
|
+
.DateTimeField-module__flexField___gDZ5r {
|
|
2007
|
+
font-size: 16px;
|
|
2008
|
+
line-height: 24px;
|
|
2009
|
+
color: var(--gray-900);
|
|
2010
|
+
font-weight: 400;
|
|
2011
|
+
font-family: "Golos UI", sans-serif;
|
|
2012
|
+
font-stretch: normal;
|
|
2013
|
+
font-style: normal;
|
|
2014
|
+
font-variant: normal;
|
|
2015
|
+
}
|
|
2016
|
+
.DateTimeField-module__flexField___gDZ5r::placeholder, .DateTimeField-module__flexField___gDZ5r.DateTimeField-module__placeholder___ta8c2 {
|
|
2017
|
+
font-size: 16px;
|
|
2018
|
+
line-height: 24px;
|
|
2019
|
+
color: var(--gray-400);
|
|
2020
|
+
font-weight: 400;
|
|
2021
|
+
font-family: "Golos UI", sans-serif;
|
|
2022
|
+
font-stretch: normal;
|
|
2023
|
+
font-style: normal;
|
|
2024
|
+
font-variant: normal;
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
.DateTimeField-module__line___UzZ_Y {
|
|
2028
|
+
display: flex;
|
|
2029
|
+
align-items: center;
|
|
2030
|
+
justify-content: center;
|
|
2031
|
+
padding: 0 11px;
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
.DateTimeField-module__xCloseButton___zhKEB {
|
|
2035
|
+
cursor: pointer;
|
|
2036
|
+
padding: 2px 0;
|
|
2037
|
+
transition: all ease-in-out 200ms;
|
|
2038
|
+
}
|
|
2039
|
+
.DateTimeField-module__xCloseButton___zhKEB {
|
|
2040
|
+
display: flex;
|
|
2041
|
+
align-items: center;
|
|
2042
|
+
justify-content: center;
|
|
2043
|
+
}
|
|
2044
|
+
.DateTimeField-module__xCloseButton___zhKEB svg * {
|
|
2045
|
+
stroke: var(--gray-400);
|
|
2046
|
+
}
|
|
2047
|
+
.DateTimeField-module__xCloseButton___zhKEB svg {
|
|
2048
|
+
width: 20px;
|
|
2049
|
+
height: 20px;
|
|
2050
|
+
flex: none;
|
|
2051
|
+
}
|
|
2052
|
+
.DateTimeField-module__xCloseButton___zhKEB:hover svg * {
|
|
2053
|
+
stroke: var(--gray-500);
|
|
2054
|
+
}
|
|
2055
|
+
/*!***************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
2056
|
+
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/InputFields/DateTimeField/styles/DateField.module.scss ***!
|
|
2057
|
+
\***************************************************************************************************************************************************************************************************************************************************************************************/
|
|
2058
|
+
@font-face {
|
|
2059
|
+
font-family: "Golos UI";
|
|
2060
|
+
src: local("Golos UI"), url(fonts/golos-ui_regular.28e502dbcc83c91565af.ttf) format("truetype"), url(fonts/golos-ui_regular.a1c96bd6133294a21f27.woff2) format("woff2"), url(fonts/golos-ui_regular.144142fba245a224ac28.woff) format("woff");
|
|
2061
|
+
font-weight: 400;
|
|
2062
|
+
font-style: normal;
|
|
2063
|
+
}
|
|
2064
|
+
@font-face {
|
|
2065
|
+
font-family: "Golos UI";
|
|
2066
|
+
src: local("Golos UI"), url(fonts/golos-ui_medium.727b1fef51a9bac82009.ttf) format("truetype"), url(fonts/golos-ui_medium.6f7a20790ad518369eb2.woff2) format("woff2"), url(fonts/golos-ui_medium.f9db984fc119d6aeca90.woff) format("woff");
|
|
2067
|
+
font-weight: 500;
|
|
2068
|
+
font-style: normal;
|
|
2069
|
+
}
|
|
2070
|
+
@font-face {
|
|
2071
|
+
font-family: "Golos UI";
|
|
2072
|
+
src: local("Golos UI"), url(fonts/golos-ui_bold.c0e021db79bdbbdeefad.ttf) format("truetype"), url(fonts/golos-ui_bold.80c1c59de9219ce1f9c5.woff2) format("woff2"), url(fonts/golos-ui_bold.e1122033a14151d7ea54.woff) format("woff");
|
|
2073
|
+
font-weight: 600;
|
|
2074
|
+
font-style: normal;
|
|
2075
|
+
}
|
|
2076
|
+
@font-face {
|
|
2077
|
+
font-family: "Golos Text";
|
|
2078
|
+
src: local("Golos Text"), url(fonts/golos-text_regular.23f4c2d2931cfb0070d9.ttf) format("truetype"), url(fonts/golos-text_regular.012c46c94b1cd02ee582.woff2) format("woff2"), url(fonts/golos-text_regular.437e7b47534cc7d6fd24.woff) format("woff");
|
|
2079
|
+
font-weight: 400;
|
|
2080
|
+
font-style: normal;
|
|
2081
|
+
}
|
|
2082
|
+
@font-face {
|
|
2083
|
+
font-family: "Golos Text";
|
|
2084
|
+
src: local("Golos Text"), url(fonts/golos-text_medium.443c23223f5e9ffa67f6.ttf) format("truetype"), url(fonts/golos-text_medium.69f15b6afe697154d728.woff2) format("woff2"), url(fonts/golos-text_medium.ffa67c71c79e49888091.woff) format("woff");
|
|
2085
|
+
font-weight: 500;
|
|
2086
|
+
font-style: normal;
|
|
2087
|
+
}
|
|
2088
|
+
@font-face {
|
|
2089
|
+
font-family: "Golos Text";
|
|
2090
|
+
src: local("Golos Text"), url(fonts/golos-text_demibold.56576690cfef6589aa86.ttf) format("truetype"), url(fonts/golos-text_demibold.e1665fc873e3565a6eed.woff2) format("woff2"), url(fonts/golos-text_demibold.05e6a34649d70eb79fef.woff) format("woff");
|
|
2091
|
+
font-weight: 600;
|
|
2092
|
+
font-style: normal;
|
|
2093
|
+
}
|
|
2094
|
+
.DateField-module__flexField___N5kNa {
|
|
2095
|
+
width: 100%;
|
|
2096
|
+
height: fit-content;
|
|
2097
|
+
min-width: 0;
|
|
2098
|
+
padding: 9px 11px;
|
|
2099
|
+
border-radius: 8px;
|
|
2100
|
+
gap: 12px;
|
|
2101
|
+
background-color: var(--base-white);
|
|
2102
|
+
border: 1px solid var(--gray-300);
|
|
2103
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
|
|
2104
|
+
box-sizing: border-box;
|
|
2105
|
+
}
|
|
2106
|
+
.DateField-module__flexField___N5kNa {
|
|
2107
|
+
display: flex;
|
|
2108
|
+
align-items: center;
|
|
2109
|
+
justify-content: center;
|
|
2110
|
+
}
|
|
2111
|
+
.DateField-module__flexField___N5kNa .DateField-module__inputField___u3oP8 {
|
|
1942
2112
|
flex: 1;
|
|
1943
2113
|
min-width: 0;
|
|
2114
|
+
min-height: 24px;
|
|
2115
|
+
outline: none;
|
|
2116
|
+
padding: 0;
|
|
2117
|
+
margin: 0;
|
|
2118
|
+
border: none;
|
|
2119
|
+
background: none;
|
|
2120
|
+
text-wrap: nowrap;
|
|
2121
|
+
overflow: hidden;
|
|
2122
|
+
text-overflow: ellipsis;
|
|
2123
|
+
}
|
|
2124
|
+
.DateField-module__flexField___N5kNa .DateField-module__inputField___u3oP8 {
|
|
2125
|
+
font-size: 16px;
|
|
2126
|
+
line-height: 24px;
|
|
2127
|
+
color: var(--gray-900);
|
|
2128
|
+
font-weight: 400;
|
|
2129
|
+
font-family: "Golos UI", sans-serif;
|
|
2130
|
+
font-stretch: normal;
|
|
2131
|
+
font-style: normal;
|
|
2132
|
+
font-variant: normal;
|
|
2133
|
+
}
|
|
2134
|
+
.DateField-module__flexField___N5kNa .DateField-module__inputField___u3oP8::placeholder, .DateField-module__flexField___N5kNa .DateField-module__inputField___u3oP8.DateField-module__placeholder___Xkwql {
|
|
2135
|
+
font-size: 16px;
|
|
2136
|
+
line-height: 24px;
|
|
2137
|
+
color: var(--gray-400);
|
|
2138
|
+
font-weight: 400;
|
|
2139
|
+
font-family: "Golos UI", sans-serif;
|
|
2140
|
+
font-stretch: normal;
|
|
2141
|
+
font-style: normal;
|
|
2142
|
+
font-variant: normal;
|
|
2143
|
+
}
|
|
2144
|
+
.DateField-module__flexField___N5kNa .DateField-module__icon___NsGmB {
|
|
2145
|
+
padding: 2px 0;
|
|
2146
|
+
}
|
|
2147
|
+
.DateField-module__flexField___N5kNa .DateField-module__icon___NsGmB {
|
|
2148
|
+
display: flex;
|
|
2149
|
+
align-items: center;
|
|
2150
|
+
justify-content: center;
|
|
2151
|
+
}
|
|
2152
|
+
.DateField-module__flexField___N5kNa .DateField-module__icon___NsGmB svg * {
|
|
2153
|
+
stroke: var(--gray-400);
|
|
2154
|
+
}
|
|
2155
|
+
.DateField-module__flexField___N5kNa .DateField-module__icon___NsGmB svg {
|
|
2156
|
+
width: 20px;
|
|
2157
|
+
height: 20px;
|
|
2158
|
+
flex: none;
|
|
1944
2159
|
}
|
|
1945
2160
|
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1946
2161
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/InputFields/DateTimeRangeField/styles/DateTimeRangeField.module.scss ***!
|
|
@@ -3691,5 +3906,595 @@
|
|
|
3691
3906
|
.DropdownItem-module__dropdownItem___N8ZNV.DropdownItem-module__widthHug___HJMle {
|
|
3692
3907
|
width: fit-content;
|
|
3693
3908
|
}
|
|
3909
|
+
/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
3910
|
+
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/Loaders/styles/LoadingIndicator.module.scss ***!
|
|
3911
|
+
\****************************************************************************************************************************************************************************************************************************************************************************/
|
|
3912
|
+
@font-face {
|
|
3913
|
+
font-family: "Golos UI";
|
|
3914
|
+
src: local("Golos UI"), url(fonts/golos-ui_regular.28e502dbcc83c91565af.ttf) format("truetype"), url(fonts/golos-ui_regular.a1c96bd6133294a21f27.woff2) format("woff2"), url(fonts/golos-ui_regular.144142fba245a224ac28.woff) format("woff");
|
|
3915
|
+
font-weight: 400;
|
|
3916
|
+
font-style: normal;
|
|
3917
|
+
}
|
|
3918
|
+
@font-face {
|
|
3919
|
+
font-family: "Golos UI";
|
|
3920
|
+
src: local("Golos UI"), url(fonts/golos-ui_medium.727b1fef51a9bac82009.ttf) format("truetype"), url(fonts/golos-ui_medium.6f7a20790ad518369eb2.woff2) format("woff2"), url(fonts/golos-ui_medium.f9db984fc119d6aeca90.woff) format("woff");
|
|
3921
|
+
font-weight: 500;
|
|
3922
|
+
font-style: normal;
|
|
3923
|
+
}
|
|
3924
|
+
@font-face {
|
|
3925
|
+
font-family: "Golos UI";
|
|
3926
|
+
src: local("Golos UI"), url(fonts/golos-ui_bold.c0e021db79bdbbdeefad.ttf) format("truetype"), url(fonts/golos-ui_bold.80c1c59de9219ce1f9c5.woff2) format("woff2"), url(fonts/golos-ui_bold.e1122033a14151d7ea54.woff) format("woff");
|
|
3927
|
+
font-weight: 600;
|
|
3928
|
+
font-style: normal;
|
|
3929
|
+
}
|
|
3930
|
+
@font-face {
|
|
3931
|
+
font-family: "Golos Text";
|
|
3932
|
+
src: local("Golos Text"), url(fonts/golos-text_regular.23f4c2d2931cfb0070d9.ttf) format("truetype"), url(fonts/golos-text_regular.012c46c94b1cd02ee582.woff2) format("woff2"), url(fonts/golos-text_regular.437e7b47534cc7d6fd24.woff) format("woff");
|
|
3933
|
+
font-weight: 400;
|
|
3934
|
+
font-style: normal;
|
|
3935
|
+
}
|
|
3936
|
+
@font-face {
|
|
3937
|
+
font-family: "Golos Text";
|
|
3938
|
+
src: local("Golos Text"), url(fonts/golos-text_medium.443c23223f5e9ffa67f6.ttf) format("truetype"), url(fonts/golos-text_medium.69f15b6afe697154d728.woff2) format("woff2"), url(fonts/golos-text_medium.ffa67c71c79e49888091.woff) format("woff");
|
|
3939
|
+
font-weight: 500;
|
|
3940
|
+
font-style: normal;
|
|
3941
|
+
}
|
|
3942
|
+
@font-face {
|
|
3943
|
+
font-family: "Golos Text";
|
|
3944
|
+
src: local("Golos Text"), url(fonts/golos-text_demibold.56576690cfef6589aa86.ttf) format("truetype"), url(fonts/golos-text_demibold.e1665fc873e3565a6eed.woff2) format("woff2"), url(fonts/golos-text_demibold.05e6a34649d70eb79fef.woff) format("woff");
|
|
3945
|
+
font-weight: 600;
|
|
3946
|
+
font-style: normal;
|
|
3947
|
+
}
|
|
3948
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb {
|
|
3949
|
+
display: flex;
|
|
3950
|
+
flex-direction: column;
|
|
3951
|
+
justify-content: center;
|
|
3952
|
+
align-items: center;
|
|
3953
|
+
}
|
|
3954
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb .LoadingIndicator-module__icon___mgj_t {
|
|
3955
|
+
animation: LoadingIndicator-module__spinner-animation___NBBAi linear 1000ms infinite;
|
|
3956
|
+
}
|
|
3957
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb .LoadingIndicator-module__icon___mgj_t {
|
|
3958
|
+
display: flex;
|
|
3959
|
+
align-items: center;
|
|
3960
|
+
justify-content: center;
|
|
3961
|
+
}
|
|
3962
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb .LoadingIndicator-module__text___F575P {
|
|
3963
|
+
text-wrap: nowrap;
|
|
3964
|
+
text-overflow: ellipsis;
|
|
3965
|
+
overflow: hidden;
|
|
3966
|
+
}
|
|
3967
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb .LoadingIndicator-module__text___F575P {
|
|
3968
|
+
font-size: 14px;
|
|
3969
|
+
line-height: 20px;
|
|
3970
|
+
color: var(--gray-700);
|
|
3971
|
+
font-weight: 500;
|
|
3972
|
+
font-family: "Golos UI", sans-serif;
|
|
3973
|
+
font-stretch: normal;
|
|
3974
|
+
font-style: normal;
|
|
3975
|
+
font-variant: normal;
|
|
3976
|
+
}
|
|
3977
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__lineSimple___j3ypM .LoadingIndicator-module__icon___mgj_t svg path:first-child {
|
|
3978
|
+
stroke: var(--gray-300);
|
|
3979
|
+
}
|
|
3980
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__lineSimple___j3ypM .LoadingIndicator-module__icon___mgj_t svg path:last-child {
|
|
3981
|
+
stroke: var(--blue-dark-500);
|
|
3982
|
+
}
|
|
3983
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__lineSpinner___A2m7Y .LoadingIndicator-module__icon___mgj_t svg path:first-child {
|
|
3984
|
+
stroke: var(--gray-300);
|
|
3985
|
+
}
|
|
3986
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__lineSpinner___A2m7Y .LoadingIndicator-module__icon___mgj_t svg path:last-child {
|
|
3987
|
+
stroke: var(--blue-dark-500);
|
|
3988
|
+
}
|
|
3989
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__small___MXHKy {
|
|
3990
|
+
gap: 16px;
|
|
3991
|
+
}
|
|
3992
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__small___MXHKy svg {
|
|
3993
|
+
width: 32px;
|
|
3994
|
+
height: 32px;
|
|
3995
|
+
}
|
|
3996
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__small___MXHKy .LoadingIndicator-module__text___F575P {
|
|
3997
|
+
font-size: 14px;
|
|
3998
|
+
line-height: 20px;
|
|
3999
|
+
}
|
|
4000
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__medium___o32By {
|
|
4001
|
+
gap: 16px;
|
|
4002
|
+
}
|
|
4003
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__medium___o32By svg {
|
|
4004
|
+
width: 48px;
|
|
4005
|
+
height: 48px;
|
|
4006
|
+
}
|
|
4007
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__medium___o32By .LoadingIndicator-module__text___F575P {
|
|
4008
|
+
font-size: 14px;
|
|
4009
|
+
line-height: 20px;
|
|
4010
|
+
}
|
|
4011
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__large___Uxh7i {
|
|
4012
|
+
gap: 16px;
|
|
4013
|
+
}
|
|
4014
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__large___Uxh7i svg {
|
|
4015
|
+
width: 56px;
|
|
4016
|
+
height: 56px;
|
|
4017
|
+
}
|
|
4018
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__large___Uxh7i .LoadingIndicator-module__text___F575P {
|
|
4019
|
+
font-size: 18px;
|
|
4020
|
+
line-height: 28px;
|
|
4021
|
+
}
|
|
4022
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__ultra___wIzOx {
|
|
4023
|
+
gap: 20px;
|
|
4024
|
+
}
|
|
4025
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__ultra___wIzOx svg {
|
|
4026
|
+
width: 64px;
|
|
4027
|
+
height: 64px;
|
|
4028
|
+
}
|
|
4029
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__ultra___wIzOx .LoadingIndicator-module__text___F575P {
|
|
4030
|
+
font-size: 18px;
|
|
4031
|
+
line-height: 28px;
|
|
4032
|
+
}
|
|
4033
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__widthFill___piI3w {
|
|
4034
|
+
width: 100%;
|
|
4035
|
+
}
|
|
4036
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__widthHug___olDl7 {
|
|
4037
|
+
width: fit-content;
|
|
4038
|
+
}
|
|
4039
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__heightFill___qkqYn {
|
|
4040
|
+
height: 100%;
|
|
4041
|
+
}
|
|
4042
|
+
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__heightHug___lgl6X {
|
|
4043
|
+
height: fit-content;
|
|
4044
|
+
}
|
|
4045
|
+
|
|
4046
|
+
@keyframes LoadingIndicator-module__spinner-animation___NBBAi {
|
|
4047
|
+
from {
|
|
4048
|
+
transform: rotate(0deg);
|
|
4049
|
+
}
|
|
4050
|
+
to {
|
|
4051
|
+
transform: rotate(360deg);
|
|
4052
|
+
}
|
|
4053
|
+
}
|
|
4054
|
+
/*!*************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
4055
|
+
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/MediaViewer/styles/components/ControlBar.module.scss ***!
|
|
4056
|
+
\*************************************************************************************************************************************************************************************************************************************************************************************/
|
|
4057
|
+
@font-face {
|
|
4058
|
+
font-family: "Golos UI";
|
|
4059
|
+
src: local("Golos UI"), url(fonts/golos-ui_regular.28e502dbcc83c91565af.ttf) format("truetype"), url(fonts/golos-ui_regular.a1c96bd6133294a21f27.woff2) format("woff2"), url(fonts/golos-ui_regular.144142fba245a224ac28.woff) format("woff");
|
|
4060
|
+
font-weight: 400;
|
|
4061
|
+
font-style: normal;
|
|
4062
|
+
}
|
|
4063
|
+
@font-face {
|
|
4064
|
+
font-family: "Golos UI";
|
|
4065
|
+
src: local("Golos UI"), url(fonts/golos-ui_medium.727b1fef51a9bac82009.ttf) format("truetype"), url(fonts/golos-ui_medium.6f7a20790ad518369eb2.woff2) format("woff2"), url(fonts/golos-ui_medium.f9db984fc119d6aeca90.woff) format("woff");
|
|
4066
|
+
font-weight: 500;
|
|
4067
|
+
font-style: normal;
|
|
4068
|
+
}
|
|
4069
|
+
@font-face {
|
|
4070
|
+
font-family: "Golos UI";
|
|
4071
|
+
src: local("Golos UI"), url(fonts/golos-ui_bold.c0e021db79bdbbdeefad.ttf) format("truetype"), url(fonts/golos-ui_bold.80c1c59de9219ce1f9c5.woff2) format("woff2"), url(fonts/golos-ui_bold.e1122033a14151d7ea54.woff) format("woff");
|
|
4072
|
+
font-weight: 600;
|
|
4073
|
+
font-style: normal;
|
|
4074
|
+
}
|
|
4075
|
+
@font-face {
|
|
4076
|
+
font-family: "Golos Text";
|
|
4077
|
+
src: local("Golos Text"), url(fonts/golos-text_regular.23f4c2d2931cfb0070d9.ttf) format("truetype"), url(fonts/golos-text_regular.012c46c94b1cd02ee582.woff2) format("woff2"), url(fonts/golos-text_regular.437e7b47534cc7d6fd24.woff) format("woff");
|
|
4078
|
+
font-weight: 400;
|
|
4079
|
+
font-style: normal;
|
|
4080
|
+
}
|
|
4081
|
+
@font-face {
|
|
4082
|
+
font-family: "Golos Text";
|
|
4083
|
+
src: local("Golos Text"), url(fonts/golos-text_medium.443c23223f5e9ffa67f6.ttf) format("truetype"), url(fonts/golos-text_medium.69f15b6afe697154d728.woff2) format("woff2"), url(fonts/golos-text_medium.ffa67c71c79e49888091.woff) format("woff");
|
|
4084
|
+
font-weight: 500;
|
|
4085
|
+
font-style: normal;
|
|
4086
|
+
}
|
|
4087
|
+
@font-face {
|
|
4088
|
+
font-family: "Golos Text";
|
|
4089
|
+
src: local("Golos Text"), url(fonts/golos-text_demibold.56576690cfef6589aa86.ttf) format("truetype"), url(fonts/golos-text_demibold.e1665fc873e3565a6eed.woff2) format("woff2"), url(fonts/golos-text_demibold.05e6a34649d70eb79fef.woff) format("woff");
|
|
4090
|
+
font-weight: 600;
|
|
4091
|
+
font-style: normal;
|
|
4092
|
+
}
|
|
4093
|
+
.ControlBar-module__controlBar___B0pDT {
|
|
4094
|
+
width: fit-content;
|
|
4095
|
+
gap: 24px;
|
|
4096
|
+
}
|
|
4097
|
+
.ControlBar-module__controlBar___B0pDT {
|
|
4098
|
+
display: flex;
|
|
4099
|
+
align-items: center;
|
|
4100
|
+
}
|
|
4101
|
+
/*!*******************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
4102
|
+
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/MediaViewer/styles/components/VideoProgressBar.module.scss ***!
|
|
4103
|
+
\*******************************************************************************************************************************************************************************************************************************************************************************************/
|
|
4104
|
+
@font-face {
|
|
4105
|
+
font-family: "Golos UI";
|
|
4106
|
+
src: local("Golos UI"), url(fonts/golos-ui_regular.28e502dbcc83c91565af.ttf) format("truetype"), url(fonts/golos-ui_regular.a1c96bd6133294a21f27.woff2) format("woff2"), url(fonts/golos-ui_regular.144142fba245a224ac28.woff) format("woff");
|
|
4107
|
+
font-weight: 400;
|
|
4108
|
+
font-style: normal;
|
|
4109
|
+
}
|
|
4110
|
+
@font-face {
|
|
4111
|
+
font-family: "Golos UI";
|
|
4112
|
+
src: local("Golos UI"), url(fonts/golos-ui_medium.727b1fef51a9bac82009.ttf) format("truetype"), url(fonts/golos-ui_medium.6f7a20790ad518369eb2.woff2) format("woff2"), url(fonts/golos-ui_medium.f9db984fc119d6aeca90.woff) format("woff");
|
|
4113
|
+
font-weight: 500;
|
|
4114
|
+
font-style: normal;
|
|
4115
|
+
}
|
|
4116
|
+
@font-face {
|
|
4117
|
+
font-family: "Golos UI";
|
|
4118
|
+
src: local("Golos UI"), url(fonts/golos-ui_bold.c0e021db79bdbbdeefad.ttf) format("truetype"), url(fonts/golos-ui_bold.80c1c59de9219ce1f9c5.woff2) format("woff2"), url(fonts/golos-ui_bold.e1122033a14151d7ea54.woff) format("woff");
|
|
4119
|
+
font-weight: 600;
|
|
4120
|
+
font-style: normal;
|
|
4121
|
+
}
|
|
4122
|
+
@font-face {
|
|
4123
|
+
font-family: "Golos Text";
|
|
4124
|
+
src: local("Golos Text"), url(fonts/golos-text_regular.23f4c2d2931cfb0070d9.ttf) format("truetype"), url(fonts/golos-text_regular.012c46c94b1cd02ee582.woff2) format("woff2"), url(fonts/golos-text_regular.437e7b47534cc7d6fd24.woff) format("woff");
|
|
4125
|
+
font-weight: 400;
|
|
4126
|
+
font-style: normal;
|
|
4127
|
+
}
|
|
4128
|
+
@font-face {
|
|
4129
|
+
font-family: "Golos Text";
|
|
4130
|
+
src: local("Golos Text"), url(fonts/golos-text_medium.443c23223f5e9ffa67f6.ttf) format("truetype"), url(fonts/golos-text_medium.69f15b6afe697154d728.woff2) format("woff2"), url(fonts/golos-text_medium.ffa67c71c79e49888091.woff) format("woff");
|
|
4131
|
+
font-weight: 500;
|
|
4132
|
+
font-style: normal;
|
|
4133
|
+
}
|
|
4134
|
+
@font-face {
|
|
4135
|
+
font-family: "Golos Text";
|
|
4136
|
+
src: local("Golos Text"), url(fonts/golos-text_demibold.56576690cfef6589aa86.ttf) format("truetype"), url(fonts/golos-text_demibold.e1665fc873e3565a6eed.woff2) format("woff2"), url(fonts/golos-text_demibold.05e6a34649d70eb79fef.woff) format("woff");
|
|
4137
|
+
font-weight: 600;
|
|
4138
|
+
font-style: normal;
|
|
4139
|
+
}
|
|
4140
|
+
.VideoProgressBar-module__videoProgressBar___QrnSp {
|
|
4141
|
+
width: 100%;
|
|
4142
|
+
height: 8px;
|
|
4143
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
4144
|
+
position: relative;
|
|
4145
|
+
}
|
|
4146
|
+
.VideoProgressBar-module__videoProgressBar___QrnSp .VideoProgressBar-module__progressBar___m_P6t {
|
|
4147
|
+
height: 100%;
|
|
4148
|
+
position: absolute;
|
|
4149
|
+
top: 0;
|
|
4150
|
+
left: 0;
|
|
4151
|
+
background-color: var(--blue-dark-400);
|
|
4152
|
+
}
|
|
4153
|
+
.VideoProgressBar-module__videoProgressBar___QrnSp:not(.VideoProgressBar-module__dragging___eO_Va) .VideoProgressBar-module__progressBar___m_P6t {
|
|
4154
|
+
transition: width linear 0.2s;
|
|
4155
|
+
}
|
|
4156
|
+
.VideoProgressBar-module__videoProgressBar___QrnSp.VideoProgressBar-module__dragging___eO_Va .VideoProgressBar-module__progressBar___m_P6t {
|
|
4157
|
+
transition: none;
|
|
4158
|
+
}
|
|
4159
|
+
/*!**************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
4160
|
+
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/MediaViewer/styles/components/VideoViewer.module.scss ***!
|
|
4161
|
+
\**************************************************************************************************************************************************************************************************************************************************************************************/
|
|
4162
|
+
@font-face {
|
|
4163
|
+
font-family: "Golos UI";
|
|
4164
|
+
src: local("Golos UI"), url(fonts/golos-ui_regular.28e502dbcc83c91565af.ttf) format("truetype"), url(fonts/golos-ui_regular.a1c96bd6133294a21f27.woff2) format("woff2"), url(fonts/golos-ui_regular.144142fba245a224ac28.woff) format("woff");
|
|
4165
|
+
font-weight: 400;
|
|
4166
|
+
font-style: normal;
|
|
4167
|
+
}
|
|
4168
|
+
@font-face {
|
|
4169
|
+
font-family: "Golos UI";
|
|
4170
|
+
src: local("Golos UI"), url(fonts/golos-ui_medium.727b1fef51a9bac82009.ttf) format("truetype"), url(fonts/golos-ui_medium.6f7a20790ad518369eb2.woff2) format("woff2"), url(fonts/golos-ui_medium.f9db984fc119d6aeca90.woff) format("woff");
|
|
4171
|
+
font-weight: 500;
|
|
4172
|
+
font-style: normal;
|
|
4173
|
+
}
|
|
4174
|
+
@font-face {
|
|
4175
|
+
font-family: "Golos UI";
|
|
4176
|
+
src: local("Golos UI"), url(fonts/golos-ui_bold.c0e021db79bdbbdeefad.ttf) format("truetype"), url(fonts/golos-ui_bold.80c1c59de9219ce1f9c5.woff2) format("woff2"), url(fonts/golos-ui_bold.e1122033a14151d7ea54.woff) format("woff");
|
|
4177
|
+
font-weight: 600;
|
|
4178
|
+
font-style: normal;
|
|
4179
|
+
}
|
|
4180
|
+
@font-face {
|
|
4181
|
+
font-family: "Golos Text";
|
|
4182
|
+
src: local("Golos Text"), url(fonts/golos-text_regular.23f4c2d2931cfb0070d9.ttf) format("truetype"), url(fonts/golos-text_regular.012c46c94b1cd02ee582.woff2) format("woff2"), url(fonts/golos-text_regular.437e7b47534cc7d6fd24.woff) format("woff");
|
|
4183
|
+
font-weight: 400;
|
|
4184
|
+
font-style: normal;
|
|
4185
|
+
}
|
|
4186
|
+
@font-face {
|
|
4187
|
+
font-family: "Golos Text";
|
|
4188
|
+
src: local("Golos Text"), url(fonts/golos-text_medium.443c23223f5e9ffa67f6.ttf) format("truetype"), url(fonts/golos-text_medium.69f15b6afe697154d728.woff2) format("woff2"), url(fonts/golos-text_medium.ffa67c71c79e49888091.woff) format("woff");
|
|
4189
|
+
font-weight: 500;
|
|
4190
|
+
font-style: normal;
|
|
4191
|
+
}
|
|
4192
|
+
@font-face {
|
|
4193
|
+
font-family: "Golos Text";
|
|
4194
|
+
src: local("Golos Text"), url(fonts/golos-text_demibold.56576690cfef6589aa86.ttf) format("truetype"), url(fonts/golos-text_demibold.e1665fc873e3565a6eed.woff2) format("woff2"), url(fonts/golos-text_demibold.05e6a34649d70eb79fef.woff) format("woff");
|
|
4195
|
+
font-weight: 600;
|
|
4196
|
+
font-style: normal;
|
|
4197
|
+
}
|
|
4198
|
+
.VideoViewer-module__VideoViewer___DnYgG {
|
|
4199
|
+
flex: none;
|
|
4200
|
+
width: fit-content;
|
|
4201
|
+
height: 100%;
|
|
4202
|
+
position: relative;
|
|
4203
|
+
}
|
|
4204
|
+
.VideoViewer-module__VideoViewer___DnYgG {
|
|
4205
|
+
display: flex;
|
|
4206
|
+
align-items: center;
|
|
4207
|
+
justify-content: center;
|
|
4208
|
+
}
|
|
4209
|
+
.VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__loader___xINv6 {
|
|
4210
|
+
position: absolute;
|
|
4211
|
+
top: 0;
|
|
4212
|
+
left: 0;
|
|
4213
|
+
width: 100%;
|
|
4214
|
+
height: 100%;
|
|
4215
|
+
}
|
|
4216
|
+
.VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__loader___xINv6.VideoViewer-module__hide___uGbYO {
|
|
4217
|
+
display: none;
|
|
4218
|
+
}
|
|
4219
|
+
.VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__timer___w1Piv {
|
|
4220
|
+
position: absolute;
|
|
4221
|
+
top: 24px;
|
|
4222
|
+
right: 24px;
|
|
4223
|
+
width: fit-content;
|
|
4224
|
+
height: fit-content;
|
|
4225
|
+
border-radius: 16px;
|
|
4226
|
+
padding: 4px 12px;
|
|
4227
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
4228
|
+
}
|
|
4229
|
+
.VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__timer___w1Piv {
|
|
4230
|
+
font-size: 16px;
|
|
4231
|
+
line-height: 24px;
|
|
4232
|
+
color: rgba(255, 255, 255, 0.8);
|
|
4233
|
+
font-weight: 400;
|
|
4234
|
+
font-family: "Golos UI", sans-serif;
|
|
4235
|
+
font-stretch: normal;
|
|
4236
|
+
font-style: normal;
|
|
4237
|
+
font-variant: normal;
|
|
4238
|
+
}
|
|
4239
|
+
.VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__progressBar___SbaNv {
|
|
4240
|
+
width: 100%;
|
|
4241
|
+
height: fit-content;
|
|
4242
|
+
position: absolute;
|
|
4243
|
+
bottom: 0;
|
|
4244
|
+
}
|
|
4245
|
+
.VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__content___jnFwK {
|
|
4246
|
+
flex: none;
|
|
4247
|
+
height: 100%;
|
|
4248
|
+
object-fit: fill;
|
|
4249
|
+
}
|
|
4250
|
+
.VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__playButton___Sb91y {
|
|
4251
|
+
display: none;
|
|
4252
|
+
opacity: 0;
|
|
4253
|
+
position: absolute;
|
|
4254
|
+
top: 50%;
|
|
4255
|
+
left: 50%;
|
|
4256
|
+
z-index: 1;
|
|
4257
|
+
transform: translate(-50%, -50%);
|
|
4258
|
+
}
|
|
4259
|
+
.VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__playButton___Sb91y {
|
|
4260
|
+
display: flex;
|
|
4261
|
+
align-items: center;
|
|
4262
|
+
justify-content: center;
|
|
4263
|
+
}
|
|
4264
|
+
.VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__playButton___Sb91y.VideoViewer-module__show___GsvfN {
|
|
4265
|
+
animation: VideoViewer-module__appearance___GGxuv ease-out 200ms forwards;
|
|
4266
|
+
}
|
|
4267
|
+
|
|
4268
|
+
@keyframes VideoViewer-module__appearance___GGxuv {
|
|
4269
|
+
from {
|
|
4270
|
+
display: block;
|
|
4271
|
+
opacity: 0;
|
|
4272
|
+
}
|
|
4273
|
+
to {
|
|
4274
|
+
opacity: 1;
|
|
4275
|
+
}
|
|
4276
|
+
}
|
|
4277
|
+
/*!**************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
4278
|
+
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/MediaViewer/styles/components/ImageViewer.module.scss ***!
|
|
4279
|
+
\**************************************************************************************************************************************************************************************************************************************************************************************/
|
|
4280
|
+
@font-face {
|
|
4281
|
+
font-family: "Golos UI";
|
|
4282
|
+
src: local("Golos UI"), url(fonts/golos-ui_regular.28e502dbcc83c91565af.ttf) format("truetype"), url(fonts/golos-ui_regular.a1c96bd6133294a21f27.woff2) format("woff2"), url(fonts/golos-ui_regular.144142fba245a224ac28.woff) format("woff");
|
|
4283
|
+
font-weight: 400;
|
|
4284
|
+
font-style: normal;
|
|
4285
|
+
}
|
|
4286
|
+
@font-face {
|
|
4287
|
+
font-family: "Golos UI";
|
|
4288
|
+
src: local("Golos UI"), url(fonts/golos-ui_medium.727b1fef51a9bac82009.ttf) format("truetype"), url(fonts/golos-ui_medium.6f7a20790ad518369eb2.woff2) format("woff2"), url(fonts/golos-ui_medium.f9db984fc119d6aeca90.woff) format("woff");
|
|
4289
|
+
font-weight: 500;
|
|
4290
|
+
font-style: normal;
|
|
4291
|
+
}
|
|
4292
|
+
@font-face {
|
|
4293
|
+
font-family: "Golos UI";
|
|
4294
|
+
src: local("Golos UI"), url(fonts/golos-ui_bold.c0e021db79bdbbdeefad.ttf) format("truetype"), url(fonts/golos-ui_bold.80c1c59de9219ce1f9c5.woff2) format("woff2"), url(fonts/golos-ui_bold.e1122033a14151d7ea54.woff) format("woff");
|
|
4295
|
+
font-weight: 600;
|
|
4296
|
+
font-style: normal;
|
|
4297
|
+
}
|
|
4298
|
+
@font-face {
|
|
4299
|
+
font-family: "Golos Text";
|
|
4300
|
+
src: local("Golos Text"), url(fonts/golos-text_regular.23f4c2d2931cfb0070d9.ttf) format("truetype"), url(fonts/golos-text_regular.012c46c94b1cd02ee582.woff2) format("woff2"), url(fonts/golos-text_regular.437e7b47534cc7d6fd24.woff) format("woff");
|
|
4301
|
+
font-weight: 400;
|
|
4302
|
+
font-style: normal;
|
|
4303
|
+
}
|
|
4304
|
+
@font-face {
|
|
4305
|
+
font-family: "Golos Text";
|
|
4306
|
+
src: local("Golos Text"), url(fonts/golos-text_medium.443c23223f5e9ffa67f6.ttf) format("truetype"), url(fonts/golos-text_medium.69f15b6afe697154d728.woff2) format("woff2"), url(fonts/golos-text_medium.ffa67c71c79e49888091.woff) format("woff");
|
|
4307
|
+
font-weight: 500;
|
|
4308
|
+
font-style: normal;
|
|
4309
|
+
}
|
|
4310
|
+
@font-face {
|
|
4311
|
+
font-family: "Golos Text";
|
|
4312
|
+
src: local("Golos Text"), url(fonts/golos-text_demibold.56576690cfef6589aa86.ttf) format("truetype"), url(fonts/golos-text_demibold.e1665fc873e3565a6eed.woff2) format("woff2"), url(fonts/golos-text_demibold.05e6a34649d70eb79fef.woff) format("woff");
|
|
4313
|
+
font-weight: 600;
|
|
4314
|
+
font-style: normal;
|
|
4315
|
+
}
|
|
4316
|
+
.ImageViewer-module__ImageViewer___lH_sP {
|
|
4317
|
+
flex: none;
|
|
4318
|
+
width: fit-content;
|
|
4319
|
+
height: 100%;
|
|
4320
|
+
object-fit: scale-down;
|
|
4321
|
+
}
|
|
4322
|
+
/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
4323
|
+
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/MediaViewer/styles/MediaViewer.module.scss ***!
|
|
4324
|
+
\***************************************************************************************************************************************************************************************************************************************************************************/
|
|
4325
|
+
@font-face {
|
|
4326
|
+
font-family: "Golos UI";
|
|
4327
|
+
src: local("Golos UI"), url(fonts/golos-ui_regular.28e502dbcc83c91565af.ttf) format("truetype"), url(fonts/golos-ui_regular.a1c96bd6133294a21f27.woff2) format("woff2"), url(fonts/golos-ui_regular.144142fba245a224ac28.woff) format("woff");
|
|
4328
|
+
font-weight: 400;
|
|
4329
|
+
font-style: normal;
|
|
4330
|
+
}
|
|
4331
|
+
@font-face {
|
|
4332
|
+
font-family: "Golos UI";
|
|
4333
|
+
src: local("Golos UI"), url(fonts/golos-ui_medium.727b1fef51a9bac82009.ttf) format("truetype"), url(fonts/golos-ui_medium.6f7a20790ad518369eb2.woff2) format("woff2"), url(fonts/golos-ui_medium.f9db984fc119d6aeca90.woff) format("woff");
|
|
4334
|
+
font-weight: 500;
|
|
4335
|
+
font-style: normal;
|
|
4336
|
+
}
|
|
4337
|
+
@font-face {
|
|
4338
|
+
font-family: "Golos UI";
|
|
4339
|
+
src: local("Golos UI"), url(fonts/golos-ui_bold.c0e021db79bdbbdeefad.ttf) format("truetype"), url(fonts/golos-ui_bold.80c1c59de9219ce1f9c5.woff2) format("woff2"), url(fonts/golos-ui_bold.e1122033a14151d7ea54.woff) format("woff");
|
|
4340
|
+
font-weight: 600;
|
|
4341
|
+
font-style: normal;
|
|
4342
|
+
}
|
|
4343
|
+
@font-face {
|
|
4344
|
+
font-family: "Golos Text";
|
|
4345
|
+
src: local("Golos Text"), url(fonts/golos-text_regular.23f4c2d2931cfb0070d9.ttf) format("truetype"), url(fonts/golos-text_regular.012c46c94b1cd02ee582.woff2) format("woff2"), url(fonts/golos-text_regular.437e7b47534cc7d6fd24.woff) format("woff");
|
|
4346
|
+
font-weight: 400;
|
|
4347
|
+
font-style: normal;
|
|
4348
|
+
}
|
|
4349
|
+
@font-face {
|
|
4350
|
+
font-family: "Golos Text";
|
|
4351
|
+
src: local("Golos Text"), url(fonts/golos-text_medium.443c23223f5e9ffa67f6.ttf) format("truetype"), url(fonts/golos-text_medium.69f15b6afe697154d728.woff2) format("woff2"), url(fonts/golos-text_medium.ffa67c71c79e49888091.woff) format("woff");
|
|
4352
|
+
font-weight: 500;
|
|
4353
|
+
font-style: normal;
|
|
4354
|
+
}
|
|
4355
|
+
@font-face {
|
|
4356
|
+
font-family: "Golos Text";
|
|
4357
|
+
src: local("Golos Text"), url(fonts/golos-text_demibold.56576690cfef6589aa86.ttf) format("truetype"), url(fonts/golos-text_demibold.e1665fc873e3565a6eed.woff2) format("woff2"), url(fonts/golos-text_demibold.05e6a34649d70eb79fef.woff) format("woff");
|
|
4358
|
+
font-weight: 600;
|
|
4359
|
+
font-style: normal;
|
|
4360
|
+
}
|
|
4361
|
+
.MediaViewer-module__MediaViewer___DsL4T {
|
|
4362
|
+
width: 100%;
|
|
4363
|
+
height: 100%;
|
|
4364
|
+
position: relative;
|
|
4365
|
+
background-color: var(--base-white);
|
|
4366
|
+
}
|
|
4367
|
+
.MediaViewer-module__MediaViewer___DsL4T {
|
|
4368
|
+
display: flex;
|
|
4369
|
+
justify-content: center;
|
|
4370
|
+
}
|
|
4371
|
+
.MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__content___e14vI {
|
|
4372
|
+
flex: 1;
|
|
4373
|
+
width: 100%;
|
|
4374
|
+
height: 100%;
|
|
4375
|
+
}
|
|
4376
|
+
.MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__content___e14vI {
|
|
4377
|
+
display: flex;
|
|
4378
|
+
align-items: center;
|
|
4379
|
+
justify-content: center;
|
|
4380
|
+
}
|
|
4381
|
+
.MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__control___MB3Xg {
|
|
4382
|
+
width: 100%;
|
|
4383
|
+
position: absolute;
|
|
4384
|
+
bottom: 32px;
|
|
4385
|
+
}
|
|
4386
|
+
.MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__control___MB3Xg {
|
|
4387
|
+
display: flex;
|
|
4388
|
+
align-items: center;
|
|
4389
|
+
justify-content: center;
|
|
4390
|
+
}
|
|
4391
|
+
/*!*************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
4392
|
+
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/PlayButton/styles/PlayButton.module.scss ***!
|
|
4393
|
+
\*************************************************************************************************************************************************************************************************************************************************************************/
|
|
4394
|
+
@font-face {
|
|
4395
|
+
font-family: "Golos UI";
|
|
4396
|
+
src: local("Golos UI"), url(fonts/golos-ui_regular.28e502dbcc83c91565af.ttf) format("truetype"), url(fonts/golos-ui_regular.a1c96bd6133294a21f27.woff2) format("woff2"), url(fonts/golos-ui_regular.144142fba245a224ac28.woff) format("woff");
|
|
4397
|
+
font-weight: 400;
|
|
4398
|
+
font-style: normal;
|
|
4399
|
+
}
|
|
4400
|
+
@font-face {
|
|
4401
|
+
font-family: "Golos UI";
|
|
4402
|
+
src: local("Golos UI"), url(fonts/golos-ui_medium.727b1fef51a9bac82009.ttf) format("truetype"), url(fonts/golos-ui_medium.6f7a20790ad518369eb2.woff2) format("woff2"), url(fonts/golos-ui_medium.f9db984fc119d6aeca90.woff) format("woff");
|
|
4403
|
+
font-weight: 500;
|
|
4404
|
+
font-style: normal;
|
|
4405
|
+
}
|
|
4406
|
+
@font-face {
|
|
4407
|
+
font-family: "Golos UI";
|
|
4408
|
+
src: local("Golos UI"), url(fonts/golos-ui_bold.c0e021db79bdbbdeefad.ttf) format("truetype"), url(fonts/golos-ui_bold.80c1c59de9219ce1f9c5.woff2) format("woff2"), url(fonts/golos-ui_bold.e1122033a14151d7ea54.woff) format("woff");
|
|
4409
|
+
font-weight: 600;
|
|
4410
|
+
font-style: normal;
|
|
4411
|
+
}
|
|
4412
|
+
@font-face {
|
|
4413
|
+
font-family: "Golos Text";
|
|
4414
|
+
src: local("Golos Text"), url(fonts/golos-text_regular.23f4c2d2931cfb0070d9.ttf) format("truetype"), url(fonts/golos-text_regular.012c46c94b1cd02ee582.woff2) format("woff2"), url(fonts/golos-text_regular.437e7b47534cc7d6fd24.woff) format("woff");
|
|
4415
|
+
font-weight: 400;
|
|
4416
|
+
font-style: normal;
|
|
4417
|
+
}
|
|
4418
|
+
@font-face {
|
|
4419
|
+
font-family: "Golos Text";
|
|
4420
|
+
src: local("Golos Text"), url(fonts/golos-text_medium.443c23223f5e9ffa67f6.ttf) format("truetype"), url(fonts/golos-text_medium.69f15b6afe697154d728.woff2) format("woff2"), url(fonts/golos-text_medium.ffa67c71c79e49888091.woff) format("woff");
|
|
4421
|
+
font-weight: 500;
|
|
4422
|
+
font-style: normal;
|
|
4423
|
+
}
|
|
4424
|
+
@font-face {
|
|
4425
|
+
font-family: "Golos Text";
|
|
4426
|
+
src: local("Golos Text"), url(fonts/golos-text_demibold.56576690cfef6589aa86.ttf) format("truetype"), url(fonts/golos-text_demibold.e1665fc873e3565a6eed.woff2) format("woff2"), url(fonts/golos-text_demibold.05e6a34649d70eb79fef.woff) format("woff");
|
|
4427
|
+
font-weight: 600;
|
|
4428
|
+
font-style: normal;
|
|
4429
|
+
}
|
|
4430
|
+
.PlayButton-module__PlayButton___JmGh_ {
|
|
4431
|
+
border: 1px solid transparent;
|
|
4432
|
+
border-radius: 50%;
|
|
4433
|
+
transition: background-color ease-out 300ms;
|
|
4434
|
+
}
|
|
4435
|
+
.PlayButton-module__PlayButton___JmGh_ {
|
|
4436
|
+
display: flex;
|
|
4437
|
+
align-items: center;
|
|
4438
|
+
justify-content: center;
|
|
4439
|
+
}
|
|
4440
|
+
.PlayButton-module__PlayButton___JmGh_ svg * {
|
|
4441
|
+
fill: var(--base-white);
|
|
4442
|
+
}
|
|
4443
|
+
.PlayButton-module__PlayButton___JmGh_ svg {
|
|
4444
|
+
flex: none;
|
|
4445
|
+
}
|
|
4446
|
+
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__default___nbc5K {
|
|
4447
|
+
width: 48px;
|
|
4448
|
+
height: 48px;
|
|
4449
|
+
padding: 12px 10px 12px 16px;
|
|
4450
|
+
}
|
|
4451
|
+
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__default___nbc5K svg {
|
|
4452
|
+
width: 24px;
|
|
4453
|
+
height: 24px;
|
|
4454
|
+
}
|
|
4455
|
+
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__default___nbc5K.PlayButton-module__stop___P8MsE {
|
|
4456
|
+
padding: 12px;
|
|
4457
|
+
}
|
|
4458
|
+
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__large___DYV1E {
|
|
4459
|
+
width: 96px;
|
|
4460
|
+
height: 96px;
|
|
4461
|
+
padding: 24px 22px 24px 34px;
|
|
4462
|
+
}
|
|
4463
|
+
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__large___DYV1E svg {
|
|
4464
|
+
width: 48px;
|
|
4465
|
+
height: 48px;
|
|
4466
|
+
}
|
|
4467
|
+
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__large___DYV1E.PlayButton-module__stop___P8MsE {
|
|
4468
|
+
padding: 24px;
|
|
4469
|
+
}
|
|
4470
|
+
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__light___UMWaJ {
|
|
4471
|
+
width: 24px;
|
|
4472
|
+
height: 24px;
|
|
4473
|
+
padding: 6px 4px 6px 7px;
|
|
4474
|
+
background-color: var(--gray-400);
|
|
4475
|
+
}
|
|
4476
|
+
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__light___UMWaJ svg {
|
|
4477
|
+
width: 12px;
|
|
4478
|
+
height: 12px;
|
|
4479
|
+
}
|
|
4480
|
+
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__light___UMWaJ.PlayButton-module__stop___P8MsE {
|
|
4481
|
+
padding: 8px;
|
|
4482
|
+
}
|
|
4483
|
+
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__light___UMWaJ.PlayButton-module__stop___P8MsE svg {
|
|
4484
|
+
width: 8px;
|
|
4485
|
+
height: 8px;
|
|
4486
|
+
}
|
|
4487
|
+
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__light___UMWaJ:hover {
|
|
4488
|
+
background-color: var(--blue-dark-400);
|
|
4489
|
+
}
|
|
4490
|
+
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__dark___BHsWx {
|
|
4491
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
4492
|
+
}
|
|
4493
|
+
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__dark___BHsWx:hover {
|
|
4494
|
+
background-color: rgba(0, 0, 0, 0.8);
|
|
4495
|
+
}
|
|
4496
|
+
.PlayButton-module__PlayButton___JmGh_:disabled {
|
|
4497
|
+
cursor: pointer;
|
|
4498
|
+
}
|
|
3694
4499
|
|
|
3695
4500
|
/*# sourceMappingURL=index.css.map*/
|