Skip to content

Commit 5e1aa62

Browse files
committed
Prevent mobile table td collapsing issue
Fixes #1128
1 parent 3c43069 commit 5e1aa62

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

app/styles/_tables.less

+5-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
> thead >tr > th, > tbody > tr > td {
99
border-left: 0;
1010
border-right: 0;
11-
padding-bottom: 8px;
12-
padding-top: 8px;
11+
padding-bottom: @table-cell-padding-bottom;
12+
padding-top: @table-cell-padding-top;
1313
vertical-align: middle;
1414
}
1515

@@ -123,7 +123,9 @@
123123
/* Behave like a row */
124124
border: none;
125125
border-bottom: 1px solid lighten(@table-border-color, 5%);
126-
padding: 3px 6px 2px 35%;
126+
// prevent empty td from collapsing
127+
min-height: (@table-cell-padding-top + @table-cell-padding-bottom) + (@line-height-base * @font-size-base);
128+
padding-left: 35%;
127129
position: relative;
128130
&:last-child {
129131
border-bottom: none;

app/styles/_variables.less

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
@navbar-pf-alt-navbar-brand-padding: 20px 0;
1717
@navbar-pf-bg-color: @navbar-os-bg-color;
1818
@sidebar-pf-bg: @body-bg;
19+
@table-cell-padding-bottom: 8px;
20+
@table-cell-padding-top: 8px;
1921

2022

2123
// OpenShift Console specific

dist/styles/main.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -2220,7 +2220,7 @@ td>.progress:first-child:last-child{margin-bottom:0;margin-top:3px}
22202220
.progress-description .fa,.progress-description .pficon{font-size:14px;margin-right:3px}
22212221
.progress-description-left .progress-description{left:0;margin-bottom:0;max-width:85px;position:absolute;top:0}
22222222
.progress-description .tooltip{white-space:normal}
2223-
.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:2px 10px 3px}
2223+
.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px 10px}
22242224
.nav-tabs+.nav-tabs-pf>li:first-child>a,.nav-tabs-pf.nav-justified>li:first-child>a{padding-left:15px}
22252225
.table>tbody>tr>td>a:hover,.table>tbody>tr>th>a:hover,.table>tfoot>tr>td>a:hover,.table>tfoot>tr>th>a:hover,.table>thead>tr>td>a:hover,.table>thead>tr>th>a:hover{text-decoration:none}
22262226
.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>th{font-family:"Open Sans";font-style:normal;font-weight:600}
@@ -4961,7 +4961,7 @@ body,html{margin:0;padding:0}
49614961
.table-mobile.table-empty{border:0}
49624962
.table-mobile.table-empty>tbody>tr>td{border:0;padding-left:0}
49634963
.table-mobile>tbody>tr{border-top:2px solid #d1d1d1}
4964-
.table-mobile>tbody>tr>td{border:none;border-bottom:1px solid #dedede;padding:3px 6px 2px 35%;position:relative}
4964+
.table-mobile>tbody>tr>td{border:none;border-bottom:1px solid #dedede;min-height:37.67px;padding-left:35%;position:relative}
49654965
.table-mobile>tbody>tr>td:last-child{border-bottom:none}
49664966
.table-mobile>tbody>tr>td:before{content:attr(data-title);position:absolute;top:8px;left:6px;width:35%;padding-right:10px;white-space:nowrap}
49674967
}

0 commit comments

Comments
 (0)