aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.scss
blob: 09402fda7e270bf20bcd0f1762bb158c904460f4 (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
@import 'mixins';
@import 'miniature';

.video-abuse-video-link {
  @include disable-outline;
  position: relative;
  top: 3px;
}

.video-abuse-video {
  display: inline-flex;

  .video-abuse-video-image {
    @include miniature-thumbnail;

    $image-height: 45px;

    height: $image-height;
    width: #{(16/9) * $image-height};
    margin-right: 0.5rem;
    border-radius: 2px;
    border: none;
    background: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;

    img {
      height: 100%;
      width: 100%;
      border-radius: 2px;
    }

    span {
      color: var(--inputPlaceholderColor);
    }
  }

  .video-abuse-video-text {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    font-size: 90%;
    color: var(--mainForegroundColor);
    line-height: 1rem;

    div .glyphicon {
      font-size: 80%;
      color: gray;
      margin-left: 0.1rem;
    }

    div + div {
      font-size: 80%;
    }
  }
}