From 4589a505e808c8aac8e74794d9d541a5fabca176 Mon Sep 17 00:00:00 2001 From: Felix Favre Date: Sun, 7 Dec 2014 00:08:09 +0100 Subject: [PATCH] css changes --- public/css/theme0.css | 6 ++++++ public/css/theme1.css | 6 ++++++ themes/base.less | 9 +++++++++ 3 files changed, 21 insertions(+) diff --git a/public/css/theme0.css b/public/css/theme0.css index 2a79695f..bd12e97a 100644 --- a/public/css/theme0.css +++ b/public/css/theme0.css @@ -6331,3 +6331,9 @@ a#shifts td.collides:hover { .space-top { margin-top: 15px; } +.messages:focus { + outline: none; +} +.messages a:focus { + outline: none; +} diff --git a/public/css/theme1.css b/public/css/theme1.css index e3a0e638..27bffa74 100644 --- a/public/css/theme1.css +++ b/public/css/theme1.css @@ -6354,6 +6354,12 @@ a#shifts td.collides:hover { .space-top { margin-top: 15px; } +.messages:focus { + outline: none; +} +.messages a:focus { + outline: none; +} .text-primary, .text-primary:hover { color: #428bca; diff --git a/themes/base.less b/themes/base.less index 6832fb1a..1af68866 100644 --- a/themes/base.less +++ b/themes/base.less @@ -33,3 +33,12 @@ body { .space-top { margin-top: 15px; } + +.messages { + &:focus { + outline: none; + } + a:focus { + outline: none; + } +}