84 lines
1.3 KiB
SCSS
84 lines
1.3 KiB
SCSS
@import "client/common";
|
|
|
|
#open-jam-track-dialog {
|
|
height:auto;
|
|
min-height:400px;
|
|
|
|
div[data-react-class="JamTrackAutoComplete"] {
|
|
width: calc(98% - 90px);
|
|
margin-bottom: 20px;
|
|
display:inline-block;
|
|
}
|
|
|
|
.search-btn {
|
|
margin-left: 15px;
|
|
margin-top: 2px;
|
|
vertical-align: top;
|
|
float: right;
|
|
margin-right: 17px;
|
|
}
|
|
|
|
table.open-jam-tracks {
|
|
tbody {
|
|
tr:hover {
|
|
background-color: #777;
|
|
cursor:pointer;
|
|
}
|
|
|
|
tr[data-local-state=MISSING], tr[data-local-state=PARTIALLY_MISSING] {
|
|
background-color:#777;
|
|
color:#aaa;
|
|
}
|
|
}
|
|
}
|
|
|
|
.downloaded-jamtrack-help {
|
|
margin-left:15px;
|
|
}
|
|
|
|
.right {
|
|
margin-right:10px;
|
|
}
|
|
|
|
.help-links {
|
|
text-align: center;
|
|
position: absolute;
|
|
margin: 0 auto;
|
|
width: 70%;
|
|
left: 15%;
|
|
font-size: 12px;
|
|
padding-top:5px;
|
|
z-index:0;
|
|
margin-top:-18px;
|
|
|
|
a {
|
|
margin:0 10px;
|
|
}
|
|
}
|
|
|
|
.paginator-holder {
|
|
padding-top:3px;
|
|
}
|
|
|
|
.recording-wrapper {
|
|
height:290px;
|
|
overflow:auto;
|
|
}
|
|
|
|
.jamtrack-name {
|
|
width:50%;
|
|
@include border_box_sizing;
|
|
}
|
|
|
|
.jamtrack-artist {
|
|
width:30%;
|
|
@include border_box_sizing;
|
|
}
|
|
|
|
.jamtrack-state {
|
|
width:20%;
|
|
@include border_box_sizing;
|
|
}
|
|
}
|
|
|