Fixed table overflow, added wrapper for histogram
This commit is contained in:
parent
12cf298467
commit
75b278b333
2 changed files with 7 additions and 0 deletions
app
6
app/styles/play/ladder/ladder_tab.sass
Normal file
6
app/styles/play/ladder/ladder_tab.sass
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#ladder-tab-view
|
||||||
|
.name-col-cell
|
||||||
|
max-width: 150px
|
||||||
|
white-space: nowrap
|
||||||
|
overflow: hidden
|
||||||
|
text-overflow: ellipsis
|
|
@ -1,6 +1,7 @@
|
||||||
div#columns.row
|
div#columns.row
|
||||||
for team in teams
|
for team in teams
|
||||||
div.column.col-md-4
|
div.column.col-md-4
|
||||||
|
div(id="histogram-display-#{team.name}", class="histogram-display",data-team-name=team.name)
|
||||||
table.table.table-bordered.table-condensed.table-hover
|
table.table.table-bordered.table-condensed.table-hover
|
||||||
tr
|
tr
|
||||||
th
|
th
|
||||||
|
|
Reference in a new issue