Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
9ba49426
Commit
9ba49426
authored
Feb 04, 2014
by
Mark Otto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #12466 from XhmikosR/12457
Add examples/css in the csslint task.
parents
ec6c9d28
48118576
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
8 deletions
+5
-8
Gruntfile.js
Gruntfile.js
+2
-1
docs/examples/blog/blog.css
docs/examples/blog/blog.css
+0
-4
docs/examples/grid/grid.css
docs/examples/grid/grid.css
+1
-1
docs/examples/justified-nav/justified-nav.css
docs/examples/justified-nav/justified-nav.css
+1
-1
docs/examples/non-responsive/non-responsive.css
docs/examples/non-responsive/non-responsive.css
+1
-1
No files found.
Gruntfile.js
View file @
9ba49426
...
@@ -82,7 +82,8 @@ module.exports = function (grunt) {
...
@@ -82,7 +82,8 @@ module.exports = function (grunt) {
src
:
[
src
:
[
'
dist/css/bootstrap.css
'
,
'
dist/css/bootstrap.css
'
,
'
dist/css/bootstrap-theme.css
'
,
'
dist/css/bootstrap-theme.css
'
,
'
docs/assets/css/docs.css
'
'
docs/assets/css/docs.css
'
,
'
docs/examples/**/*.css
'
]
]
},
},
...
...
docs/examples/blog/blog.css
View file @
9ba49426
...
@@ -41,9 +41,6 @@ h6, .h6 {
...
@@ -41,9 +41,6 @@ h6, .h6 {
}
}
/* Nav links */
/* Nav links */
.blog-nav
{
}
.blog-nav-item
{
.blog-nav-item
{
position
:
relative
;
position
:
relative
;
display
:
inline-block
;
display
:
inline-block
;
...
@@ -65,7 +62,6 @@ h6, .h6 {
...
@@ -65,7 +62,6 @@ h6, .h6 {
position
:
absolute
;
position
:
absolute
;
bottom
:
0
;
bottom
:
0
;
left
:
50%
;
left
:
50%
;
display
:
block
;
content
:
" "
;
content
:
" "
;
width
:
0
;
width
:
0
;
height
:
0
;
height
:
0
;
...
...
docs/examples/grid/grid.css
View file @
9ba49426
...
@@ -17,8 +17,8 @@ h4 {
...
@@ -17,8 +17,8 @@ h4 {
padding-top
:
15px
;
padding-top
:
15px
;
padding-bottom
:
15px
;
padding-bottom
:
15px
;
background-color
:
#eee
;
background-color
:
#eee
;
border
:
1px
solid
#ddd
;
background-color
:
rgba
(
86
,
61
,
124
,
.15
);
background-color
:
rgba
(
86
,
61
,
124
,
.15
);
border
:
1px
solid
#ddd
;
border
:
1px
solid
rgba
(
86
,
61
,
124
,
.2
);
border
:
1px
solid
rgba
(
86
,
61
,
124
,
.2
);
}
}
...
...
docs/examples/justified-nav/justified-nav.css
View file @
9ba49426
...
@@ -40,8 +40,8 @@ body {
...
@@ -40,8 +40,8 @@ body {
background-image
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
color-stop
(
0%
,
#f5f5f5
),
color-stop
(
100%
,
#e5e5e5
));
/* Chrome,Safari4+ */
background-image
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
color-stop
(
0%
,
#f5f5f5
),
color-stop
(
100%
,
#e5e5e5
));
/* Chrome,Safari4+ */
background-image
:
-webkit-linear-gradient
(
top
,
#f5f5f5
0%
,
#e5e5e5
100%
);
/* Chrome 10+,Safari 5.1+ */
background-image
:
-webkit-linear-gradient
(
top
,
#f5f5f5
0%
,
#e5e5e5
100%
);
/* Chrome 10+,Safari 5.1+ */
background-image
:
-o-linear-gradient
(
top
,
#f5f5f5
0%
,
#e5e5e5
100%
);
/* Opera 11.10+ */
background-image
:
-o-linear-gradient
(
top
,
#f5f5f5
0%
,
#e5e5e5
100%
);
/* Opera 11.10+ */
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#f5f5f5'
,
endColorstr
=
'#e5e5e5'
,
GradientType
=
0
);
/* IE6-9 */
background-image
:
linear-gradient
(
top
,
#f5f5f5
0%
,
#e5e5e5
100%
);
/* W3C */
background-image
:
linear-gradient
(
top
,
#f5f5f5
0%
,
#e5e5e5
100%
);
/* W3C */
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#f5f5f5'
,
endColorstr
=
'#e5e5e5'
,
GradientType
=
0
);
/* IE6-9 */
}
}
.nav-justified
>
.active
>
a
,
.nav-justified
>
.active
>
a
,
.nav-justified
>
.active
>
a
:hover
,
.nav-justified
>
.active
>
a
:hover
,
...
...
docs/examples/non-responsive/non-responsive.css
View file @
9ba49426
...
@@ -37,8 +37,8 @@ body {
...
@@ -37,8 +37,8 @@ body {
padding-top
:
15px
;
padding-top
:
15px
;
padding-bottom
:
15px
;
padding-bottom
:
15px
;
background-color
:
#eee
;
background-color
:
#eee
;
border
:
1px
solid
#ddd
;
background-color
:
rgba
(
86
,
61
,
124
,
.15
);
background-color
:
rgba
(
86
,
61
,
124
,
.15
);
border
:
1px
solid
#ddd
;
border
:
1px
solid
rgba
(
86
,
61
,
124
,
.2
);
border
:
1px
solid
rgba
(
86
,
61
,
124
,
.2
);
}
}
...
...
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