aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/shared
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-12-07 16:32:06 +0100
committerChocobozzz <florian.bigard@gmail.com>2017-12-07 16:32:06 +0100
commit27e1a06c331278e5d37bc5172ee7e4fc968e4b5e (patch)
treeb00296c59e573a80dc8f826dce6fe857eea123c5 /client/src/app/videos/+video-edit/shared
parent4cc66133abf1e37873316999b660c93ab92eb4a0 (diff)
downloadPeerTube-27e1a06c331278e5d37bc5172ee7e4fc968e4b5e.tar.gz
PeerTube-27e1a06c331278e5d37bc5172ee7e4fc968e4b5e.tar.zst
PeerTube-27e1a06c331278e5d37bc5172ee7e4fc968e4b5e.zip
First step upload with new design
Diffstat (limited to 'client/src/app/videos/+video-edit/shared')
-rw-r--r--client/src/app/videos/+video-edit/shared/video-edit.component.html1
-rw-r--r--client/src/app/videos/+video-edit/shared/video-edit.component.scss35
2 files changed, 1 insertions, 35 deletions
diff --git a/client/src/app/videos/+video-edit/shared/video-edit.component.html b/client/src/app/videos/+video-edit/shared/video-edit.component.html
index a6b753166..8c071ce12 100644
--- a/client/src/app/videos/+video-edit/shared/video-edit.component.html
+++ b/client/src/app/videos/+video-edit/shared/video-edit.component.html
@@ -67,6 +67,7 @@
67 <div class="form-group"> 67 <div class="form-group">
68 <label for="privacy">Privacy</label> 68 <label for="privacy">Privacy</label>
69 <select id="privacy" formControlName="privacy"> 69 <select id="privacy" formControlName="privacy">
70
70 <option></option> 71 <option></option>
71 <option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option> 72 <option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option>
72 </select> 73 </select>
diff --git a/client/src/app/videos/+video-edit/shared/video-edit.component.scss b/client/src/app/videos/+video-edit/shared/video-edit.component.scss
index 0af48fabe..2d0bfc36e 100644
--- a/client/src/app/videos/+video-edit/shared/video-edit.component.scss
+++ b/client/src/app/videos/+video-edit/shared/video-edit.component.scss
@@ -115,42 +115,7 @@
115 } 115 }
116} 116}
117 117
118
119.btn-file {
120 position: relative;
121 overflow: hidden;
122 display: block;
123}
124
125.btn-file input[type=file] {
126 position: absolute;
127 top: 0;
128 right: 0;
129 min-width: 100%;
130 min-height: 100%;
131 font-size: 100px;
132 text-align: right;
133 filter: alpha(opacity=0);
134 opacity: 0;
135 outline: none;
136 background: white;
137 cursor: inherit;
138 display: block;
139}
140
141div.file-to-upload {
142 height: 40px;
143
144 .glyphicon-remove {
145 cursor: pointer;
146 }
147}
148
149.little-information { 118.little-information {
150 font-size: 0.8em; 119 font-size: 0.8em;
151 font-style: italic; 120 font-style: italic;
152} 121}
153
154.label-tags {
155 margin-bottom: 0;
156}