implement vlan hide/show when list is larger than 10

This commit is contained in:
Oliver Gorwits
2012-01-12 21:19:32 +00:00
parent 9dea705a1b
commit 659b984fec
3 changed files with 47 additions and 9 deletions

View File

@@ -134,11 +134,32 @@ form .clearfix.success input {
border-top: 8px solid #F89406;
}
/* draw little up arrow to the right of a label for collapsed list */
.cell-arrow-up {
float: left;
margin-top: 4px;
margin-right: 6px;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 8px solid #F89406;
}
/* draw little down arrow to the right of a label for collapsed list */
.cell-arrow-down {
float: left;
margin-top: 4px;
margin-right: 6px;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-top: 8px solid #F89406;
}
/* nudge the port name/vlan filter over a little */
.nd_port_query {
margin-left: -2px !important;
}
/* for ports table to center cell content */
.center_cell {
text-align: center;
}