344 lines
4.9 KiB
SCSS
Executable File
344 lines
4.9 KiB
SCSS
Executable File
|
|
.list {
|
|
.list-item {
|
|
@include clearfix;
|
|
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
|
|
display: block;
|
|
position: relative;
|
|
padding: 12px 10px;
|
|
margin: 0 -10px -1px -10px;
|
|
cursor: pointer;
|
|
border-radius: 3px;
|
|
border-bottom: 1px solid #FAFAFA;
|
|
border-top: 1px solid #FAFAFA;
|
|
|
|
&.selected {
|
|
background: $yellow !important;
|
|
border-color: darken($yellow,10%);
|
|
|
|
.select-zone {
|
|
&::after {
|
|
background: $dark_grey;
|
|
border-color: $dark_grey;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.playing {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.select-zone,
|
|
.drag-zone {
|
|
display: none;
|
|
}
|
|
|
|
:root .notouch:not(.dragging) &:not(.header):not(.no-click).hover {
|
|
background: lighten($yellow, 10%);
|
|
cursor: pointer;
|
|
}
|
|
|
|
&.header {
|
|
font-size: 10px;
|
|
color: #CCCCCC;
|
|
text-transform: uppercase;
|
|
border-top: 0;
|
|
padding-bottom: 2px;
|
|
}
|
|
|
|
.source {
|
|
color: $mid_grey;
|
|
position: absolute;
|
|
top: 14px;
|
|
right: 12px;
|
|
}
|
|
|
|
&.field {
|
|
padding: 0 !important;
|
|
|
|
& > label {
|
|
display: block;
|
|
position: relative;
|
|
padding: 12px 10px 12px 20px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.track-list {
|
|
.list-item {
|
|
.col {
|
|
&.name {
|
|
width: 40%;
|
|
}
|
|
&.artists,
|
|
&.album {
|
|
width: 25%;
|
|
}
|
|
&.duration {
|
|
width: 5%;
|
|
}
|
|
}
|
|
|
|
:root .dragging &.hover,
|
|
&.touch-drag-hover {
|
|
border-top: 3px solid $blue;
|
|
margin-top: -3px;
|
|
background: transparent;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.playlist-list .list-item {
|
|
.col {
|
|
&.name {
|
|
width: 50%;
|
|
}
|
|
&.owner {
|
|
width: 20%
|
|
}
|
|
&.source,
|
|
&.can_edit,
|
|
&.tracks_total,
|
|
&.popularity {
|
|
width: 10%;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.album-list .list-item {
|
|
.col {
|
|
&.name,
|
|
&.artists {
|
|
width: 30%;
|
|
}
|
|
&.added_at,
|
|
&.release_date {
|
|
width: 15%;
|
|
}
|
|
&.tracks_total {
|
|
width: 10%;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.library-local-album-list .list-item{
|
|
.col {
|
|
&.name,
|
|
&.artists {
|
|
width: 45%;
|
|
}
|
|
&.tracks_total {
|
|
width: 10%;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.artist-list .list-item {
|
|
.col {
|
|
&.name {
|
|
width: 70%;
|
|
}
|
|
&.followers_total,
|
|
&.popularity {
|
|
width: 15%;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.queue-track-list {
|
|
.col {
|
|
&.name,
|
|
&.artists,
|
|
&.album {
|
|
width: 25% !important;
|
|
}
|
|
&.added {
|
|
width: 20%;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.queue-history-track-list .list-item {
|
|
.col {
|
|
&.name {
|
|
width: 60%;
|
|
}
|
|
&.played_at,
|
|
&.source {
|
|
width: 20%;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.related-artist-list {
|
|
padding-bottom: 20px;
|
|
|
|
.artist {
|
|
display: block;
|
|
border: 0;
|
|
margin-bottom: 5px;
|
|
@include clearfix;
|
|
|
|
.thumbnail {
|
|
@include animate();
|
|
border-radius: 50%;
|
|
width: 50px;
|
|
margin-right: 15px;
|
|
float: left;
|
|
border: 3px solid transparent;
|
|
}
|
|
|
|
.name {
|
|
display: block;
|
|
padding-top: 20px;
|
|
}
|
|
}
|
|
|
|
a.artist:hover {
|
|
.thumbnail {
|
|
border-color: $turquoise;
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include responsive( $bp_medium ){
|
|
|
|
.list-item {
|
|
padding: 12px !important;
|
|
|
|
.source {
|
|
position: static;
|
|
float: none;
|
|
}
|
|
|
|
.select-zone {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 38px;
|
|
font-size: 8px;
|
|
display: block;
|
|
|
|
.fa {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 13px;
|
|
pointer-events: none;
|
|
color: $white;
|
|
z-index: 1;
|
|
}
|
|
|
|
&:after {
|
|
display: block;
|
|
content: '';
|
|
border: 1px solid $darkest_grey;
|
|
border-radius: 50%;
|
|
width: 14px;
|
|
height: 14px;
|
|
position: absolute;
|
|
top: 16px;
|
|
left: 10px;
|
|
}
|
|
}
|
|
|
|
.drag-zone {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 38px;
|
|
height: 100%;
|
|
width: 38px;
|
|
font-size: 14px;
|
|
display: block;
|
|
|
|
.fa {
|
|
position: absolute;
|
|
top: 17px;
|
|
left: 8px;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
.col {
|
|
&.name {
|
|
width: auto !important;
|
|
padding-right: 10%;
|
|
display: block;
|
|
float: none;
|
|
}
|
|
|
|
&.duration {
|
|
width: auto !important;
|
|
position: absolute;
|
|
right: 10px;
|
|
text-align: right;
|
|
}
|
|
|
|
&:not(.name):not(.duration):not(.album){
|
|
color: $mid_grey;
|
|
display: inline;
|
|
width: auto !important;
|
|
float: none !important;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
&.followers_total:after {
|
|
content: ' followers';
|
|
}
|
|
|
|
&.tracks_total:after {
|
|
content: ' tracks';
|
|
}
|
|
|
|
&.popularity:after {
|
|
content: '% popularity';
|
|
}
|
|
|
|
&.album,
|
|
&.can_edit,
|
|
&.release_date {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&.header {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&.queue-track-list {
|
|
.list-item {
|
|
.artists {
|
|
padding-left: 0 !important;
|
|
|
|
&:before {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
.source,
|
|
.added {
|
|
display: none !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.track-list {
|
|
.list-item.has-drag-zone {
|
|
padding: 8px 30px 8px 78px !important;
|
|
}
|
|
.list-item:not(.has-drag-zone){
|
|
padding: 8px 30px 8px 38px !important;
|
|
}
|
|
}
|
|
}
|
|
} |