diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-04-23 10:51:02 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-04-23 10:51:02 +0000 |
commit | 1c96b0b9bf01b8044082ce078a74aef66162053b (patch) | |
tree | b5c16ae980c71adc7af6ef803369d2f0f33d4bb3 /features/steps/snippets | |
parent | aac27550457eaf0503ce9bf7b04c18141ed317af (diff) | |
parent | 71f6143552a47209d4d83c35260db608cac7de1a (diff) | |
download | gitlab-ce-1c96b0b9bf01b8044082ce078a74aef66162053b.tar.gz |
Merge branch 'new-sidebar' into 'master'
New sidebar design
I want to make separation between sidebar and content
- [x] change sidebar and header colors
- [x] change colors for old light theme so it matches dark style too
- [x] rename theme names to something more reasonable
- [x] fix header logo collapse with JS
- [x] fix navless layouts (explore page, login page, snippets, user page)
- [x] fix tests
See merge request !558
Diffstat (limited to 'features/steps/snippets')
-rw-r--r-- | features/steps/snippets/user.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/features/steps/snippets/user.rb b/features/steps/snippets/user.rb index 866f637ab6c..146cc535d88 100644 --- a/features/steps/snippets/user.rb +++ b/features/steps/snippets/user.rb @@ -32,19 +32,19 @@ class Spinach::Features::SnippetsUser < Spinach::FeatureSteps end step 'I click "Internal" filter' do - within('.nav-stacked') do + within('.nav-tabs') do click_link "Internal" end end step 'I click "Private" filter' do - within('.nav-stacked') do + within('.nav-tabs') do click_link "Private" end end step 'I click "Public" filter' do - within('.nav-stacked') do + within('.nav-tabs') do click_link "Public" end end |