Merge branch 'devel' of dev.sourcefabric.org:airtime into devel
This commit is contained in:
commit
cde8c60afc
|
@ -4,7 +4,7 @@ if (isset($this->obj)) {
|
|||
$count = count($contents);
|
||||
}
|
||||
?>
|
||||
<div class="btn-toolbar clearfix">
|
||||
<div class="btn-toolbar spl-no-top-margin clearfix">
|
||||
<div class="btn-group pull-left">
|
||||
<button id="spl_new" class="btn dropdown-toggle" data-toggle="dropdown" aria-disabled="false">
|
||||
New <span class="caret"></span>
|
||||
|
|
|
@ -4,7 +4,7 @@ if (isset($this->obj)) {
|
|||
$count = count($contents);
|
||||
}
|
||||
?>
|
||||
<div class="btn-toolbar clearfix">
|
||||
<div class="btn-toolbar spl-no-top-margin clearfix">
|
||||
<div class="btn-group pull-left">
|
||||
<button id="spl_new" class="btn dropdown-toggle" data-toggle='dropdown' aria-disabled="false">
|
||||
New <span class="caret"></span>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div class="btn-toolbar clearfix">
|
||||
<div class="btn-toolbar spl-no-top-margin clearfix">
|
||||
<div class="btn-group pull-left">
|
||||
<button id="ws_new" class="btn dropdown-toggle" data-toggle="dropdown" aria-disabled="false">
|
||||
New <span class="caret"></span>
|
||||
|
|
|
@ -56,6 +56,10 @@
|
|||
|
||||
}
|
||||
|
||||
.spl-no-top-margin {
|
||||
margin-top: 0px !important;
|
||||
}
|
||||
|
||||
.ui-icon-closethick {
|
||||
margin-top: 7px;
|
||||
}
|
||||
|
|
|
@ -69,9 +69,9 @@ AIRTIME = (function(AIRTIME) {
|
|||
|
||||
if ($lib.filter(':visible').length > 0) {
|
||||
|
||||
$lib.width(Math.floor(screenWidth * 0.49));
|
||||
$lib.width(Math.floor(screenWidth * 0.48));
|
||||
|
||||
$builder.width(Math.floor(screenWidth * 0.49))
|
||||
$builder.width(Math.floor(screenWidth * 0.48))
|
||||
.find("#sb_edit")
|
||||
.remove()
|
||||
.end()
|
||||
|
@ -155,9 +155,9 @@ AIRTIME = (function(AIRTIME) {
|
|||
AIRTIME.showbuilder.resetTimestamp();
|
||||
|
||||
$lib.show()
|
||||
.width(Math.floor(screenWidth * 0.49));
|
||||
.width(Math.floor(screenWidth * 0.48));
|
||||
|
||||
$builder.width(Math.floor(screenWidth * 0.49))
|
||||
$builder.width(Math.floor(screenWidth * 0.48))
|
||||
.find("#sb_edit")
|
||||
.remove()
|
||||
.end()
|
||||
|
|
|
@ -22,7 +22,7 @@ WHERE id IN
|
|||
(SELECT s.id
|
||||
FROM cc_schedule s
|
||||
LEFT JOIN cc_show_instances si ON s.instance_id = si.id
|
||||
AND si.modified_instance = 't')
|
||||
AND si.modified_instance = 't');
|
||||
|
||||
ALTER TABLE cc_files
|
||||
DROP CONSTRAINT cc_files_gunid_idx;
|
||||
|
|
Loading…
Reference in New Issue