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 2019/03/24 18:47:23 UTC

[royale-asjs] branch develop updated: jewel-datechooser: fix border radius in cells

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 f1a428e  jewel-datechooser: fix border radius in cells
f1a428e is described below

commit f1a428e117cab5b9921cfa35b0cf6f615d7d2ffe
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Sun Mar 24 19:47:16 2019 +0100

    jewel-datechooser: fix border radius in cells
---
 frameworks/projects/Jewel/src/main/resources/defaults.css      | 5 ++++-
 frameworks/projects/Jewel/src/main/sass/components/_table.sass | 5 ++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/frameworks/projects/Jewel/src/main/resources/defaults.css b/frameworks/projects/Jewel/src/main/resources/defaults.css
index 48bffb5..e2238c2 100644
--- a/frameworks/projects/Jewel/src/main/resources/defaults.css
+++ b/frameworks/projects/Jewel/src/main/resources/defaults.css
@@ -3595,7 +3595,10 @@ j|Table {
   padding: 6px;
 }
 .jewel.tableitem.calendar {
-  border-radius: 10%;
+  border-radius: 4px;
+}
+.jewel.tableitem.calendar.selected {
+  font-weight: bold;
 }
 
 .empty-cell {
diff --git a/frameworks/projects/Jewel/src/main/sass/components/_table.sass b/frameworks/projects/Jewel/src/main/sass/components/_table.sass
index 0d31991..ed12602 100644
--- a/frameworks/projects/Jewel/src/main/sass/components/_table.sass
+++ b/frameworks/projects/Jewel/src/main/sass/components/_table.sass
@@ -132,7 +132,10 @@ j|Table
     &.with-childs
         padding: 6px
     &.calendar
-        border-radius: 10%
+        border-radius: 4px
+        
+        &.selected
+            font-weight: bold
     
 .empty-cell
     pointer-events: none