aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.scss
blob: d2c8804e3ad6f4bd461979e71ab613af27b6ab01 (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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
@import '_variables';
@import '_mixins';

$optional-rows-checkbox-width: 34px;
$timestamp-width: 50px;
$timestamp-margin-right: 10px;

.header,
.dropdown-item,
.input-container {
  padding: 8px 24px;
}

.dropdown-item:active {
  color: inherit;
}

.header {
  min-width: 240px;
  margin-bottom: 10px;
  border-bottom: 1px solid $separator-border-color;

  .first-row {
    display: flex;
    align-items: center;

    .title {
      font-size: 18px;
      flex-grow: 1;
    }
  }
}

.playlists {
  max-height: 180px;
  overflow-y: auto;
}

.playlist {
  padding: 8px 10px 8px 24px;

  &.has-optional-row:hover {
    background-color: inherit;
  }
}

.primary-row,
.optional-rows > div {
  display: flex;

  my-peertube-checkbox {
    margin-right: 10px;
    align-self: center;
  }

  .display-name {
    display: flex;
    align-items: flex-end;
    flex-grow: 1;
    margin: 0;
    font-weight: $font-regular;
    cursor: pointer;
  }

  .optional-row-icon {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;

    my-global-icon {
      @include apply-svg-color(#333);

      width: 19px;
      height: 19px;
      margin-right: 0;
    }
  }

  my-timestamp-input {
    margin-right: $timestamp-margin-right;

    ::ng-deep .ui-inputtext {
      padding: 0;
      width: $timestamp-width;
    }
  }
}

.optional-rows {
  > div {
    padding: 8px 5px 5px 10px;
  }

  my-peertube-checkbox {
    display: block;
    width: $optional-rows-checkbox-width;
    margin-right: 0 !important;
  }

  .labels {
    margin-left: $optional-rows-checkbox-width;
    font-size: 13px;
    color: pvar(--greyForegroundColor);
    padding-top: 5px;
    padding-bottom: 0;

    div {
      margin-right: $timestamp-margin-right;
      width: $timestamp-width;
    }
  }
}

.new-playlist-button,
.new-playlist-block {
  padding-top: 10px;
  border-top: 1px solid $separator-border-color;
}

.new-playlist-button  {
  cursor: pointer;

  my-global-icon {
    @include apply-svg-color(#333);

    position: relative;
    left: -1px;
    top: -1px;
    margin-right: 4px;
    width: 21px;
    height: 21px;
  }
}

input[type=text] {
  @include peertube-input-text(200px);

  display: block;
}

input[type=submit] {
  @include peertube-button;
  @include orange-button;
}