From 88bb2f91a5706fc6180be010eecc5fa32f238657 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20M=C3=A9tais?= Date: Mon, 27 Apr 2015 11:19:25 +0200 Subject: [PATCH] Change submit button color on focus --- front/src/css/index.css | 3 +++ front/src/less/index.less | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/front/src/css/index.css b/front/src/css/index.css index e091604..0b19f6a 100644 --- a/front/src/css/index.css +++ b/front/src/css/index.css @@ -16,6 +16,9 @@ background: #e74c3c; color: #fff; } +.launchBtn:focus { + background: #ffa319; +} .launchBtn.disabled { background: #deaca6; } diff --git a/front/src/less/index.less b/front/src/less/index.less index 5c4ae7d..f06b5fe 100644 --- a/front/src/less/index.less +++ b/front/src/less/index.less @@ -18,9 +18,13 @@ .launchBtn { background: #e74c3c; color: #fff; + &:focus { + background: #ffa319; + } &.disabled { background: #deaca6; } + } .features {