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
23a85d6a
Commit
23a85d6a
authored
Oct 20, 2013
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes #11126: remove box-shadow from open dropdown toggle with .btn-link
parent
6d5c5105
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
dist/css/bootstrap.css
dist/css/bootstrap.css
+5
-0
dist/css/bootstrap.min.css
dist/css/bootstrap.min.css
+1
-1
less/button-groups.less
less/button-groups.less
+5
-0
No files found.
dist/css/bootstrap.css
View file @
23a85d6a
...
@@ -3716,6 +3716,11 @@ input[type="button"].btn-block {
...
@@ -3716,6 +3716,11 @@ input[type="button"].btn-block {
box-shadow
:
inset
0
3px
5px
rgba
(
0
,
0
,
0
,
0.125
);
box-shadow
:
inset
0
3px
5px
rgba
(
0
,
0
,
0
,
0.125
);
}
}
.btn-group.open
.dropdown-toggle.btn-link
{
-webkit-box-shadow
:
none
;
box-shadow
:
none
;
}
.btn
.caret
{
.btn
.caret
{
margin-left
:
0
;
margin-left
:
0
;
}
}
...
...
dist/css/bootstrap.min.css
View file @
23a85d6a
This source diff could not be displayed because it is too large. You can
view the blob
instead.
less/button-groups.less
View file @
23a85d6a
...
@@ -150,6 +150,11 @@
...
@@ -150,6 +150,11 @@
// Remove the gradient and set the same inset shadow as the :active state
// Remove the gradient and set the same inset shadow as the :active state
.btn-group.open .dropdown-toggle {
.btn-group.open .dropdown-toggle {
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
// Show no shadow for `.btn-link` since it has no other button styles.
&.btn-link {
.box-shadow(none);
}
}
}
...
...
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