From 316e5fd3da26f2d1b76966523abee076b9bb2628 Mon Sep 17 00:00:00 2001 From: Maksim Minko Date: Tue, 25 Feb 2020 23:05:26 +0100 Subject: [PATCH] Fix #20: fix export btn hover (#21) * issue#20: update allowed hosts & fix export btn hover * issue#20: revert css padding change * issue#20: remove export btn important font color rule --- infomate/settings.py | 2 +- static/css/components.css | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/infomate/settings.py b/infomate/settings.py index 266cf7c..fe01599 100644 --- a/infomate/settings.py +++ b/infomate/settings.py @@ -10,7 +10,7 @@ DEBUG = os.getenv("DEBUG", True) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) SECRET_KEY = "wow so secret" -ALLOWED_HOSTS = ["127.0.0.1", "0.0.0.0", "vas3k.ru", "infomate.club"] +ALLOWED_HOSTS = ["127.0.0.1", "localhost", "0.0.0.0", "vas3k.ru", "infomate.club"] INSTALLED_APPS = [ "django.contrib.staticfiles", diff --git a/static/css/components.css b/static/css/components.css index 3e6fd36..e8c0a7a 100644 --- a/static/css/components.css +++ b/static/css/components.css @@ -342,7 +342,7 @@ .export-button { display: inline-block; - color: var(--opposite-text-color) !important; + color: var(--opposite-text-color); font-size: 90%; padding: 10px 20px; margin-top: 40px; @@ -404,4 +404,4 @@ .coming-soon p { font-size: 120%; - } \ No newline at end of file + }