PeerTube/client/src/app/shared/shared-video-playlist/video-add-to-playlist.compo...

148 lines
2.1 KiB
SCSS
Raw Normal View History

2021-05-27 18:25:00 +02:00
@use '_variables' as *;
@use '_mixins' as *;
2019-03-07 17:06:00 +01:00
.header,
.dropdown-item,
.input-container {
padding: 8px 24px;
}
2019-03-07 17:06:00 +01:00
2020-08-17 15:55:26 +02:00
.dropdown-item:active {
color: inherit;
}
.header {
min-width: 240px;
2019-03-07 17:06:00 +01:00
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;
}
2019-03-07 17:06:00 +01:00
.playlist {
2020-11-20 14:32:57 +01:00
padding: 0;
> .primary-row {
padding: 8px 10px 8px 24px;
}
> .optional-rows {
2021-06-07 17:38:31 +02:00
@include padding-left(24px);
2020-11-20 14:32:57 +01:00
}
&.has-optional-row:hover {
background-color: inherit;
}
}
2022-06-15 14:59:25 +02:00
.primary-row {
display: flex;
2019-03-07 17:06:00 +01:00
my-peertube-checkbox {
2021-06-07 17:38:31 +02:00
@include margin-right(10px);
2022-06-15 14:59:25 +02:00
align-self: center;
2019-03-07 17:06:00 +01:00
}
.display-name {
display: flex;
align-items: flex-end;
flex-grow: 1;
margin: 0;
font-weight: $font-regular;
cursor: pointer;
}
.optional-row-icon {
2023-05-24 15:27:15 +02:00
@include margin-left(5px);
display: flex;
align-items: center;
font-size: 14px;
cursor: pointer;
my-global-icon {
@include apply-svg-color(#333);
2021-06-07 17:38:31 +02:00
@include margin-right(0);
width: 19px;
height: 19px;
}
2023-05-24 15:27:15 +02:00
&:hover {
opacity: 0.8;
}
}
}
.optional-rows {
2022-06-15 14:59:25 +02:00
display: grid;
grid-template-columns: 35px 80px 80px;
row-gap: 3px;
column-gap: 10px;
align-items: center;
my-peertube-checkbox {
2022-06-15 14:59:25 +02:00
@include margin-left(auto);
}
2022-06-15 14:59:25 +02:00
.header-label {
font-size: 13px;
color: pvar(--greyForegroundColor);
2022-06-15 14:59:25 +02:00
padding-left: 2px;
2019-03-07 17:06:00 +01:00
2022-06-15 14:59:25 +02:00
&:nth-child(1) {
grid-column: 2;
}
2021-06-07 17:38:31 +02:00
2022-06-15 14:59:25 +02:00
&:nth-child(2) {
grid-column: 3;
2019-03-07 17:06:00 +01:00
}
}
}
.new-playlist-button,
.new-playlist-block {
padding-top: 10px;
border-top: 1px solid $separator-border-color;
}
2021-04-28 16:41:07 +02:00
.new-playlist-button {
2019-03-07 17:06:00 +01:00
cursor: pointer;
my-global-icon {
@include apply-svg-color(#333);
2021-06-07 17:38:31 +02:00
@include margin-right(4px);
2019-03-07 17:06:00 +01:00
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;
}