summaryrefslogtreecommitdiffstats
path: root/webapp/src/assets
diff options
context:
space:
mode:
authorUdo Walter2019-01-16 18:54:58 +0100
committerUdo Walter2019-01-16 18:54:58 +0100
commitb8da9b16ab89bd8d781481ae6bfc5a3c63641618 (patch)
tree309ba0dcc6666a2f1c32ccdbf889ecd615be756a /webapp/src/assets
parent[webapp] small bugfixes (diff)
downloadbas-b8da9b16ab89bd8d781481ae6bfc5a3c63641618.tar.gz
bas-b8da9b16ab89bd8d781481ae6bfc5a3c63641618.tar.xz
bas-b8da9b16ab89bd8d781481ae6bfc5a3c63641618.zip
[webapp/datatable] add button to filter only selected rows
+ some scrolling bugfixes
Diffstat (limited to 'webapp/src/assets')
-rw-r--r--webapp/src/assets/styles.css29
1 files changed, 21 insertions, 8 deletions
diff --git a/webapp/src/assets/styles.css b/webapp/src/assets/styles.css
index c540d57..22bb716 100644
--- a/webapp/src/assets/styles.css
+++ b/webapp/src/assets/styles.css
@@ -1,5 +1,5 @@
html {
- overflow-y: auto;
+ overflow-y: scroll;
}
.non-selectable {
@@ -24,7 +24,7 @@ html {
}
::-webkit-scrollbar-corner {
- background: rgba(0,0,0,0);
+ background-color: transparent;
}
::-webkit-scrollbar-button {
@@ -42,11 +42,24 @@ html {
flex: 1
}
-.element-container {
- padding: 26px;
+.tabbar-card {
+ position: sticky;
+ top: 64px;
+ z-index: 2;
}
-.CodeMirror {
- min-height: 200px;
- height: auto;
-}
+.no-animation {
+/*CSS transitions*/
+-o-transition-property: none !important;
+-moz-transition-property: none !important;
+-ms-transition-property: none !important;
+-webkit-transition-property: none !important;
+transition-property: none !important;
+
+/*CSS animations*/
+-webkit-animation: none !important;
+-moz-animation: none !important;
+-o-animation: none !important;
+-ms-animation: none !important;
+animation: none !important;
+} \ No newline at end of file