updated css to not override .label on the admin
Showing
2 changed files
with
3 additions
and
3 deletions
| ... | @@ -608,7 +608,7 @@ div.dataTables_paginate span.paginate_active { | ... | @@ -608,7 +608,7 @@ div.dataTables_paginate span.paginate_active { |
| 608 | .small-table td { font-size:11px; padding:3px; } | 608 | .small-table td { font-size:11px; padding:3px; } |
| 609 | 609 | ||
| 610 | /* LABELS | ex. <div class="label label-red label-register"> */ | 610 | /* LABELS | ex. <div class="label label-red label-register"> */ |
| 611 | .label { | 611 | .glabel { |
| 612 | width:43px; | 612 | width:43px; |
| 613 | height: 14px; | 613 | height: 14px; |
| 614 | position:relative; | 614 | position:relative; | ... | ... |
| ... | @@ -90,11 +90,11 @@ use WP_User; | ... | @@ -90,11 +90,11 @@ use WP_User; |
| 90 | 90 | ||
| 91 | 91 | ||
| 92 | 92 | ||
| 93 | $html .= '<div style="text-align:right;margin-bottom:5px;"><a href="/invoices/?view='.$invoice->ID.'&pagename=invoice-preview" class="label label-black-print print-invoice-handler" target="_blank"></a></div>'; | 93 | $html .= '<div style="text-align:right;margin-bottom:5px;"><a href="/invoices/?view='.$invoice->ID.'&pagename=invoice-preview" class="glabel label-black-print print-invoice-handler" target="_blank"></a></div>'; |
| 94 | 94 | ||
| 95 | $html .= Invoice\DrawInvoice($invoice,true); | 95 | $html .= Invoice\DrawInvoice($invoice,true); |
| 96 | 96 | ||
| 97 | $html .= '<div style="text-align:right;margin-top:5px;"><a href="/invoices/?view='.$_GET['view'].'&pagename=invoice-preview" class="label label-black-print print-invoice-handler" target="_blank"></a></div>'; | 97 | $html .= '<div style="text-align:right;margin-top:5px;"><a href="/invoices/?view='.$_GET['view'].'&pagename=invoice-preview" class="glabel label-black-print print-invoice-handler" target="_blank"></a></div>'; |
| 98 | 98 | ||
| 99 | 99 | ||
| 100 | print $html; | 100 | print $html; | ... | ... |
-
Please register or sign in to post a comment