BookStack/resources/assets/sass/styles.scss

75 lines
1.2 KiB
SCSS
Raw Normal View History

2015-07-12 19:01:42 +00:00
@import "reset";
@import "variables";
@import "mixins";
@import "html";
@import "text";
@import "grid";
@import "blocks";
@import "buttons";
@import "forms";
2015-08-08 19:05:30 +00:00
@import "tables";
2015-08-15 23:18:22 +00:00
@import "animations";
2015-07-15 21:55:49 +00:00
@import "tinymce";
@import "image-manager";
@import "header";
@import "lists";
@import "pages";
2015-07-21 19:13:29 +00:00
// Jquery Sortable Styles
.dragged {
position: absolute;
opacity: 0.5;
z-index: 2000;
}
body.dragging, body.dragging * {
cursor: move !important;
}
// User Avatar Images
2015-08-23 12:41:35 +00:00
.avatar {
border-radius: 100%;
}
// System wide notifications
.notification {
position: fixed;
top: 0;
right: 0;
margin: $-xl*2 $-xl;
padding: $-l $-xl;
background-color: #EEE;
border-radius: 3px;
box-shadow: $bs-med;
z-index: 999999;
display: table;
cursor: pointer;
max-width: 480px;
i, span {
display: table-cell;
}
i {
font-size: 2em;
padding-right: $-l;
}
span {
vertical-align: middle;
}
&.pos {
background-color: $positive;
color: #EEE;
}
&.neg {
background-color: $negative;
color: #EEE;
}
}
// Search results
.search-results > h3 a {
font-size: 0.66em;
color: $primary;
padding-left: $-m;
i {
padding-right: $-s;
}
2015-08-05 19:59:39 +00:00
}