Generalize datatables style fixes

This commit is contained in:
Duncan Sommerville 2015-09-24 12:54:24 -04:00
parent c587dcf4e4
commit e5deae89a4
2 changed files with 11 additions and 6 deletions

View file

@ -21,10 +21,10 @@
background-color: #242424; background-color: #242424;
} }
@media screen and (max-width: 1700px) { @media screen and (max-width: 1700px) {
#library_display_info { .dataTables_info {
display: none; display: none;
} }
#library_display_length { .dataTables_length {
float: left; float: left;
} }
} }
@ -42,8 +42,8 @@
} }
} }
@media screen and (max-width: 1260px) { @media screen and (max-width: 1265px) {
#library_display_length > label { .dataTables_length > label {
/* Hacky, but datatables dumps the select inside the label for some reason... */ /* Hacky, but datatables dumps the select inside the label for some reason... */
font-size: 0 !important; font-size: 0 !important;
} }

View file

@ -3935,6 +3935,11 @@ li .ui-state-hover {
max-width: 300px; max-width: 300px;
} }
.podcast-metadata input { .podcast-metadata label {
width: 100%; display: inline-block;
width: 150px;
}
.podcast-metadata input[type="text"] {
width: 60%;
} }