aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/comment/video-comments.component.scss
blob: af684bdc4dd7a97187ac52e028e748b92ce020d7 (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
@use '_variables';
@use '_mixins';

#highlighted-comment {
  margin-bottom: 25px;
}

.view-replies {
  font-weight: $font-semibold;
  font-size: 15px;
  cursor: pointer;
}

.glyphicon,
.comment-thread-loading {
  @include margin-right(5px);

  display: inline-block;
  font-size: 13px;
}

.title-block {
  .title-page {
    @include margin-right(0);
  }

  my-feed {
    @include margin-left(5px);

    display: inline-block;
    opacity: 0;
    transition: ease-in .2s opacity;
    width: 12px;
    position: relative;
    top: -3px;
  }

  &:hover my-feed {
    opacity: 1;
  }
}

#dropdown-sort-comments {
  font-weight: 600;
  text-transform: uppercase;
  border: 0;
  transform: translateY(-7%);
}

@media screen and (max-width: 600px) {
  .view-replies {
    @include margin-left(46px);
  }
}

@media screen and (max-width: 450px) {
  .view-replies {
    font-size: 14px;
  }
}