forked from FugiTech/google-meet-grid-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.css
70 lines (70 loc) · 1.25 KB
/
extension.css
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
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
}
body {
font-family: 'Roboto', 'LocalRoboto', 'Helvetica Neue', 'Helvetica', 'sans-serif';
background: #eeeeee;
padding: 2px 0 3px 0;
width: min-content;
overflow: hidden;
font-size: 12px;
}
body > * {
white-space: nowrap;
display: none;
padding: 6px 20px;
background: #ffffff;
}
body .spacer {
display: block;
padding: 0;
margin-bottom: 4px;
}
body.not-running #not-running {
display: block;
font-style: italic;
}
body.no-meeting #no-meeting {
display: block;
font-style: italic;
}
body.in-meeting #enabled,
body.in-meeting #show-only-video,
body.in-meeting #highlight-speaker,
body.in-meeting #include-own-video,
body.in-meeting #auto-enable,
body.in-meeting #screen-capture-mode,
body.in-meeting #screen-capture-mode-desc,
body.in-meeting #advanced-settings {
display: flex;
align-items: center;
}
#screen-capture-mode {
padding-bottom: 0;
}
#screen-capture-mode-desc {
padding-top: 3px;
padding-left: 45px;
}
body #source-code {
display: block;
}
#source-code small {
border-right: 0.5px solid #cccccc;
padding-right: 5px;
margin-right: 2px;
}
label {
color: #999999;
}
label:not(.disabled) {
cursor: pointer;
color: #000000;
}
input {
margin-right: 8px;
}