Add ability to ban/unban users
[oweals/peertube.git] / client / src / app / shared / buttons / action-dropdown.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 .action-button {
5   @include peertube-button;
6   @include grey-button;
7
8   display: inline-block;
9   padding: 0 10px;
10
11   &::after {
12     display: none;
13   }
14
15   &:hover, &:active, &:focus {
16     background-color: $grey-color;
17   }
18
19   .icon-action {
20     @include icon(21px);
21
22     background-image: url('../../../assets/images/video/more.svg');
23     top: -1px;
24   }
25 }
26
27 .dropdown-menu {
28   .dropdown-item {
29     cursor: pointer;
30     color: #000 !important;
31   }
32 }