Skip to content

Commit

Permalink
BUG:fixed alignment of radio buttons on add page pane trac/7473
Browse files Browse the repository at this point in the history
  • Loading branch information
kmayo-ss committed Jul 10, 2012
1 parent ad52b8c commit ac45825
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 61 deletions.
23 changes: 12 additions & 11 deletions admin/css/screen.css

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

104 changes: 54 additions & 50 deletions admin/scss/_style.scss
Expand Up @@ -481,59 +481,63 @@ body.cms {
overflow: auto;
}

#PageType li {
float: none;
width: 100%;
padding: 9px 0 9px 15px;
overflow: hidden;
border-bottom-width: 2px;
border-bottom: 2px groove lighten($color-shadow-light, 95%);
-webkit-border-image: url(../images/textures/bg_fieldset_elements_border.png) 2 stretch stretch;
border-image: url(../images/textures/bg_fieldset_elements_border.png) 2 stretch stretch;

&:last-child {
border-bottom: none;
}

&:hover, &.selected {
background-color: $color-highlight-opacity;
}
#PageType {
ul {
padding-left: 20px;
li {
float: none;
width: 100%;
padding: 9px 0 9px 15px;
overflow: hidden;
border-bottom-width: 2px;
border-bottom: 2px groove lighten($color-shadow-light, 95%);
-webkit-border-image: url(../images/textures/bg_fieldset_elements_border.png) 2 stretch stretch;
border-image: url(../images/textures/bg_fieldset_elements_border.png) 2 stretch stretch;

&:last-child {
border-bottom: none;
}

&:hover, &.selected {
background-color: $color-highlight-opacity;
}

&.disabled {
color: $color-text-disabled;
&:hover {
background: none;
}
}
&.disabled {
color: $color-text-disabled;
&:hover {
background: none;
}
}

input {
margin: inherit;
}
input {
margin: inherit;
}

label {
padding-left: 0;
padding-bottom: 0;
}

input, label, .page-icon, .title {
float: left;
line-height: 1.3em;
}

.page-icon {
margin: 0 4px;
}

.title {
width: 120px;
font-weight: bold;
padding-right: 10px;
}

.description {
font-style: italic;
}

label {
padding-left: 0;
padding-bottom: 0;
}

input, label, .page-icon, .title {
float: left;
line-height: 1.3em;
}

.page-icon {
margin: 0 4px;
}

.title {
width: 120px;
font-weight: bold;
padding-right: 10px;
}

.description {
font-style: italic;
}
}
}
}
}

Expand Down

0 comments on commit ac45825

Please sign in to comment.