]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/buttons/action-dropdown.component.scss
Add separators in user moderation dropdown
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / buttons / action-dropdown.component.scss
CommitLineData
eacb25c4
C
1@import '_variables';
2@import '_mixins';
3
f97c91f7
C
4.dropdown-divider:last-child {
5 display: none;
6}
7
eacb25c4
C
8.action-button {
9 @include peertube-button;
791645e6
C
10
11 &.grey {
12 @include grey-button;
13 }
14
15 &.orange {
16 @include orange-button;
17 }
eacb25c4 18
141b177d
C
19 display: inline-block;
20 padding: 0 10px;
21
22 &::after {
23 display: none;
24 }
25
eacb25c4
C
26 &:hover, &:active, &:focus {
27 background-color: $grey-color;
28 }
29
eacb25c4
C
30 .icon-action {
31 @include icon(21px);
32
33 background-image: url('../../../assets/images/video/more.svg');
34 top: -1px;
35 }
79bd2632
C
36
37 &.small {
38 font-size: 14px;
39 height: 20px;
40 line-height: 20px;
41 }
141b177d
C
42}
43
791645e6
C
44.dropdown-toggle::after {
45 position: relative;
46 top: 1px;
47}
48
141b177d
C
49.dropdown-menu {
50 .dropdown-item {
51 cursor: pointer;
52 color: #000 !important;
af5767ff
C
53
54 a, span {
55 display: block;
56 width: 100%;
57 }
141b177d 58 }
f97c91f7 59}