Merge pull request #1414 from coreos-inc/smalluifix
Fix overflow of tag names in the tags view
This commit is contained in:
commit
23b5edba9b
3 changed files with 38 additions and 10 deletions
|
@ -999,6 +999,17 @@ a:focus {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.co-fixed-table {
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
.co-fixed-table .co-flowing-col{
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
padding-left: 16px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.co-table td {
|
||||
border-bottom: 1px solid #eee;
|
||||
padding: 10px;
|
||||
|
@ -1045,10 +1056,12 @@ a:focus {
|
|||
|
||||
.co-table .checkbox-col {
|
||||
width: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.co-table td.options-col {
|
||||
width: 30px;
|
||||
width: 36px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.co-table td.caret-col {
|
||||
|
|
Reference in a new issue