mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-18 09:04:35 +01:00
Styling changes
This commit is contained in:
commit
88b8d97603
@ -52,7 +52,7 @@
|
||||
|
||||
<div class="form-group">
|
||||
<div class="col-lg-8 col-lg-offset-4 bold">
|
||||
<span class="redlink" data-bind="visible: $parent.contacts().length > 1">
|
||||
<span class="redlink bold" data-bind="visible: $parent.contacts().length > 1">
|
||||
{{ link_to('#', 'Remove contact -', array('data-bind'=>'click: $parent.removeContact')) }}
|
||||
</span>
|
||||
<span data-bind="visible: $index() === ($parent.contacts().length - 1)" class="pull-right greenlink bold">
|
||||
|
@ -147,7 +147,7 @@
|
||||
<div class="line-total" data-bind="text: totals.total"></div>
|
||||
</td>
|
||||
<td style="cursor:pointer" class="hide-border td-icon">
|
||||
<i style="display:none" data-bind="click: $parent.removeItem, visible: actionsVisible() && $parent.invoice_items().length > 1" class="fa fa-minus-circle" title="Remove item"/>
|
||||
<i style="display:none" data-bind="click: $parent.removeItem, visible: actionsVisible() && $parent.invoice_items().length > 1" class="fa fa-minus-circle redlink" title="Remove item"/>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -319,11 +319,11 @@
|
||||
|
||||
<div class="form-group">
|
||||
<div class="col-lg-8 col-lg-offset-4">
|
||||
<span data-bind="visible: $parent.contacts().length > 1">
|
||||
{{ link_to('#', 'Remove contact', array('data-bind'=>'click: $parent.removeContact')) }}
|
||||
<span class="redlink bold" data-bind="visible: $parent.contacts().length > 1">
|
||||
{{ link_to('#', 'Remove contact -', array('data-bind'=>'click: $parent.removeContact')) }}
|
||||
</span>
|
||||
<span data-bind="visible: $index() === ($parent.contacts().length - 1)" class="pull-right">
|
||||
{{ link_to('#', 'Add contact', array('data-bind'=>'click: $parent.addContact')) }}
|
||||
<span data-bind="visible: $index() === ($parent.contacts().length - 1)" class="pull-right greenlink bold">
|
||||
{{ link_to('#', 'Add contact +', array('data-bind'=>'click: $parent.addContact')) }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
@ -375,15 +375,15 @@
|
||||
</thead>
|
||||
<tbody data-bind="foreach: $root.tax_rates.filtered">
|
||||
<tr data-bind="event: { mouseover: showActions, mouseout: hideActions }">
|
||||
<td style="width:10px" class="hide-border"></td>
|
||||
<td style="width:30px" class="hide-border"></td>
|
||||
<td style="width:60px">
|
||||
<input onkeyup="onTaxRateChange()" data-bind="value: name, valueUpdate: 'afterkeydown'" class="form-control" onchange="refreshPDF()"//>
|
||||
</td>
|
||||
<td style="width:60px">
|
||||
<input onkeyup="onTaxRateChange()" data-bind="value: prettyRate, valueUpdate: 'afterkeydown'" style="text-align: right" class="form-control" onchange="refreshPDF()"//>
|
||||
</td>
|
||||
<td style="width:10px; cursor:pointer" class="hide-border td-icon">
|
||||
<i data-bind="click: $root.removeTaxRate, visible: actionsVisible() && !isEmpty()" class="fa fa-minus-circle" title="Remove item"/>
|
||||
<td style="width:30px; cursor:pointer" class="hide-border td-icon">
|
||||
<i style="width:12px;" data-bind="click: $root.removeTaxRate, visible: actionsVisible() && !isEmpty()" class="fa fa-minus-circle redlink" title="Remove item"/>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
5046
composer.lock
generated
5046
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,4 @@
|
||||
body { background: #fff !important;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
body { background: #f8f8f8 !important;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
.bold { font-weight: 700; }
|
||||
@ -21,7 +20,9 @@ border-bottom: 1px solid #dfe0e1;
|
||||
.greenlink a { color:#36c157; }
|
||||
.greenlink a:hover { color:#2e9e49; }
|
||||
.redlink a { color:#da4830; }
|
||||
.redlink { color:#da4830; }
|
||||
.redlink a:hover { color:#c13b25; }
|
||||
.redlink:hover { color:#c13b25; }
|
||||
|
||||
.buttons { margin: 25px 0; }
|
||||
.buttons .btn { margin: 0 6px; }
|
||||
@ -130,14 +131,18 @@ color: #333;
|
||||
}
|
||||
|
||||
/*modals*/
|
||||
|
||||
.modal .container {
|
||||
padding: 20px;
|
||||
}
|
||||
.modal-header {
|
||||
border-bottom: 1px solid #dfe0e1;
|
||||
background-color: #f8f8f8;
|
||||
border-bottom: none;
|
||||
background-color: #0b4d78;
|
||||
padding: 20px;
|
||||
color: #fff;
|
||||
}
|
||||
.modal-footer {
|
||||
background-color: #f8f8f8;
|
||||
border-top: 1px solid #dfe0e1;
|
||||
border-top: none;
|
||||
}
|
||||
.modal thead {
|
||||
background: #fff;
|
||||
@ -145,10 +150,22 @@ color: #333;
|
||||
}
|
||||
.modal .table>thead>tr>th {
|
||||
border-bottom: 1px solid #dfe0e1 !important; padding-top: 30px;
|
||||
background: #fff !important;
|
||||
color: #333 !important;
|
||||
}
|
||||
.modal .table>thead>tr>th:first-child, .modal .table>thead>tr>th:last-child {
|
||||
border-bottom: none !important;
|
||||
}
|
||||
.modal .close {
|
||||
color: #fff;
|
||||
text-shadow: none;
|
||||
opacity: .8;
|
||||
filter: alpha(opacity=80);
|
||||
}
|
||||
.modal .close:hover {
|
||||
opacity: 1;
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
/*buttons*/
|
||||
.btn { font-weight: bold;
|
||||
border-radius: 3px;
|
||||
|
Loading…
Reference in New Issue
Block a user