Browse Source

Fixing the mozilla notice banner.

pull/249/head
connors 11 years ago
parent
commit
01ffb07e96
  1. 6
      docs-assets/css/docs.css
  2. 6
      lib/sass/docs.scss

6
docs-assets/css/docs.css

@ -30,7 +30,7 @@ h1, h2, h3, h4, h5, h6 {
.docs-header-wrapper .icon { .docs-header-wrapper .icon {
position: absolute; position: absolute;
top: 15px; top: 15px;
left: 15px; right: 15px;
-webkit-transition: opacity 0.2s linear; -webkit-transition: opacity 0.2s linear;
transition: opacity 0.2s linear; transition: opacity 0.2s linear;
} }
@ -387,14 +387,14 @@ hr {
@-moz-keyframes shownotice { @-moz-keyframes shownotice {
0% { 0% {
height: auto; height: 100%;
min-height: 30px; min-height: 30px;
padding: 20px 0; padding: 20px 0;
opacity: 1; opacity: 1;
} }
100% { 100% {
height: auto; height: 100%;
min-height: 30px; min-height: 30px;
padding: 20px 0; padding: 20px 0;
opacity: 1; opacity: 1;

6
lib/sass/docs.scss

@ -29,7 +29,7 @@ h1, h2, h3, h4, h5, h6 {
.icon { .icon {
position: absolute; position: absolute;
top: 15px; top: 15px;
left: 15px; right: 15px;
@include transition(opacity .2s linear); @include transition(opacity .2s linear);
&:active { &:active {
@ -321,13 +321,13 @@ hr {
// Only visible to Mozilla browsers. Sneaky huh? // Only visible to Mozilla browsers. Sneaky huh?
@-moz-keyframes shownotice { @-moz-keyframes shownotice {
0% { 0% {
height: auto; height: 100%;
min-height: 30px; min-height: 30px;
padding: 20px 0; padding: 20px 0;
opacity: 1; opacity: 1;
} }
100% { 100% {
height: auto; height: 100%;
min-height: 30px; min-height: 30px;
padding: 20px 0; padding: 20px 0;
opacity: 1; opacity: 1;

Loading…
Cancel
Save