summaryrefslogtreecommitdiff
path: root/scss/custom.scss
diff options
context:
space:
mode:
Diffstat (limited to 'scss/custom.scss')
-rw-r--r--scss/custom.scss132
1 files changed, 132 insertions, 0 deletions
diff --git a/scss/custom.scss b/scss/custom.scss
new file mode 100644
index 000000000..6706ec1f9
--- /dev/null
+++ b/scss/custom.scss
@@ -0,0 +1,132 @@
+// Custom.scss
+
+$link-color: #6f3b93;
+$link-hover-color: darken($link-color, 10%);
+$link-hover-decoration: none;
+
+@import "bootstrap-src/scss/bootstrap";
+
+$action-color: #ffe484;
+$action-button-color: darken($action-color, 20%);
+$ishtar-color: darken($purple, 20%);
+$ishtar-secondary-color: $purple;
+$dark-secondary-color: rgba(255,255,255,0.8);
+
+.modal-dialog.full {
+ width: 98%;
+ height: 98%;
+ max-width: none;
+ padding: 1%;
+}
+
+.modal-dialog.full .display.dataTable {
+ width: 100% !important;
+}
+
+.modal-dialog.full .modal-content {
+ height: auto;
+ min-height: 100%;
+ border-radius: 0;
+}
+
+table.dataTable {
+ font-size: 0.8em;
+}
+
+.table-modal-lg table.dataTable {
+ font-size: 1em;
+}
+
+
+h3, .h3 {
+ font-size: 1.5rem;
+}
+
+h4, .h4 {
+ font-size: 1.1rem;
+}
+
+.sheet h4 { color: $text-muted; }
+
+.container{
+ margin-top: 1em;
+ margin-bottom: 5em;
+}
+
+.bg-dark{
+ background-color: $ishtar-color !important;
+}
+
+.navbar{
+ padding: 0 0.5rem;
+}
+
+// action menu
+.navbar-dark .navbar-nav.action-menu .nav-link{
+ color: $action-color;
+}
+
+.navbar-dark .navbar-nav.action-menu .nav-link.dropdown-toggle::after{
+ color: $navbar-dark-color;
+}
+
+#context-menu,
+div#validation-bar{
+ background-color: $ishtar-secondary-color;
+ color: $dark-secondary-color;
+}
+
+/* context menu */
+#shortcut-menu {
+ width: 700px;
+ padding: 1em;
+}
+
+#context-menu a{
+ color: $dark-secondary-color;
+ padding: 0.2rem 0.5rem;
+}
+
+#current_items{
+ width: 100%;
+}
+
+div#foot{
+ background-color: $ishtar-color;
+ color: $navbar-dark-color;
+}
+
+div#foot a {
+ color: #ddd;
+}
+
+div#foot a:hover {
+ color: #fff;
+}
+
+.breadcrumb button{
+ border: 0 transparent;
+ background-color: transparent;
+}
+
+.breadcrumb a:hover{
+ text-decoration: none;
+}
+
+.breadcrumb button:hover{
+ cursor: pointer;
+ color: darken($primary, 10%);
+}
+/*
+// required
+@import "bootstrap-src/scss/functions";
+@import "bootstrap-src/scss/variables";
+@import "bootstrap-src/scss/mixins";
+
+// optional
+@import "bootstrap-src/scss/reboot";
+@import "bootstrap-src/scss/type";
+@import "bootstrap-src/scss/images";
+@import "bootstrap-src/scss/code";
+@import "bootstrap-src/scss/grid";
+*/