Skip to content

Commit

Permalink
Adds automated horizontal scrollbars to tables of times to handle ove…
Browse files Browse the repository at this point in the history
…rflow

Team EE has exposed that elmastats does not have handling for when tables of times exceed the expected maximum-width of the page. 

Though EE is currently the only example that is breaking, other teams are not far off and in theory we may choose to later add further functionality that does this too.

This commit adjusts the CSS of the table class across the board to automagically handle horizontal scrollbars rather than breaking.
  • Loading branch information
TemperGrace authored Jun 20, 2024
1 parent 3e9ca00 commit f78cfcb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion css/Default.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ table.times {
border-style: solid;
border-color: #000000;
background-color: #303030;
max-width: 720px;
overflow-x: auto;
}
th.times {
border-style: dotted;
Expand Down Expand Up @@ -86,4 +88,4 @@ ul.tabbernav li.tabberactive a {
.tabberlive .tabbertab {
border: 1px solid #000000;
background-color: #404040;
}
}

0 comments on commit f78cfcb

Please sign in to comment.