You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
560 B
38 lines
560 B
.album {
|
|
display: flex;
|
|
align-items: stretch;
|
|
overflow: hidden;
|
|
margin: 2px 4px;
|
|
border: 1px solid $borderColor;
|
|
border-radius: 4px;
|
|
background-color: #eee;
|
|
cursor: default;
|
|
}
|
|
|
|
.info {
|
|
padding: 0 4px;
|
|
}
|
|
|
|
.albumType {
|
|
padding: 0 4px;
|
|
border-width: 0 1px;
|
|
border-style: solid;
|
|
border-color: $borderColor;
|
|
background-color: $white;
|
|
color: $defaultColor;
|
|
}
|
|
|
|
.tracks {
|
|
padding: 0 4px;
|
|
background-color: $white;
|
|
color: $defaultColor;
|
|
}
|
|
|
|
.allTracks {
|
|
background-color: #e0ffe0;
|
|
}
|
|
|
|
.missingWanted {
|
|
background-color: #ffe0e0;
|
|
}
|