2012-01-05 13:01:42 -05:00
|
|
|
// BUTTON STYLES
|
|
|
|
// -------------
|
|
|
|
|
|
|
|
// Shared colors for buttons and alerts
|
2012-01-14 19:18:15 -05:00
|
|
|
.btn {
|
2012-01-05 13:01:42 -05:00
|
|
|
// Set text color
|
|
|
|
&.danger,
|
|
|
|
&.danger:hover,
|
|
|
|
&.success,
|
|
|
|
&.success:hover,
|
|
|
|
&.info,
|
|
|
|
&.info:hover {
|
2012-01-05 18:43:07 -05:00
|
|
|
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
|
2012-01-05 13:01:42 -05:00
|
|
|
color: @white
|
|
|
|
}
|
|
|
|
// Danger and error appear as red
|
2012-01-14 19:18:15 -05:00
|
|
|
&.danger {
|
2012-01-05 13:01:42 -05:00
|
|
|
.gradientBar(#ee5f5b, #c43c35);
|
|
|
|
}
|
|
|
|
// Success appears as green
|
|
|
|
&.success {
|
|
|
|
.gradientBar(#62c462, #57a957);
|
|
|
|
}
|
|
|
|
// Info appears as a neutral blue
|
|
|
|
&.info {
|
|
|
|
.gradientBar(#5bc0de, #339bb9);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Base .btn styles
|
|
|
|
.btn {
|
|
|
|
// Button Base
|
|
|
|
display: inline-block;
|
2012-01-06 00:43:28 -05:00
|
|
|
padding: 5px 10px 6px;
|
2012-01-05 13:01:42 -05:00
|
|
|
font-size: @baseFontSize;
|
|
|
|
line-height: normal;
|
|
|
|
color: #333;
|
|
|
|
text-shadow: 0 1px 1px rgba(255,255,255,.75);
|
|
|
|
#gradient > .vertical-three-colors(#ffffff, #ffffff, 25%, darken(#ffffff, 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;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: @grayDark;
|
|
|
|
text-decoration: none;
|
|
|
|
background-position: 0 -15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Focus state for keyboard and accessibility
|
|
|
|
&:focus {
|
|
|
|
outline: 1px dotted #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Primary Button Type
|
|
|
|
&.primary {
|
|
|
|
color: @white;
|
|
|
|
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
|
|
|
|
.gradientBar(@blue, @blueDark)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Transitions
|
|
|
|
.transition(.1s linear all);
|
|
|
|
|
|
|
|
// Active and Disabled states
|
|
|
|
&.active,
|
|
|
|
&:active {
|
|
|
|
@shadow: inset 0 2px 4px rgba(0,0,0,.25), 0 1px 2px rgba(0,0,0,.05);
|
|
|
|
.box-shadow(@shadow);
|
|
|
|
}
|
|
|
|
&.disabled {
|
|
|
|
cursor: default;
|
|
|
|
background-image: none;
|
|
|
|
.reset-filter();
|
|
|
|
.opacity(65);
|
|
|
|
.box-shadow(none);
|
|
|
|
}
|
|
|
|
&[disabled] {
|
|
|
|
// disabled pseudo can't be included with .disabled
|
|
|
|
// def because IE8 and below will drop it ;_;
|
|
|
|
cursor: default;
|
|
|
|
background-image: none;
|
|
|
|
.reset-filter();
|
|
|
|
.opacity(65);
|
|
|
|
.box-shadow(none);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Button Sizes
|
|
|
|
&.large {
|
|
|
|
padding: 9px 14px 9px;
|
|
|
|
font-size: @baseFontSize + 2px;
|
|
|
|
line-height: normal;
|
2012-01-09 00:48:07 -05:00
|
|
|
.border-radius(5px);
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
|
|
|
&.small {
|
|
|
|
padding: 7px 9px 7px;
|
|
|
|
font-size: @baseFontSize - 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Super jank hack for removing border-radius from IE9 so we can keep filter gradients on alerts and buttons
|
|
|
|
:root .alert-message,
|
|
|
|
:root .btn {
|
|
|
|
border-radius: 0 \0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Help Firefox not be a jerk about adding extra padding to buttons
|
|
|
|
button.btn,
|
|
|
|
input[type=submit].btn {
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
}
|