Skip to content

Commit

Permalink
Merge branch 'develop' into 3.2-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
evildmp committed Nov 3, 2015
2 parents 2136bbc + 6abd813 commit 5539171
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 11 deletions.
2 changes: 1 addition & 1 deletion cms/static/cms/css/cms.base.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion cms/static/cms/css/cms.pagetree.css

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

6 changes: 6 additions & 0 deletions cms/static/cms/sass/cms.pagetree.scss
Expand Up @@ -163,6 +163,7 @@ $row-height: 41px;
padding: 5px 0 4px 5px;
border-bottom: 1px solid $color-border;
background: $color-background-light;
box-sizing: content-box;
}
ul.header li .cont {
height: 15px;
Expand Down Expand Up @@ -266,6 +267,7 @@ $row-height: 41px;
height: $row-height;
padding: 0 8px;
border-left: 1px solid $color-border-medium;
box-sizing: content-box;
}
li .col2 > div a,
li .col2 > div span {
Expand Down Expand Up @@ -423,6 +425,10 @@ $row-height: 41px;
display: none;
}
}
#changelist-search {
margin-top: 35px;
margin-right: 0;
}
// remove background assigned from django
.change-list .filtered {
min-height: 0;
Expand Down
12 changes: 8 additions & 4 deletions cms/static/cms/sass/components/_toolbar.scss
Expand Up @@ -396,10 +396,10 @@
line-height: $login-form-input-height - 2px;
width: $login-form-input-width;
margin: 0;
padding: 0px $login-form-input-padding-horizontal;
padding: 0 $login-form-input-padding-horizontal;
border: 1px solid $login-form-input-border;
border-radius: $login-form-input-border-radius;
box-shadow: 0px 1px 0px $white;
box-shadow: 0 1px 0 $white;

&:focus {
transition: outline 0.2s;
Expand All @@ -408,11 +408,15 @@
}
}
input[type="submit"] {
display: block;
font-size: $login-form-input-font-size - 1px;
text-transform: uppercase;
height: $login-form-input-height - 2px;
line-height: $login-form-input-height - 2px;
padding: 0 $login-form-submit-padding-horizontal;
&:-moz-focus-inner {
border: 0;
}
}

.cms-error {
Expand Down Expand Up @@ -458,8 +462,8 @@
position: relative;
z-index: 10;
width: 95px;
background: transparent;
&:focus {
&:focus,
&:valid {
background: $white;
}
}
Expand Down

0 comments on commit 5539171

Please sign in to comment.