]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/shared/video/abstract-video-list.scss
Fix npm run dev script
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video / abstract-video-list.scss
index 0f0ff20f0bb3ccb97d80ec349cf96f4455bde15c..3c7a4b1fcb9492726a9863097966efc0a13bd94b 100644 (file)
@@ -1,31 +1,52 @@
-.videos {
-  text-align: center;
+@import '_mixins';
+@import '_miniature';
 
-  my-video-miniature {
-    text-align: left;
-  }
-}
+.videos-header {
+  display: flex;
+  justify-content: space-between;
+  height: 80px;
+  align-items: baseline;
 
-@media screen and (max-width: 400px) and (min-resolution: 1.5dppx) {
-  .videos {
-    text-align: center;
+  .title-page.title-page-single {
+    display: flex;
 
-    /deep/ .video-miniature {
-      padding-right: 0;
-      height: 215px;
-      width: 100%;
+    my-feed {
+      display: inline-block;
+      top: 1px;
+      margin-left: 5px;
+      width: max-content;
+    }
+  }
 
-      .video-miniature-information {
-        width: 100%;
-      }
+  .action-block {
+    a button {
+      @include peertube-button;
+      @include grey-button;
+      @include button-with-icon(18px, 3px, -1px);
+    }
+  }
 
-      /deep/ .video-thumbnail {
-        width: 100%;
+  .moderation-block {
+    display: flex;
+    flex-grow: 1;
+    justify-content: flex-end;
+    align-items: center;
+  }
+}
 
-        img {
-          width: 100%;
-        }
-      }
-    }
+.date-title {
+  font-size: 16px;
+  font-weight: $font-semibold;
+  margin-bottom: 20px;
+  margin-top: -10px;
+  padding-top: 20px;
+
+  &:not(:first-child) {
+    border-top: 1px solid $separator-border-color;
   }
 }
+
+.margin-content {
+  @include adapt-margin-content-width;
+}
+