Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
MINOR SSF-53 : code convention, use "-" instead of "_" for html class…
… property value
  • Loading branch information
normann authored and chillu committed Mar 12, 2012
1 parent 2cbbdde commit aed9193
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions admin/css/screen.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions admin/scss/_style.scss
Expand Up @@ -907,7 +907,7 @@ form.member-profile-form {
overflow-x: auto;
background: none;
width:100%;
.aligned_right_label {
.aligned-right-label {
margin-left:$grid-x*23;
padding:$grid-x 0;
}
Expand Down Expand Up @@ -1359,10 +1359,10 @@ form.small {
p button#action_export {
margin-top:$grid-y*2;
span.btn-icon-download-csv {
height:$grid-y*2 + 1;
height:17px;
}
span.ui-button-text {
padding-left:$grid-x*3 + 3;
padding-left:26px;
}
}
}
2 changes: 1 addition & 1 deletion css/GridField.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion scss/GridField.scss
Expand Up @@ -375,7 +375,7 @@ $gf_grid_x: 16px;
padding-top:2px;
position:absolute;
left:50%;
margin-left:116px;
margin-left:-116px;
.pagination-page-number {
color:$color-text-light;
input {
Expand Down
2 changes: 1 addition & 1 deletion security/Group.php
Expand Up @@ -85,7 +85,7 @@ public function getCMSFields() {
)
);

$parentidfield->setRightTitle('<span class="aligned_right_label">' . _t('Group.GroupReminder', 'If you choose a parent group, this group will take all it\'s roles') . '</span>');
$parentidfield->setRightTitle('<span class="aligned-right-label">' . _t('Group.GroupReminder', 'If you choose a parent group, this group will take all it\'s roles') . '</span>');

// Filter permissions
// TODO SecurityAdmin coupling, not easy to get to the form fields through GridFieldDetailForm
Expand Down

0 comments on commit aed9193

Please sign in to comment.