From ce2588f57d28275e22f1f94d82f78d7f3d7c8905 Mon Sep 17 00:00:00 2001 From: Bryan Brancotte <bryan.brancotte@pasteur.fr> Date: Thu, 29 Aug 2019 13:35:21 +0200 Subject: [PATCH] minor fix in .btn-* :active:focus --- .../static/css/basetheme_bootstrap4_pasteur.css | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/basetheme_bootstrap/static/css/basetheme_bootstrap4_pasteur.css b/basetheme_bootstrap/static/css/basetheme_bootstrap4_pasteur.css index 0f1e127..1ff59b3 100644 --- a/basetheme_bootstrap/static/css/basetheme_bootstrap4_pasteur.css +++ b/basetheme_bootstrap/static/css/basetheme_bootstrap4_pasteur.css @@ -281,10 +281,12 @@ color: #0275e3; .show>.btn-primary.dropdown-toggle, .btn-outline-primary:hover , .btn-primary:hover, +.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:active , .btn-primary:active, .btn-outline-primary:focus , .btn-primary:focus { + color: #fff; background-color: #0275e3; border-color: #0275e3; } @@ -292,10 +294,12 @@ color: #0275e3; .show>.btn-secondary.dropdown-toggle, .btn-outline-secondary:hover, .btn-secondary:hover, +.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:active, .btn-secondary:active, .btn-outline-secondary:focus, .btn-secondary:focus { + color: #fff; background-color: #81796a; border-color: #81796a; } diff --git a/setup.py b/setup.py index de1c40c..afd62cc 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ readme = open('README.rst').read() setup( name='django-basetheme-bootstrap', - version='0.2.2', + version='0.2.3', description='Django Basetheme Bootstrap', long_description=readme, author='Bryan Brancotte', -- GitLab