vendor/toolkit/twitter/bootstrap/buttons.less in twitter-bootstrap-rails-2.0.1.0 vs vendor/toolkit/twitter/bootstrap/buttons.less in twitter-bootstrap-rails-2.0.2
- old
+ new
@@ -7,27 +7,24 @@
// Core
.btn {
display: inline-block;
padding: 4px 10px 4px;
- margin-bottom: 0; // For input.btn
font-size: @baseFontSize;
line-height: @baseLineHeight;
color: @grayDark;
text-align: center;
text-shadow: 0 1px 1px rgba(255,255,255,.75);
- vertical-align: middle;
- .buttonBackground(@white, darken(@white, 10%));
+ #gradient > .vertical-three-colors(@white, @white, 25%, darken(@white, 10%)); // Don't use .gradientbar() here since it does a three-color gradient
border: 1px solid #ccc;
border-bottom-color: #bbb;
.border-radius(4px);
@shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
.box-shadow(@shadow);
cursor: pointer;
// Give IE7 some love
- .reset-filter();
.ie7-restore-left-whitespace();
}
// Hover state
.btn:hover {
@@ -52,10 +49,11 @@
background-image: none;
@shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
.box-shadow(@shadow);
background-color: darken(@white, 10%);
background-color: darken(@white, 15%) e("\9");
+ color: rgba(0,0,0,.5);
outline: 0;
}
// Disabled state
.btn.disabled,
@@ -76,32 +74,25 @@
padding: 9px 14px;
font-size: @baseFontSize + 2px;
line-height: normal;
.border-radius(5px);
}
-.btn-large [class^="icon-"] {
+.btn-large .icon {
margin-top: 1px;
}
// Small
.btn-small {
padding: 5px 9px;
font-size: @baseFontSize - 2px;
line-height: @baseLineHeight - 2px;
}
-.btn-small [class^="icon-"] {
+.btn-small .icon {
margin-top: -1px;
}
-// Mini
-.btn-mini {
- padding: 2px 6px;
- font-size: @baseFontSize - 2px;
- line-height: @baseLineHeight - 4px;
-}
-
// Alternate buttons
// --------------------------------------------------
// Set text color
// -------------------------
@@ -112,23 +103,20 @@
.btn-danger,
.btn-danger:hover,
.btn-success,
.btn-success:hover,
.btn-info,
-.btn-info:hover,
-.btn-inverse,
-.btn-inverse:hover {
+.btn-info:hover {
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
color: @white;
}
// Provide *some* extra contrast for those who can get it
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
-.btn-info.active,
-.btn-dark.active {
+.btn-info.active {
color: rgba(255,255,255,.75);
}
// Set the backgrounds
// -------------------------
@@ -149,24 +137,18 @@
}
// Info appears as a neutral blue
.btn-info {
.buttonBackground(#5bc0de, #2f96b4);
}
-// Inverse appears as dark gray
-.btn-inverse {
- .buttonBackground(#454545, #262626);
-}
// Cross-browser Jank
// --------------------------------------------------
button.btn,
input[type="submit"].btn {
-
- // Firefox 3.6 only I believe
&::-moz-focus-inner {
- padding: 0;
+ padding: 0;
border: 0;
}
// IE7 has some default padding on button controls
*padding-top: 2px;