From d6184f7be2d76e1144e343d58094f0e8f3bf3477 Mon Sep 17 00:00:00 2001 From: Focuslinkstech <45756999+Focuslinkstech@users.noreply.github.com> Date: Thu, 22 Aug 2024 14:59:23 +0100 Subject: [PATCH 1/8] New Template Journey --- ui/ui/sections/header.tpl | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/ui/ui/sections/header.tpl b/ui/ui/sections/header.tpl index 8589dd72..ac6b6e01 100644 --- a/ui/ui/sections/header.tpl +++ b/ui/ui/sections/header.tpl @@ -130,6 +130,38 @@ border-top: 1px solid #d2d6de; } + .panel-primary { + border-color: #333; + } + + .panel { + margin-bottom: 20px; + background-color: #fff; + border: 0px solid transparent; + border-radius: 21px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); + box-shadow: 0px 4px 30px rgba(221, 224, 255, .54); + } + + .panel-primary>.panel-heading { + color: inherit; + background-color: transparent; + border-color: transparent; + } + + .panel-primary>.panel-heading { + color: inherit; + background-color: transparent; + border-color: transparent; + } + + .panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-right-radius: 3px; + border-top-left-radius: 3px; + } + /* Search Bar Start Here */ .wrap { width: 30%; From 9955c890247b4314e57c65de53ca0b0aeb276216 Mon Sep 17 00:00:00 2001 From: Focuslinkstech <45756999+Focuslinkstech@users.noreply.github.com> Date: Thu, 22 Aug 2024 20:42:44 +0100 Subject: [PATCH 2/8] Still on New Template Journey --- ui/ui/user-ui/header.tpl | 90 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) diff --git a/ui/ui/user-ui/header.tpl b/ui/ui/user-ui/header.tpl index 0e422602..2d8f3b06 100644 --- a/ui/ui/user-ui/header.tpl +++ b/ui/ui/user-ui/header.tpl @@ -127,6 +127,95 @@ border-top: 1px solid #d2d6de; } + .panel-primary { + border-color: #333; + } + + .panel { + margin-bottom: 20px; + background-color: #fff; + border: 0px solid transparent; + border-radius: 21px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); + box-shadow: 0px 4px 30px rgba(221, 224, 255, .54); + } + + .panel-primary>.panel-heading { + color: inherit; + background-color: transparent; + border-color: transparent; + } + + .panel-primary>.panel-heading { + color: inherit; + background-color: transparent; + border-color: transparent; + } + + .panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-right-radius: 3px; + border-top-left-radius: 3px; + } + + .box.box-solid.box-primary>.box-header { + color: inherit; + background-color: transparent; + border-color: transparent; + } + + .box-body { + border-radius: 21px; + padding: 10px; + } + + .box.box-solid.box-primary { + background-color: #fff; + border: 0px solid transparent; + border-radius: 21px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); + box-shadow: 0 1px 1px rgba(0, 0, 0, .05); + } + + .content .row [class*=col-] .box { + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .1); + -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .1); + -ms-box-shadow: 0 1px 1px rgba(0, 0, 0, .1); + box-shadow: 0 1px 1px rgba(0, 0, 0, .05); + -webkit-border-radius: 1px !important; + -moz-border-radius: 1px !important; + -ms-border-radius: 1px !important; + border-radius: 25px !important; + } + + .box.box-solid.box-info>.box-header { + color: inherit; + background-color: transparent; + border-color: transparent; + } + + .box-header { + color: inherit; + display: block; + padding: 10px; + position: relative; + border-color: transparent; + border-radius: 25px; + } + + .box.box-solid.box-default>.box-header { + color: inherit; + background-color: transparent; + border-color: transparent; + } + + .box.box-solid.box-success>.box-header { + color: inherit; + background: transparent; + background-color: transparent; + } + /* New Customize Interface End Here */ ::-moz-selection { @@ -187,6 +276,7 @@ margin: 0; padding: 10px; } + {if isset($xheader)} From 0265304069be74bda0f5266aef7663e22a472b96 Mon Sep 17 00:00:00 2001 From: Focuslinkstech <45756999+Focuslinkstech@users.noreply.github.com> Date: Thu, 22 Aug 2024 20:50:00 +0100 Subject: [PATCH 3/8] Add more --- ui/ui/sections/header.tpl | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ui/ui/sections/header.tpl b/ui/ui/sections/header.tpl index ac6b6e01..c3de8340 100644 --- a/ui/ui/sections/header.tpl +++ b/ui/ui/sections/header.tpl @@ -162,6 +162,17 @@ border-top-left-radius: 3px; } + .content .row [class*=col-] .box { + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .1); + -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .1); + -ms-box-shadow: 0 1px 1px rgba(0, 0, 0, .1); + box-shadow: 0 1px 1px rgba(0, 0, 0, .05); + -webkit-border-radius: 1px !important; + -moz-border-radius: 1px !important; + -ms-border-radius: 1px !important; + border-radius: 25px !important; + } + /* Search Bar Start Here */ .wrap { width: 30%; From cde2706c042867c1204ae47e59c371c3cdf1559a Mon Sep 17 00:00:00 2001 From: Focuslinkstech <45756999+Focuslinkstech@users.noreply.github.com> Date: Thu, 22 Aug 2024 21:26:34 +0100 Subject: [PATCH 4/8] Still on the Journey --- ui/ui/sections/header.tpl | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/ui/ui/sections/header.tpl b/ui/ui/sections/header.tpl index c3de8340..476df2d6 100644 --- a/ui/ui/sections/header.tpl +++ b/ui/ui/sections/header.tpl @@ -173,6 +173,22 @@ border-radius: 25px !important; } + .box.box-solid.box-primary>.box-header { + color: inherit; + background-color: transparent; + border-color: transparent; + } + + .box-footer { + border-top-left-radius: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 25px; + border-bottom-left-radius: 25px; + border-top: 1px solid #f4f4f4; + padding: 10px; + background-color: #f6f6f6; + } + /* Search Bar Start Here */ .wrap { width: 30%; From 9f2f739ba66d805e8bbe5b5db12d73386f7176e3 Mon Sep 17 00:00:00 2001 From: Focuslinkstech <45756999+Focuslinkstech@users.noreply.github.com> Date: Thu, 22 Aug 2024 21:29:09 +0100 Subject: [PATCH 5/8] Fixed --- ui/ui/sections/header.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/ui/sections/header.tpl b/ui/ui/sections/header.tpl index 476df2d6..6bf0b85d 100644 --- a/ui/ui/sections/header.tpl +++ b/ui/ui/sections/header.tpl @@ -184,9 +184,9 @@ border-top-right-radius: 0; border-bottom-right-radius: 25px; border-bottom-left-radius: 25px; - border-top: 1px solid #f4f4f4; + border-top: 1px solid transparent; padding: 10px; - background-color: #f6f6f6; + background-color: inherit; } /* Search Bar Start Here */ From 9ca0b3907cbb023c98d667a15de03e645ad63c51 Mon Sep 17 00:00:00 2001 From: Focuslinkstech <45756999+Focuslinkstech@users.noreply.github.com> Date: Thu, 22 Aug 2024 21:30:12 +0100 Subject: [PATCH 6/8] fixed --- ui/ui/sections/header.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/ui/sections/header.tpl b/ui/ui/sections/header.tpl index 6bf0b85d..476df2d6 100644 --- a/ui/ui/sections/header.tpl +++ b/ui/ui/sections/header.tpl @@ -184,9 +184,9 @@ border-top-right-radius: 0; border-bottom-right-radius: 25px; border-bottom-left-radius: 25px; - border-top: 1px solid transparent; + border-top: 1px solid #f4f4f4; padding: 10px; - background-color: inherit; + background-color: #f6f6f6; } /* Search Bar Start Here */ From b2d9c13c515d3005c81047b025b3cd194e489a9b Mon Sep 17 00:00:00 2001 From: Focuslinkstech <45756999+Focuslinkstech@users.noreply.github.com> Date: Thu, 22 Aug 2024 21:31:37 +0100 Subject: [PATCH 7/8] Fixed --- ui/ui/sections/header.tpl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/ui/sections/header.tpl b/ui/ui/sections/header.tpl index 476df2d6..03380ed5 100644 --- a/ui/ui/sections/header.tpl +++ b/ui/ui/sections/header.tpl @@ -184,11 +184,12 @@ border-top-right-radius: 0; border-bottom-right-radius: 25px; border-bottom-left-radius: 25px; - border-top: 1px solid #f4f4f4; + border-top: 1px solid transparent; padding: 10px; - background-color: #f6f6f6; + background-color: inherit; } + /* Search Bar Start Here */ .wrap { width: 30%; From 04bc749eaeebe552a7ded57de371b4d19b994176 Mon Sep 17 00:00:00 2001 From: Focuslinkstech <45756999+Focuslinkstech@users.noreply.github.com> Date: Thu, 22 Aug 2024 22:35:11 +0100 Subject: [PATCH 8/8] add more --- ui/ui/sections/header.tpl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ui/ui/sections/header.tpl b/ui/ui/sections/header.tpl index 03380ed5..746c161e 100644 --- a/ui/ui/sections/header.tpl +++ b/ui/ui/sections/header.tpl @@ -189,6 +189,13 @@ background-color: inherit; } + .panel-footer { + padding: 10px 15px; + background-color: inherit; + border-top: 1px solid transparent; + border-bottom-right-radius: 25px; + border-bottom-left-radius: 25px; + } /* Search Bar Start Here */ .wrap {