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
55cfa8d3
Commit
55cfa8d3
authored
Aug 12, 2013
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop background-clip and background-size mixins since they have no prefixes anyway
parent
175a1125
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
5 additions
and
19 deletions
+5
-19
dist/css/bootstrap.css
dist/css/bootstrap.css
+1
-3
dist/css/bootstrap.min.css
dist/css/bootstrap.min.css
+1
-1
less/dropdowns.less
less/dropdowns.less
+1
-1
less/mixins.less
less/mixins.less
+0
-10
less/modals.less
less/modals.less
+1
-1
less/popovers.less
less/popovers.less
+0
-2
less/progress-bars.less
less/progress-bars.less
+1
-1
No files found.
dist/css/bootstrap.css
View file @
55cfa8d3
...
@@ -4003,9 +4003,7 @@ button.close {
...
@@ -4003,9 +4003,7 @@ button.close {
border-radius
:
6px
;
border-radius
:
6px
;
-webkit-box-shadow
:
0
5px
10px
rgba
(
0
,
0
,
0
,
0.2
);
-webkit-box-shadow
:
0
5px
10px
rgba
(
0
,
0
,
0
,
0.2
);
box-shadow
:
0
5px
10px
rgba
(
0
,
0
,
0
,
0.2
);
box-shadow
:
0
5px
10px
rgba
(
0
,
0
,
0
,
0.2
);
-webkit-background-clip
:
padding-box
;
background-clip
:
padding-box
;
-moz-background-clip
:
padding
;
background-clip
:
padding-box
;
}
}
.popover.top
{
.popover.top
{
...
...
dist/css/bootstrap.min.css
View file @
55cfa8d3
This source diff could not be displayed because it is too large. You can
view the blob
instead.
less/dropdowns.less
View file @
55cfa8d3
...
@@ -38,7 +38,7 @@
...
@@ -38,7 +38,7 @@
border: 1px solid @dropdown-border;
border: 1px solid @dropdown-border;
border-radius: @border-radius-base;
border-radius: @border-radius-base;
.box-shadow(0 6px 12px rgba(0,0,0,.175));
.box-shadow(0 6px 12px rgba(0,0,0,.175));
.background-clip(padding-box)
;
background-clip: padding-box
;
// Aligns the dropdown menu to right
// Aligns the dropdown menu to right
&.pull-right {
&.pull-right {
...
...
less/mixins.less
View file @
55cfa8d3
...
@@ -163,16 +163,6 @@
...
@@ -163,16 +163,6 @@
backface-visibility: @visibility;
backface-visibility: @visibility;
}
}
// Background clipping
.background-clip(@clip) {
background-clip: @clip;
}
// Background sizing
.background-size(@size) {
background-size: @size;
}
// Box sizing
// Box sizing
.box-sizing(@boxmodel) {
.box-sizing(@boxmodel) {
-webkit-box-sizing: @boxmodel;
-webkit-box-sizing: @boxmodel;
...
...
less/modals.less
View file @
55cfa8d3
...
@@ -49,7 +49,7 @@
...
@@ -49,7 +49,7 @@
border: 1px solid @modal-content-border-color;
border: 1px solid @modal-content-border-color;
border-radius: @border-radius-large;
border-radius: @border-radius-large;
.box-shadow(0 3px 9px rgba(0,0,0,.5));
.box-shadow(0 3px 9px rgba(0,0,0,.5));
.background-clip(padding-box)
;
background-clip: padding-box
;
// Remove focus outline from opened modal
// Remove focus outline from opened modal
outline: none;
outline: none;
}
}
...
...
less/popovers.less
View file @
55cfa8d3
...
@@ -13,8 +13,6 @@
...
@@ -13,8 +13,6 @@
padding: 1px;
padding: 1px;
text-align: left; // Reset given new insertion method
text-align: left; // Reset given new insertion method
background-color: @popover-bg;
background-color: @popover-bg;
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
background-clip: padding-box;
border: 1px solid @popover-fallback-border-color;
border: 1px solid @popover-fallback-border-color;
border: 1px solid @popover-border-color;
border: 1px solid @popover-border-color;
...
...
less/progress-bars.less
View file @
55cfa8d3
...
@@ -61,7 +61,7 @@
...
@@ -61,7 +61,7 @@
// Striped bars
// Striped bars
.progress-striped .progress-bar {
.progress-striped .progress-bar {
#gradient > .striped(@progress-bar-bg);
#gradient > .striped(@progress-bar-bg);
.background-size(40px 40px)
;
background-size: 40px 40px
;
}
}
// Call animation for the active one
// Call animation for the active one
...
...
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