Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
46d35330
Commit
46d35330
authored
Feb 24, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3073 from dmedvinsky/cosmetic-search-transition
Add transition on search box
parents
292dffc2
b0fb68c1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
app/assets/stylesheets/gitlab_bootstrap/mixins.scss
app/assets/stylesheets/gitlab_bootstrap/mixins.scss
+8
-0
app/assets/stylesheets/sections/header.scss
app/assets/stylesheets/sections/header.scss
+1
-0
No files found.
app/assets/stylesheets/gitlab_bootstrap/mixins.scss
View file @
46d35330
...
...
@@ -24,6 +24,14 @@
background-image
:
-o-linear-gradient
(
$from
,
$to
);
}
@mixin
transition
(
$transition
)
{
-webkit-transition
:
$transition
;
-moz-transition
:
$transition
;
-ms-transition
:
$transition
;
-o-transition
:
$transition
;
transition
:
$transition
;
}
/**
* Prefilled mixins
* Mixins with fixed values
...
...
app/assets/stylesheets/sections/header.scss
View file @
46d35330
...
...
@@ -90,6 +90,7 @@ header {
@include
border-radius
(
3px
);
border
:
1px
solid
#c6c6c6
;
box-shadow
:
none
;
@include
transition
(
all
0
.15s
ease-in
0s
);
&
:focus
{
@extend
.span3
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment