diff options
| author | Brice Maron <b.maron@whatever-company.com> | 2019-07-24 15:42:44 +0200 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2019-07-25 13:26:46 +0200 |
| commit | 773fbec5b2b44ab22b68b6284fbc246de2f363fb (patch) | |
| tree | 7dde8d1a9c09151a7b7d34fee6f343c6e8b8c02c | |
| parent | bfa145b816c3f79061f25b19646f4805a032a689 (diff) | |
| download | ihatemoney-mirror-773fbec5b2b44ab22b68b6284fbc246de2f363fb.zip ihatemoney-mirror-773fbec5b2b44ab22b68b6284fbc246de2f363fb.tar.gz ihatemoney-mirror-773fbec5b2b44ab22b68b6284fbc246de2f363fb.tar.bz2 | |
Cleanup some unused css rules
| -rw-r--r-- | ihatemoney/static/css/main.css | 14 | ||||
| -rw-r--r-- | ihatemoney/templates/home.html | 4 |
2 files changed, 3 insertions, 15 deletions
diff --git a/ihatemoney/static/css/main.css b/ihatemoney/static/css/main.css index 6c8b57f..3c905a0 100644 --- a/ihatemoney/static/css/main.css +++ b/ihatemoney/static/css/main.css @@ -17,7 +17,6 @@ body { margin: 0; padding: 0; } -.navbar .primary-nav { padding-left: 75px; } .navbar .secondary-nav { text-align: right; flex-direction: row-reverse; @@ -138,12 +137,6 @@ footer{ color: #fff; } -.password-reminder{ - float: right; - margin-right: 20px; - margin-top: 5px; -} - .confirm, .confirm:hover { color: red; } @@ -171,11 +164,6 @@ footer{ background: url('../images/edit.png') no-repeat right; } -project-actions { - padding-top: 10px; - text-align: center; -} - .project-actions > .delete, .project-actions > .edit { font-size: 0px; display: block; @@ -207,7 +195,7 @@ tr.ower_line { background-color: #CBEF68; } -tr.payer_line .balance-name{ +tr.payer_line .balance-name { color:green; text-indent:5px; } diff --git a/ihatemoney/templates/home.html b/ihatemoney/templates/home.html index a628ecc..512f780 100644 --- a/ihatemoney/templates/home.html +++ b/ihatemoney/templates/home.html @@ -22,8 +22,8 @@ {{ forms.authenticate(auth_form, home=True) }} </fieldset> <div class="controls"> - <button class="btn" type="submit">{{ _("log in") }}</button> - <a class="password-reminder" href="{{ url_for(".remind_password") }}">{{ _("can't remember your password?") }}</a> + <button class="btn btn-primary" type="submit">{{ _("log in") }}</button> + <a class="password-reminder btn btn-link" href="{{ url_for(".remind_password") }}">{{ _("can't remember your password?") }}</a> </div> </form> </div> |
