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/12/12 23:47:31 UTC

[royale-asjs] 30/42: jewel-datagrid: remove top columns borders and add a soft light inner shadow as it comes from the header buttons

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

commit 14dc77bd3d06d8756bc8b9e1ac9dda63b31bdfd1
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Dec 6 18:58:43 2019 +0100

    jewel-datagrid: remove top columns borders and add a soft light inner shadow as it comes from the header buttons
---
 frameworks/projects/Jewel/src/main/resources/defaults.css         | 2 ++
 frameworks/projects/Jewel/src/main/sass/components/_datagrid.sass | 3 +++
 2 files changed, 5 insertions(+)

diff --git a/frameworks/projects/Jewel/src/main/resources/defaults.css b/frameworks/projects/Jewel/src/main/resources/defaults.css
index 2c37850..9dd08f1 100644
--- a/frameworks/projects/Jewel/src/main/resources/defaults.css
+++ b/frameworks/projects/Jewel/src/main/resources/defaults.css
@@ -496,6 +496,8 @@ j|ComboBoxPopUp {
 }
 .jewel.datagrid .jewel.list.column {
   border-radius: 0px;
+  border-top-width: 0px;
+  box-shadow: inset 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
 }
 .jewel.datagrid .jewel.list.column.first {
   border-right: 0px;
diff --git a/frameworks/projects/Jewel/src/main/sass/components/_datagrid.sass b/frameworks/projects/Jewel/src/main/sass/components/_datagrid.sass
index bcc7d16..1a5bd0d 100644
--- a/frameworks/projects/Jewel/src/main/sass/components/_datagrid.sass
+++ b/frameworks/projects/Jewel/src/main/sass/components/_datagrid.sass
@@ -35,6 +35,9 @@ $border-radius: .25rem
 
     .jewel.list.column
         border-radius: 0px
+        border-top-width: 0px
+        box-shadow: inset 0px 1px 1px 0px rgba(0,0,0,0.25)
+
         &.first
             border-right: 0px
             border-bottom-left-radius: $border-radius