Merge branch 'fix-anchor-bug' into 'master'
Fix anchor bug Fixes #1886 See merge request !1395
This commit is contained in:
commit
18b7acc399
8 changed files with 31 additions and 9 deletions
|
@ -20,6 +20,17 @@
|
|||
margin-bottom: 10px;
|
||||
clear: both;
|
||||
|
||||
/* Hack for anchors and fixed navbar */
|
||||
&[id] {
|
||||
&:before {
|
||||
content: '';
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 0;
|
||||
height: 3em;
|
||||
margin-top: -3em;
|
||||
}
|
||||
}
|
||||
|
||||
&:target {
|
||||
.timeline-entry-inner .timeline-content {
|
||||
|
|
|
@ -98,8 +98,7 @@ a:focus {
|
|||
$size: 16px;
|
||||
position: absolute;
|
||||
right: 100%;
|
||||
top: 50%;
|
||||
margin-top: -$size/2;
|
||||
bottom: 7px;
|
||||
margin-right: 0px;
|
||||
padding-right: 20px;
|
||||
display: inline-block;
|
||||
|
@ -109,6 +108,18 @@ a:focus {
|
|||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
/* Hack for anchors and fixed navbar */
|
||||
&[id] {
|
||||
&:before {
|
||||
content: '';
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 0;
|
||||
height: 3em;
|
||||
margin-top: -3em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
|
|
|
@ -12,4 +12,3 @@ html {
|
|||
.container .content {
|
||||
margin: 0 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -65,8 +65,10 @@
|
|||
max-width: 100%;
|
||||
}
|
||||
|
||||
*:first-child {
|
||||
margin-top: 0;
|
||||
h1, h2, h3 {
|
||||
&:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
code { padding: 0 4px; }
|
||||
|
|
|
@ -8,8 +8,6 @@ header {
|
|||
margin-bottom: 0;
|
||||
min-height: 40px;
|
||||
border: none;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
|
||||
.navbar-inner {
|
||||
|
|
|
@ -57,6 +57,7 @@ ul.notes {
|
|||
.note {
|
||||
display: block;
|
||||
position:relative;
|
||||
|
||||
.attachment {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
%header.navbar.navbar-static-top.navbar-gitlab
|
||||
%header.navbar.navbar-fixed-top.navbar-gitlab
|
||||
.navbar-inner
|
||||
.container
|
||||
%div.app_logo
|
||||
|
|
|
@ -2,7 +2,7 @@ module SharedIssuable
|
|||
include Spinach::DSL
|
||||
|
||||
def edit_issuable
|
||||
find(:css, '.issuable-edit').click
|
||||
find(:css, '.issuable-edit').trigger('click')
|
||||
end
|
||||
|
||||
step 'I click link "Edit" for the merge request' do
|
||||
|
|
Loading…
Reference in a new issue