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
Kazuhiko Shiozaki
gitlab-ce
Commits
df0bd0c2
Commit
df0bd0c2
authored
Nov 25, 2012
by
Koen Punt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed bg-gradient, now directly using linear-gradient
parent
81175073
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
8 deletions
+4
-8
app/assets/stylesheets/common.scss
app/assets/stylesheets/common.scss
+2
-2
app/assets/stylesheets/gitlab_bootstrap/buttons.scss
app/assets/stylesheets/gitlab_bootstrap/buttons.scss
+2
-2
app/assets/stylesheets/mixins.scss
app/assets/stylesheets/mixins.scss
+0
-4
No files found.
app/assets/stylesheets/common.scss
View file @
df0bd0c2
...
...
@@ -374,12 +374,12 @@ p.time {
height
:
100%
;
}
.bar-success
{
@include
linear-gradient
(
#62C462
,
#51A351
);
background-color
:
#468847
;
@include
bg-gradient
(
#62C462
,
#51A351
);
}
.bar-danger
{
@include
linear-gradient
(
#EE5F5B
,
#BD362F
);
background-color
:
#B94A48
;
@include
bg-gradient
(
#EE5F5B
,
#BD362F
);
}
}
.upvotes
{
...
...
app/assets/stylesheets/gitlab_bootstrap/buttons.scss
View file @
df0bd0c2
.btn
{
@include
bg
-gradient
(
#f7f7f7
,
#d5d5d5
);
@include
linear
-gradient
(
#f7f7f7
,
#d5d5d5
);
border-color
:
#aaa
;
&
:hover
{
@include
bg-gray-gradient
;
...
...
@@ -9,7 +9,7 @@
&
.primary
{
background
:
#2a79A3
;
@include
bg
-gradient
(
#47A7b7
,
#2585b5
);
@include
linear
-gradient
(
#47A7b7
,
#2585b5
);
border-color
:
#2A79A3
;
color
:
#fff
;
text-shadow
:
0
1px
1px
#268
;
...
...
app/assets/stylesheets/mixins.scss
View file @
df0bd0c2
...
...
@@ -34,10 +34,6 @@
background-image
:
-o-linear-gradient
(
$from
,
$to
);
}
@mixin
bg-gradient
(
$from
,
$to
)
{
@include
linear-gradient
(
$from
,
$to
);
}
@mixin
bg-light-gray-gradient
{
background
:
#f1f1f1
;
background-image
:
-webkit-gradient
(
linear
,
0
0
,
0
30
,
color-stop
(
0
.066
,
#f5f5f5
)
,
to
(
#e1e1e1
));
...
...
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