浏览代码

Merge pull request #5573 from NadavTasher/feature/hide-scrollbars-in-card-details-and-lists

Hide scrollbars where they interrupt
Lauri Ojansivu 7 月之前
父节点
当前提交
4ec0e63d99
共有 2 个文件被更改,包括 8 次插入0 次删除
  1. 4 0
      client/components/cards/cardDetails.css
  2. 4 0
      client/components/lists/list.css

+ 4 - 0
client/components/cards/cardDetails.css

@@ -90,6 +90,10 @@
   transition: flex-basis 0.1s;
   box-sizing: border-box;
 }
+.card-details::-webkit-scrollbar {
+  /* Hide scroll bars from middle of the screen */
+  display: none !important;
+}
 .card-details .mCustomScrollBox {
   padding-left: 0;
 }

+ 4 - 0
client/components/lists/list.css

@@ -148,6 +148,10 @@
   overflow-y: auto;
   padding: 5px 11px;
 }
+.list-body::-webkit-scrollbar {
+  /* Hide scroll bars from middle of the screen */
+  display: none !important;
+}
 .list-body .minicards {
   flex-grow: 1;
   flex-shrink: 0;