diff options
author | rubenwardy <rw@rubenwardy.com> | 2018-12-24 00:13:45 +0000 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2018-12-24 00:13:45 +0000 |
commit | c79c970171ecc2c96d6b670068175ffbe3e6682a (patch) | |
tree | 58d50af3c7da535f68377fefe88075829376cd93 | |
parent | fa0506f58a592051eaed23bfde69ccee663083f6 (diff) | |
download | cheatdb-c79c970171ecc2c96d6b670068175ffbe3e6682a.tar.xz |
Fix .wiptopic affecting buttons
-rw-r--r-- | app/scss/components.scss | 4 | ||||
-rw-r--r-- | app/templates/base.html | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/app/scss/components.scss b/app/scss/components.scss index 31b9600..4de074b 100644 --- a/app/scss/components.scss +++ b/app/scss/components.scss @@ -76,13 +76,13 @@ color: #2c2; } -.wiptopic a { +.wiptopic a:not(.btn) { color: #7ac; } .discardtopic { text-decoration: line-through; - a { + a:not(.btn) { color: #7ac; } filter: brightness(0.5); diff --git a/app/templates/base.html b/app/templates/base.html index b3f467e..52f0974 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -7,7 +7,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{% block title %}title{% endblock %} - {{ config.USER_APP_NAME }}</title> <link rel="stylesheet" type="text/css" href="/static/bootstrap.css"> - <link rel="stylesheet" type="text/css" href="/static/custom.css?v=3"> + <link rel="stylesheet" type="text/css" href="/static/custom.css?v=4"> {% block headextra %}{% endblock %} </head> |