]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/sass/include/_mixins.scss
Add ability to schedule video publication
[github/Chocobozzz/PeerTube.git] / client / src / sass / include / _mixins.scss
index c43bd9803b49cb451ce3d839d5854bf2619a5968..3904751c228c3486d6a8693943ade089dbd172e2 100644 (file)
     position: absolute;
     pointer-events: none;
     border: 5px solid rgba(0, 0, 0, 0);
-    border-top-color: #000000;
+    border-top-color: #000;
     margin-top: -2px;
     z-index: 100;
   }
     cursor: pointer;
     display: inline;
   }
+
+  &[disabled] + label,
+  &[disabled] + label + label{
+    opacity: 0.5;
+    cursor: default;
+  }
 }
 
 
 @mixin avatar ($size) {
   object-fit: cover;
-  border-radius:50%;
+  border-radius: 50%;
   width: $size;
   height: $size;
 }
       flex-direction: column;
       justify-content: center;
 
-      .actor-display-name {
-        font-size: 23px;
-        font-weight: $font-bold;
+      .actor-names {
+        display: flex;
+        align-items: center;
+
+        .actor-display-name {
+          font-size: 23px;
+          font-weight: $font-bold;
+        }
+
+        .actor-name {
+          margin-left: 7px;
+          position: relative;
+          top: 3px;
+          font-size: 14px;
+          color: #777272;
+        }
       }
 
       .actor-followers {
         font-size: 15px;
       }
+
+      .actor-owner {
+        @include disable-default-a-behaviour;
+
+        display: block;
+        font-size: 13px;
+        margin-top: 4px;
+        color: #000;
+
+        span:hover {
+          opacity: 0.8;
+        }
+
+        img {
+          @include avatar(18px);
+
+          margin-left: 7px;
+          position: relative;
+          top: -2px;
+        }
+      }
     }
   }
 
       margin-bottom: 0;
     }
   }
-}
\ No newline at end of file
+}
+
+@mixin create-button ($imageUrl) {
+  @include peertube-button-link;
+  @include orange-button;
+
+  .icon.icon-add {
+    @include icon(22px);
+
+    margin-right: 3px;
+    background-image: url($imageUrl);
+  }
+}