diff --git a/include/staff/ticket-view.inc.php b/include/staff/ticket-view.inc.php index a63eea939dfd832c5a91cc0e0442946d8dc3a5ca..06f238ab1fc65217eb332d1b22e7489722f0a40e 100644 --- a/include/staff/ticket-view.inc.php +++ b/include/staff/ticket-view.inc.php @@ -605,6 +605,7 @@ if(!$cfg->showNotesInline()) { ?> <div style="display:none;" id="print-options"> <h3>Ticket Print Options</h3> <a class="close" href="">×</a> + <hr/> <form action="tickets.php?id=<?php echo $ticket->getId(); ?>" method="post" id="print-form" name="print-form"> <input type="hidden" name="a" value="print"> <input type="hidden" name="id" value="<?php echo $ticket->getId(); ?>"> @@ -626,12 +627,15 @@ if(!$cfg->showNotesInline()) { ?> ?> </select> </fieldset> - <p class="centered"> - <span class="buttons"> - <input type="submit" value="Print"> + <hr style="margin-top:3em"/> + <p class="full-width"> + <span class="buttons" style="float:left"> <input type="reset" value="Reset"> <input type="button" value="Cancel" class="close"> </span> + <span class="buttons" style="float:right"> + <input type="submit" value="Print"> + </span> </p> </form> </div> diff --git a/scp/css/scp.css b/scp/css/scp.css index 7e42b1ac6d7b74bde3c7fe84d6d0d47d2cdf3448..899d9caa4726ab6009a89a8c3ef52196d425c8a9 100644 --- a/scp/css/scp.css +++ b/scp/css/scp.css @@ -16,6 +16,10 @@ a { text-align:center; } +.full-width { + width: 100%; +} + .clear { clear:both; } @@ -1171,6 +1175,18 @@ time { height:250px; } +#print-options hr { + height: 1px; + border: 0; + background: #aaa; + background: -moz-linear-gradient(left, rgba(170,170,170,0) 0%, rgba(170,170,170,1) 10%, rgba(170,170,170,1) 90%, rgba(170,170,170,0) 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(170,170,170,0)), color-stop(10%,rgba(170,170,170,1)), color-stop(90%,rgba(170,170,170,1)), color-stop(100%,rgba(170,170,170,0))); /* Chrome,Safari4+ */ + background: -o-linear-gradient(left, rgba(170,170,170,0) 0%,rgba(170,170,170,1) 10%,rgba(170,170,170,1) 90%,rgba(170,170,170,0) 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(left, rgba(170,170,170,0) 0%,rgba(170,170,170,1) 10%,rgba(170,170,170,1) 90%,rgba(170,170,170,0) 100%); /* IE10+ */ + background: linear-gradient(to right, rgba(170,170,170,0) 0%,rgba(170,170,170,1) 10%,rgba(170,170,170,1) 90%,rgba(170,170,170,0) 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00aaaaaa', endColorstr='#00aaaaaa',GradientType=1 ); /* IE6-9 */ +} + #advanced-search h3, #print-options h3 { color:#2a67ac; font-size:20px; @@ -1188,7 +1204,7 @@ time { #advanced-search form, #print-options form { clear:both; - padding:2em 0 1em 0; + padding-top:2em; width:100%; } @@ -1198,7 +1214,7 @@ time { #advanced-search fieldset, #print-options fieldset { margin:0; - padding:0.25em 0; + padding:0 0; border:none; overflow:hidden; }