From f21c01c067475fd7587fb59cd40f8dc3cb670461 Mon Sep 17 00:00:00 2001 From: Jeong Hwan Kim Date: Thu, 15 Nov 2018 14:58:06 -0800 Subject: [PATCH] Fixed for checkbox --- .../wwwroot/css/main.css | 22 +++++++++++++------ 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/src/Microsoft.IIS.Administration/wwwroot/css/main.css b/src/Microsoft.IIS.Administration/wwwroot/css/main.css index 76fdd75f..2cd9036c 100644 --- a/src/Microsoft.IIS.Administration/wwwroot/css/main.css +++ b/src/Microsoft.IIS.Administration/wwwroot/css/main.css @@ -305,13 +305,21 @@ input[type=checkbox]:not(old):checked + label > span:before { font-weight : bold; } -input[type=radio]:not(old):checked + label > span > span{ - display : block; - width : 0.85em; - height : 0.85em; - margin : 0.17em; - border : 0.0625em solid #0094ff; - background-color : #0094ff; +input[type=checkbox]:not(old):focus + label { + outline-style: dashed; + outline-width: 2px; + outline-offset: -2px; + outline-color: #000; + text-decoration: underline; +} + +input[type=radio]:not(old):checked + label > span > span { + display: block; + width: 0.85em; + height: 0.85em; + margin: 0.17em; + border: 0.0625em solid #0094ff; + background-color: #0094ff; }