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
4e191c42
Commit
4e191c42
authored
Jan 27, 2012
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update progress bars to have a solid edge until 100% filled
parent
9800196b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
12 deletions
+7
-12
docs/assets/css/bootstrap.css
docs/assets/css/bootstrap.css
+5
-6
less/progress-bars.less
less/progress-bars.less
+2
-6
No files found.
docs/assets/css/bootstrap.css
View file @
4e191c42
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Fri Jan 27 20:
04:50
PST 2012
* Date: Fri Jan 27 20:
16:25
PST 2012
*/
*/
article
,
article
,
aside
,
aside
,
...
@@ -2926,12 +2926,8 @@ a.thumbnail:hover {
...
@@ -2926,12 +2926,8 @@ a.thumbnail:hover {
background-position
:
40px
0
;
background-position
:
40px
0
;
}
}
}
}
.progress
,
.progress
.bar
{
-webkit-border-radius
:
4px
;
-moz-border-radius
:
4px
;
border-radius
:
4px
;
}
.progress
{
.progress
{
overflow
:
hidden
;
height
:
18px
;
height
:
18px
;
margin-bottom
:
18px
;
margin-bottom
:
18px
;
background-color
:
#f7f7f7
;
background-color
:
#f7f7f7
;
...
@@ -2945,6 +2941,9 @@ a.thumbnail:hover {
...
@@ -2945,6 +2941,9 @@ a.thumbnail:hover {
-webkit-box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.1
);
-webkit-box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.1
);
-moz-box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.1
);
-moz-box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.1
);
box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.1
);
box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.1
);
-webkit-border-radius
:
4px
;
-moz-border-radius
:
4px
;
border-radius
:
4px
;
}
}
.progress
.bar
{
.progress
.bar
{
width
:
0%
;
width
:
0%
;
...
...
less/progress-bars.less
View file @
4e191c42
...
@@ -28,18 +28,14 @@
...
@@ -28,18 +28,14 @@
// THE BARS
// THE BARS
// --------
// --------
// Common styles
.progress,
.progress .bar {
.border-radius(4px);
}
// Outer container
// Outer container
.progress {
.progress {
overflow: hidden;
height: 18px;
height: 18px;
margin-bottom: 18px;
margin-bottom: 18px;
#gradient > .vertical(#f5f5f5, #f9f9f9);
#gradient > .vertical(#f5f5f5, #f9f9f9);
.box-shadow(inset 0 1px 2px rgba(0,0,0,.1));
.box-shadow(inset 0 1px 2px rgba(0,0,0,.1));
.border-radius(4px);
}
}
// Bar of progress
// Bar of progress
...
...
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