soiz1 commited on
Commit
03c1192
·
verified ·
1 Parent(s): d28ce7f

Create style.css

Browse files
src/addons/addons/save-to-google/style.css ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .mediaRecorderPopup {
2
+ box-sizing: border-box;
3
+ width: 700px;
4
+ max-height: min(800px, 80vh);
5
+ max-width: 85%;
6
+ margin-top: 12vh;
7
+ overflow-y: auto;
8
+ margin-left: auto;
9
+ margin-right: auto;
10
+ }
11
+
12
+ .mediaRecorderPopupContent {
13
+ padding: 1.5rem 2.25rem;
14
+ }
15
+
16
+ .mediaRecorderPopup p {
17
+ font-size: 1rem;
18
+ margin: 0.5rem auto;
19
+ }
20
+
21
+ .mediaRecorderPopup p :last-child {
22
+ margin-left: 1rem;
23
+ }
24
+
25
+ .mediaRecorderPopup[dir="rtl"] p :last-child {
26
+ margin-left: 0;
27
+ margin-right: 1rem;
28
+ }
29
+
30
+ p.mediaRecorderPopupOption {
31
+ display: flex;
32
+ align-items: center;
33
+ }
34
+
35
+ .mediaRecorderPopupOption input[type="checkbox"] {
36
+ height: 1.5rem;
37
+ }
38
+
39
+ #recordOptionSecondsInput,
40
+ #recordOptionDelayInput {
41
+ width: 6rem;
42
+ }
43
+
44
+ .mediaRecorderPopupButtons {
45
+ margin-top: 1.5rem;
46
+ }
47
+
48
+ .mediaRecorderPopupButtons button {
49
+ margin-left: 0.5rem;
50
+ }
51
+
52
+ /* TW: Fixes cancel button in dark mode */
53
+ .mediaRecorderPopupButtons button:nth-of-type(1) {
54
+ color: black;
55
+ }