83 lines
2.1 KiB
Plaintext
83 lines
2.1 KiB
Plaintext
//
|
|
// Buttons
|
|
// This is a custom version of Bootstrap's buttons.less file suited for Hathor's needs
|
|
// --------------------------------------------------
|
|
|
|
|
|
// Base styles
|
|
// --------------------------------------------------
|
|
|
|
// Core
|
|
#form-login .btn {
|
|
display: inline-block;
|
|
.ie7-inline-block();
|
|
padding: 4px 14px;
|
|
margin-bottom: 0; // For input.btn
|
|
font-size: @baseFontSize;
|
|
line-height: @baseLineHeight;
|
|
*line-height: @baseLineHeight;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
.buttonBackground(@btnBackground, @btnBackgroundHighlight, @grayDark, 0 1px 1px rgba(255,255,255,.75));
|
|
border: 1px solid @btnBorder;
|
|
*border: 0; // Remove the border to prevent IE7's black border on input:focus
|
|
border-bottom-color: darken(@btnBorder, 10%);
|
|
.border-radius(4px);
|
|
.ie7-restore-left-whitespace(); // Give IE7 some love
|
|
.box-shadow(~"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)");
|
|
|
|
// Hover state
|
|
&:hover {
|
|
color: @grayDark;
|
|
text-decoration: none;
|
|
background-color: darken(@white, 10%);
|
|
*background-color: darken(@white, 15%); /* Buttons in IE7 don't get borders, so darken on hover */
|
|
background-position: 0 -15px;
|
|
|
|
// transition is only when going to hover, otherwise the background
|
|
// behind the gradient (there for IE<=9 fallback) gets mismatched
|
|
.transition(background-position .1s linear);
|
|
}
|
|
|
|
// Focus state for keyboard and accessibility
|
|
&:focus {
|
|
.tab-focus();
|
|
}
|
|
|
|
// Active state
|
|
&.active,
|
|
&:active {
|
|
background-color: darken(@white, 10%);
|
|
background-color: darken(@white, 15%) e("\9");
|
|
background-image: none;
|
|
outline: 0;
|
|
.box-shadow(~"inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)");
|
|
}
|
|
|
|
// Disabled state
|
|
&.disabled,
|
|
&[disabled] {
|
|
cursor: default;
|
|
background-color: darken(@white, 10%);
|
|
background-image: none;
|
|
.opacity(65);
|
|
.box-shadow(none);
|
|
}
|
|
|
|
}
|
|
|
|
// Button Sizes
|
|
// --------------------------------------------------
|
|
|
|
// Large
|
|
.btn-large {
|
|
padding: 9px 14px;
|
|
font-size: @baseFontSize + 2px;
|
|
line-height: normal;
|
|
.border-radius(5px);
|
|
}
|
|
.btn-large [class^="icon-"] {
|
|
margin-top: 2px;
|
|
}
|