|
6 | 6 | position: absolute; |
7 | 7 | width: 100%; |
8 | 8 | height: 100%; |
9 | | - background-color: var(--background-site); |
| 9 | + background-color: #000; |
10 | 10 | opacity: 0.4; |
11 | 11 | top: 0; |
12 | 12 | left: 0; |
|
18 | 18 |
|
19 | 19 | .controllBar { |
20 | 20 | width: 100%; |
21 | | - display: none; |
| 21 | + height: 100%; |
| 22 | + display: flex; |
22 | 23 | flex-direction: column; |
| 24 | + justify-content: flex-end; |
23 | 25 | --media-control-background: transparent; |
24 | 26 | --media-control-hover-background: transparent; |
| 27 | + background-color: rgba(0,0,0,0.4); |
| 28 | + padding-bottom: 12px; |
25 | 29 |
|
26 | 30 | .timeRange { |
27 | 31 | width: 100%; |
|
79 | 83 | } |
80 | 84 |
|
81 | 85 | media-time-display { |
82 | | - --media-text-color: var(--text-primary); |
| 86 | + --media-text-color: #FFF; |
83 | 87 | z-index: 1; |
84 | 88 | } |
85 | 89 | } |
|
89 | 93 | display: block; |
90 | 94 | } |
91 | 95 |
|
92 | | - .controllBar { |
93 | | - display: flex; |
94 | | - } |
95 | | - } |
96 | | - |
97 | | - .customControls { |
98 | | - position: absolute; |
99 | | - bottom: 0; |
100 | | - left: 0; |
101 | | - right: 0; |
102 | | - background: linear-gradient(transparent, rgba(0,0,0,0.8)); |
103 | | - padding: 15px; |
104 | | - opacity: 0; |
105 | | - transition: opacity 0.3s ease; |
106 | | - display: flex; |
107 | | - flex-direction: column; |
108 | | - |
109 | | - .timeProgress { |
110 | | - width: 100%; |
111 | | - height: 20px; |
112 | | - |
113 | | - position: relative; |
| 96 | + /* .controllBar { |
114 | 97 | display: flex; |
115 | | - align-items: center; |
116 | | - |
117 | | - .progressPassed { |
118 | | - height: 4px; |
119 | | - border-radius: 9px; |
120 | | - background: #CA077C; |
121 | | - } |
122 | | - |
123 | | - .progressFuture { |
124 | | - height: 4px; |
125 | | - border-radius: 9px; |
126 | | - background: rgba(255, 255, 255, 0.25); |
127 | | - } |
128 | | - |
129 | | - .progressHandle { |
130 | | - position: absolute; |
131 | | - width: 20px; |
132 | | - height: 20px; |
133 | | - border-radius: 99px; |
134 | | - background: #CA077C; |
135 | | - } |
136 | | - |
137 | | - } |
| 98 | + } */ |
138 | 99 | } |
139 | | - |
140 | | - &:hover { |
141 | | - .customControls { |
142 | | - opacity: 1; |
143 | | - } |
144 | | - } |
145 | | - |
146 | 100 | } |
147 | 101 |
|
148 | 102 | .playIcon { |
149 | 103 | width: 16px; |
150 | 104 | height: 16px; |
151 | 105 | display: inline-block; |
152 | 106 | margin: 0px 0px; |
153 | | - background-color: var(--text-primary); |
| 107 | + background-color: #FFF; |
154 | 108 | -webkit-mask: url(../../assets/icons/video_controlls/play.svg) no-repeat center; |
155 | 109 | mask: url(../../assets/icons/video_controlls/play.svg) no-repeat center; |
156 | 110 | } |
|
160 | 114 | height: 16px; |
161 | 115 | display: inline-block; |
162 | 116 | margin: 0px 0px; |
163 | | - background-color: var(--text-primary); |
| 117 | + background-color: #FFF; |
164 | 118 | -webkit-mask: url(../../assets/icons/video_controlls/pause.svg) no-repeat center; |
165 | 119 | mask: url(../../assets/icons/video_controlls/pause.svg) no-repeat center; |
166 | 120 | } |
|
170 | 124 | height: 16px; |
171 | 125 | display: inline-block; |
172 | 126 | margin: 0px 0px; |
173 | | - background-color: var(--text-primary); |
| 127 | + background-color: #FFF; |
174 | 128 | -webkit-mask: url(../../assets/icons/video_controlls/mute.svg) no-repeat center; |
175 | 129 | mask: url(../../assets/icons/video_controlls/mute.svg) no-repeat center; |
176 | 130 | } |
|
180 | 134 | height: 16px; |
181 | 135 | display: inline-block; |
182 | 136 | margin: 0px 0px; |
183 | | - background-color: var(--text-primary); |
| 137 | + background-color: #FFF; |
184 | 138 | -webkit-mask: url(../../assets/icons/video_controlls/unmute.svg) no-repeat center; |
185 | 139 | mask: url(../../assets/icons/video_controlls/unmute.svg) no-repeat center; |
186 | 140 | } |
0 commit comments