Skip to content

Commit f1a2fec

Browse files
author
Vladimir Kotal
authored
Merge pull request #1339 from tulinkry/listing-header-height
stabilizing the height if the listing header
2 parents ca88a33 + 0eb5d36 commit f1a2fec

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

web/default/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -660,6 +660,10 @@ table#dirlist { /* the "Name" column */
660660
border-collapse: collapse;
661661
}
662662

663+
table#dirlist thead tr:nth-child(1) {
664+
height: 22px;
665+
}
666+
663667
/* The tablersorter jQuery plugin makes the header fields clickable. */
664668
#dirlist th {
665669
cursor: pointer;

web/offwhite/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -698,6 +698,10 @@ table#dirlist { /* the "Name" column */
698698
border-collapse: collapse;
699699
}
700700

701+
table#dirlist thead tr:nth-child(1) {
702+
height: 22px;
703+
}
704+
701705
/* The tablersorter jQuery plugin makes the header fields clickable. */
702706
#dirlist th {
703707
cursor: pointer;

web/polished/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -753,6 +753,10 @@ table#dirlist { /* the "Name" column */
753753
border-collapse: collapse;
754754
}
755755

756+
table#dirlist thead tr:nth-child(1) {
757+
height: 22px;
758+
}
759+
756760
/* The tablersorter jQuery plugin makes the header fields clickable. */
757761
#dirlist th {
758762
cursor: pointer;

0 commit comments

Comments
 (0)