X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-edit%2Fvideo-add.component.scss;h=0c74552d3883bd7afc2940623e9daacfae0ca42e;hb=81ebea48bfba2d81e62dd7a0f01a0cadf41d2607;hp=dfdf7ff73d25029125d128d96155939da9bb84af;hpb=c182778e26b8478fae9d7dd0bf0687baf7b72fd1;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/videos/+video-edit/video-add.component.scss b/client/src/app/videos/+video-edit/video-add.component.scss index dfdf7ff73..0c74552d3 100644 --- a/client/src/app/videos/+video-edit/video-add.component.scss +++ b/client/src/app/videos/+video-edit/video-add.component.scss @@ -1,83 +1,91 @@ +@import '_variables'; +@import '_mixins'; + .upload-video-container { border-radius: 3px; background-color: #F7F7F7; border: 3px solid #EAEAEA; width: 100%; height: 440px; - text-align: center; margin-top: 40px; display: flex; justify-content: center; align-items: center; + .peertube-select-container { + @include peertube-select-container(190px); + } + .upload-video { display: flex; flex-direction: column; align-items: center; + .form-group-channel { + margin-bottom: 20px; + } + .icon.icon-upload { @include icon(90px); margin-bottom: 25px; + cursor: default; background-image: url('../../../assets/images/video/upload.svg'); } .button-file { - position: relative; - overflow: hidden; - display: inline-block; - margin-bottom: 70px; - - @include peertube-button; - @include orange-button; - - input[type=file] { - position: absolute; - top: 0; - right: 0; - min-width: 100%; - min-height: 100%; - font-size: 100px; - text-align: right; - filter: alpha(opacity=0); - opacity: 0; - outline: none; - background: white; - cursor: inherit; - display: block; - } - } - - select { - @include peertube-select(auto); + @include peertube-button-file(190px); - display: inline-block; - font-size: 15px + margin-bottom: 45px; } } } -p-progressBar { - margin-top: 50px; +.upload-progress-cancel { + display: flex; + margin-top: 25px; margin-bottom: 40px; - /deep/ .ui-progressbar { - font-size: 15px !important; - color: #fff !important; - height: 30px !important; - line-height: 30px !important; - border-radius: 3px !important; - background-color: rgba(11, 204, 41, 0.16) !important; + p-progressBar { + flex-grow: 1; + + /deep/ .ui-progressbar { + font-size: 15px !important; + color: #fff !important; + height: 30px !important; + line-height: 30px !important; + border-radius: 3px !important; + background-color: rgba(11, 204, 41, 0.16) !important; - .ui-progressbar-value { - background-color: #0BCC29 !important; + .ui-progressbar-value { + background-color: #0BCC29 !important; + } + + .ui-progressbar-label { + text-align: left; + padding-left: 18px; + margin-top: 0 !important; + } } - .ui-progressbar-label { - text-align: left; - padding-left: 18px; + &.processing { + /deep/ .ui-progressbar-label { + // Same color as background to hide "100%" + color: rgba(11, 204, 41, 0.16) !important; + + &::before { + content: 'Processing...'; + color: #fff; + } + } } } -} + input { + @include peertube-button; + @include grey-button; + + margin-left: 10px; + } +}