crete css settings

This commit is contained in:
vedatakd 2020-03-03 11:37:41 +03:00
parent 2d74ee30f0
commit de88978e1f
8 changed files with 23 additions and 1 deletions

View File

@ -12,6 +12,12 @@ return [
'register_page_instruction_logo' 'register_page_instruction_logo'
], ],
], ],
'template' => [
'title' => 'visiosoft.theme.base::section.template',
'fields' => [
'style',
],
],
], ],
], ],
]; ];

View File

@ -56,4 +56,7 @@ return [
"mode" => "upload", "mode" => "upload",
] ]
], ],
'style' => [
'type' => 'anomaly.field_type.editor',
],
]; ];

View File

@ -4,4 +4,5 @@ return [
'catalog_mode' => [ 'catalog_mode' => [
'name' => 'Catalog Mode', 'name' => 'Catalog Mode',
], ],
'template' => 'Template',
]; ];

View File

@ -31,4 +31,7 @@ return [
'register_page_instruction_logo' => [ 'register_page_instruction_logo' => [
'name' => 'Register Page Instruction Logo', 'name' => 'Register Page Instruction Logo',
], ],
'style' => [
'name' => 'Style(CSS)',
],
]; ];

View File

@ -4,4 +4,5 @@ return [
'catalog_mode' => [ 'catalog_mode' => [
'name' => 'Katalog Modu', 'name' => 'Katalog Modu',
], ],
'template' => 'Tasarım',
]; ];

View File

@ -28,4 +28,7 @@ return [
'latest_and_view_all_btn' => [ 'latest_and_view_all_btn' => [
'name' => 'Tümünü Görüntüle', 'name' => 'Tümünü Görüntüle',
], ],
'style' => [
'name' => 'Style(CSS)',
],
]; ];

View File

@ -20,6 +20,8 @@
{{ asset_style("theme.css") }} {{ asset_style("theme.css") }}
{% include "visiosoft.theme.base::partials/styles" %}
{# Important!! #} {# Important!! #}

View File

@ -0,0 +1,3 @@
<style type="text/css">
{{ setting_value("visiosoft.theme.base::style")|raw }}
</style>