Responsive
This commit is contained in:
parent
c93681ed33
commit
7f54c28cdb
@ -70,9 +70,9 @@ llxHeaderTicket($langs->trans("Tickets"), "", 0, 0, $arrayofjs, $arrayofcss);
|
|||||||
print '<div class="ticketpublicarea">';
|
print '<div class="ticketpublicarea">';
|
||||||
print '<p style="text-align: center">'.($conf->global->TICKET_PUBLIC_TEXT_HOME ? $conf->global->TICKET_PUBLIC_TEXT_HOME : $langs->trans("TicketPublicDesc")).'</p>';
|
print '<p style="text-align: center">'.($conf->global->TICKET_PUBLIC_TEXT_HOME ? $conf->global->TICKET_PUBLIC_TEXT_HOME : $langs->trans("TicketPublicDesc")).'</p>';
|
||||||
print '<div class="ticketform">';
|
print '<div class="ticketform">';
|
||||||
print '<a href="create_ticket.php" class=""><div class="index_create orange bigrounded">'.dol_escape_htmltag($langs->trans("CreateTicket")).'</div></a>';
|
print '<a href="create_ticket.php" class="butAction marginbottomonly"><div class="index_create bigrounded"><span class="fa fa-plus-circle valignmiddle btnTitle-icon"></span><br>'.dol_escape_htmltag($langs->trans("CreateTicket")).'</div></a>';
|
||||||
print '<a href="list.php" class=""><div class="index_display blue bigrounded">'.dol_escape_htmltag($langs->trans("ShowListTicketWithTrackId")).'</div></a>';
|
print '<a href="list.php" class="butAction marginbottomonly"><div class="index_display bigrounded"><span class="fa fa-list-alt valignmiddle btnTitle-icon"></span><br>'.dol_escape_htmltag($langs->trans("ViewMyTicketList")).'</div></a>';
|
||||||
print '<a href="view.php" class=""><div class="index_display blue bigrounded">'.dol_escape_htmltag($langs->trans("ShowTicketWithTrackId")).'</div></a>';
|
print '<a href="view.php" class="butAction marginbottomonly"><div class="index_display bigrounded">'.img_picto('', 'ticket').'<br>'.dol_escape_htmltag($langs->trans("ShowTicketWithTrackId")).'</div></a>';
|
||||||
print '<div style="clear:both;"></div>';
|
print '<div style="clear:both;"></div>';
|
||||||
print '</div>';
|
print '</div>';
|
||||||
print '</div>';
|
print '</div>';
|
||||||
|
|||||||
@ -58,7 +58,7 @@ span.butAction, span.butActionDelete {
|
|||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
||||||
margin: 0em <?php echo ($dol_optimize_smallscreen ? '0.6' : '0.9'); ?>em !important;
|
margin: 0em <?php echo ($dol_optimize_smallscreen ? '0.6' : '0.9'); ?>em;
|
||||||
padding: 0.6em <?php echo ($dol_optimize_smallscreen ? '0.6' : '0.7'); ?>em;
|
padding: 0.6em <?php echo ($dol_optimize_smallscreen ? '0.6' : '0.7'); ?>em;
|
||||||
font-family: <?php print $fontlist ?>;
|
font-family: <?php print $fontlist ?>;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|||||||
@ -5834,8 +5834,8 @@ div.tabsElem a.tab {
|
|||||||
padding-left: 5px; padding-right: 5px;
|
padding-left: 5px; padding-right: 5px;
|
||||||
}
|
}
|
||||||
.ticketpublicarea {
|
.ticketpublicarea {
|
||||||
margin-left: 100%;
|
margin-left: 10px;
|
||||||
margin-right: 100%;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -5808,7 +5808,8 @@ border-top-right-radius: 6px;
|
|||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
|
|
||||||
.ticketpublicarea {
|
.ticketpublicarea {
|
||||||
width: 70%;
|
margin-left: 15%;
|
||||||
|
margin-right: 15%;
|
||||||
}
|
}
|
||||||
.publicnewticketform {
|
.publicnewticketform {
|
||||||
/* margin-top: 25px !important; */
|
/* margin-top: 25px !important; */
|
||||||
@ -5824,7 +5825,8 @@ border-top-right-radius: 6px;
|
|||||||
padding-left: 5px; padding-right: 5px;
|
padding-left: 5px; padding-right: 5px;
|
||||||
}
|
}
|
||||||
.ticketpublicarea {
|
.ticketpublicarea {
|
||||||
width: 100%;
|
margin-left: 10px;
|
||||||
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -74,56 +74,13 @@ div.ticketform {
|
|||||||
div.ticketform .index_create, .index_display {
|
div.ticketform .index_create, .index_display {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 200px;
|
width: 200px;
|
||||||
height: 58px;
|
height: 45px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.ticketform .orange {
|
|
||||||
color: #fef4e9;
|
|
||||||
border: solid 1px #da7c0c;
|
|
||||||
background: #f78d1d;
|
|
||||||
background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
|
|
||||||
background: -moz-linear-gradient(top, #faa51a, #f47a20);
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
|
|
||||||
}
|
|
||||||
div.ticketform .orange:active {
|
|
||||||
color: #fcd3a5;
|
|
||||||
background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
|
|
||||||
background: -moz-linear-gradient(top, #f47a20, #faa51a);
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
|
|
||||||
}
|
|
||||||
|
|
||||||
div.ticketform .orange:hover {
|
|
||||||
background: #f47c20;
|
|
||||||
background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
|
|
||||||
background: -moz-linear-gradient(top, #f88e11, #f06015);
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
|
|
||||||
}
|
|
||||||
|
|
||||||
div.ticketform .blue {
|
|
||||||
color: #d9eef7;
|
|
||||||
border: solid 1px #0076a3;
|
|
||||||
background: #0095cd;
|
|
||||||
background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
|
|
||||||
background: -moz-linear-gradient(top, #00adee, #0078a5);
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
|
|
||||||
}
|
|
||||||
div.ticketform .blue:active {
|
|
||||||
color: #80bed6;
|
|
||||||
background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
|
|
||||||
background: -moz-linear-gradient(top, #0078a5, #00adee);
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078a5', endColorstr='#00adee');
|
|
||||||
}
|
|
||||||
div.ticketform .blue:hover {
|
|
||||||
background: #007ead;
|
|
||||||
background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
|
|
||||||
background: -moz-linear-gradient(top, #0095cc, #00678e);
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
|
|
||||||
}
|
|
||||||
|
|
||||||
#form_create_ticket, #form_view_ticket
|
#form_create_ticket, #form_view_ticket
|
||||||
{
|
{
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user