aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/video-edit/video-edit.component.scss
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-04-10 21:15:28 +0200
committerChocobozzz <florian.bigard@gmail.com>2017-04-10 21:16:36 +0200
commitd8e689b864749648d03cf4391fd4a475126f01cd (patch)
tree299713e3c056873ba6fff5247b8f49a542f0bf45 /client/src/app/videos/video-edit/video-edit.component.scss
parenta184c71b526000f60f00649d260638723d426e6a (diff)
downloadPeerTube-d8e689b864749648d03cf4391fd4a475126f01cd.tar.gz
PeerTube-d8e689b864749648d03cf4391fd4a475126f01cd.tar.zst
PeerTube-d8e689b864749648d03cf4391fd4a475126f01cd.zip
Client: add basic support for updating a video
Diffstat (limited to 'client/src/app/videos/video-edit/video-edit.component.scss')
-rw-r--r--client/src/app/videos/video-edit/video-edit.component.scss57
1 files changed, 57 insertions, 0 deletions
diff --git a/client/src/app/videos/video-edit/video-edit.component.scss b/client/src/app/videos/video-edit/video-edit.component.scss
new file mode 100644
index 000000000..11ee3297e
--- /dev/null
+++ b/client/src/app/videos/video-edit/video-edit.component.scss
@@ -0,0 +1,57 @@
1.btn-file {
2 position: relative;
3 overflow: hidden;
4 display: block;
5}
6
7.btn-file input[type=file] {
8 position: absolute;
9 top: 0;
10 right: 0;
11 min-width: 100%;
12 min-height: 100%;
13 font-size: 100px;
14 text-align: right;
15 filter: alpha(opacity=0);
16 opacity: 0;
17 outline: none;
18 background: white;
19 cursor: inherit;
20 display: block;
21}
22
23.name_file {
24 display: inline-block;
25 margin-left: 10px;
26}
27
28.form-group {
29 margin-bottom: 10px;
30}
31
32div.tags {
33 height: 40px;
34 font-size: 20px;
35 margin-top: 20px;
36
37 .tag {
38 margin-right: 10px;
39
40 .remove {
41 cursor: pointer;
42 }
43 }
44}
45
46div.file-to-upload {
47 height: 40px;
48
49 .glyphicon-remove {
50 cursor: pointer;
51 }
52}
53
54.little-information {
55 font-size: 0.8em;
56 font-style: italic;
57}