You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2021/01/06 11:39:56 UTC

[royale-asjs] branch develop updated: jewel-navigation: solve issue in Navigation list showing a primary color border line on focus

This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 7122eab  jewel-navigation: solve issue in Navigation list showing a primary color border line on focus
7122eab is described below

commit 7122eab7e71a65e3ab41e12ea528f061fcc325af
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Wed Jan 6 12:39:44 2021 +0100

    jewel-navigation: solve issue in Navigation list showing a primary color border line on focus
---
 frameworks/projects/Jewel/src/main/resources/defaults.css | 2 +-
 frameworks/projects/Jewel/src/main/sass/_global.sass      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/frameworks/projects/Jewel/src/main/resources/defaults.css b/frameworks/projects/Jewel/src/main/resources/defaults.css
index db6d871..e8da502 100644
--- a/frameworks/projects/Jewel/src/main/resources/defaults.css
+++ b/frameworks/projects/Jewel/src/main/resources/defaults.css
@@ -28,7 +28,7 @@ html, body {
   border: 0;
 }
 
-input:focus, textarea:focus, select:focus, div:focus, label:focus, nav:focus, li:focus {
+input:focus, textarea:focus, select:focus, div:focus, label:focus, nav:focus, li:focus, a:focus {
   outline: none;
 }
 
diff --git a/frameworks/projects/Jewel/src/main/sass/_global.sass b/frameworks/projects/Jewel/src/main/sass/_global.sass
index 522dd40..1258e32 100644
--- a/frameworks/projects/Jewel/src/main/sass/_global.sass
+++ b/frameworks/projects/Jewel/src/main/sass/_global.sass
@@ -32,7 +32,7 @@ html, body
 ::-moz-focus-inner, ::-moz-focus-outer
 	border: 0
 
-input:focus, textarea:focus, select:focus, div:focus, label:focus, nav:focus, li:focus
+input:focus, textarea:focus, select:focus, div:focus, label:focus, nav:focus, li:focus, a:focus
 	outline: none
 
 select::-ms-expand