]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/buttons/action-dropdown.component.scss
Merge branch 'feature/correctly-send-activities' into develop
[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 26 &:hover, &:active, &:focus {
457bb213 27 background-color: $grey-background-color;
eacb25c4
C
28 }
29
457bb213
C
30 .more-icon {
31 width: 21px;
eacb25c4 32 }
79bd2632
C
33
34 &.small {
35 font-size: 14px;
36 height: 20px;
37 line-height: 20px;
38 }
141b177d
C
39}
40
791645e6
C
41.dropdown-toggle::after {
42 position: relative;
43 top: 1px;
44}
45
141b177d
C
46.dropdown-menu {
47 .dropdown-item {
48 cursor: pointer;
49 color: #000 !important;
af5767ff
C
50
51 a, span {
52 display: block;
53 width: 100%;
54 }
141b177d 55 }
f97c91f7 56}