From df9cada044086e99e01914fb4e6f23f7380a43b4 Mon Sep 17 00:00:00 2001 From: cagataycivici Date: Thu, 23 Apr 2020 10:13:53 +0300 Subject: [PATCH] Fixed #286 - Function support for MenuModel visible prop --- src/assets/styles/app.scss | 30 ++++----- src/components/breadcrumb/BreadcrumbItem.vue | 5 +- src/components/contextmenu/ContextMenuSub.vue | 9 ++- src/components/megamenu/MegaMenu.vue | 65 ++++++++++--------- src/components/menu/Menuitem.vue | 5 +- src/components/menubar/MenubarSub.vue | 9 ++- src/components/panelmenu/PanelMenu.vue | 5 +- src/components/panelmenu/PanelMenuSub.vue | 9 ++- src/components/steps/Steps.vue | 25 ++++--- src/components/tabmenu/TabMenu.vue | 5 +- src/components/tieredmenu/TieredMenuSub.vue | 9 ++- src/views/menumodel/MenuModel.vue | 22 +++++++ 12 files changed, 127 insertions(+), 71 deletions(-) diff --git a/src/assets/styles/app.scss b/src/assets/styles/app.scss index f0cbb838d..4316cf51d 100644 --- a/src/assets/styles/app.scss +++ b/src/assets/styles/app.scss @@ -85,7 +85,7 @@ body { background-color: #ffffff; font-family: "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; - color: #484848; + color: #252525; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-size: 14px; @@ -220,7 +220,7 @@ a { .menu-button { display: none; - color: #484848; + color: #252525; font-size: 24px; position: absolute; left: 0; @@ -271,7 +271,7 @@ a { > a { text-decoration: none; - color: #484848; + color: #252525; min-width: 120px; font-size: 16px; display: inline-block; @@ -329,7 +329,7 @@ a { a { text-decoration: none; - color: #484848; + color: #252525; padding: 6px 12px; display: block; user-select: none; @@ -479,7 +479,7 @@ a { border-radius: 4px; -webkit-border-radius: 4px; font-size: 14px; - color: #484848; + color: #252525; transition: background-color .2s; &:hover { @@ -575,7 +575,7 @@ a { border-radius: 3px; background-color: #ffffff; padding: 2px 4px; - color: #484848; + color: #252525; } } } @@ -665,7 +665,7 @@ a { border-top: 1px solid #dadada; h3 { - color: #484848; + color: #252525; margin-top: 25px; margin-bottom: 0px; font-size: 22px; @@ -679,7 +679,7 @@ a { } p { - color: #484848; + color: #252525; font-size: 14px; line-height: 24px; margin: 10px 0; @@ -787,14 +787,14 @@ a { .p-tabview-panels { background: transparent; border: 0 none; - color: #484848; + color: #252525; } } } &.support { .support-image { - background-color: #484848; + background-color: #252525; padding: 30px; color: #ffffff; text-align: left; @@ -1009,7 +1009,7 @@ a { .free-themes { padding: 2em; - color: #484848; + color: #252525; background-color: #ffffff; p { @@ -1194,7 +1194,7 @@ a { h3 { font-size:24px; - color: #484848; + color: #252525; padding: 30px 0 12px 0; margin: 0; } @@ -1227,14 +1227,14 @@ a { margin-bottom: 2em; &.features-tagline { - color: #484848; + color: #252525; margin-bottom: 0; margin-top: -5px; margin-bottom: 2em; } &.features-description { - color: #484848; + color: #252525; text-align: left; } @@ -1283,7 +1283,7 @@ a { h3 { font-size:24px; - color: #484848; + color: #252525; margin-top: 0; margin-bottom: 12px; } diff --git a/src/components/breadcrumb/BreadcrumbItem.vue b/src/components/breadcrumb/BreadcrumbItem.vue index e3ae3df7a..1c103c29e 100644 --- a/src/components/breadcrumb/BreadcrumbItem.vue +++ b/src/components/breadcrumb/BreadcrumbItem.vue @@ -1,5 +1,5 @@