2015-07-27 21:37:55 +02:00
|
|
|
/* Show Builder*/
|
|
|
|
|
2015-08-01 00:28:16 +02:00
|
|
|
.content-pane {
|
|
|
|
position: relative;
|
2015-08-12 20:35:27 +02:00
|
|
|
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
2015-08-06 22:01:44 +02:00
|
|
|
box-sizing: border-box;
|
2015-08-12 20:35:27 +02:00
|
|
|
|
2015-08-06 22:01:44 +02:00
|
|
|
height: 100%;
|
2015-09-03 20:51:58 +02:00
|
|
|
min-height: 300px;
|
2015-08-01 00:28:16 +02:00
|
|
|
|
|
|
|
border: 1px solid #202020;
|
|
|
|
border-top: 1px solid #353535;
|
|
|
|
border-left: 1px solid #2a2a2a;
|
|
|
|
|
|
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.65);
|
|
|
|
-moz-box-shadow: inset 0 0 6px rgba(0,0,0,.65);
|
|
|
|
box-shadow: inset 0 0 6px rgba(0,0,0,.65);
|
|
|
|
|
|
|
|
background-color: #242424;
|
|
|
|
}
|
2015-10-29 14:58:32 +01:00
|
|
|
|
2015-09-10 22:47:36 +02:00
|
|
|
@media screen and (max-width: 1700px) {
|
2015-09-24 18:54:24 +02:00
|
|
|
.dataTables_info {
|
2015-09-10 22:47:36 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2015-09-24 18:54:24 +02:00
|
|
|
.dataTables_length {
|
2015-09-10 22:47:36 +02:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
2015-08-01 00:28:16 +02:00
|
|
|
|
2015-08-31 19:25:29 +02:00
|
|
|
@media screen and (max-width: 1600px) {
|
2015-11-06 20:40:22 +01:00
|
|
|
.content-pane button:not(.dropdown-toggle):not(.btn-new) > span,
|
2015-09-08 21:25:28 +02:00
|
|
|
#show_builder_table_wrapper #sb_submit > span {
|
2015-08-31 19:25:29 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2015-11-06 20:40:22 +01:00
|
|
|
.content-pane button:not(.dropdown-toggle):not(.btn-new) > i,
|
2015-09-08 21:25:28 +02:00
|
|
|
#show_builder_table_wrapper #sb_submit > i {
|
2015-08-31 19:25:29 +02:00
|
|
|
margin-right: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-03 20:51:58 +02:00
|
|
|
@media screen and (max-width: 1200px) {
|
2015-08-19 17:32:41 +02:00
|
|
|
.wrapper {
|
|
|
|
-webkit-flex-flow: column !important;
|
|
|
|
flex-flow: column !important;
|
|
|
|
}
|
2015-08-01 00:28:16 +02:00
|
|
|
.content-pane {
|
|
|
|
height: auto !important;
|
2015-07-27 21:37:55 +02:00
|
|
|
width: 100% !important;
|
2015-11-03 19:18:55 +01:00
|
|
|
min-height: 500px;
|
2015-07-27 21:37:55 +02:00
|
|
|
}
|
2015-08-12 20:35:27 +02:00
|
|
|
.spl_sortable {
|
|
|
|
max-height: 50%;
|
2015-07-29 19:35:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 555px) {
|
|
|
|
#sb_show_filter {
|
|
|
|
float: none !important;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-30 02:28:54 +02:00
|
|
|
/* Library */
|
|
|
|
|
2015-08-14 21:33:45 +02:00
|
|
|
#library_title {
|
|
|
|
padding: 5px 5px 0;
|
2015-11-17 18:26:21 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2015-08-14 21:33:45 +02:00
|
|
|
}
|
|
|
|
|
2015-07-30 02:28:54 +02:00
|
|
|
#library_content {
|
|
|
|
margin-right: 10px;
|
|
|
|
overflow: hidden !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#library_content .dataTables_filter {
|
2015-07-27 21:37:55 +02:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2015-07-30 02:28:54 +02:00
|
|
|
#library_content .dataTables_filter input[type="text"], #library_content .dataTables_filter select {
|
2015-09-16 23:58:16 +02:00
|
|
|
/*margin: 0;*/
|
|
|
|
/* Quick fix, kind of ugly */
|
|
|
|
margin: -30px 0 0;
|
2015-09-21 21:37:57 +02:00
|
|
|
/*border: 0;*/
|
|
|
|
/*float: left;*/
|
|
|
|
/*position: absolute;*/
|
|
|
|
/*width: 100%;*/
|
2015-07-27 21:37:55 +02:00
|
|
|
}
|
|
|
|
|
2015-07-30 02:28:54 +02:00
|
|
|
#library_content label {
|
2015-07-27 21:37:55 +02:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2015-09-21 18:40:05 +02:00
|
|
|
.dataTables_length {
|
2015-10-29 16:15:01 +01:00
|
|
|
padding: 5px 6px;
|
2015-07-27 21:37:55 +02:00
|
|
|
}
|
|
|
|
|
2015-09-21 18:40:05 +02:00
|
|
|
.dataTables_length label {
|
2015-08-10 18:37:21 +02:00
|
|
|
color: #efefef;
|
|
|
|
line-height: 26px;
|
|
|
|
font-weight: normal;
|
2015-07-27 21:37:55 +02:00
|
|
|
}
|
|
|
|
|
2015-08-01 00:28:16 +02:00
|
|
|
#library_content legend {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
|
|
|
|
padding-top: 4px;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2015-08-04 21:38:48 +02:00
|
|
|
#library_content legend, #library_content span {
|
2015-07-27 21:37:55 +02:00
|
|
|
font-weight: normal;
|
|
|
|
color: #efefef;
|
|
|
|
}
|
|
|
|
|
2015-08-08 01:08:17 +02:00
|
|
|
#library_content .icon-white {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
2015-08-10 18:37:21 +02:00
|
|
|
#library_content input[type="checkbox"], #library_content img,
|
|
|
|
.sb-content input[type="checkbox"], .sb-content img {
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
}
|
|
|
|
|
2015-08-12 20:35:27 +02:00
|
|
|
div.btn > span {
|
2015-08-08 01:08:17 +02:00
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
2015-08-01 00:28:16 +02:00
|
|
|
.fg-toolbar.ui-toolbar.ui-widget-header.ui-corner-bl.ui-corner-br.ui-helper-clearfix {
|
2015-07-30 02:28:54 +02:00
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
2015-08-06 22:01:44 +02:00
|
|
|
height: 36px;
|
2015-07-27 21:37:55 +02:00
|
|
|
}
|
|
|
|
|
2015-08-04 21:38:48 +02:00
|
|
|
#library_display_processing {
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2015-09-21 18:40:05 +02:00
|
|
|
.outer-datatable-wrapper .dataTables_wrapper {
|
2015-07-30 02:28:54 +02:00
|
|
|
position: absolute;
|
2015-08-04 21:38:48 +02:00
|
|
|
top: 34px;
|
2015-07-30 02:28:54 +02:00
|
|
|
bottom: 4px;
|
|
|
|
right: 4px;
|
|
|
|
left: 4px;
|
2015-07-29 19:35:01 +02:00
|
|
|
}
|
|
|
|
|
2015-09-21 18:40:05 +02:00
|
|
|
/*#library_display, #show_builder_table*/
|
|
|
|
.datatable.dataTable {
|
2015-08-04 21:38:48 +02:00
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2015-09-21 18:40:05 +02:00
|
|
|
/*#library_display_wrapper > .dataTables_scrolling,
|
|
|
|
#show_builder_table_wrapper > .dataTables_scrolling*/
|
|
|
|
.dataTables_wrapper > .dataTables_scrolling {
|
2015-08-12 20:35:27 +02:00
|
|
|
border: 1px solid #5b5b5b;
|
|
|
|
}
|
|
|
|
|
2015-11-11 22:47:07 +01:00
|
|
|
.empty_placeholder_image {
|
2015-08-28 21:40:32 +02:00
|
|
|
opacity: .3;
|
|
|
|
|
2015-09-02 18:45:37 +02:00
|
|
|
width: 16px;
|
|
|
|
height: 20px;
|
|
|
|
|
2015-08-28 21:40:32 +02:00
|
|
|
top: -20px;
|
|
|
|
margin-top: -2px;
|
|
|
|
padding-right: 2px; /* For the webstream icon */
|
|
|
|
}
|
|
|
|
|
2015-11-11 22:47:07 +01:00
|
|
|
.empty_placeholder {
|
2015-08-28 21:40:32 +02:00
|
|
|
display: none;
|
|
|
|
font-size: 16px;
|
2015-09-04 21:37:04 +02:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
top: 44%;
|
2015-08-28 21:40:32 +02:00
|
|
|
text-align: center;
|
|
|
|
color: #efefef;
|
|
|
|
}
|
|
|
|
|
2015-11-11 22:47:07 +01:00
|
|
|
.empty_placeholder a {
|
2015-08-28 22:09:18 +02:00
|
|
|
font-size: 0.9em;
|
|
|
|
line-height: 37px;
|
2015-08-28 21:40:32 +02:00
|
|
|
text-decoration: none;
|
2015-08-28 22:09:18 +02:00
|
|
|
color: #FF5D1A;
|
2015-08-28 21:40:32 +02:00
|
|
|
}
|
|
|
|
|
2015-11-11 22:47:07 +01:00
|
|
|
.empty_placeholder a:visited {
|
2015-08-28 22:09:18 +02:00
|
|
|
color: #CE3C01;
|
2015-08-28 21:40:32 +02:00
|
|
|
}
|
|
|
|
|
2015-08-12 20:35:27 +02:00
|
|
|
thead th.ui-state-default {
|
|
|
|
border: solid #666;
|
|
|
|
border-width: 0 0 1px 1px;
|
|
|
|
color: #ccc;
|
|
|
|
}
|
|
|
|
|
2015-11-06 00:15:58 +01:00
|
|
|
thead th.ui-state-default:not([class*='checkbox']):not([class*='type']):not([class*='image']):not([class*='imported']) {
|
2015-08-12 21:10:56 +02:00
|
|
|
cursor: move;
|
|
|
|
}
|
|
|
|
|
|
|
|
thead th.ui-state-default:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2015-08-06 00:14:56 +02:00
|
|
|
|
2015-08-04 21:38:48 +02:00
|
|
|
/* Library Search */
|
|
|
|
|
2015-08-01 00:28:16 +02:00
|
|
|
#filter_options {
|
|
|
|
text-align: center;
|
|
|
|
padding: 15px 0 15px 15px;
|
|
|
|
margin: 0;
|
|
|
|
border: none;
|
2015-07-27 21:37:55 +02:00
|
|
|
}
|
|
|
|
|
2015-08-01 00:28:16 +02:00
|
|
|
#advanced_search {
|
2015-08-04 21:38:48 +02:00
|
|
|
position: absolute;
|
2015-09-03 19:41:29 +02:00
|
|
|
left: -450px;
|
2015-08-04 21:38:48 +02:00
|
|
|
padding: 5px;
|
2015-09-03 19:41:29 +02:00
|
|
|
margin-top: 28px;
|
2015-08-26 23:56:17 +02:00
|
|
|
z-index: 1005;
|
2015-08-04 21:38:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#advanced_search label, #advanced_search span {
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 24px;
|
|
|
|
color: #242424;
|
|
|
|
}
|
|
|
|
|
|
|
|
#advanced_search .controls {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#advanced_search .control-group {
|
|
|
|
padding: 5px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#advanced_search .sp-checked-icon {
|
|
|
|
position: absolute;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
2015-09-28 20:14:01 +02:00
|
|
|
#lib-filter-message, .filter-message {
|
2015-09-03 19:41:29 +02:00
|
|
|
border-top: none !important;
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
2015-09-28 20:14:01 +02:00
|
|
|
.filter-message {
|
|
|
|
position: relative;
|
|
|
|
font-size: 13px;
|
|
|
|
float: right;
|
|
|
|
line-height: 26px;
|
|
|
|
padding: 0 6px;
|
|
|
|
}
|
|
|
|
|
2015-08-04 21:38:48 +02:00
|
|
|
#advanced-options {
|
|
|
|
float: right;
|
2015-08-26 23:56:17 +02:00
|
|
|
z-index: 1004;
|
2015-08-04 21:38:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#advanced-options > button {
|
2015-09-03 19:41:29 +02:00
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
2015-08-04 21:38:48 +02:00
|
|
|
background: transparent none;
|
|
|
|
color: transparent;
|
|
|
|
border: none;
|
|
|
|
padding: 4px 8px 4px 4px;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#advanced-options > button:focus {
|
|
|
|
outline-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#advanced-options > button > span {
|
2015-09-03 19:41:29 +02:00
|
|
|
color: #000;
|
2015-08-04 21:38:48 +02:00
|
|
|
border-top: 4px solid #242424;
|
2015-07-30 02:28:54 +02:00
|
|
|
}
|
|
|
|
|
2015-08-14 21:33:45 +02:00
|
|
|
#library_content > .panel-header {
|
|
|
|
top: 33px;
|
|
|
|
}
|
|
|
|
|
2018-01-17 02:49:33 +01:00
|
|
|
#library_content > .panel-header-calendar {
|
|
|
|
top: 33px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-01 00:28:16 +02:00
|
|
|
.panel-header {
|
2015-08-04 21:38:48 +02:00
|
|
|
position: absolute;
|
2015-07-30 02:28:54 +02:00
|
|
|
top: 4px;
|
2015-08-04 21:38:48 +02:00
|
|
|
right: 4px;
|
|
|
|
left: 4px;
|
2018-01-17 02:49:33 +01:00
|
|
|
z-index: 1;
|
2015-08-06 00:14:56 +02:00
|
|
|
|
2015-11-16 21:28:28 +01:00
|
|
|
-webkit-flex: 1 100%;
|
|
|
|
-moz-flex: 1 100%;
|
|
|
|
-ms-flex: 1 100%;
|
|
|
|
-o-flex: 1 100%;
|
2015-08-06 00:14:56 +02:00
|
|
|
flex: 1 100%;
|
2015-07-29 19:35:01 +02:00
|
|
|
}
|
|
|
|
|
2018-01-17 02:49:33 +01:00
|
|
|
.panel-header-calendar {
|
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
right: 4px;
|
|
|
|
left: 4px;
|
|
|
|
z-index: auto;
|
|
|
|
|
|
|
|
-webkit-flex: 1 100%;
|
|
|
|
-moz-flex: 1 100%;
|
|
|
|
-ms-flex: 1 100%;
|
|
|
|
-o-flex: 1 100%;
|
|
|
|
flex: 1 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-07-28 17:42:04 +02:00
|
|
|
/* Timeline */
|
|
|
|
|
2015-07-30 02:28:54 +02:00
|
|
|
#show_builder {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sb-content .dataTables_wrapper {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sb-padded {
|
|
|
|
padding: 0;
|
2015-07-28 17:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#sb_submit {
|
2015-08-01 00:28:16 +02:00
|
|
|
font-weight: normal;
|
2015-07-28 17:42:04 +02:00
|
|
|
text-decoration: none;
|
2015-07-30 02:28:54 +02:00
|
|
|
padding: 4px;
|
2015-07-28 17:42:04 +02:00
|
|
|
color: #efefef;
|
2015-07-29 19:35:01 +02:00
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sb-options-form {
|
2015-08-06 22:01:44 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
left: 5px;
|
|
|
|
right: 5px;
|
2015-07-29 19:35:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.sb-options-form label {
|
|
|
|
color: #efefef;
|
|
|
|
line-height: 26px;
|
2015-09-29 17:28:30 +02:00
|
|
|
display: inline-block;
|
|
|
|
padding: 0 0 0 4px;
|
|
|
|
vertical-align: middle;
|
2015-07-29 19:35:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#sb_show_filter {
|
2015-08-06 22:01:44 +02:00
|
|
|
right: 0;
|
2015-11-12 17:37:39 +01:00
|
|
|
max-width: 125px;
|
2015-08-06 22:01:44 +02:00
|
|
|
position: absolute;
|
2015-07-28 17:42:04 +02:00
|
|
|
}
|
|
|
|
|
2015-09-29 17:28:30 +02:00
|
|
|
#sb_my_shows {
|
|
|
|
top: 1px;
|
|
|
|
left: 2px;
|
|
|
|
}
|
|
|
|
|
2015-08-01 00:28:16 +02:00
|
|
|
.nav-tabs {
|
2015-08-12 20:35:27 +02:00
|
|
|
border-bottom: 1px solid #5b5b5b;
|
2015-08-01 00:28:16 +02:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 0;
|
2015-08-04 21:38:48 +02:00
|
|
|
margin: 0;
|
2015-08-01 00:28:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-tabs a {
|
|
|
|
padding: 4px 8px !important;
|
|
|
|
|
|
|
|
color: #efefef;
|
|
|
|
font-size: 14px;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
background-color: rgba(71,71,71,.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-tabs :not(.active) a:hover {
|
|
|
|
background-color: rgba(239, 76, 10, .5) !important;
|
|
|
|
border: 1px solid transparent !important;
|
2015-08-12 20:35:27 +02:00
|
|
|
border-bottom: 1px solid transparent !important;
|
2015-08-01 00:28:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
|
|
|
|
color: #efefef;
|
|
|
|
|
|
|
|
background-color: #474747;
|
|
|
|
border: 1px solid #474747;
|
|
|
|
border-bottom-color: transparent;
|
|
|
|
cursor: default;
|
2015-07-28 17:42:04 +02:00
|
|
|
}
|
|
|
|
|
2015-08-07 22:49:05 +02:00
|
|
|
.lib_pl_close {
|
|
|
|
cursor: pointer;
|
|
|
|
margin-left: 10px;
|
|
|
|
z-index: 1;
|
2015-08-07 01:16:04 +02:00
|
|
|
}
|
|
|
|
|
2015-07-30 02:28:54 +02:00
|
|
|
/* Media editors */
|
2015-07-27 21:37:55 +02:00
|
|
|
|
2015-08-07 01:16:04 +02:00
|
|
|
textarea {
|
|
|
|
resize: none;
|
|
|
|
}
|
|
|
|
|
2015-08-05 01:56:12 +02:00
|
|
|
/* File Metadata Editor */
|
|
|
|
|
2015-10-29 19:58:30 +01:00
|
|
|
.edit-md-dialog {
|
2015-08-05 01:56:12 +02:00
|
|
|
width: 100%;
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2015-10-29 19:58:30 +01:00
|
|
|
.edit-md-dialog label {
|
2015-08-05 01:56:12 +02:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: normal;
|
|
|
|
|
|
|
|
color: #efefef;
|
|
|
|
}
|
|
|
|
|
2015-10-29 19:58:30 +01:00
|
|
|
.edit-md-dialog .zend_form dt {
|
2015-08-05 01:56:12 +02:00
|
|
|
float: left;
|
2015-11-04 15:29:03 +01:00
|
|
|
width: 35%;
|
2015-08-05 01:56:12 +02:00
|
|
|
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
line-height: 20px;
|
|
|
|
margin: 0 0 10px;
|
|
|
|
padding-right: 4px;
|
|
|
|
}
|
|
|
|
|
2015-10-29 19:58:30 +01:00
|
|
|
.edit-md-dialog .zend_form dd {
|
2015-08-05 01:56:12 +02:00
|
|
|
float: left;
|
2015-11-04 15:29:03 +01:00
|
|
|
width: 60%;
|
2015-08-05 01:56:12 +02:00
|
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 0 0 10px;
|
2015-10-21 16:58:22 +02:00
|
|
|
max-width: 280px;
|
2015-08-05 01:56:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Playlist/Block/Webstream Editors */
|
|
|
|
|
2015-08-12 20:35:27 +02:00
|
|
|
dl > dd > input, dl > dd > textarea {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.errors.sp-errors {
|
|
|
|
color: #902d2d;
|
|
|
|
}
|
|
|
|
|
|
|
|
li.ui-state-default {
|
|
|
|
border: 1px solid #7e7e7e;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Playlist Editor */
|
|
|
|
|
2015-08-06 22:01:44 +02:00
|
|
|
.side_playlist {
|
2015-08-07 01:16:04 +02:00
|
|
|
position: relative;
|
2015-08-01 00:28:16 +02:00
|
|
|
width: 100%; /* Override because we're using flexbox */
|
|
|
|
|
2015-08-07 01:16:04 +02:00
|
|
|
overflow: hidden;
|
2015-08-01 00:28:16 +02:00
|
|
|
|
2015-11-16 21:28:28 +01:00
|
|
|
-webkit-flex: 1;
|
|
|
|
-moz-flex: 1;
|
|
|
|
-ms-flex: 1;
|
|
|
|
-o-flex: 1;
|
2015-08-01 00:28:16 +02:00
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2015-08-07 01:16:04 +02:00
|
|
|
.side_playlist h3 {
|
|
|
|
color: #efefef;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.side_playlist .playlist_title h3 a:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2015-09-21 18:40:05 +02:00
|
|
|
.side_playlist label/*, .side_playlist h4, .side_playlist span*/ {
|
2015-08-07 01:16:04 +02:00
|
|
|
color: #efefef;
|
|
|
|
font-size: 14px;
|
2015-08-12 20:35:27 +02:00
|
|
|
line-height: 24px;
|
2015-08-07 01:16:04 +02:00
|
|
|
font-weight: normal;
|
2015-08-26 19:10:51 +02:00
|
|
|
text-align: right;
|
2015-08-07 01:16:04 +02:00
|
|
|
}
|
|
|
|
|
2015-08-12 20:35:27 +02:00
|
|
|
.sb-content fieldset label {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2015-11-03 00:07:16 +01:00
|
|
|
.editor_pane_wrapper, .angular_wrapper {
|
2015-08-07 01:16:04 +02:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: flex;
|
|
|
|
-webkit-flex-flow: column;
|
|
|
|
flex-flow: column;
|
|
|
|
position: absolute;
|
|
|
|
right: 4px;
|
|
|
|
bottom: 4px;
|
|
|
|
top: 4px;
|
|
|
|
left: 4px;
|
2015-08-18 18:58:34 +02:00
|
|
|
overflow-x: hidden; /* Show the y-direction scrollbar (magic!) */
|
2015-11-03 19:18:55 +01:00
|
|
|
color: #efefef;
|
2018-12-14 00:59:23 +01:00
|
|
|
justify-content: stretch;
|
2015-11-03 19:18:55 +01:00
|
|
|
}
|
|
|
|
|
2015-11-13 01:02:09 +01:00
|
|
|
.angular_wrapper a {
|
|
|
|
color: #FF5D1A;
|
|
|
|
}
|
|
|
|
|
|
|
|
.angular_wrapper a:visited {
|
|
|
|
color: #CE3C01;
|
2015-08-18 18:58:34 +02:00
|
|
|
}
|
|
|
|
|
2015-09-16 00:53:25 +02:00
|
|
|
.tab-name {
|
|
|
|
float: left;
|
2017-03-23 14:12:58 +01:00
|
|
|
max-width: 160px;
|
2015-09-16 00:53:25 +02:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2015-08-08 01:20:29 +02:00
|
|
|
.inner_editor_wrapper {
|
2015-08-12 20:35:27 +02:00
|
|
|
overflow-x: hidden;
|
2015-08-08 01:20:29 +02:00
|
|
|
width: 100%;
|
2015-11-16 21:28:28 +01:00
|
|
|
-webkit-flex: 1 0 auto;
|
|
|
|
-moz-flex: 1 0 auto;
|
|
|
|
-ms-flex: 1 0 auto;
|
|
|
|
-o-flex: 1 0 auto;
|
2015-09-02 19:08:16 +02:00
|
|
|
flex: 1 0 auto;
|
2015-08-26 19:10:51 +02:00
|
|
|
padding: 10px;
|
2015-09-02 19:08:16 +02:00
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
2015-08-26 19:10:51 +02:00
|
|
|
box-sizing: border-box;
|
2015-08-12 20:35:27 +02:00
|
|
|
}
|
2018-12-14 00:59:23 +01:00
|
|
|
.inner_editor_wrapper.smart-block-form {
|
|
|
|
-webkit-flex: 0 0 auto;
|
|
|
|
-moz-flex: 0 0 auto;
|
|
|
|
-ms-flex: 0 0 auto;
|
|
|
|
-o-flex: 0 0 auto;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2015-08-12 20:35:27 +02:00
|
|
|
|
2015-11-16 18:07:53 +01:00
|
|
|
.angular_wrapper > .inner_editor_wrapper {
|
|
|
|
max-height: none;
|
|
|
|
}
|
|
|
|
|
2015-08-28 01:00:23 +02:00
|
|
|
.inner_editor_title h2 {
|
|
|
|
margin: 10px 0 0 10px;
|
2015-11-03 19:18:55 +01:00
|
|
|
width: 70%;
|
2015-08-28 02:23:53 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2015-08-28 01:00:23 +02:00
|
|
|
}
|
|
|
|
.inner_editor_title span {
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
}
|
|
|
|
|
2019-09-20 02:07:50 +02:00
|
|
|
.inner_track_editor_title h2 {
|
|
|
|
margin: 10px 0 0 0;
|
|
|
|
width: 80%;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
.inner_track_editor_title span {
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
}
|
|
|
|
|
2015-08-12 20:35:27 +02:00
|
|
|
.clearfix:after, .side_playlist li:after {
|
|
|
|
display: none !important;
|
2015-08-08 01:20:29 +02:00
|
|
|
}
|
|
|
|
|
2015-08-07 01:16:04 +02:00
|
|
|
.spl-no-margin {
|
|
|
|
margin: 0;
|
2015-08-07 22:49:05 +02:00
|
|
|
}
|
|
|
|
|
2015-08-26 19:10:51 +02:00
|
|
|
.spl-no-margin > div:first-child {
|
2015-08-07 22:49:05 +02:00
|
|
|
margin-left: 0 !important;
|
2015-08-07 01:16:04 +02:00
|
|
|
}
|
|
|
|
|
2015-08-28 01:00:23 +02:00
|
|
|
.spl-no-r-margin {
|
2015-11-16 21:28:28 +01:00
|
|
|
margin-right: 0;
|
2015-08-28 01:00:23 +02:00
|
|
|
}
|
|
|
|
|
2015-08-07 01:16:04 +02:00
|
|
|
.spl_sortable {
|
2018-11-08 01:34:45 +01:00
|
|
|
-webkit-flex: 1 0 auto;
|
|
|
|
-moz-flex: 1 0 auto;
|
|
|
|
-ms-flex: 1 0 auto;
|
|
|
|
-o-flex: 1 0 auto;
|
|
|
|
flex: 1 0 auto;
|
2015-08-07 01:16:04 +02:00
|
|
|
overflow: auto;
|
2015-08-07 22:49:05 +02:00
|
|
|
margin: 4px 0;
|
2018-11-08 01:34:45 +01:00
|
|
|
min-height: 6em;
|
2018-11-08 01:46:05 +01:00
|
|
|
max-height: calc(100% - 40px);
|
2015-08-26 19:10:51 +02:00
|
|
|
padding: 5px;
|
|
|
|
border: 1px solid #444;
|
|
|
|
border-radius: 3px;
|
2015-09-02 19:08:16 +02:00
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
2015-08-26 19:10:51 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #111;
|
2015-10-29 19:58:30 +01:00
|
|
|
|
|
|
|
display: -webkit-box;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
|
|
|
display: -webkit-flex;
|
2015-08-28 01:00:23 +02:00
|
|
|
display: flex;
|
2015-11-10 00:32:46 +01:00
|
|
|
-webkit-flex-direction: column;
|
|
|
|
-moz-flex-direction: column;
|
|
|
|
-ms-flex-direction: column;
|
2015-08-28 01:00:23 +02:00
|
|
|
flex-direction: column;
|
2015-08-01 00:28:16 +02:00
|
|
|
}
|
|
|
|
|
2015-08-06 22:01:44 +02:00
|
|
|
.spl_sortable .list-item-container {
|
2015-08-01 00:28:16 +02:00
|
|
|
cursor: move;
|
2015-07-27 21:37:55 +02:00
|
|
|
}
|
|
|
|
|
2015-08-07 22:49:05 +02:00
|
|
|
.spl_empty {
|
|
|
|
width: 100%;
|
|
|
|
|
2015-08-26 19:10:51 +02:00
|
|
|
color: #efefef;
|
2015-08-07 22:49:05 +02:00
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
font-size: 20px;
|
2015-08-28 01:00:23 +02:00
|
|
|
|
2015-11-16 21:28:28 +01:00
|
|
|
-webkit-flex: 1 1 auto;
|
|
|
|
-moz-flex: 1 1 auto;
|
|
|
|
-ms-flex: 1 1 auto;
|
|
|
|
-o-flex: 1 1 auto;
|
2015-08-28 01:00:23 +02:00
|
|
|
flex: 1 1 auto;
|
|
|
|
/* Position the text label inside it centered*/
|
2015-10-29 19:58:30 +01:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
|
|
|
display: -webkit-flex;
|
2015-08-28 01:00:23 +02:00
|
|
|
display: flex;
|
2015-11-10 00:32:46 +01:00
|
|
|
-webkit-justify-content: center;
|
|
|
|
-moz-justify-content: center;
|
|
|
|
-ms-justify-content: center;
|
2015-08-28 01:00:23 +02:00
|
|
|
justify-content: center;
|
2015-11-10 00:32:46 +01:00
|
|
|
-webkit-flex-direction: column;
|
|
|
|
-moz-flex-direction: column;
|
|
|
|
-ms-flex-direction: column;
|
2015-08-28 01:00:23 +02:00
|
|
|
flex-direction: column;
|
2015-08-07 22:49:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.crossfade-main {
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.crossfade-main > dl {
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#save_button:focus, #webstream_save {
|
|
|
|
outline-width: 0;
|
|
|
|
}
|
|
|
|
|
2015-10-29 19:58:30 +01:00
|
|
|
.edit-md-dialog .zend_form dd:last-child {
|
2015-11-04 21:16:29 +01:00
|
|
|
width: 100%;
|
2015-08-18 00:34:39 +02:00
|
|
|
}
|
|
|
|
|
2015-08-12 20:35:27 +02:00
|
|
|
/* Smart Block Editor */
|
|
|
|
|
|
|
|
.btn-toolbar {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sp-button {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sp-button + .sp-button {
|
|
|
|
margin: 0 5px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.side_playlist .zend_form input {
|
2015-09-02 19:08:16 +02:00
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
2015-08-12 20:35:27 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
height: 26px;
|
|
|
|
}
|
|
|
|
|
2015-11-03 19:18:55 +01:00
|
|
|
/* Schedule tab DataTable */
|
2015-07-30 02:28:54 +02:00
|
|
|
|
2015-11-03 19:18:55 +01:00
|
|
|
#show_builder_table_wrapper .fg-toolbar.ui-corner-tl.ui-corner-tr {
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#show_builder_table_wrapper .fg-toolbar > .btn-toolbar,
|
|
|
|
#show_builder_table_wrapper .ColVis.TableTools {
|
2015-08-14 21:33:45 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 35px;
|
|
|
|
}
|
|
|
|
|
2015-11-03 19:18:55 +01:00
|
|
|
#show_builder_table_wrapper .fg-toolbar > .btn-toolbar {
|
2015-08-14 21:33:45 +02:00
|
|
|
left: 6px;
|
|
|
|
padding: 0;
|
2015-07-30 02:28:54 +02:00
|
|
|
}
|
|
|
|
|
2015-11-03 19:18:55 +01:00
|
|
|
#show_builder_table_wrapper .ColVis.TableTools {
|
2015-08-06 22:01:44 +02:00
|
|
|
right: 6px;
|
2015-08-14 21:33:45 +02:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2015-11-03 19:18:55 +01:00
|
|
|
/* DataTables */
|
|
|
|
|
2015-08-21 16:43:20 +02:00
|
|
|
div.ColVis_collectionBackground {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2015-08-14 21:33:45 +02:00
|
|
|
.ColVis_collection.TableTools_collection.ui-buttonset.ui-buttonset-multi {
|
|
|
|
max-height: 50%;
|
|
|
|
overflow: auto;
|
2015-08-06 22:01:44 +02:00
|
|
|
}
|
|
|
|
|
2015-09-21 18:40:05 +02:00
|
|
|
:not(.table_toolbar) > .ColVis.TableTools {
|
2015-09-10 22:47:36 +02:00
|
|
|
margin: 6px 6px 0 0;
|
2015-08-06 22:01:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.ColVis.TableTools > button {
|
|
|
|
padding: 3px 9px;
|
2015-09-01 19:53:59 +02:00
|
|
|
margin: -1px -1px 5px 0;
|
2015-08-06 22:01:44 +02:00
|
|
|
}
|
|
|
|
|
2015-08-12 20:35:27 +02:00
|
|
|
.ColVis_title {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
2015-11-03 19:18:55 +01:00
|
|
|
.ColVis {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2015-08-07 01:16:04 +02:00
|
|
|
/* Hacky stuff here */
|
2015-08-06 22:01:44 +02:00
|
|
|
#show_builder .dataTables_scrolling {
|
2015-08-12 21:10:56 +02:00
|
|
|
top: 66px;
|
2015-08-06 22:01:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.sb-padded > .fg-toolbar {
|
|
|
|
height: 66px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fg-toolbar .btn-toolbar {
|
|
|
|
margin: 0;
|
2015-11-18 22:20:29 +01:00
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fg-toolbar .btn-toolbar .ColVis_MasterButton {
|
|
|
|
margin: 0;
|
2015-08-06 22:01:44 +02:00
|
|
|
}
|
2015-08-07 01:16:04 +02:00
|
|
|
/* ~~~~~~~~~~~~~~~~ */
|
2015-08-06 22:01:44 +02:00
|
|
|
|
2015-08-10 18:37:21 +02:00
|
|
|
#library_display td, #show_builder td {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#library_display td > span > span,
|
|
|
|
#show_builder td > span > span {
|
|
|
|
color: #efefef;
|
|
|
|
}
|
|
|
|
|
2015-08-12 21:10:56 +02:00
|
|
|
.datatable tr td[class*='checkbox'], .datatable tr td[class*='type'] {
|
2015-08-10 18:37:21 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2015-08-12 20:35:27 +02:00
|
|
|
.datatable tr td {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2015-08-11 00:46:12 +02:00
|
|
|
th.library_checkbox {
|
|
|
|
text-align: center !important;
|
|
|
|
}
|
|
|
|
|
2015-09-09 23:25:40 +02:00
|
|
|
.ui-draggable {
|
|
|
|
-ms-touch-action: none;
|
|
|
|
}
|
2015-07-30 02:28:54 +02:00
|
|
|
|
2015-08-01 00:28:16 +02:00
|
|
|
/* This is so dragged items show up above the layout */
|
2015-08-10 18:37:21 +02:00
|
|
|
|
2015-11-06 23:47:46 +01:00
|
|
|
#library_content .ui-draggable-dragging {
|
2015-08-01 00:28:16 +02:00
|
|
|
z-index: 9999;
|
|
|
|
position: fixed !important;
|
|
|
|
}
|
|
|
|
|
2015-08-11 00:46:12 +02:00
|
|
|
.datatable .ui-state-highlight, .spl_sortable .ui-state-highlight {
|
|
|
|
background: rgba(255, 93, 26, .6);
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2015-08-28 17:31:08 +02:00
|
|
|
.dataTables_scrolling {
|
|
|
|
position: absolute;
|
2015-09-10 22:47:36 +02:00
|
|
|
bottom: 37px;
|
|
|
|
top: 38px;
|
2015-08-28 17:31:08 +02:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
2015-09-10 22:47:36 +02:00
|
|
|
|
|
|
|
.DTCR_pointer {
|
|
|
|
background-color: #FF5D1A !important;
|
|
|
|
height: 38px !important;
|
|
|
|
}
|
2015-09-15 00:26:28 +02:00
|
|
|
|
|
|
|
/* ~~~~~~~~~~~~~~~~
|
|
|
|
Podcasts
|
|
|
|
~~~~~~~~~~~~~~~~ */
|
|
|
|
|
2015-09-17 00:32:16 +02:00
|
|
|
#podcast_table_filter {
|
2015-09-15 00:26:28 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ~~~~~~~~~~~~~~~~
|
|
|
|
END Podcasts
|
|
|
|
~~~~~~~~~~~~~~~~ */
|