Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Corrects cross-browser height issues for .btn-group + .small.
Fixes bug 921737.

Change-Id: I3b3f7ab53ceec5529b055cbe6777450d24cc2750
  • Loading branch information
gabrielhurley committed Jan 25, 2012
1 parent db1842c commit eea6cfe
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions openstack-dashboard/dashboard/static/dashboard/css/style.css
Expand Up @@ -753,8 +753,17 @@ td.actions_column {
min-height: 20px;
}

.btn-group .btn.small {
padding: 7px 9px 6px;
/* Makes size consistent across browsers when mixing "btn-group" and "small" */
.btn-group > .btn.small {
height: 12px;
}
.btn-group .dropdown-toggle {
height: 12px;
padding-top: 7px;
padding-bottom: 7px;
}
.btn-group .dropdown-toggle:focus {
outline: none;
}

td.actions_column ul.row_actions li:hover {
Expand Down

0 comments on commit eea6cfe

Please sign in to comment.