Files
SCM-Manager/scm-ui/styles/scm.scss

58 lines
1.0 KiB
SCSS
Raw Normal View History

2018-07-11 14:59:01 +02:00
@import "bulma/sass/utilities/initial-variables";
@import "bulma/sass/utilities/functions";
2018-09-28 14:30:26 +02:00
2018-07-11 14:59:01 +02:00
$blue: #33B2E8;
// $footer-background-color
.is-ellipsis-overflow {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.has-rounded-border {
border-radius: 0.25rem;
}
.is-full-width {
width: 100%;
}
.fitParent {
// TODO get rid of important
margin: 0 !important;
// 3.8em for line-numbers
padding: 0 0 0 3.8em !important;
}
2018-07-31 16:32:16 +02:00
.main {
min-height: calc(100vh - 260px);
}
.footer {
height: 50px;
}
2018-07-11 14:59:01 +02:00
// 6. Import the rest of Bulma
@import "bulma/bulma";
2018-09-27 15:28:50 +02:00
@import "bulma-tooltip/dist/css/bulma-tooltip";
2018-07-31 16:32:16 +02:00
// import at the end, because we need a lot of stuff from bulma/bulma
.box-link-shadow {
&:hover,
&:focus {
box-shadow: $box-link-hover-shadow;
}
&:active {
box-shadow: $box-link-active-shadow;
}
}
2018-08-30 08:49:28 +02:00
@import "@fortawesome/fontawesome-free/scss/fontawesome.scss";
$fa-font-path: "webfonts";
@import "@fortawesome/fontawesome-free/scss/solid.scss";
2018-10-18 15:56:51 +02:00
@import "diff2html/dist/diff2html";