]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/+video-edit/video-add.component.scss
Fix advanced options in upload form
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.component.scss
index 4bb50900957364a95bb3ac6ce5499b5d882fdc64..dd97b79eed685d06b65583ad436733ca97746b83 100644 (file)
@@ -1,79 +1,55 @@
 @import '_variables';
 @import '_mixins';
 
-.upload-video-container {
-  border-radius: 3px;
-  background-color: #F7F7F7;
-  border: 3px solid #EAEAEA;
-  width: 100%;
-  height: 440px;
-  margin-top: 40px;
-  display: flex;
-  justify-content: center;
-  align-items: center;
+$border-width: 3px;
+$border-type: solid;
+$border-color: #EAEAEA;
 
-  .peertube-select-container {
-    @include peertube-select-container(190px);
+/deep/ .root-tabset.video-add-tabset {
+  &.hide-nav > .nav {
+    display: none !important;
   }
 
-  .upload-video {
-    display: flex;
-    flex-direction: column;
-    align-items: center;
-
-    .form-group-channel {
-      margin-bottom: 20px;
-    }
+  & > .nav {
 
-    .icon.icon-upload {
-      @include icon(90px);
-      margin-bottom: 25px;
-      cursor: default;
+    border-bottom: $border-width $border-type $border-color;
+    margin: 0 !important;
 
-      background-image: url('../../../assets/images/video/upload.svg');
+    & > li {
+      margin-bottom: -$border-width;
     }
 
-    .button-file {
-      @include peertube-button-file(190px);
+    a.nav-link {
+      @include disable-default-a-behaviour;
 
-      margin-bottom: 45px;
-    }
-  }
-}
+      height: 40px !important;
+      padding: 0 30px !important;
+      font-size: 15px;
 
-p-progressBar {
-  /deep/ .ui-progressbar {
-    margin-top: 25px !important;
-    margin-bottom: 40px !important;
-    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;
-    }
+      &.active {
+        border: $border-width $border-type $border-color;
+        border-bottom: none;
+        background-color: var(--submenuColor) !important;
 
-    .ui-progressbar-label {
-      text-align: left;
-      padding-left: 18px;
-      margin-top: 0 !important;
-    }
-  }
-
-  &.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;
+        span {
+          border-bottom: 2px solid var(--mainColor);
+          font-weight: $font-bold;
+        }
       }
     }
   }
-}
 
+  .upload-video-container {
+    border: $border-width $border-type $border-color;
+    border-top: none;
 
+    background-color: var(--submenuColor);
+    border-radius: 3px;
+    width: 100%;
+    min-height: 440px;
+    padding-bottom: 20px;
+    display: flex;
+    justify-content: center;
+    align-items: center;
+  }
+}
\ No newline at end of file