]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/shared/buttons/action-dropdown.component.scss
Merge branch 'feature/webtorrent-disabling' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / buttons / action-dropdown.component.scss
index cc459b97254d2130f58fbaf3cf1d438d72726b2c..92c4d1d2c075296759f669f74fc5ed1bdec92e77 100644 (file)
@@ -3,19 +3,53 @@
 
 .action-button {
   @include peertube-button;
-  @include grey-button;
 
-  &:hover, &:active, &:focus {
-    background-color: $grey-color;
+  &.grey {
+    @include grey-button;
+  }
+
+  &.orange {
+    @include orange-button;
   }
 
   display: inline-block;
   padding: 0 10px;
 
+  &::after {
+    display: none;
+  }
+
+  &:hover, &:active, &:focus {
+    background-color: $grey-color;
+  }
+
   .icon-action {
     @include icon(21px);
 
     background-image: url('../../../assets/images/video/more.svg');
     top: -1px;
   }
+
+  &.small {
+    font-size: 14px;
+    height: 20px;
+    line-height: 20px;
+  }
+}
+
+.dropdown-toggle::after {
+  position: relative;
+  top: 1px;
+}
+
+.dropdown-menu {
+  .dropdown-item {
+    cursor: pointer;
+    color: #000 !important;
+
+    a, span {
+      display: block;
+      width: 100%;
+    }
+  }
 }
\ No newline at end of file