bookstack/resources/assets/sass/styles.scss

75 lines
1.2 KiB
SCSS
Raw Normal View History

2015-07-13 03:01:42 +08:00
@import "reset";
@import "variables";
@import "mixins";
@import "html";
@import "text";
@import "grid";
@import "blocks";
@import "buttons";
@import "forms";
2015-08-09 03:05:30 +08:00
@import "tables";
2015-08-16 07:18:22 +08:00
@import "animations";
2015-07-16 05:55:49 +08:00
@import "tinymce";
@import "image-manager";
@import "header";
@import "lists";
@import "pages";
2015-07-22 03:13:29 +08: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 20:41:35 +08: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-06 03:59:39 +08:00
}