mdb-ui-kit/less/_buttons.less

110 lines
2.5 KiB
Plaintext
Raw Normal View History

2014-08-18 18:25:33 +04:00
.btn {
position: relative;
padding: 8px 30px;
border: 0;
margin: 10px 1px;
cursor: pointer;
border-radius: 2px;
2014-08-18 18:25:33 +04:00
text-transform: uppercase;
text-decoration: none;
color: @darkbg-text;
2014-08-18 18:25:33 +04:00
&:hover:not(.btn-link):not(.btn-flat) {
2014-08-18 18:25:33 +04:00
.shadow-z-2-hover();
2014-10-18 18:17:31 +04:00
}
&:active:not(.btn-link):not(.btn-flat) {
2014-08-18 18:25:33 +04:00
.shadow-z-3();
}
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
2014-08-18 18:25:33 +04:00
outline: none !important;
2014-10-28 11:40:58 +03:00
.variations(~":not(.btn-link):not(.btn-flat)", background-color, @btn-default);
.variations(~".btn-flat:not(.btn-link)", color, @lightbg-text);
2014-10-18 18:17:31 +04:00
&.btn-flat {
background: none;
box-shadow: none;
font-weight: 500;
&:disabled {
color: @text-disabled !important;
}
}
2014-10-18 18:17:31 +04:00
&.btn-raised {
.btn-shadow();
}
2014-10-18 18:17:31 +04:00
&.btn-fab {
margin: 0;
padding: 15px;
font-size: 26px;
width: 56px;
height: 56px;
&, &:hover {
.shadow-z-1();
.variations(~"", background-color, transparent);
}
&, .ripple-wrapper {
border-radius: 100%;
}
&.btn-fab-mini {
width: 40px;
height: 40px;
padding: 13px;
font-size: 15px;
}
i {
position: relative;
top: -5px;
}
}
2014-08-18 18:25:33 +04:00
}
2014-10-28 11:40:58 +03:00
// This is needed to style buttons which has not a variation suffix (they must be stiled as btn-default)
.btn-link, .btn:not([class^="btn btn-"]), .btn-default {
color: @lightbg-text;
2014-10-08 16:52:08 +04:00
&:hover {
color: @lightbg-text;
2014-08-18 18:25:33 +04:00
}
}
2014-10-28 11:40:58 +03:00
.btn:not([class^="btn btn-"]), .btn-default, .btn-flat:not(.btn-link) {
2014-10-28 11:10:40 +03:00
&:hover, &.active {
background-color: rgba(255,255,255,0.5);
2014-08-18 18:25:33 +04:00
}
}
.open > .dropdown-toggle.btn {
.variations(~"", background-color, @btn-default);
2014-08-18 18:25:33 +04:00
}
2014-11-26 14:53:20 +03:00
.btn-group .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group {
margin-left: 0;
}
2014-08-18 18:25:33 +04:00
.btn-group, .btn-group-vertical {
position: relative;
border-radius: 2px;
2014-08-18 18:25:33 +04:00
margin: 10px 1px;
.btn-shadow();
&.open .dropdown-toggle {
box-shadow: none;
}
&.btn-group-raised {
.btn-shadow();
}
.btn, .btn:active, .btn-group {
box-shadow: none !important;
margin: 0;
}
}
.btn-group-flat {
box-shadow: none !important;
}
.btn-shadow() {
.shadow-z-2();
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
&:active:not(.btn-link) {
.shadow-z-3();
}
2014-10-18 18:17:31 +04:00
}