Frontend tweaks to podcasting + new abstract datatables functionality

This commit is contained in:
Duncan Sommerville 2015-09-21 12:40:05 -04:00
parent 3db20bd3b5
commit 373ff55923
10 changed files with 82 additions and 66 deletions

View file

@ -100,11 +100,11 @@
padding: 0;
}
#library_display_length {
.dataTables_length {
padding: 6px;
}
#library_display_length label {
.dataTables_length label {
color: #efefef;
line-height: 26px;
font-weight: normal;
@ -149,7 +149,7 @@ div.btn > span {
z-index: 1;
}
#library_display_wrapper, #show_builder_table_wrapper {
.outer-datatable-wrapper .dataTables_wrapper {
position: absolute;
top: 34px;
bottom: 4px;
@ -157,12 +157,14 @@ div.btn > span {
left: 4px;
}
#library_display, #show_builder_table {
/*#library_display, #show_builder_table*/
.datatable.dataTable {
border: none;
}
#library_display_wrapper > .dataTables_scrolling,
#show_builder_table_wrapper > .dataTables_scrolling {
/*#library_display_wrapper > .dataTables_scrolling,
#show_builder_table_wrapper > .dataTables_scrolling*/
.dataTables_wrapper > .dataTables_scrolling {
border: 1px solid #5b5b5b;
}
@ -451,7 +453,7 @@ li.ui-state-default {
background-color: transparent;
}
.side_playlist label, .side_playlist h4, .side_playlist span {
.side_playlist label/*, .side_playlist h4, .side_playlist span*/ {
color: #efefef;
font-size: 14px;
line-height: 24px;
@ -648,7 +650,7 @@ div.ColVis_collectionBackground {
overflow: auto;
}
.ColVis.TableTools {
:not(.table_toolbar) > .ColVis.TableTools {
margin: 6px 6px 0 0;
}

View file

@ -3916,7 +3916,7 @@ li .ui-state-hover {
/* Podcasts */
.podcast-wrapper > .dataTables_wrapper {
#podcast_episodes_wrapper {
position: relative;
height: 100%;
float: left;
@ -3926,4 +3926,11 @@ li .ui-state-hover {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#podcast_episodes_wrapper td {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 300px;
}