Skip to content

Commit f46691c

Browse files
authored
Merge pull request #520 from sankhesh/tube_filter
Tube filter
2 parents 9a7592c + e9bd838 commit f46691c

File tree

19 files changed

+2102
-27
lines changed

19 files changed

+2102
-27
lines changed
Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
.button {
2+
position: absolute;
3+
right: 5px;
4+
top: 5px;
5+
width: 1em;
6+
z-index: 2;
7+
cursor: pointer;
8+
}
9+
10+
.rootController {
11+
display: flex;
12+
flex-direction: column;
13+
position: absolute;
14+
top: 5px;
15+
left: 5px;
16+
right: 5px;
17+
z-index: 1;
18+
}
19+
20+
.control {
21+
display: flex;
22+
flex-direction: row;
23+
flex: 1;
24+
align-items: center;
25+
}
26+
27+
.fullScreen {
28+
position: absolute;
29+
width: 100vw;
30+
height: 100vh;
31+
top: 0;
32+
left: 0;
33+
overflow: hidden;
34+
background: black;
35+
margin: 0;
36+
padding: 0;
37+
z-index: -1;
38+
display: flex;
39+
align-items: center;
40+
justify-content: center;
41+
}
42+
43+
.fullParentSize {
44+
position: absolute;
45+
width: 100%;
46+
height: 100%;
47+
top: 0;
48+
left: 0;
49+
overflow: hidden;
50+
}
51+
52+
.bigFileDrop {
53+
position: absolute;
54+
left: 50%;
55+
top: 50%;
56+
transform: translate(-50%, -50%);
57+
background-color: white;
58+
background-image: url('./dropBG.png');
59+
background-repeat: no-repeat;
60+
background-position: center;
61+
background-size: contain;
62+
border-radius: 10px;
63+
width: 50px;
64+
padding: calc(50vh - 2em) calc(50vw - 25px - 2em);
65+
cursor: pointer;
66+
}
67+
68+
.selector {
69+
background: transparent;
70+
border: none;
71+
margin: 5px;
72+
z-index: 1;
73+
max-width: 100px;
74+
min-width: 100px;
75+
}
76+
77+
label.selector {
78+
font-size: 12px;
79+
text-overflow: ellipsis;
80+
overflow: hidden;
81+
}
82+
83+
select:focus {
84+
outline: none;
85+
border: none;
86+
}
87+
88+
.progress {
89+
flex: none;
90+
font-size: 50px;
91+
color: white;
92+
z-index: 1;
93+
background: rgba(128,128,128,.5);
94+
padding: 20px;
95+
border-radius: 10px;
96+
user-select: none;
97+
}
98+
99+
.dark {
100+
composes: selector;
101+
color: white;
102+
}
103+
104+
.dark option {
105+
color: black;
106+
}
107+
108+
.light {
109+
composes: selector;
110+
color: black;
111+
}
112+
113+
.light option {
114+
color: white;
115+
}
59.9 KB
Loading
Lines changed: 73 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)