diff options
Diffstat (limited to 'theme/stylesheets/book/header.less')
-rwxr-xr-x | theme/stylesheets/book/header.less | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/theme/stylesheets/book/header.less b/theme/stylesheets/book/header.less index 6c45816..f89153f 100755 --- a/theme/stylesheets/book/header.less +++ b/theme/stylesheets/book/header.less @@ -3,7 +3,7 @@ font-family: @font-family-sans; position: fixed; - overflow: hidden; + overflow: visible; top: 0px; right: 0px; left: 0px; @@ -24,6 +24,7 @@ text-transform: uppercase; line-height: @header-height; .box-shadow(none) !important; + position:relative; &:hover { position: relative; @@ -64,4 +65,30 @@ .transition(none) !important; } } + &.color-theme-1{ + .book-header{ + color: @header-color-1; + background: @header-background-1; + .btn { + color: @header-button-color-1; + &:hover { + color: @header-button-hover-color-1; + background: @header-button-hover-background-1; + } + } + } + } + &.color-theme-2{ + .book-header{ + color: @header-color-2; + background: @header-background-2; + .btn { + color: @header-button-color-2; + &:hover { + color: @header-button-hover-color-2; + background: @header-button-hover-background-2; + } + } + } + } } |