From a0fb0a8663761a029c1c8905c74750aac10e778a Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 15 Jul 2018 18:42:59 +0200 Subject: [PATCH] oooooh --- static/nryg.less | 6 +++--- templates/base.html | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/static/nryg.less b/static/nryg.less index 54e143da..6e02e646 100644 --- a/static/nryg.less +++ b/static/nryg.less @@ -49,7 +49,7 @@ textarea { height: 300px; } -button, input[type="submit"], .button { +button, input[type="submit"], .btn { background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.1); border-radius: 0; border: 1px solid @text-color; @@ -64,12 +64,12 @@ button, input[type="submit"], .button { cursor: default; } -button:hover, input[type="submit"]:hover, .button:hover { +button:hover, input[type="submit"]:hover, .btn:hover { background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.3); border: 1px solid @accent-color; } -button:active, input[type="submit"]:active, .button:active { +button:active, input[type="submit"]:active, .btn:active { background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.5); color: @accent-color !important; border: 1px solid @accent-color; diff --git a/templates/base.html b/templates/base.html index f2f0c112..8c2c5fad 100644 --- a/templates/base.html +++ b/templates/base.html @@ -19,9 +19,9 @@ {% if session.get('username') is not none %} {{ session.get('username') }} - Logout + Logout {% else %} - Login + Login {% endif %}