BUGFIX:SSF-53 - removed hover and active states from unlink button on users groups datagrid

This commit is contained in:
jbridson 2012-03-08 12:45:09 +13:00
parent de69d0944b
commit c3a2938a6d
2 changed files with 17 additions and 2 deletions

View File

@ -7,7 +7,10 @@
.cms table.ss-gridfield-table thead tr.filter-header .fieldgroup { max-width: 512px; }
.cms table.ss-gridfield-table tbody { background: #FFF; }
.cms table.ss-gridfield-table tbody td button { border: none; background: none; margin: 0 0 0 2px; padding: 0; width: auto; text-shadow: none; }
.cms table.ss-gridfield-table tbody td button.gridfield-button-delete:hover { background: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
.cms table.ss-gridfield-table tbody td button.gridfield-button-delete.ui-state-hover { background: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
.cms table.ss-gridfield-table tbody td button.gridfield-button-delete.ui-state-active { border: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
.cms table.ss-gridfield-table tbody td button.gridfield-button-unlink.ui-state-hover { background: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
.cms table.ss-gridfield-table tbody td button.gridfield-button-unlink.ui-state-active { border: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
.cms table.ss-gridfield-table tbody td a.edit-link { display: inline-block; width: 20px; height: 20px; text-indent: -9999em; background: url(../images/icons/document--pencil.png) no-repeat 0 1px; }
.cms table.ss-gridfield-table tfoot { color: #1d2224; }
.cms table.ss-gridfield-table tfoot tr td { background: #95a5ab; padding: .7em; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

View File

@ -82,10 +82,22 @@ $gf_grid_x: 16px;
padding: 0;
width: auto;
text-shadow: none;
&.gridfield-button-delete:hover {
&.gridfield-button-delete.ui-state-hover {
background:none;
@include box-shadow-none;
}
&.gridfield-button-delete.ui-state-active {
border:none;
@include box-shadow-none;
}
&.gridfield-button-unlink.ui-state-hover {
background:none;
@include box-shadow-none;
}
&.gridfield-button-unlink.ui-state-active {
border:none;
@include box-shadow-none;
}
}
a.edit-link {
display:inline-block;