Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/hauke96/hugo-theme-hamburg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorHauke Stieler <mail@hauke-stieler.de>2018-08-28 19:01:17 +0300
committerHauke Stieler <mail@hauke-stieler.de>2018-08-28 19:01:17 +0300
commit651aaa986153255aafaaaf08ecfd353fad8e2a20 (patch)
treeb73b186beb1091526fa25b5ea16807b11533458d /static
parent7f85bbb57ac0cd32b28aabf7283648244de1be97 (diff)
Add focus colors
Diffstat (limited to 'static')
-rw-r--r--static/css/color-theme.css10
1 files changed, 8 insertions, 2 deletions
diff --git a/static/css/color-theme.css b/static/css/color-theme.css
index a35418b..21ab4fd 100644
--- a/static/css/color-theme.css
+++ b/static/css/color-theme.css
@@ -52,7 +52,8 @@ From material design color palette:
color: #0000004d;
}
-a:hover {
+a:hover,
+a:focus {
color: #33691e;
}
@@ -87,13 +88,17 @@ a:hover {
color: #558b2f;
}
+.btn-primary:focus,
.btn-primary:hover {
color: #33691e;
background-color: #fff;
border-color: #33691e;
}
-.btn-primary.disabled, a.btn-primary.disabled {
+.btn-primary.disabled,
+.btn-primary.disabled:focus,
+a.btn-primary.disabled,
+a.btn-primary.disabled:focus {
color: #616161;
background-color: #fff;
border-color: #bdbdbd;
@@ -106,6 +111,7 @@ a:hover {
border-color: #fff;
}
+.btn-default:focus,
.btn-default:hover {
color: #fff;
background-color: #bdbdbd4d;