Buttons: Remove unused button arrows and dropdowns. see #21598, #21390.

git-svn-id: https://develop.svn.wordpress.org/trunk@22707 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Daryl Koopersmith 2012-11-20 11:26:26 +00:00
parent ce06a037dd
commit 10d46dd112
1 changed files with 0 additions and 48 deletions

View File

@ -27,7 +27,6 @@ TABLE OF CONTENTS:
2.0 - Default Button Style
3.0 - Primary Button Style
4.0 - Button Groups
5.0 - Icon Buttons
---------------------------------------------------------------------------- */
@ -287,50 +286,3 @@ input[type="submit"]::-moz-focus-inner {
.button-group > .button:last-child {
border-radius: 0 3px 3px 0;
}
/* ----------------------------------------------------------------------------
5.0 - Icon Buttons
A button with a class of .down-arrow cannot have any input, and cannot have
any other content.
---------------------------------------------------------------------------- */
.button.down-arrow:after {
content: '\25BE';
display: inline-block;
font-size: 16px;
opacity: 0.9;
margin: 0 -0.25em;
text-align: center;
vertical-align: middle;
}
.button .dropdown {
display: none;
position: absolute;
top: 100%;
left: 0;
margin: 5px 0;
padding: 0.8em 1em;
border-radius: 3px;
background: #f5f5f5;
color: #333;
text-shadow: none;
box-shadow:
0 0 0 1px rgba( 0, 0, 0, 0.3 ),
1px 1px 2px rgba( 0, 0, 0, 0.1 );
}
.button.active .dropdown {
display: block;
}
.dropdown-flip-x .dropdown {
left: auto;
right: 0;
}
.dropdown-flip-y .dropdown {
top: auto;
bottom: 100%;
}