SVG sprites, modals, general improvements

This commit is contained in:
Colin McLeod
2015-05-08 21:16:14 -07:00
parent 75a4e18f8a
commit adc025e3d9
139 changed files with 1289 additions and 718 deletions

25
app/less/buttons.less Normal file
View File

@@ -0,0 +1,25 @@
button {
.border-radius(0);
color: @primary;
fill: @primary;
border: 1px solid @primary;
font-family: @fStandard;
border: 1px solid;
padding: 0.5em;
cursor: pointer;
background: none;
outline: none;
&.danger {
color: red;
fill: red;
border: 1px solid red;
}
&:disabled {
cursor: not-allowed;
color: @disabled;
fill: @disabled;
border: 1px solid @disabled;
}
}