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";
|
2015-08-09 21:52:15 +08:00
|
|
|
@import "image-manager";
|
2015-09-03 23:51:10 +08:00
|
|
|
@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;
|
|
|
|
}
|
|
|
|
|
2015-09-03 23:51:10 +08:00
|
|
|
// User Avatar Images
|
2015-08-23 20:41:35 +08:00
|
|
|
.avatar {
|
|
|
|
border-radius: 100%;
|
2015-08-29 23:00:19 +08:00
|
|
|
}
|
|
|
|
|
2015-09-03 23:51:10 +08:00
|
|
|
// System wide notifications
|
2015-08-29 23:00:19 +08:00
|
|
|
.notification {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: $-xl*2 $-xl;
|
|
|
|
padding: $-l $-xl;
|
|
|
|
background-color: #EEE;
|
|
|
|
border-radius: 3px;
|
|
|
|
box-shadow: $bs-med;
|
2015-09-03 23:51:10 +08:00
|
|
|
z-index: 999999;
|
2015-08-29 23:00:19 +08:00
|
|
|
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;
|
|
|
|
}
|
2015-08-30 22:31:16 +08:00
|
|
|
}
|
|
|
|
|
2015-09-03 23:51:10 +08:00
|
|
|
// Search results
|
2015-09-01 22:35:11 +08:00
|
|
|
.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
|
|
|
}
|