Commit eb0590b0 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

FIx wiki tests. Fixed margin for issues page

parent e36baadd
...@@ -24,10 +24,17 @@ ...@@ -24,10 +24,17 @@
@include linear-gradient(#fAfAfA, #f1f1f1); @include linear-gradient(#fAfAfA, #f1f1f1);
} }
&.focus,
&:focus {
text-decoration: none;
@include box-shadow(inset 0 2px 4px rgba(0,0,0,.15));
}
&.active, &.active,
&:active { &:active {
background-image: none; background-image: none;
outline: 0; outline: 0;
text-decoration: none;
@include box-shadow(inset 0 2px 4px rgba(0,0,0,.15)); @include box-shadow(inset 0 2px 4px rgba(0,0,0,.15));
} }
......
...@@ -44,7 +44,7 @@ input.check_all_issues { ...@@ -44,7 +44,7 @@ input.check_all_issues {
margin: 0; margin: 0;
margin-right: 10px; margin-right: 10px;
position: relative; position: relative;
top: 8px; top: 10px;
height: 22px; height: 22px;
} }
...@@ -52,6 +52,10 @@ input.check_all_issues { ...@@ -52,6 +52,10 @@ input.check_all_issues {
.title { .title {
height: 40px; height: 40px;
} }
form {
margin: 0;
}
} }
.btn.close_issue { .btn.close_issue {
......
...@@ -17,7 +17,7 @@ class ProjectWiki < Spinach::FeatureSteps ...@@ -17,7 +17,7 @@ class ProjectWiki < Spinach::FeatureSteps
Given 'I create the Wiki Home page' do Given 'I create the Wiki Home page' do
fill_in "Content", with: '[link test](test)' fill_in "Content", with: '[link test](test)'
click_on "Save" click_on "Create page"
end end
Then 'I should see the newly created wiki page' do Then 'I should see the newly created wiki page' do
...@@ -43,7 +43,7 @@ class ProjectWiki < Spinach::FeatureSteps ...@@ -43,7 +43,7 @@ class ProjectWiki < Spinach::FeatureSteps
And 'I change the content' do And 'I change the content' do
fill_in "Content", with: 'Updated Wiki Content' fill_in "Content", with: 'Updated Wiki Content'
click_on "Save" click_on "Save changes"
end end
Then 'I should see the updated content' do Then 'I should see the updated content' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment