Skip to content

Commit f156522

Browse files
authored
Merge pull request #1719 from vladak/repository_table_wrapping
wrap all but last td contents in the repository table
2 parents ab0d13e + 01318ec commit f156522

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

web/default/style.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,23 @@ label {
217217
margin-bottom: 0;
218218
}
219219

220+
.panel-body > table {
221+
table-layout: fixed;
222+
}
223+
224+
/* These are wanted for all but the last child hence last child below resets these. */
225+
.panel-body > table tr td, .panel-body-accordion > table tr td {
226+
word-wrap: break-word;
227+
padding-right: 10px;
228+
}
229+
230+
/* 'Current version' column */
220231
.panel-body > table tr td:last-child, .panel-body-accordion > table tr td:last-child {
221232
width: 400px;
233+
word-wrap: normal;
234+
padding-right: 0px;
222235
}
236+
223237
/*
224238
* Changesets colorization
225239
* 1 is the most recent changeset

0 commit comments

Comments
 (0)