accountant-ui/src/main.less

42 lines
691 B
Plaintext
Raw Normal View History

2017-06-10 18:04:02 +02:00
@import '~font-awesome/less/font-awesome';
@import '~angular-ui-notification/src/angular-ui-notification';
2017-07-01 14:50:17 +02:00
@import (inline) '~c3/c3.css';
2017-06-10 18:04:02 +02:00
@import (inline) '~bootstrap-additions/dist/bootstrap-additions.css';
2016-04-12 10:55:08 +02:00
.italic {
2017-06-10 18:04:02 +02:00
font-style: italic;
2016-04-12 10:55:08 +02:00
}
.stroke {
2017-06-10 18:04:02 +02:00
text-decoration: line-through;
2016-04-12 10:55:08 +02:00
}
2017-07-01 14:50:17 +02:00
.c3-ygrid-line.zeroline line {
stroke: orange;
}
.c3-ygrid-line.overdraft line {
stroke: #FF0000;
}
// Needed for modal backdrop opacity.
.modal-backdrop.am-fade {
opacity: .5;
transition: opacity .15s linear;
&.ng-enter {
opacity: 0;
&.ng-enter-active {
opacity: .5;
}
}
&.ng-leave {
opacity: .5;
&.ng-leave-active {
opacity: 0;
}
}
}