diff options
| author | Leo Mouyna <mouynaleo@gmail.com> | 2019-09-28 14:16:42 +0200 |
|---|---|---|
| committer | Léo Mouyna <leo.mouyna@macq.eu> | 2019-10-03 18:15:50 +0200 |
| commit | afc93531809913660c3e08b661bc3b1e4b3ddd2d (patch) | |
| tree | d90d39baf7ed40ca7b9812a26744c4af7bad77ee /ihatemoney/static/css | |
| parent | 1f539b5c0d6d68897bcdb4cdf1f3f81debac49a9 (diff) | |
| download | ihatemoney-mirror-afc93531809913660c3e08b661bc3b1e4b3ddd2d.zip ihatemoney-mirror-afc93531809913660c3e08b661bc3b1e4b3ddd2d.tar.gz ihatemoney-mirror-afc93531809913660c3e08b661bc3b1e4b3ddd2d.tar.bz2 | |
feat: Optional field 'external link' in bill form.
An optional field has been added to the bill form to add a link to a real bill. A new action button allow user to see this bill. Breaking change with Bill model update for database, a migration is needed.
See issue #429.
Diffstat (limited to 'ihatemoney/static/css')
| -rw-r--r-- | ihatemoney/static/css/main.css | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/ihatemoney/static/css/main.css b/ihatemoney/static/css/main.css index acc95a1..52bd77b 100644 --- a/ihatemoney/static/css/main.css +++ b/ihatemoney/static/css/main.css @@ -32,7 +32,7 @@ body { @media (min-width: 992px) { .projects-item { - margin-left: auto!important; + margin-left: auto !important; } } @@ -108,7 +108,6 @@ body { .identifier { margin-bottom: 0; } - } #add-member-form { @@ -132,7 +131,7 @@ body { /* Home */ .home-container { - background: linear-gradient(150deg, #abe128 0%, #43CA61 100%); + background: linear-gradient(150deg, #abe128 0%, #43ca61 100%); } .home { padding-top: 1em; @@ -146,7 +145,7 @@ body { min-width: 25em; border: 0; border-radius: 0; - box-shadow: 0px 0px 10px rgba(83, 88, 93, .40); + box-shadow: 0px 0px 10px rgba(83, 88, 93, 0.4); margin-right: 25px; margin-bottom: 20px; margin-left: 25px; @@ -159,7 +158,6 @@ body { .empty-bill { margin-top: 5rem !important; - } .empty-bill .card { border: 0; @@ -240,7 +238,7 @@ footer .footer-right a { @-moz-document url-prefix() { /** Firefox style fix **/ footer .footer-right a { - padding-top: 2px + padding-top: 2px; } } footer .footer-right a:hover { @@ -290,7 +288,8 @@ footer .footer-left { } .bill-actions > .delete, -.bill-actions > .edit { +.bill-actions > .edit, +.bill-actions > .see { font-size: 0px; display: block; width: 16px; @@ -308,6 +307,10 @@ footer .footer-left { background: url("../images/edit.png") no-repeat right; } +.bill-actions > .see { + background: url("../images/see.png") no-repeat right; +} + #bill_table { margin-top: 30px; } @@ -483,4 +486,4 @@ footer .icon svg { } .icon.icon-white { fill: white; -}
\ No newline at end of file +} |
