]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/sass/_mixins.scss
Fix dropdown menu in video watch
[github/Chocobozzz/PeerTube.git] / client / src / sass / _mixins.scss
index 6a18f7a76d31d77f4552f25fed97b0d32eb8d28d..ddc9c6766695802df1cbc082840ba29a06d13017 100644 (file)
   }
 }
 
+@mixin orange-button {
+  color: #fff;
+  background-color: $orange-color;
+
+  &:hover {
+    background-color: $orange-hoover-color;
+  }
+}
+
+@mixin grey-button {
+  background-color: $grey-color;
+  color: #585858;
+
+  &:hover {
+    background-color: $grey-hoover-color;
+  }
+}
+
 @mixin peertube-button {
   border: none;
-  color: #fff;
   font-weight: $font-semibold;
   font-size: 15px;
   height: $button-height;
   line-height: $button-height;
   border-radius: 3px;
   text-align: center;
-  background-color: $orange-color;
   padding: 0 17px 0 13px;
   cursor: pointer;
-
-  &:hover {
-    background-color: $orange-hoover-color;
-  }
 }
 
 @mixin peertube-button-link {