aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.scss
blob: de2f1032b1b3061bc23b6bd9fe8dcb98529e9130 (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
@use '_variables' as *;
@use '_mixins' as *;

.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: 0;

  > .primary-row {
    padding: 8px 10px 8px 24px;
  }

  > .optional-rows {
    @include padding-left(24px);
  }

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

.primary-row {
  display: flex;

  my-peertube-checkbox {
    @include 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);
      @include margin-right(0);

      width: 19px;
      height: 19px;
    }
  }
}

.optional-rows {
  display: grid;
  grid-template-columns: 35px 80px 80px;
  row-gap: 3px;
  column-gap: 10px;
  align-items: center;

  my-peertube-checkbox {
    @include margin-left(auto);
  }

  .header-label {
    font-size: 13px;
    color: pvar(--greyForegroundColor);
    padding-left: 2px;

    &:nth-child(1) {
      grid-column: 2;
    }

    &:nth-child(2) {
      grid-column: 3;
    }
  }
}

.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);
    @include margin-right(4px);

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

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

  display: block;
}

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