]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/shared/shared-moderation/moderation.scss
Add bulk action on following/followers
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-moderation / moderation.scss
index 260346dc5a97e9c9359a117e0309819ab54dcaa6..eaf5a825026b378e05f27b84e414eb0f4de92ad4 100644 (file)
@@ -1,15 +1,22 @@
-@import 'variables';
-@import 'mixins';
-@import 'miniature';
+@use 'sass:math';
+@use '_mixins' as *;
+@use '_variables' as *;
+@use '_miniature' as *;
 
 .moderation-expanded {
   font-size: 90%;
+  display: flex;
+  flex-wrap: wrap;
+  justify-content: space-between;
 
   .moderation-expanded-label {
+    @include margin-right(5px);
+
     font-weight: $font-semibold;
     display: inline-block;
     vertical-align: top;
-    text-align: right;
+    text-align: end;
+    min-width: 100px;
   }
 
   .moderation-expanded-text {
     word-wrap: break-word;
 
     ::ng-deep p:last-child {
-      margin-bottom: 0px !important;
+      margin-bottom: 0 !important;
     }
   }
-}
 
-.input-group {
-  @include peertube-input-group(300px);
+  .right {
+    width: 50%;
+    max-width: 500px;
+  }
 
-  .dropdown-toggle::after {
-    margin-left: 0;
+  @media screen and (max-width: $primeng-breakpoint) {
+    .right {
+      width: 100%;
+    }
   }
 }
 
   @include chip;
 }
 
-.caption {
-  justify-content: flex-end;
+my-action-dropdown.show {
+  ::ng-deep .dropdown-root {
+    display: block !important;
+  }
+}
+
+.table-comment-link,
+.table-account-link {
+  @include disable-outline;
+
+  color: var(--mainForegroundColor);
 
-  input {
-    @include peertube-input-text(250px);
-    flex-grow: 1;
+  ::ng-deep p:last-child {
+    margin: 0;
   }
 }
 
-my-action-dropdown.show {
-  ::ng-deep .dropdown-root {
-    display: block !important;
+.table-account-link {
+  display: flex;
+  flex-direction: column;
+}
+
+my-abuse-details {
+  width: 100%;
+}
+
+@media screen and (max-width: $primeng-breakpoint) {
+  .abuse-messages {
+    justify-content: flex-start !important;
   }
 }