CC-3509: "Add Files" button (make it look better)
This commit is contained in:
parent
8910d93c55
commit
1e9348f27f
|
@ -5,7 +5,6 @@
|
||||||
<?php echo $this->element->getElement('sb_date_end') ?>
|
<?php echo $this->element->getElement('sb_date_end') ?>
|
||||||
<?php echo $this->element->getElement('sb_time_end') ?>
|
<?php echo $this->element->getElement('sb_time_end') ?>
|
||||||
<input type="button" id="sb_submit" class="ui-button ui-state-default" value="GO"></input>
|
<input type="button" id="sb_submit" class="ui-button ui-state-default" value="GO"></input>
|
||||||
<input type="button" id="sb_edit" class="ui-button ui-state-default sb-edit" value="Add Files"></input>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="sb-advanced-options">
|
<div class="sb-advanced-options">
|
||||||
<fieldset class="padded display_field toggle push-down-8 closed">
|
<fieldset class="padded display_field toggle push-down-8 closed">
|
||||||
|
|
|
@ -1,2 +1,5 @@
|
||||||
|
<div id="sb_edit" class="ui-state-default" title="open the library to schedule files.">
|
||||||
|
<span class="ui-icon ui-icon-arrowthick-1-nw"></span>
|
||||||
|
</div>
|
||||||
<?php echo $this->sb_form; ?>
|
<?php echo $this->sb_form; ?>
|
||||||
<table id="show_builder_table" cellpadding="0" cellspacing="0" class="datatable"></table>
|
<table id="show_builder_table" cellpadding="0" cellspacing="0" class="datatable"></table>
|
||||||
|
|
|
@ -12,6 +12,13 @@
|
||||||
margin-left: -16px;
|
margin-left: -16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#sb_edit {
|
||||||
|
position: relative;
|
||||||
|
top: 2px;
|
||||||
|
float: left;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
.sb-content .fg-toolbar ul {
|
.sb-content .fg-toolbar ul {
|
||||||
float: left;
|
float: left;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
|
@ -13,12 +13,7 @@ $(document).ready(function(){
|
||||||
timeStartId = "#sb_time_start",
|
timeStartId = "#sb_time_start",
|
||||||
dateEndId = "#sb_date_end",
|
dateEndId = "#sb_date_end",
|
||||||
timeEndId = "#sb_time_end",
|
timeEndId = "#sb_time_end",
|
||||||
$toggleLib = $('<input />', {
|
$toggleLib = $('<div id="sb_edit" class="ui-state-default" title="open the library to schedule files."><span class="ui-icon ui-icon-arrowthick-1-nw"></span></div>'),
|
||||||
"class": "ui-button ui-state-default sb-edit",
|
|
||||||
"id": "sb_edit",
|
|
||||||
"type": "button",
|
|
||||||
"value": "Add Files"
|
|
||||||
}),
|
|
||||||
$libClose = $('<a />', {
|
$libClose = $('<a />', {
|
||||||
"class": "close-round",
|
"class": "close-round",
|
||||||
"href": "#",
|
"href": "#",
|
||||||
|
|
Loading…
Reference in New Issue