Commit 682a167c by Reda Lemeden

Changed height and padding for wiki header

parent 4520b15d
...@@ -172,6 +172,7 @@ h1.top-header { ...@@ -172,6 +172,7 @@ h1.top-header {
font-size: 12px; font-size: 12px;
margin: (-$body-line-height) (-$body-line-height) $body-line-height; margin: (-$body-line-height) (-$body-line-height) $body-line-height;
text-shadow: 0 1px 0 #fff; text-shadow: 0 1px 0 #fff;
height:46px;
@media print { @media print {
display: none; display: none;
......
...@@ -20,10 +20,10 @@ div.wiki-wrapper { ...@@ -20,10 +20,10 @@ div.wiki-wrapper {
p { p {
float: left; float: left;
padding: 15px; padding: lh(.75) lh();
margin-bottom: 0; margin-bottom: 0;
color: darken(#F6EFD4, 55%); color: darken(#F6EFD4, 55%);
line-height: 1em; line-height: lh();
} }
ul { ul {
...@@ -34,6 +34,7 @@ div.wiki-wrapper { ...@@ -34,6 +34,7 @@ div.wiki-wrapper {
float: left; float: left;
input[type="button"] { input[type="button"] {
@extend .block-link;
@include box-shadow(inset 1px 0 0 lighten(#f6efd4, 5%)); @include box-shadow(inset 1px 0 0 lighten(#f6efd4, 5%));
@include border-radius(0); @include border-radius(0);
@include transition(); @include transition();
...@@ -42,28 +43,31 @@ div.wiki-wrapper { ...@@ -42,28 +43,31 @@ div.wiki-wrapper {
color: darken(#F6EFD4, 80%); color: darken(#F6EFD4, 80%);
text-shadow: none; text-shadow: none;
font-weight: normal; font-weight: normal;
font-size: 12px; // font-size: 12px;
text-transform: uppercase; // text-transform: uppercase;
letter-spacing: 1px; letter-spacing: 1px;
padding: 14.9px; // padding: 14.9px;
padding: lh(.60) lh();
padding-left: 38px; padding-left: 38px;
margin: 0; margin: 0;
background-position: 12px center;
background-color: darken(#F6EFD4, 5%);
background-repeat: no-repeat;
&.view { &.view {
background: darken(#F6EFD4, 5%) url('/static/images/sequence-nav/view.png') no-repeat 12px 12px; background-image: url('/static/images/sequence-nav/view.png');
} }
&.history { &.history {
background: darken(#F6EFD4, 5%) url('/static/images/sequence-nav/history.png') no-repeat 12px 12px; background-image: url('/static/images/sequence-nav/history.png');
} }
&.edit { &.edit {
background: darken(#F6EFD4, 5%) url('/static/images/sequence-nav/edit.png') no-repeat 12px 12px; background-image: url('/static/images/sequence-nav/edit.png');
} }
&:hover { &:hover {
background-color: #F6EFD4; background-color: transparent;
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment