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
215d92ba
Commit
215d92ba
authored
Aug 27, 2012
by
Jacob Thornton
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.1.1-wip' of github.com:twitter/bootstrap into 2.1.1-wip
parents
4751a0a2
7d412b1e
Changes
7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
143 additions
and
8 deletions
+143
-8
docs/assets/css/bootstrap.css
docs/assets/css/bootstrap.css
+16
-0
docs/assets/css/docs.css
docs/assets/css/docs.css
+1
-1
docs/assets/js/bootstrap.min.js
docs/assets/js/bootstrap.min.js
+1
-1
less/mixins.less
less/mixins.less
+1
-1
less/tables.less
less/tables.less
+22
-5
less/tests/css-tests.css
less/tests/css-tests.css
+72
-0
less/tests/css-tests.html
less/tests/css-tests.html
+30
-0
No files found.
docs/assets/css/bootstrap.css
View file @
215d92ba
...
...
@@ -2102,6 +2102,22 @@ table .span24 {
background-color
:
#d9edf7
;
}
.table-hover
tbody
tr
.success
:hover
td
{
background-color
:
#d0e9c6
;
}
.table-hover
tbody
tr
.error
:hover
td
{
background-color
:
#ebcccc
;
}
.table-hover
tbody
tr
.warning
:hover
td
{
background-color
:
#faf2cc
;
}
.table-hover
tbody
tr
.info
:hover
td
{
background-color
:
#c4e3f3
;
}
[
class
^=
"icon-"
],
[
class
*=
" icon-"
]
{
display
:
inline-block
;
...
...
docs/assets/css/docs.css
View file @
215d92ba
...
...
@@ -887,7 +887,7 @@ form.bs-docs-example {
/* Tablet
------------------------- */
@media
(
max-width
:
76
8
px
)
{
@media
(
max-width
:
76
7
px
)
{
/* Remove any padding from the body */
body
{
padding-top
:
0
;
...
...
docs/assets/js/bootstrap.min.js
View file @
215d92ba
This diff is collapsed.
Click to expand it.
less/mixins.less
View file @
215d92ba
...
...
@@ -442,7 +442,7 @@
background-color: mix(@midColor, @endColor, 80%);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), color-stop(@colorStop, @midColor), to(@endColor));
background-image: -webkit-linear-gradient(@startColor, @midColor @colorStop, @endColor);
background-image: -moz-linear-gradient(top, @startColor, @midColor @colorStop
*100%
, @endColor);
background-image: -moz-linear-gradient(top, @startColor, @midColor @colorStop, @endColor);
background-image: -o-linear-gradient(@startColor, @midColor @colorStop, @endColor);
background-image: linear-gradient(@startColor, @midColor @colorStop, @endColor);
background-repeat: no-repeat;
...
...
less/tables.less
View file @
215d92ba
...
...
@@ -208,21 +208,38 @@ table {
}
// TABLE BACKGROUNDS
// -----------------
// Exact selectors below required to override .table-striped
.table {
tbody tr
.success td {
.table
tbody tr
{
&
.success td {
background-color: @successBackground;
}
tbody tr
.error td {
&
.error td {
background-color: @errorBackground;
}
tbody tr
.warning td {
&
.warning td {
background-color: @warningBackground;
}
tbody tr
.info td {
&
.info td {
background-color: @infoBackground;
}
}
// Hover states for .table-hover
.table-hover tbody tr {
&.success:hover td {
background-color: darken(@successBackground, 5%);
}
&.error:hover td {
background-color: darken(@errorBackground, 5%);
}
&.warning:hover td {
background-color: darken(@warningBackground, 5%);
}
&.info:hover td {
background-color: darken(@infoBackground, 5%);
}
}
less/tests/css-tests.css
View file @
215d92ba
...
...
@@ -65,3 +65,75 @@ body {
.fluid-grid
.span1
{
background-color
:
#999
;
}
/* Gradients */
[
class
^=
"gradient-"
]
{
width
:
100%
;
height
:
400px
;
margin
:
20px
0
;
-webkit-border-radius
:
5px
;
-moz-border-radius
:
5px
;
border-radius
:
5px
;
}
.gradient-horizontal
{
background-color
:
#333333
;
background-image
:
-moz-linear-gradient
(
left
,
#555555
,
#333333
);
background-image
:
-webkit-gradient
(
linear
,
0
0
,
100%
0
,
from
(
#555555
),
to
(
#333333
));
background-image
:
-webkit-linear-gradient
(
left
,
#555555
,
#333333
);
background-image
:
-o-linear-gradient
(
left
,
#555555
,
#333333
);
background-image
:
linear-gradient
(
to
right
,
#555555
,
#333333
);
background-repeat
:
repeat-x
;
filter
:
progid
:
dximagetransform
.
microsoft
.
gradient
(
startColorstr
=
'#ff555555'
,
endColorstr
=
'#ff333333'
,
GradientType
=
1
);
}
.gradient-vertical
{
background-color
:
#474747
;
background-image
:
-moz-linear-gradient
(
top
,
#555555
,
#333333
);
background-image
:
-webkit-gradient
(
linear
,
0
0
,
0
100%
,
from
(
#555555
),
to
(
#333333
));
background-image
:
-webkit-linear-gradient
(
top
,
#555555
,
#333333
);
background-image
:
-o-linear-gradient
(
top
,
#555555
,
#333333
);
background-image
:
linear-gradient
(
to
bottom
,
#555555
,
#333333
);
background-repeat
:
repeat-x
;
filter
:
progid
:
dximagetransform
.
microsoft
.
gradient
(
startColorstr
=
'#ff555555'
,
endColorstr
=
'#ff333333'
,
GradientType
=
0
);
}
.gradient-directional
{
background-color
:
#333333
;
background-image
:
-moz-linear-gradient
(
45deg
,
#555555
,
#333333
);
background-image
:
-webkit-linear-gradient
(
45deg
,
#555555
,
#333333
);
background-image
:
-o-linear-gradient
(
45deg
,
#555555
,
#333333
);
background-image
:
linear-gradient
(
45deg
,
#555555
,
#333333
);
background-repeat
:
repeat-x
;
}
.gradient-vertical-three
{
background-color
:
#8940a5
;
background-image
:
-webkit-gradient
(
linear
,
0
0
,
0
100%
,
from
(
#00b3ee
),
color-stop
(
50%
,
#7a43b6
),
to
(
#c3325f
));
background-image
:
-webkit-linear-gradient
(
#00b3ee
,
#7a43b6
50%
,
#c3325f
);
background-image
:
-moz-linear-gradient
(
top
,
#00b3ee
,
#7a43b6
50%
,
#c3325f
);
background-image
:
-o-linear-gradient
(
#00b3ee
,
#7a43b6
50%
,
#c3325f
);
background-image
:
linear-gradient
(
#00b3ee
,
#7a43b6
50%
,
#c3325f
);
background-repeat
:
no-repeat
;
filter
:
progid
:
dximagetransform
.
microsoft
.
gradient
(
startColorstr
=
'#ff00b3ee'
,
endColorstr
=
'#ffc3325f'
,
GradientType
=
0
);
}
.gradient-radial
{
background-color
:
#333333
;
background-image
:
-webkit-gradient
(
radial
,
center
center
,
0
,
center
center
,
460
,
from
(
#555555
),
to
(
#333333
));
background-image
:
-webkit-radial-gradient
(
circle
,
#555555
,
#333333
);
background-image
:
-moz-radial-gradient
(
circle
,
#555555
,
#333333
);
background-image
:
-o-radial-gradient
(
circle
,
#555555
,
#333333
);
background-repeat
:
no-repeat
;
}
.gradient-striped
{
background-color
:
#555555
;
background-image
:
-webkit-gradient
(
linear
,
0
100%
,
100%
0
,
color-stop
(
0.25
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.25
,
transparent
),
color-stop
(
0.5
,
transparent
),
color-stop
(
0.5
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
transparent
),
to
(
transparent
));
background-image
:
-webkit-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
-moz-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
-o-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
}
\ No newline at end of file
less/tests/css-tests.html
View file @
215d92ba
...
...
@@ -1179,6 +1179,36 @@
<!-- Gradients
================================================== -->
<div
class=
"page-header"
>
<h1>
Gradients
</h1>
</div>
<h4>
Horizontal
</h4>
<div
class=
"gradient-horizontal"
></div>
<h4>
Vertical
</h4>
<div
class=
"gradient-vertical"
></div>
<h4>
Directional
</h4>
<div
class=
"gradient-directional"
></div>
<h4>
Three colors
</h4>
<div
class=
"gradient-vertical-three"
></div>
<h4>
Radial
</h4>
<div
class=
"gradient-radial"
></div>
<h4>
Striped
</h4>
<div
class=
"gradient-striped"
></div>
</div>
<!-- /container -->
...
...
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