diff --git a/public/assets/css/dash/frame.css b/public/assets/css/dash/frame.css
index 8dca897..51bfa96 100644
--- a/public/assets/css/dash/frame.css
+++ b/public/assets/css/dash/frame.css
@@ -50,13 +50,14 @@ code {
}
svg[role="icon"] {
+ transition: all 0.3s linear;
fill: var(--white);
width: 25px;
height: 25px;
padding-top: 5px;
}
-/* HEADER
+/* HEADER
Navigation
Notificiations
*/
@@ -123,9 +124,16 @@ header > nav > div.nav-right div.submenu button {
font-size: 0.8em;
}
-header > nav > div.nav-right div.submenu button[data-render="true"] {
- background: var(--tertiary);
- color: var(--primary);
+button[data-render="true"] {
+ background: var(--primary);
+}
+
+button[data-render="true"] svg {
+ fill: var(--highlight);
+}
+
+button[data-render="false"] svg {
+ fill: var(--white);
}
/* RESPONSIVE */
diff --git a/public/assets/css/dash/index.css b/public/assets/css/dash/index.css
index 61cdad1..81d4c13 100644
--- a/public/assets/css/dash/index.css
+++ b/public/assets/css/dash/index.css
@@ -68,22 +68,22 @@ section[class="index-recent-pages"] button i {
font-size: 1.8em;
}
-section[class="index-recent-pages"] button[data-active="true"] {
+button[data-active="true"] {
background: var(--primary);
}
-section[class="index-recent-pages"] button[data-active="true"] i {
- color: var(--tertiary);
-}
-
-section[class="index-recent-pages"] button[data-active="false"] {
+button[data-active="false"] {
background: var(--secondary);
}
-section[class="index-recent-pages"] button[data-active="false"] i {
+button[data-active="false"] svg {
fill: var(--primary);
}
+button[data-active="true"] svg {
+ fill: var(--highlight);
+}
+
section[class="index-recent-pages"] aside {
font-size: 1.1em;
color: var(--white);
diff --git a/public/assets/css/dash/page-editor.css b/public/assets/css/dash/page-editor.css
index 4bc1c09..db05dfa 100644
--- a/public/assets/css/dash/page-editor.css
+++ b/public/assets/css/dash/page-editor.css
@@ -230,35 +230,6 @@ main
border-radius: 0 3px 3px 0;
}
-main section[role="page-meta"] div[role="page-meta-wrapper"] button[data-active="false"] {
- background: var(--primary);
-}
-
-main
- section[role="page-meta"]
- div[role="page-meta-wrapper"]
- button[data-active="false"]
- svg {
- fill: var(--secondary);
-}
-
-main
- section[role="page-meta"]
- div[role="page-meta-wrapper"]
- div[role="page-options"]
- button[data-active="true"] {
- background: var(--tertiary);
-}
-
-main
- section[role="page-meta"]
- div[role="page-meta-wrapper"]
- div[role="page-options"]
- button[data-active="true"]
- svg {
- fill: var(--primary);
-}
-
main
section[role="page-meta"]
div[role="page-meta-wrapper"]
diff --git a/resources/views/includes/nav.blade.php b/resources/views/includes/nav.blade.php
index fd6fa91..f0eeca5 100644
--- a/resources/views/includes/nav.blade.php
+++ b/resources/views/includes/nav.blade.php
@@ -6,17 +6,23 @@
@endif
diff --git a/resources/views/includes/options.blade.php b/resources/views/includes/options.blade.php
index 6ae7f64..fed9654 100644
--- a/resources/views/includes/options.blade.php
+++ b/resources/views/includes/options.blade.php
@@ -33,8 +33,8 @@ if(isset($page['uuid']))