Przeglądaj źródła

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

Hide scrollbars where they interrupt
Lauri Ojansivu 6 miesięcy temu
rodzic
commit
4ec0e63d99

+ 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;