diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-29 21:45:19 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-29 21:45:19 +0300 |
commit | b32088414941fefd85172614ba6d615db2f07961 (patch) | |
tree | bf973d3d04bab90ca922f31348cff5a99ad21de4 /app/assets | |
parent | 07f156f5c2c6776079f0210f4067121d1b74048d (diff) | |
download | gitlab-ce-b32088414941fefd85172614ba6d615db2f07961.tar.gz |
List groups on Dashboard#projects page
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/gitlab_bootstrap/common.scss | 17 | ||||
-rw-r--r-- | app/assets/stylesheets/gitlab_bootstrap/forms.scss | 19 | ||||
-rw-r--r-- | app/assets/stylesheets/gitlab_bootstrap/nav.scss | 1 |
3 files changed, 20 insertions, 17 deletions
diff --git a/app/assets/stylesheets/gitlab_bootstrap/common.scss b/app/assets/stylesheets/gitlab_bootstrap/common.scss index 9637be679af..bc6c786da50 100644 --- a/app/assets/stylesheets/gitlab_bootstrap/common.scss +++ b/app/assets/stylesheets/gitlab_bootstrap/common.scss @@ -56,23 +56,6 @@ line-height: 24px; } -/** FORMS **/ -input[type='search'].search-text-input { - background-image: url("icon-search.png"); - background-repeat: no-repeat; - background-position: 10px; - padding-left: 25px; - @include border-radius(4px); - border: 1px solid #ccc; -} - -input[type='text'].danger { - background: #F2DEDE!important; - border-color: #D66; - text-shadow: 0 1px 1px #fff -} - -fieldset legend { font-size: 15px; } .tab-content { overflow: visible; diff --git a/app/assets/stylesheets/gitlab_bootstrap/forms.scss b/app/assets/stylesheets/gitlab_bootstrap/forms.scss index d1feb554404..020a0bf7fd5 100644 --- a/app/assets/stylesheets/gitlab_bootstrap/forms.scss +++ b/app/assets/stylesheets/gitlab_bootstrap/forms.scss @@ -31,3 +31,22 @@ input { } } +input[type='search'].search-text-input { + background-image: url("icon-search.png"); + background-repeat: no-repeat; + background-position: 10px; + padding-left: 25px; + @include border-radius(4px); + border: 1px solid #ccc; +} + +input[type='text'].danger { + background: #F2DEDE!important; + border-color: #D66; + text-shadow: 0 1px 1px #fff +} + +fieldset legend { + font-size: 16px; + margin-bottom: 10px; +} diff --git a/app/assets/stylesheets/gitlab_bootstrap/nav.scss b/app/assets/stylesheets/gitlab_bootstrap/nav.scss index 40616f7540a..aa4cb1ed5fd 100644 --- a/app/assets/stylesheets/gitlab_bootstrap/nav.scss +++ b/app/assets/stylesheets/gitlab_bootstrap/nav.scss @@ -22,6 +22,7 @@ background: #F1F1F1; color: $style_color; font-weight: bold; + text-shadow: 0 1px 1px #fff; } &.nav-stacked-menu { |