Skip to content

Commit

Permalink
Allow multi-line application names.
Browse files Browse the repository at this point in the history
  • Loading branch information
ajshort committed Jul 4, 2012
1 parent 890f7e3 commit b44ff84
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions admin/css/screen.css

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

24 changes: 12 additions & 12 deletions admin/scss/_menu.scss
Expand Up @@ -10,7 +10,7 @@
.cms-logo-header {
background-color: darken($color-dark-bg, 10%);
position: relative;
padding: $grid-y + 1 8px 0 4px;
padding: 0 8px 0 4px;
line-height: 24px;

@include background-image(
Expand All @@ -19,8 +19,6 @@

span {
color: $color-text-light;
white-space: nowrap;
text-overflow: ellipsis;
display: block;

a {
Expand All @@ -32,9 +30,9 @@

.cms-logo {
border-bottom: 1px solid darken($color-dark-separator, 20%);
height: 31px;
overflow: hidden;
padding: 0 0 0 4px;
padding: $grid-y 0;
position: relative;
vertical-align: middle;
font-size: $font-base-size;

Expand All @@ -43,12 +41,13 @@
}

a {
display: inline-block;
height: 24px;
position: absolute;
top: $grid-y;
bottom: $grid-y;
left: 4px;
display: block;
width: 24px;
float: left;
margin-right: 8px;
background: $application-logo-small no-repeat;
background: $application-logo-small no-repeat left center;
text-indent: -9999em;
padding-right: 7px;
border-right: 1px solid $color-dark-separator;
Expand All @@ -57,8 +56,9 @@
span {
font-weight: bold;
font-size: 14px;
@include hide-text-overflow();
padding-top:1px;
line-height: 20px;
padding: 2px 0;
margin-left: 44px;
}
}

Expand Down

0 comments on commit b44ff84

Please sign in to comment.