diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2016-06-17 10:06:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-17 10:06:19 +0200 |
| commit | 5084cafe6bcd266bd1e676fc6921a7dba3c48a57 (patch) | |
| tree | 7c2d5f915a5f37d086e31b61cb71fd20dbf4b385 /budget/static/css | |
| parent | 789196721584ca4800e4236eee36955e78761346 (diff) | |
| parent | c49a355eb082cff208806f785d52567ddd043c03 (diff) | |
| download | ihatemoney-mirror-5084cafe6bcd266bd1e676fc6921a7dba3c48a57.zip ihatemoney-mirror-5084cafe6bcd266bd1e676fc6921a7dba3c48a57.tar.gz ihatemoney-mirror-5084cafe6bcd266bd1e676fc6921a7dba3c48a57.tar.bz2 | |
Merge pull request #131 from JocelynDelalande/members-weights
Added Members weights handling
Diffstat (limited to 'budget/static/css')
| -rw-r--r-- | budget/static/css/main.css | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/budget/static/css/main.css b/budget/static/css/main.css index 97a3e19..f3fe8a0 100644 --- a/budget/static/css/main.css +++ b/budget/static/css/main.css @@ -176,6 +176,11 @@ tr.payer_line .balance-name{ color: red; } +.edit button, .edit button:hover { + background: url('../images/edit.png') left no-repeat; + +} + .reactivate button, .reactivate button:hover { background: url('../images/reactivate.png') left no-repeat; color: white; @@ -189,6 +194,18 @@ tr.payer_line .balance-name{ position: absolute; } +.light { + opacity: 0.3; +} + +.extra-info { + display: none; +} + +tr:hover .extra-info { + display: inline; +} + .modal-body { max-height:455px; } @@ -208,4 +225,3 @@ tr.payer_line .balance-name{ .row-fluid > .offset3{margin-left:25.5%;} .row-fluid > .offset2{margin-left:17%;} .row-fluid > .offset1{margin-left:8.5%;} - |
