mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-06-09 22:04:35 +00:00
45 lines
769 B
SCSS
45 lines
769 B
SCSS
.media-list {
|
|
|
|
}
|
|
|
|
.media-box {
|
|
|
|
}
|
|
|
|
.cdk-drag-preview {
|
|
box-sizing: border-box;
|
|
border-radius: 4px;
|
|
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
|
|
0 8px 10px 1px rgba(0, 0, 0, 0.14),
|
|
0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.cdk-drag-placeholder {
|
|
opacity: 0;
|
|
}
|
|
|
|
.cdk-drag-animating {
|
|
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
.media-box:last-child {
|
|
border: none;
|
|
}
|
|
|
|
.media-list.cdk-drop-list-dragging .media-box:not(.cdk-drag-placeholder) {
|
|
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
.remove-item-button {
|
|
right: 10px;
|
|
position: absolute;
|
|
top: 4px;
|
|
}
|
|
|
|
.playlist-item-text {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
max-width: 70%;
|
|
margin: 0 auto;
|
|
} |