]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/buttons/action-dropdown.component.scss
Add user moderation in the account page
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / buttons / action-dropdown.component.scss
CommitLineData
eacb25c4
C
1@import '_variables';
2@import '_mixins';
3
4.action-button {
5 @include peertube-button;
6 @include grey-button;
7
141b177d
C
8 display: inline-block;
9 padding: 0 10px;
10
11 &::after {
12 display: none;
13 }
14
eacb25c4
C
15 &:hover, &:active, &:focus {
16 background-color: $grey-color;
17 }
18
eacb25c4
C
19 .icon-action {
20 @include icon(21px);
21
22 background-image: url('../../../assets/images/video/more.svg');
23 top: -1px;
24 }
79bd2632
C
25
26 &.small {
27 font-size: 14px;
28 height: 20px;
29 line-height: 20px;
30 }
141b177d
C
31}
32
33.dropdown-menu {
34 .dropdown-item {
35 cursor: pointer;
36 color: #000 !important;
37 }
eacb25c4 38}