diff --git a/public/css/theme/default.css b/public/css/theme/default.css index fe05d8d8a..35a0c98f9 100644 --- a/public/css/theme/default.css +++ b/public/css/theme/default.css @@ -262,4 +262,8 @@ html.dark .tabulator .tabulator-cell { html.dark .tabulator .tabulator-header .tabulator-col:hover { background-color: var(--fhc-tertiary) !important; +} + +.p-paginator{ + background-color: var(--fhc-background) !important; } \ No newline at end of file diff --git a/public/js/components/Cis/Cms/News.js b/public/js/components/Cis/Cms/News.js index 50310e771..bf17666a2 100644 --- a/public/js/components/Cis/Cms/News.js +++ b/public/js/components/Cis/Cms/News.js @@ -58,6 +58,20 @@ export default { FHC_JS_DATA_STORAGE_OBJECT.app_root ); }); + Vue.nextTick(()=>{ + document.querySelectorAll(".card-header").forEach((el) => { + el.classList.add("fhc-primary"); + }); + document.querySelectorAll(".row").forEach((el) => { + el.classList.add("w-100"); + el.classList.add("align-items-center"); + + }); + document.querySelectorAll(".row h2").forEach((el) => { + el.classList.add("mb-0"); + }); + + }) }); }, loadNewPageContent(data) { @@ -66,6 +80,7 @@ export default { .then(res => res.data) .then(result => { this.content = result; + }); } }, @@ -80,7 +95,7 @@ export default { }); }, template: /*html*/ ` -

News

+

News