Files
coriolis/app/less/buttons.less
2015-06-10 00:17:08 -07:00

39 lines
482 B
Plaintext
Executable File

button {
.border-radius(0);
color: @primary;
svg {
fill: @primary;
}
border: none;
font-family: @fStandard;
vertical-align: middle;
padding: 0.5em;
cursor: pointer;
background: none;
outline: none;
&.danger {
color: red;
svg {
fill: red;
}
}
&:disabled {
cursor: not-allowed;
color: @disabled;
svg {
fill: @disabled;
}
}
}
.button-lbl {
margin-left: 0.5em;
.smallTablet({
display: none;
});
}