aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/buttons/action-dropdown.component.scss
blob: 8e5bb266fa852fa7073c7347681fcc637bc360a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
@use '_variables' as *;
@use '_mixins' as *;

.dropdown-divider:last-child {
  display: none;
}

.action-button {
  @include peertube-button;

  display: inline-block;

  &.button-styled {

    &.grey {
      @include grey-button;
    }

    &.orange {
      @include orange-button;
    }

    &:hover,
    &:active,
    &:focus {
      background-color: $grey-background-color;
    }
  }

  &::after {
    display: none;
  }

  .more-icon {
    width: 21px;

    ::ng-deep {
      @include apply-svg-color(pvar(--actionButtonColor));
    }
  }

  &.small {
    font-size: 14px;
    padding: 0 10px;
  }
}

.dropdown-toggle::after {
  position: relative;
  top: 1px;
}

.dropdown-menu {
  max-width: 75vw;

  .dropdown-header {
    padding: 0.2rem 1rem;
  }

  .dropdown-item {
    display: flex;
    cursor: pointer;

    &.with-icon {
      @include dropdown-with-icon-item;
    }

    a,
    span {
      display: block;
      width: 100%;
    }
  }
}

.item-label {
  display: flex;
  flex-direction: column;
  min-width: 1px;

  > * {
    @include ellipsis;
  }
}