AC-948 applied CSS ellipsis to long group names and long host names on inventory edit.

This commit is contained in:
chris Houseknecht
2014-01-22 16:05:02 -05:00
parent 9bbeeb90a8
commit 7a7f1ce032
8 changed files with 24 additions and 187 deletions

View File

@@ -55,12 +55,20 @@ body.modal-open {
.pad-left-lg { padding-left: 50px; }
.normal-weight { font-weight: normal; }
.no-bullets { list-style: none; }
.nowrap { white-space: nowrap; }
.capitalize { text-transform: capitalize; }
.grey-txt { color: @grey; }
.red-txt { color: @red; } a.red-txt:hover { color: @red; } //make red links (for things like cancel)
.text-center { text-align: center !important; }
/* Used on inventory groups/hosts lists for long names */
.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
a {
color: @blue;
text-decoration: none;
@@ -202,10 +210,6 @@ hr {
display: inline-block;
}
.nowrap {
white-space: nowrap;
}
/* help collapse */
h4.panel-title {
font-size: 14px;