aboutsummaryrefslogtreecommitdiffstats
path: root/web/css/libs/_classic-box.scss
diff options
context:
space:
mode:
Diffstat (limited to 'web/css/libs/_classic-box.scss')
-rw-r--r--web/css/libs/_classic-box.scss36
1 files changed, 36 insertions, 0 deletions
diff --git a/web/css/libs/_classic-box.scss b/web/css/libs/_classic-box.scss
index 80cdadc..dca208f 100644
--- a/web/css/libs/_classic-box.scss
+++ b/web/css/libs/_classic-box.scss
@@ -71,6 +71,7 @@
.box-content {
padding: 6px;
+ overflow: auto;
table a {
text-decoration: none;
@@ -95,4 +96,39 @@
margin-right: 5px;
}
}
+}
+
+
+
+/* --------------------- */
+/* == THEMES */
+/* --------------------- */
+@each $name, $datas in $themes {
+ body.theme-#{""+$name+""} {
+
+ .box {
+ box-shadow: 3px 3px 0 rgba(lighten(map-get($datas, main-color), 16%), .6);
+ border-color: lighten(map-get($datas, main-color), 16%);
+
+ .box-header {
+ background-color: darken(map-get($datas, main-color), 7%);
+
+ ul li a {
+ &:hover:not(.disabled) {
+ background: lighten(darken(map-get($datas, main-color), 7%), 20%);
+ color: darken(map-get($datas, main-color), 7%) !important;
+ }
+ }
+ }
+ .box-content {
+ table a {
+ color: darken(map-get($datas, main-color), 7%);
+
+ &:hover {
+ color: lighten(darken(map-get($datas, main-color), 7%), 20%);
+ }
+ }
+ }
+ }
+ }
} \ No newline at end of file