diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-02-17 12:16:19 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-02-17 12:16:19 +0200 |
commit | 1efeb1b562cd9c8e2e460d2753da5bb2f5978bfd (patch) | |
tree | 9146f51e7d31cc8ad7f01bceaf81ae9448d16e8a | |
parent | 32a5548c416ea1e2537c9c89735629d83d95f270 (diff) | |
download | gitlab-ce-1efeb1b562cd9c8e2e460d2753da5bb2f5978bfd.tar.gz |
redesign mars theme a bit. Better border color for search-input for dark theme
-rw-r--r-- | app/assets/stylesheets/sections/header.scss | 1 | ||||
-rw-r--r-- | app/assets/stylesheets/themes/ui_mars.scss | 23 |
2 files changed, 8 insertions, 16 deletions
diff --git a/app/assets/stylesheets/sections/header.scss b/app/assets/stylesheets/sections/header.scss index e30c63ee44e..05c077a867a 100644 --- a/app/assets/stylesheets/sections/header.scss +++ b/app/assets/stylesheets/sections/header.scss @@ -227,6 +227,7 @@ header { .search-input { background-color: #D2D5DA; background-color: rgba(255, 255, 255, 0.5); + border: 1px solid #AAA; &:focus { background-color: white; diff --git a/app/assets/stylesheets/themes/ui_mars.scss b/app/assets/stylesheets/themes/ui_mars.scss index afe22270180..a2b8c21ea11 100644 --- a/app/assets/stylesheets/themes/ui_mars.scss +++ b/app/assets/stylesheets/themes/ui_mars.scss @@ -16,25 +16,16 @@ @extend .header-dark; &.navbar-gitlab { .navbar-inner { - background: #474D57 url('bg-header.png') repeat-x bottom; - border-bottom: 1px solid #444; - } - } - - .search { - .search-input { - border: 1px solid rgba(0, 0, 0, 0.7); - background-color: #D2D5DA; - background-color: rgba(255, 255, 255, 0.5); - - &:focus { - background-color: white; + background: #474D57; + border-bottom: 1px solid #373D47; + .app_logo { + &:hover { + background-color: #373D47; + } } } } - .search-input::-webkit-input-placeholder { - color: #666; - } + .separator { background: #31363E; border-left: 1px solid #666; |