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-07-16 05:55:49 +08:00
|
|
|
@import "tinymce";
|
|
|
|
|
|
|
|
header {
|
|
|
|
display: block;
|
2015-07-22 05:11:30 +08:00
|
|
|
z-index: 2;
|
|
|
|
top: 0;
|
|
|
|
.padded {
|
|
|
|
padding: $-m;
|
|
|
|
}
|
2015-07-24 04:55:46 +08:00
|
|
|
//margin-bottom: $-l;
|
2015-07-22 05:11:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar {
|
|
|
|
position: fixed;
|
2015-07-24 04:55:46 +08:00
|
|
|
background-color: #444;
|
|
|
|
color: #EEE;
|
2015-07-22 05:11:30 +08:00
|
|
|
height: 100%;
|
2015-07-16 05:55:49 +08:00
|
|
|
top: 0;
|
2015-07-22 05:11:30 +08:00
|
|
|
z-index: 1;
|
2015-07-24 04:55:46 +08:00
|
|
|
//padding-top: $-m;
|
2015-07-22 05:11:30 +08:00
|
|
|
width: 300px;
|
|
|
|
border-right: 1px solid #DDD;
|
2015-07-24 04:55:46 +08:00
|
|
|
h4, li, p, a {
|
|
|
|
color: #CCC;
|
|
|
|
}
|
2015-07-16 05:55:49 +08:00
|
|
|
}
|
2015-07-22 05:11:30 +08:00
|
|
|
|
|
|
|
#content {
|
2015-07-24 04:55:46 +08:00
|
|
|
//margin-top: 63px;
|
2015-07-22 05:11:30 +08:00
|
|
|
margin-left: 300px;
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
2015-07-24 04:55:46 +08:00
|
|
|
padding: 0 16px;
|
2015-07-22 05:11:30 +08:00
|
|
|
}
|
|
|
|
|
2015-07-17 04:24:26 +08:00
|
|
|
.logo {
|
2015-07-24 04:55:46 +08:00
|
|
|
font-size: 2em;
|
|
|
|
padding: $-xl $-s;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #CCC;
|
2015-07-17 04:24:26 +08:00
|
|
|
}
|
2015-07-16 05:55:49 +08:00
|
|
|
|
2015-07-24 04:55:46 +08:00
|
|
|
.search-box {
|
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
border-radius: 0;
|
|
|
|
padding: $-s $-m;
|
|
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
|
|
border: none;
|
|
|
|
border-top: 1px solid #333;
|
|
|
|
border-bottom: 1px solid #333;
|
|
|
|
}
|
2015-07-13 03:01:42 +08:00
|
|
|
}
|
|
|
|
|
2015-07-24 04:55:46 +08:00
|
|
|
ul.menu {
|
2015-07-13 03:01:42 +08:00
|
|
|
list-style: none;
|
2015-07-24 04:55:46 +08:00
|
|
|
margin: 0;
|
|
|
|
li a {
|
|
|
|
padding: $-m;
|
|
|
|
display: block;
|
2015-07-31 05:27:35 +08:00
|
|
|
border-bottom: 1px solid #3A3939;
|
2015-07-13 03:01:42 +08:00
|
|
|
}
|
2015-07-13 04:31:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-title input {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 1.4em;
|
2015-07-15 05:34:31 +08:00
|
|
|
}
|
|
|
|
|
2015-07-16 05:55:49 +08:00
|
|
|
.page-style {
|
|
|
|
padding: $-s $-xxl $-xxl $-xxl;
|
|
|
|
margin-bottom: $-xxl;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-style.editor {
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-content {
|
|
|
|
@extend .page-style;
|
|
|
|
min-height: 70vh;
|
2015-07-22 05:11:30 +08:00
|
|
|
max-width: 840px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2015-07-16 05:55:49 +08:00
|
|
|
&.right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
&.left {
|
|
|
|
float: left;
|
|
|
|
}
|
2015-07-31 05:42:05 +08:00
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2015-07-16 05:55:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-list {
|
2015-07-31 05:27:35 +08:00
|
|
|
h3 {
|
|
|
|
margin: $-l 0;
|
|
|
|
}
|
|
|
|
.inset-list {
|
2015-07-16 05:55:49 +08:00
|
|
|
display: block;
|
2015-07-31 05:27:35 +08:00
|
|
|
overflow: hidden;
|
|
|
|
padding-left: $-l*2;
|
|
|
|
border-top: 3px dotted #EEE;
|
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
display: block;
|
|
|
|
margin: $-m 0;
|
|
|
|
}
|
|
|
|
hr {
|
|
|
|
margin-top: 0;
|
2015-07-16 05:55:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-24 04:55:46 +08:00
|
|
|
.side-nav {
|
|
|
|
position: fixed;
|
|
|
|
padding-left: $-m;
|
|
|
|
opacity: 0.8;
|
|
|
|
margin-top: $-xxl;
|
|
|
|
margin-left: 0;
|
|
|
|
max-width: 240px;
|
2015-07-16 05:55:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-nav-list {
|
|
|
|
$nav-indent: $-s;
|
2015-07-24 04:55:46 +08:00
|
|
|
margin-left: 2px;
|
|
|
|
list-style: none;
|
2015-07-16 05:55:49 +08:00
|
|
|
li {
|
|
|
|
//border-left: 1px solid rgba(0, 0, 0, 0.1);
|
|
|
|
padding-left: $-xs;
|
2015-07-24 04:55:46 +08:00
|
|
|
border-left: 2px solid #888;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
li a {
|
|
|
|
color: #555;
|
2015-07-16 05:55:49 +08:00
|
|
|
}
|
|
|
|
.nav-H2 {
|
|
|
|
margin-left: $nav-indent;
|
|
|
|
font-size: 0.95em;
|
|
|
|
}
|
|
|
|
.nav-H3 {
|
|
|
|
margin-left: $nav-indent*2;
|
|
|
|
font-size: 0.90em
|
|
|
|
}
|
|
|
|
.nav-H4 {
|
|
|
|
margin-left: $nav-indent*3;
|
|
|
|
font-size: 0.85em
|
|
|
|
}
|
|
|
|
.nav-H5 {
|
|
|
|
margin-left: $nav-indent*4;
|
|
|
|
font-size: 0.80em
|
|
|
|
}
|
|
|
|
.nav-H6 {
|
|
|
|
margin-left: $nav-indent*5;
|
|
|
|
font-size: 0.75em
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-17 02:15:22 +08:00
|
|
|
|
|
|
|
|
2015-07-15 05:34:31 +08:00
|
|
|
.overlay {
|
|
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
|
|
position: fixed;
|
|
|
|
display: block;
|
|
|
|
z-index: 95536;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
min-width: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
#image-manager {
|
|
|
|
background-color: #EEE;
|
|
|
|
max-width: 90%;
|
|
|
|
max-height: 90%;
|
|
|
|
width: 90%;
|
|
|
|
height: 90%;
|
|
|
|
margin: 2% 5%;
|
|
|
|
//border: 2px solid $primary;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
|
|
|
|
overflow: hidden;
|
|
|
|
.image-manager-display img {
|
|
|
|
width: 150px;
|
|
|
|
height: 150px;
|
|
|
|
display: inline-block;
|
|
|
|
margin: $-s 0 0 $-s;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.image-manager-left {
|
|
|
|
background-color: #FFF;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
.image-manager-display {
|
|
|
|
height: 75%;
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-manager-title {
|
|
|
|
font-size: 2em;
|
|
|
|
text-align: left;
|
|
|
|
margin: 0 $-m;
|
|
|
|
padding: $-xl $-m;
|
|
|
|
color: #666;
|
|
|
|
border-bottom: 1px solid #DDD;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-manager-dropzone {
|
|
|
|
background-color: lighten($primary, 40%);
|
|
|
|
height: 25%;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 2em;
|
|
|
|
line-height: 2em;
|
|
|
|
padding-top: $-xl*1.2;
|
|
|
|
color: #666;
|
|
|
|
border-top: 2px solid $primary;
|
2015-07-17 02:15:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Link hooks & popovers
|
|
|
|
a.link-hook {
|
|
|
|
position: absolute;
|
|
|
|
display: inline-block;
|
|
|
|
top: $-xs;
|
|
|
|
left: -$-xl+2px;
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 20px;
|
|
|
|
color: #BBB;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
&:hover a.link-hook {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2015-07-21 05:05:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumbs {
|
|
|
|
margin-top: $-s;
|
|
|
|
i {
|
|
|
|
padding-right: 4px;
|
|
|
|
}
|
|
|
|
span.sep {
|
2015-07-31 05:27:35 +08:00
|
|
|
color: #aaa;
|
2015-07-21 05:05:26 +08:00
|
|
|
padding: 0 $-xs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-24 04:55:46 +08:00
|
|
|
.faded {
|
2015-07-31 05:27:35 +08:00
|
|
|
a {
|
|
|
|
color: #666;
|
|
|
|
opacity: 0.5;
|
|
|
|
transition: all ease-in-out 120ms;
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2015-07-24 04:55:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.faded-small {
|
|
|
|
color: #666;
|
|
|
|
font-size: 0.9em;
|
|
|
|
a, span {
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.action-buttons {
|
|
|
|
text-align: right;
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
padding: $-s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-21 05:05:26 +08:00
|
|
|
|
2015-07-24 04:55:46 +08:00
|
|
|
.book-tree h4 {
|
|
|
|
padding: $-m $-s 0 $-s;
|
|
|
|
i {
|
|
|
|
padding-right: $-s;
|
|
|
|
}
|
|
|
|
}
|
2015-07-31 05:27:35 +08:00
|
|
|
// Sidebar list
|
2015-07-24 04:55:46 +08:00
|
|
|
.book-tree .sidebar-page-list {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
li a {
|
|
|
|
display: block;
|
2015-07-31 05:27:35 +08:00
|
|
|
border-bottom: 1px solid #3A3939;
|
2015-07-24 04:55:46 +08:00
|
|
|
}
|
|
|
|
a.bold {
|
|
|
|
color: #EEE !important;
|
|
|
|
}
|
2015-07-31 05:27:35 +08:00
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
ul li a {
|
|
|
|
padding-left: $-xl;
|
|
|
|
}
|
|
|
|
.book {
|
|
|
|
color: #7BD06E !important;
|
|
|
|
}
|
|
|
|
.chapter {
|
|
|
|
color: #D2A64B !important;
|
|
|
|
}
|
|
|
|
.page {
|
|
|
|
color: #4599DC !important;
|
|
|
|
}
|
2015-07-24 04:55:46 +08:00
|
|
|
}
|
|
|
|
|
2015-07-22 03:13:29 +08:00
|
|
|
.sortable-page-list, .sortable-page-list ul {
|
|
|
|
list-style: none;
|
|
|
|
//background-color: rgba(0, 0, 0, 0.04);
|
|
|
|
}
|
|
|
|
.sortable-page-list {
|
|
|
|
margin-left: 0;
|
|
|
|
ul {
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
li {
|
|
|
|
border-bottom: 1px solid #BBB;
|
|
|
|
border-left: 1px solid #BBB;
|
|
|
|
border-right: 1px solid #BBB;
|
|
|
|
padding: $-xs $-s;
|
|
|
|
}
|
|
|
|
li:first-child {
|
|
|
|
margin-top: $-xs;
|
|
|
|
border-top: 1px solid #BBB;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Jquery Sortable Styles
|
|
|
|
.dragged {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0.5;
|
|
|
|
z-index: 2000;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.dragging, body.dragging * {
|
|
|
|
cursor: move !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sortable-page-list li.placeholder {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.sortable-page-list li.placeholder:before {
|
|
|
|
position: absolute;
|
2015-07-13 03:01:42 +08:00
|
|
|
}
|