瀏覽代碼

fix scrollbar top border

Adam Shaw 5 年之前
父節點
當前提交
9eb9b8ab13
共有 1 個文件被更改,包括 6 次插入5 次删除
  1. 6 5
      packages/core/src/styles/_scrollgrid.scss

+ 6 - 5
packages/core/src/styles/_scrollgrid.scss

@@ -31,12 +31,13 @@
 
 
 // dedup top/bottom borders
-// rows own their top border (though header swallows top border of row after)
-.fc-scrollgrid {
-  tr:first-child > * { border-top: 0 }
-  tr:not(.fc-scrollgrid-section-head) > * { border-bottom: 0 }
+// rows own their top border for the most part
+.fc-scrollgrid tr:not(.fc-scrollgrid-section-head) > * { // but header still owns its bottom border
+  border-bottom: 0;
 }
-.fc-scrollgrid-section-head + .fc-scrollgrid-section > * {
+.fc-scrollgrid tr:first-child > *,
+.fc-scrollgrid-section-head + .fc-scrollgrid-section > *, // the section right after the header
+.fc .fc-scrollgrid-section-foot > * { // the foot, because it's usually just scrollbars
   border-top: 0;
 }