2017-05-26 23:51:48 -04:00
|
|
|
// styles in src/style directory are applied to the whole page
|
2019-04-14 02:49:05 -04:00
|
|
|
@import '../public/fonts/opensans100-roboto300';
|
2017-05-27 19:45:07 -04:00
|
|
|
@import '../../node_modules/angular2-toaster/toaster';
|
2019-04-13 16:37:56 -04:00
|
|
|
@import '../../node_modules/bootstrap/dist/css/bootstrap.min.css';
|
2018-10-22 02:41:35 -04:00
|
|
|
@import "themes/themes";
|
2017-12-23 01:19:30 -05:00
|
|
|
@import "components/ibox";
|
2017-12-23 23:40:01 -05:00
|
|
|
@import "components/dialog";
|
2018-10-22 02:41:35 -04:00
|
|
|
@import "components/bootstrap_override";
|
2017-12-15 01:32:23 -05:00
|
|
|
@import "riot";
|
2017-05-27 19:45:07 -04:00
|
|
|
|
2017-05-26 23:51:48 -04:00
|
|
|
body {
|
|
|
|
margin: 0;
|
2017-05-27 23:21:08 -04:00
|
|
|
padding: 0;
|
2018-10-21 01:04:25 -04:00
|
|
|
font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
|
2017-05-26 23:51:48 -04:00
|
|
|
}
|
2017-05-29 00:51:04 -04:00
|
|
|
|
2019-07-11 00:17:16 -04:00
|
|
|
@include themifyRoot() {
|
2018-10-22 02:41:35 -04:00
|
|
|
color: themed(defaultFgColor);
|
|
|
|
|
|
|
|
// HACK: We specify the spinner color here because we can't use the mixin
|
|
|
|
// in the spinner's css due to angular scoping
|
|
|
|
.sk-cube:before {
|
|
|
|
background-color: themed(spinnerColor) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-29 00:51:04 -04:00
|
|
|
// HACK: Work around dialog not showing up
|
|
|
|
// ref: https://github.com/shlomiassaf/angular2-modal/issues/280
|
|
|
|
.fade.in {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal.in .modal-dialog {
|
|
|
|
-webkit-transform: translate(0, 0);
|
|
|
|
-o-transform: translate(0, 0);
|
|
|
|
transform: translate(0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-backdrop.in {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
cursor: pointer;
|
2017-12-22 23:33:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.label-block {
|
|
|
|
display: block;
|
2018-01-31 18:30:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.text-muted {
|
|
|
|
display: block;
|
|
|
|
font-size: 12px;
|
2018-05-20 20:16:13 -04:00
|
|
|
}
|
2019-04-13 18:31:02 -04:00
|
|
|
|
|
|
|
.error-text {
|
2019-04-14 18:23:57 -04:00
|
|
|
color: #bd362f !important;
|
2019-04-13 18:31:02 -04:00
|
|
|
}
|