aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/account/account-videos/account-videos.component.scss
blob: e7fe662b1ce29376eb270c047bd9bdcb6860585f (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
.video {
  display: flex;
  height: 130px;
  padding-bottom: 20px;

  &:not(:last-child) {
    margin-bottom: 20px;
    border-bottom: 1px solid #C6C6C6;
  }

  my-video-thumbnail {
    margin-right: 10px;
  }

  .video-info {
    flex-grow: 1;

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

    .video-info-date-views {
      font-size: 13px;
    }
  }

  .action-button {
    @include peertube-button-link;

    font-size: 15px;
    font-weight: $font-semibold;
    color: #585858;
    background-color: #E5E5E5;

    &:hover {
      background-color: #EFEFEF;
    }

    &.action-button-delete {
      margin-right: 10px;
    }

    .icon.icon-edit, .icon.icon-delete {
      display: inline-block;
      background-repeat: no-repeat;
      background-size: contain;
      width: 21px;
      height: 21px;
      vertical-align: middle;
      position: relative;
      top: -2px;

      &.icon-edit {
        background-image: url('../../../assets/images/account/edit.svg');
      }

      &.icon-delete {
        background-image: url('../../../assets/images/account/delete.svg');
      }
    }
  }
}