|
@@ -0,0 +1,183 @@
|
|
|
|
|
+body.kibela {
|
|
|
|
|
+ .icon-link,
|
|
|
|
|
+ .CodeMirror-hint-active,
|
|
|
|
|
+ .grw-nav-main-left-tab,
|
|
|
|
|
+ .tav-pane,
|
|
|
|
|
+ .active {
|
|
|
|
|
+ color: $subthemecolor;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .bg-white {
|
|
|
|
|
+ background: #fefffe !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .bg-primary {
|
|
|
|
|
+ background-color: $primary !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Logo */
|
|
|
|
|
+ .logo {
|
|
|
|
|
+ background: transparent;
|
|
|
|
|
+
|
|
|
|
|
+ .logo-mark {
|
|
|
|
|
+ background-color: white;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* header*/
|
|
|
|
|
+ .background-t {
|
|
|
|
|
+ background-color: transparent;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .search-input-group,
|
|
|
|
|
+ .search-typeahead {
|
|
|
|
|
+ .btn {
|
|
|
|
|
+ background-color: transparent;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .btn-open-dropzone {
|
|
|
|
|
+ background: $themelight;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* page list */
|
|
|
|
|
+ .page-list {
|
|
|
|
|
+ background: white;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .page-attachments-row {
|
|
|
|
|
+ background-color: #e5ecf1;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* round */
|
|
|
|
|
+ .round-corner-top {
|
|
|
|
|
+ border-top: solid 0.4em $thickborder;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* admin navigation */
|
|
|
|
|
+ .admin-navigation {
|
|
|
|
|
+ .list-group-item.active {
|
|
|
|
|
+ color: white;
|
|
|
|
|
+ background: $bgcolor-navbar;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .list-group-item {
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ background: #eee;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* search page */
|
|
|
|
|
+ .search-result-list,
|
|
|
|
|
+ .page-list-li {
|
|
|
|
|
+ background: $themelight;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Tabs */
|
|
|
|
|
+ .nav.nav-tabs {
|
|
|
|
|
+ > .nav-item {
|
|
|
|
|
+ color: $color-link;
|
|
|
|
|
+ background: transparent;
|
|
|
|
|
+
|
|
|
|
|
+ &:hover,
|
|
|
|
|
+ &:focus {
|
|
|
|
|
+ > .nav-link {
|
|
|
|
|
+ color: $color-link-hover;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ > .nav-link {
|
|
|
|
|
+ color: $subthemecolor;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ > .nav-link.active {
|
|
|
|
|
+ background: transparent !important;
|
|
|
|
|
+ border-bottom: solid 2.7px $thickborder;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* wiki */
|
|
|
|
|
+ .wiki {
|
|
|
|
|
+ h1 {
|
|
|
|
|
+ border-bottom: solid 2px $thickborder !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ h2 {
|
|
|
|
|
+ border-color: solid 1px $thickborder;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ // change color of highlighted header in wiki (default: orange)
|
|
|
|
|
+ .code-line.revision-head.highlighted {
|
|
|
|
|
+ color: $themelight;
|
|
|
|
|
+ background-color: lighten($bgcolor-theme, 20%);
|
|
|
|
|
+
|
|
|
|
|
+ .icon-note,
|
|
|
|
|
+ .icon-link {
|
|
|
|
|
+ color: $themelight;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Modal */
|
|
|
|
|
+ .modal-content {
|
|
|
|
|
+ background-color: $themelight;
|
|
|
|
|
+
|
|
|
|
|
+ .modal-header.bg-primary {
|
|
|
|
|
+ color: white;
|
|
|
|
|
+
|
|
|
|
|
+ .close {
|
|
|
|
|
+ color: white;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Inline Code */
|
|
|
|
|
+ :not(.hljs) > code:not(.hljs) {
|
|
|
|
|
+ background-color: $bgcolor-inline-code;
|
|
|
|
|
+ color: $color-inline-code;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* Card */
|
|
|
|
|
+ .card {
|
|
|
|
|
+ border: 1px solid $border-color-theme;
|
|
|
|
|
+
|
|
|
|
|
+ .card-header {
|
|
|
|
|
+ background-color: $lightthemecolor;
|
|
|
|
|
+ border-bottom: 1px solid $border-color-theme;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .card-body {
|
|
|
|
|
+ background-color: $themelight;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .card-footer {
|
|
|
|
|
+ background: white;
|
|
|
|
|
+ border-top: 1px solid $border-color-theme
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* button */
|
|
|
|
|
+ .btn-primary {
|
|
|
|
|
+ background: $primary;
|
|
|
|
|
+ border: 1px solid $primary;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* edit */
|
|
|
|
|
+ .CodeMirror {
|
|
|
|
|
+ border: solid 1.2px #d8d8d8;
|
|
|
|
|
+ border-top: solid 0.3em $thickborder !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ &.on-edit {
|
|
|
|
|
+ .page-editor-preview-container {
|
|
|
|
|
+ background: white !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* kibela block */
|
|
|
|
|
+ .kibela-block {
|
|
|
|
|
+ border-top: solid 0.4em $thickborder;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|