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 2020/04/27 18:06:31 UTC

[royale-asjs] branch develop updated: todomvc: fix focus list style recently added

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 d48c1e4  todomvc: fix focus list style recently added
d48c1e4 is described below

commit d48c1e4d7615f12442898dd76ae52993f8b17a2a
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Mon Apr 27 20:06:26 2020 +0200

    todomvc: fix focus list style recently added
---
 .../crux/todomvc-jewel-crux/src/main/resources/todomvc-styles.css     | 4 ++++
 examples/jewel/todomvc/src/main/resources/todomvc-styles.css          | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/examples/crux/todomvc-jewel-crux/src/main/resources/todomvc-styles.css b/examples/crux/todomvc-jewel-crux/src/main/resources/todomvc-styles.css
index f7c6674..00733c4 100644
--- a/examples/crux/todomvc-jewel-crux/src/main/resources/todomvc-styles.css
+++ b/examples/crux/todomvc-jewel-crux/src/main/resources/todomvc-styles.css
@@ -209,6 +209,10 @@
 	background: none;
 }
 
+.jewel.list:focus {
+	border: 0px solid transparent;
+}
+
 /* ItemRenderer */
 .jewel.item {
 	padding: 0px;
diff --git a/examples/jewel/todomvc/src/main/resources/todomvc-styles.css b/examples/jewel/todomvc/src/main/resources/todomvc-styles.css
index d82b5ca..5193d43 100644
--- a/examples/jewel/todomvc/src/main/resources/todomvc-styles.css
+++ b/examples/jewel/todomvc/src/main/resources/todomvc-styles.css
@@ -220,6 +220,10 @@ todomvc|TodoListSection
 	background: none;
 }
 
+.jewel.list:focus {
+	border: 0px solid transparent;
+}
+
 /* ItemRenderer */
 .jewel.item {
 	padding: 0px;