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
0f313927
Commit
0f313927
authored
Nov 28, 2012
by
Koen Punt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mixins are now all with dashes instead of underscores
(there really should be some convention for all gitlab css)
parent
d7e9eda2
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
19 deletions
+21
-19
app/assets/stylesheets/gitlab_bootstrap/blocks.scss
app/assets/stylesheets/gitlab_bootstrap/blocks.scss
+2
-2
app/assets/stylesheets/gitlab_bootstrap/files.scss
app/assets/stylesheets/gitlab_bootstrap/files.scss
+1
-1
app/assets/stylesheets/gitlab_bootstrap/tables.scss
app/assets/stylesheets/gitlab_bootstrap/tables.scss
+1
-1
app/assets/stylesheets/mixins.scss
app/assets/stylesheets/mixins.scss
+16
-14
app/assets/stylesheets/sections/issues.scss
app/assets/stylesheets/sections/issues.scss
+1
-1
No files found.
app/assets/stylesheets/gitlab_bootstrap/blocks.scss
View file @
0f313927
...
...
@@ -16,7 +16,7 @@
@extend
.prepend-top-20
;
@extend
.append-bottom-20
;
border-width
:
1px
;
@include
solid
_
shade
;
@include
solid
-
shade
;
img
{
max-width
:
100%
;
}
...
...
@@ -66,7 +66,7 @@
@include
border-radius
(
4px
);
border-color
:
#CCC
;
@include
solid
_
shade
;
@include
solid
-
shade
;
&
.white
{
background
:
#fff
;
...
...
app/assets/stylesheets/gitlab_bootstrap/files.scss
View file @
0f313927
...
...
@@ -5,7 +5,7 @@
.file_holder
{
border
:
1px
solid
#BBB
;
margin-bottom
:
1em
;
@include
solid
_
shade
;
@include
solid
-
shade
;
.file_title
{
border-bottom
:
1px
solid
#bbb
;
...
...
app/assets/stylesheets/gitlab_bootstrap/tables.scss
View file @
0f313927
table
{
@extend
.table
;
@extend
.table-striped
;
@include
solid
_
shade
;
@include
solid
-
shade
;
border
:
1px
solid
#bbb
;
width
:
100%
;
...
...
app/assets/stylesheets/mixins.scss
View file @
0f313927
@mixin
shade
{
-moz-box-shadow
:
0
0
3px
#ddd
;
-webkit-box-shadow
:
0
0
3px
#ddd
;
box-shadow
:
0
0
3px
#ddd
;
}
@mixin
solid_shade
{
-moz-box-shadow
:
0
0
0
3px
#f1f1f1
;
-webkit-box-shadow
:
0
0
0
3px
#f1f1f1
;
box-shadow
:
0
0
0
3px
#f1f1f1
;
}
@mixin
box-shadow
(
$shadow
)
{
/**
* Generic mixins
*/
@mixin
box-shadow
(
$shadow
)
{
-webkit-box-shadow
:
$shadow
;
-moz-box-shadow
:
$shadow
;
-ms-box-shadow
:
$shadow
;
...
...
@@ -34,6 +24,10 @@
background-image
:
-o-linear-gradient
(
$from
,
$to
);
}
/**
* Prefilled mixins
* Mixins with fixed values
*/
@mixin
bg-light-gray-gradient
{
background
:
#f1f1f1
;
background-image
:
-webkit-gradient
(
linear
,
0
0
,
0
30
,
color-stop
(
0
.066
,
#f5f5f5
)
,
to
(
#e1e1e1
));
...
...
@@ -56,3 +50,11 @@
background-image
:
-moz-linear-gradient
(
#e9e9e9
,
#d7d7d7
);
background-image
:
-o-linear-gradient
(
#e9e9e9
,
#d7d7d7
);
}
@mixin
shade
{
@include
box-shadow
(
0
0
3px
#ddd
);
}
@mixin
solid-shade
{
@include
box-shadow
(
0
0
0
3px
#f1f1f1
);
}
\ No newline at end of file
app/assets/stylesheets/sections/issues.scss
View file @
0f313927
...
...
@@ -139,7 +139,7 @@ input.check_all_issues {
border
:
none
;
box-shadow
:
none
;
.ui-datepicker-header
{
@include
solid
_
shade
;
@include
solid
-
shade
;
margin-bottom
:
10px
;
border
:
1px
solid
#bbb
;
}
...
...
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