This is an automated email from the ASF dual-hosted git repository.
hugoferreira 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 6f7bd2b Fixed vertical scrollbars visible on VirtualDataGrid in all
columns
6f7bd2b is described below
commit 6f7bd2b848021e856efe1b6769bf0815913dadd2
Author: Hugo Ferreira <[email protected]>
AuthorDate: Sun Dec 5 00:21:53 2021 +0000
Fixed vertical scrollbars visible on VirtualDataGrid in all columns
---
.../projects/Jewel/src/main/resources/defaults.css | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/frameworks/projects/Jewel/src/main/resources/defaults.css
b/frameworks/projects/Jewel/src/main/resources/defaults.css
index 357a498..7eddae9 100644
--- a/frameworks/projects/Jewel/src/main/resources/defaults.css
+++ b/frameworks/projects/Jewel/src/main/resources/defaults.css
@@ -576,6 +576,28 @@ j|VirtualComboBoxPopUp {
content: "\200b";
}
+.first.jewel.list::-webkit-scrollbar
+{
+ display: none;
+}
+
+.first.jewel.list
+{
+ -ms-overflow-style: none;
+ scrollbar-width: none;
+}
+
+.middle.jewel.list::-webkit-scrollbar
+{
+ display: none;
+}
+
+.middle.jewel.list
+{
+ -ms-overflow-style: none;
+ scrollbar-width: none;
+}
+
j|DataGrid {
IBeadView:
ClassReference("org.apache.royale.jewel.beads.views.DataGridView");
IBeadModel:
ClassReference("org.apache.royale.html.beads.models.DataGridCollectionViewModel");