UX: suppress long cat names in cat drop down too
This commit is contained in:
parent
727e87b78f
commit
304b96aa81
|
@ -102,6 +102,13 @@
|
|||
}
|
||||
}
|
||||
|
||||
td.category a {
|
||||
// suppress extra long category names in tables
|
||||
max-width:150px;
|
||||
overflow:hidden;
|
||||
text-overflow:ellipsis;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -122,12 +129,6 @@
|
|||
padding-top: 15px;
|
||||
padding-bottom: 15px;
|
||||
border-left: 6px solid;
|
||||
// suppress extra long category names in tables
|
||||
a {
|
||||
max-width:150px;
|
||||
overflow:hidden;
|
||||
text-overflow:ellipsis;
|
||||
}
|
||||
}
|
||||
td.stats {
|
||||
.unit {
|
||||
|
@ -228,15 +229,16 @@ ol.category-breadcrumb {
|
|||
a.badge-category {
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
padding: 4px 0;
|
||||
float: none;
|
||||
line-height: 19px;
|
||||
text-transform: none;
|
||||
width: 100%;
|
||||
min-width: 102px;
|
||||
text-align: center;
|
||||
margin-right: 20px;
|
||||
margin-bottom: 7px;
|
||||
margin-bottom: 0;
|
||||
max-width:200px;
|
||||
overflow:hidden;
|
||||
text-overflow:ellipsis;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue