aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video-playlist/video-playlist-element-miniature.component.scss
blob: eb869f69a99eb290e38f77a808263627e2463e17 (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@import '_variables';
@import '_mixins';
@import '_miniature';

.video {
  display: flex;
  align-items: center;
  background-color: var(--mainBackgroundColor);
  padding: 10px;
  border-bottom: 1px solid $separator-border-color;

  &:hover {
    background-color: rgba(0, 0, 0, 0.05);

    .more {
      display: block;
    }
  }

  &.playing {
    background-color: rgba(0, 0, 0, 0.02);
  }

  a {
    @include disable-default-a-behaviour;

    min-width: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-grow: 1;

    .position {
      font-weight: $font-semibold;
      margin-right: 10px;
      color: $grey-foreground-color;
      min-width: 20px;

      my-global-icon {
        @include apply-svg-color($grey-foreground-color);

        width: 17px;
        position: relative;
        left: -2px;
      }
    }

    my-video-thumbnail {
      @include thumbnail-size-component(130px, 72px);

      display: flex; // Avoids an issue with line-height that adds space below the element
      margin-right: 10px;
    }

    .video-info {
      display: flex;
      flex-direction: column;
      min-width: 0;

      a {
        color: var(--mainForegroundColor);
        width: fit-content;

        &:hover {
          text-decoration: underline !important;
        }
      }

      .video-info-name {
        font-size: 18px;
        font-weight: $font-semibold;

        @include ellipsis;
      }

      .video-info-account, .video-info-timestamp {
        color: $grey-foreground-color;
      }
    }
  }

  .more {
    justify-self: flex-end;
    margin-left: auto;
    cursor: pointer;
    display: none;

    &.show {
      display: block;
    }

    .icon-more {
      @include apply-svg-color($grey-foreground-color);

      display: flex;

      &::after {
        border: none;
      }
    }

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

    .timestamp-options {
      padding-top: 0;
      padding-left: 35px;
      margin-bottom: 15px;

      > div {
        display: flex;
        align-items: center;
      }

      input {
        @include peertube-button;
        @include orange-button;

        margin-top: 10px;
      }
    }
  }
}