Przeglądaj źródła

edit agile-admin/inverse/colors/antarctic.scss

itizawa 7 lat temu
rodzic
commit
2ce0d1f6b4

+ 98 - 0
src/client/styles/agile-admin/inverse/colors/antarctic.scss

@@ -1 +1,99 @@
+@import '../variables';
 
+$themecolor: #000080;
+$themelight: #f0f8ff;
+$subthemecolor: black;
+$sidebar-text: $themelight;
+$topbar: $themecolor;
+$sidebar: $themelight;
+$bodycolor: $themelight;
+$headingtext: $subthemecolor;
+$bodytext: $subthemecolor;
+$linktext: lighten(blue, 5%);
+$primary: $themecolor;
+$active-nav-tabs-bgcolor: $themecolor;
+$logo-mark-fill: $themelight;
+$wikilinktext: lighten($themecolor, 5%);
+$wikilinktext-hover: lighten($wikilinktext, 15%);
+$inline-code-color: darken($subthemecolor, 5%);
+$inline-code-bg: lighten($subthemecolor, 70%);
+$border: $subthemecolor;
+$border-original: $subthemecolor;
+$navbar-border: $themecolor;
+
+
+@import 'apply-colors';
+@import 'apply-colors-light';
+
+// change color of highlighted header in wiki (default: orange)
+.wiki {
+  .code-line.revision-head.highlighted {
+    background-color: lighten($themecolor, 50%);
+    color: $themelight;
+
+    .icon-note,
+    .icon-link {
+      color: $themelight;
+    }
+  }
+}
+
+.sidebar {
+  background: $themecolor;
+}
+
+.bg-title {
+  background-color: $themelight;
+}
+
+.nav-navbar {
+  background: #ffffff;
+}
+
+#wrapper>.navbar>.navbar-header {
+  border-bottom: 4px solid $subthemecolor;
+}
+
+/*
+ * comments
+ */
+
+.page-comment {
+  .page-comment-main {
+    box-shadow: 4px 4px 4px gray;
+
+    .page-comment-creator>a {
+      border-bottom: 1px double $subthemecolor;
+    }
+  }
+}
+
+
+
+/*
+ * Tabs
+ */
+body:not(.on-edit) .nav.nav-tabs {
+  >li.active>a {
+    background: linear-gradient(rgba($active-nav-tabs-bgcolor, 0) 0%,
+      rgba($active-nav-tabs-bgcolor, 0) 90%,
+      $active-nav-tabs-bgcolor 100%); // overwrite only the bottom pixel
+  }
+}
+
+/*
+ * Panel
+ */
+.panel {
+
+  &.panel-white,
+  &.panel-default {
+    border-color: $border-original;
+
+    .panel-heading {
+      color: $subthemecolor;
+      background-color: white;
+      border-bottom: 1px solid $border-original;
+    }
+  }
+}