]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+my-account/my-account-video-channels/my-account-video-channel-edit.component.scss
Fix rowsPerPage change, add filter clear button, update video-abuse-list search query...
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-video-channels / my-account-video-channel-edit.component.scss
index 6fbb8ae8bd9035abf04fd0bf69621a51858f9af2..8f8af655cc7804fb6378739a9c1ec2acd936c933 100644 (file)
@@ -1,14 +1,45 @@
 @import '_variables';
 @import '_mixins';
 
-.form-sub-title {
-  margin-bottom: 20px;
+label {
+  font-weight: $font-regular;
+  font-size: 100%;
 }
 
-input[type=text] {
-  @include peertube-input-text(340px);
+.video-channel-title {
+  @include settings-big-title;
+}
 
+my-actor-avatar-info {
   display: block;
+  margin-bottom: 20px;
+}
+
+.input-group {
+  @include peertube-input-group(fit-content);
+}
+
+.input-group-append {
+  height: 30px;
+}
+
+input {
+  &[type=text] {
+    @include peertube-input-text(340px);
+
+    display: block;
+
+    &#name {
+      width: auto;
+      flex-grow: 1;
+    }
+  }
+
+  &[type=submit] {
+    @include peertube-button;
+    @include orange-button;
+    margin-left: auto;
+  }
 }
 
 textarea {
@@ -21,7 +52,16 @@ textarea {
   @include peertube-select-container(340px);
 }
 
-input[type=submit] {
-  @include peertube-button;
-  @include orange-button;
-}
\ No newline at end of file
+.breadcrumb {
+  @include breadcrumb;
+}
+
+@media screen and (max-width: $small-view) {
+  input[type=text]#name {
+    width: auto !important;
+  }
+
+  label[for=name] + div, textarea {
+    width: 100%;
+  }
+}