-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathablePlayerCustomizations.css
More file actions
97 lines (97 loc) · 2.77 KB
/
ablePlayerCustomizations.css
File metadata and controls
97 lines (97 loc) · 2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
:root {
--focus-color: #097efb;
--focus-color-dark-bg: #3b99fc;
}
@media (prefers-color-scheme: dark) {
:root {
--focus-color: #3b99fc;
--focus-color-dark-bg: #097efb;
}
}
.enable-media-player {
position: relative;
z-index: 0;
}
.enable-media-player .able-seekbar-head {
top: -0.3em;
}
.enable-media-player .able-transcript-container span {
display: inline;
}
.enable-media-player .able-duration {
background: #000;
}
.enable__is-dark-mode .enable-media-player .able-highlight {
background: #880000;
}
.enable-media-player .able-clipped {
color: #ededed;
}
.enable-media-player .able-offscreen {
color: white;
}
.enable-media-player .able-wrapper {
max-width: initial !important;
}
.enable-media-player .able-descriptions {
display: none !important;
border: solid 1px red;
}
.enable-media-player .able-status-bar {
height: 2.4em;
min-height: 2.4em;
}
.enable-media-player * {
box-sizing: content-box;
}
.enable-media-player .able-wrapper:not(.is-fullscreen) .able.able-transcript-visible + .able-transcript-area {
max-width: 100% !important;
left: auto !important;
top: auto !important;
position: relative !important;
margin: 0 auto;
}
.enable-media-player .able-wrapper:not(.is-fullscreen) .able.able-transcript-visible + .able-transcript-area .able-alert {
display: none !important;
}
@media only screen and (min-width: 720px) {
.enable-media-player .able-wrapper:not(.is-fullscreen) .able.able-transcript-visible {
width: calc(50% - 20px);
display: inline-block;
margin-right: 20px;
}
.enable-media-player .able-wrapper:not(.is-fullscreen) .able.able-transcript-visible + .able-transcript-area {
width: calc(50% - 2px) !important;
max-width: calc(50% - 2px) !important;
display: inline-block;
vertical-align: top;
margin-top: 1em;
}
}
.enable-media-player .able-media-container iframe {
width: 100%;
}
.enable-media-player .able-media-container iframe:focus {
outline: solid 2px var(--focus-color) !important;
outline-offset: -2px;
}
.enable-media-player .able-media-container iframe:focus:not(:focus-visible) {
outline: solid 2px var(--focus-color) !important;
outline-offset: -2px;
}
.enable-media-player .able-media-container iframe:focus-visible {
outline: solid 2px var(--focus-color) !important;
outline-offset: -2px;
}
.enable__is-dark-mode .enable-media-player .able-transcript {
background: #121212;
}
.enable__is-dark-mode .enable-media-player .able-transcript div.able-transcript-desc {
background: #5E5151;
}
.enable__is-dark-mode .enable-media-player .able-transcript span:hover,
.enable__is-dark-mode .enable-media-player .able-transcript span:active,
.enable__is-dark-mode .enable-media-player .able-transcript span:focus {
background: #4C5E28;
}
/*# sourceMappingURL=ablePlayerCustomizations.css.map */