diff --git a/src/resources/themes/default/_variables.scss b/src/resources/themes/default/_variables.scss deleted file mode 100644 --- a/src/resources/themes/default/_variables.scss +++ /dev/null @@ -1,20 +0,0 @@ -// Body -$body-bg: #fff; - -// Typography -$font-family-sans-serif: 'Nunito', sans-serif; -$font-size-base: 0.9rem; -$line-height-base: 1.5; - -// Colors -$orange: #f1a539; -$light: #f6f5f3; - -// App colors -$menu-bg-color: $light; -$menu-gray: #575656; -$main-color: $orange; -$warning: $orange; - -$table-hover-bg: $menu-bg-color; -$table-head-bg: $menu-bg-color; \ No newline at end of file diff --git a/src/resources/themes/default/app.scss b/src/resources/themes/default/app.scss --- a/src/resources/themes/default/app.scss +++ b/src/resources/themes/default/app.scss @@ -1,5 +1,4 @@ -@import 'variables'; - +@import '../variables'; @import '../bootstrap'; @import '../menu'; @import '../meet'; diff --git a/src/resources/themes/default/document.scss b/src/resources/themes/default/document.scss --- a/src/resources/themes/default/document.scss +++ b/src/resources/themes/default/document.scss @@ -1,3 +1,3 @@ // Variables -@import 'variables'; +@import '../variables'; @import '../document'; diff --git a/src/resources/themes/default/lang/de/support.php b/src/resources/themes/default/lang/de/support.php deleted file mode 100644 --- a/src/resources/themes/default/lang/de/support.php +++ /dev/null @@ -1,7 +0,0 @@ - "Kontaktieren Sie Support", - -]; \ No newline at end of file diff --git a/src/resources/themes/default/lang/en/support.php b/src/resources/themes/default/lang/en/support.php --- a/src/resources/themes/default/lang/en/support.php +++ b/src/resources/themes/default/lang/en/support.php @@ -2,6 +2,10 @@ return [ - 'btn' => "Contact Support", + 'title' => "Contact Support", + 'text1' => "Our technical support team is here to provide help, should you run into issues." + . " You won’t have to talk to computers or navigate voice menus, but have actual human beings answering you personally.", + 'text2' => "This support is already included in your subscription fee, so there are no further costs for you." + . " If you have issues with your :site account, or questions about our product before you sign up, please contact us.", -]; \ No newline at end of file +]; diff --git a/src/resources/themes/default/pages/support.blade.php b/src/resources/themes/default/pages/support.blade.php --- a/src/resources/themes/default/pages/support.blade.php +++ b/src/resources/themes/default/pages/support.blade.php @@ -1,21 +1,14 @@
-

Contact Support

+

@lang('theme::support.title')

- Our technical support team is here to provide help, should you run - into issues. You won’t have to talk to computers or navigate voice - menus, but have actual human beings answering you personally. + @lang('theme::support.text1')

- This support is already included in your subscription fee, so - there are no further costs for you. If you have issues with your - Kolab Now account, or questions about our product before you sign - up, please contact us. + @lang('theme::support.text2', ['site' => config('app.name')])

-
- -
+ + diff --git a/src/resources/themes/menu.scss b/src/resources/themes/menu.scss --- a/src/resources/themes/menu.scss +++ b/src/resources/themes/menu.scss @@ -40,7 +40,8 @@ } #footer-menu { - background-color: $main-color; + color: $menu-footer-color; + background-color: $menu-footer-bg-color; height: 100px; overflow: hidden; padding: 0; @@ -59,7 +60,6 @@ .footer { text-align: right; - color: #fff; font-size: 0.75rem; padding: 0 0.5rem; } diff --git a/src/resources/themes/variables.scss b/src/resources/themes/variables.scss new file mode 100644 --- /dev/null +++ b/src/resources/themes/variables.scss @@ -0,0 +1,15 @@ +// Body +$body-bg: #fff; + +// Typography +$font-family-sans-serif: 'Nunito', sans-serif; +$font-size-base: 0.9rem; +$line-height-base: 1.5; + +$main-color: #007bff; + +// App colors +$menu-bg-color: #f8f9fa; +$menu-footer-color: #fff; +$menu-footer-bg-color: #aaa; +$menu-gray: #575656;