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
Jérome Perrin
gitlab-ce
Commits
3a33795f
Commit
3a33795f
authored
Feb 20, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
css shadow for some components
parent
5f4a7c3e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
8 deletions
+15
-8
app/assets/stylesheets/common.scss
app/assets/stylesheets/common.scss
+2
-8
app/assets/stylesheets/main.scss
app/assets/stylesheets/main.scss
+7
-0
app/assets/stylesheets/tree.scss
app/assets/stylesheets/tree.scss
+6
-0
No files found.
app/assets/stylesheets/common.scss
View file @
3a33795f
...
...
@@ -111,9 +111,7 @@ nav.main_menu {
background-image
:
-moz-linear-gradient
(
#eee
6
.6%
,
#dfdfdf
);
background-image
:
-o-linear-gradient
(
#eee
6
.6%
,
#dfdfdf
);
-moz-box-shadow
:
0
0
3px
#ddd
;
-webkit-box-shadow
:
0
0
3px
#ddd
;
box-shadow
:
0
0
3px
#ddd
;
@include
shade
;
.count
{
...
...
@@ -282,9 +280,9 @@ img.lil_av {
.ui-box
{
margin-bottom
:
40px
;
@include
round-borders-all
(
4px
);
@include
shade
;
border-color
:
#ddd
;
ul
{
...
...
@@ -294,10 +292,6 @@ img.lil_av {
h5
,
.title
{
padding
:
0
10px
;
background
:
#f5f5f5
;
background-image
:
-webkit-gradient
(
linear
,
0
0
,
0
26
,
color-stop
(
0
.076
,
#fefefe
)
,
to
(
#F6F7F8
));
background-image
:
-webkit-linear-gradient
(
#fefefe
7
.6%
,
#F6F7F8
);
background-image
:
-moz-linear-gradient
(
#fefefe
7
.6%
,
#F6F7F8
);
background-image
:
-o-linear-gradient
(
#fefefe
7
.6%
,
#F6F7F8
);
border-bottom
:
1px
solid
#eee
;
@include
round-borders-top
(
4px
);
border-top
:none
;
...
...
app/assets/stylesheets/main.scss
View file @
3a33795f
...
...
@@ -24,6 +24,13 @@ $hover: #FDF5D9;
/** MIXINS **/
@mixin
shade
{
-moz-box-shadow
:
0
0
3px
#ddd
;
-webkit-box-shadow
:
0
0
3px
#ddd
;
box-shadow
:
0
0
3px
#ddd
;
}
@mixin
round-borders-bottom
(
$radius
)
{
border-top
:
1px
solid
#eaeaea
;
-moz-border-radius-bottomright
:
$radius
;
...
...
app/assets/stylesheets/tree.scss
View file @
3a33795f
...
...
@@ -142,6 +142,8 @@ table.highlighttable .linenodiv pre {
}
#tree-slider
{
@include
shade
;
td
{
padding
:
7px
;
border-color
:
#f1f1f1
;
...
...
@@ -155,3 +157,7 @@ table.highlighttable .linenodiv pre {
.tree-commit-link
{
color
:
#333
;
}
#tree-content-holder
{
@include
shade
;
}
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