Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-09-06 18:09:54 +0300
committerRuben Davila <rdavila84@gmail.com>2017-09-06 20:57:30 +0300
commit7b567597eef25ca3af8af63a71bcc4dfefc2a694 (patch)
tree6b2fe901187399ff9e49e1c2fe3ea296fd3f18e9 /app/assets/stylesheets/framework/gitlab-theme.scss
parent1245cccf689b7ac47f36097c3d2350a411743921 (diff)
Fix specs; start on light theme
Diffstat (limited to 'app/assets/stylesheets/framework/gitlab-theme.scss')
-rw-r--r--app/assets/stylesheets/framework/gitlab-theme.scss21
1 files changed, 19 insertions, 2 deletions
diff --git a/app/assets/stylesheets/framework/gitlab-theme.scss b/app/assets/stylesheets/framework/gitlab-theme.scss
index a860791b5f6..35c952af51b 100644
--- a/app/assets/stylesheets/framework/gitlab-theme.scss
+++ b/app/assets/stylesheets/framework/gitlab-theme.scss
@@ -118,7 +118,7 @@
border-right: 1px solid $color-800;
}
- .search-input::placeholder {
+ .search-input::placeholder {
color: rgba($color-200, .8);
}
@@ -173,10 +173,27 @@ body {
}
&.ui_dark {
- @include gitlab-theme($dark-100, $dark-200, $dark-500, $dark-700, $dark-800, $dark-900);
+ @include gitlab-theme($theme-gray-100, $theme-gray-200, $theme-gray-500, $theme-gray-700, $theme-gray-800, $theme-gray-900);
+ }
+
+ &.ui_light {
+ @include gitlab-theme($theme-gray-900, $theme-gray-700, $theme-gray-800, $theme-gray-500, $theme-gray-200, $theme-gray-100);
+
+ header.navbar-gitlab-new {
+ background: linear-gradient(to right, $theme-gray-100, $theme-gray-100);
+ box-shadow: 0 2px 0 0 $border-color;
+
+ .logo-text svg {
+ fill: $theme-gray-900;
+ }
+ }
}
&.ui_blue {
@include gitlab-theme($theme-blue-100, $theme-blue-200, $theme-blue-500, $theme-blue-700, $theme-blue-800, $theme-blue-900);
}
+
+ &.ui_green {
+ @include gitlab-theme($theme-green-100, $theme-green-200, $theme-green-500, $theme-green-700, $theme-green-800, $theme-green-900);
+ }
}