Skip to content
Closed
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
39ae956
remove inline fill values from logo svg
ciar4n Sep 27, 2019
3ad3f9d
refactor css variables
ciar4n Sep 29, 2019
bc30e1c
reactive color inputs
ciar4n Sep 29, 2019
76cc202
set css vars from params
ciar4n Sep 29, 2019
57a00ad
remove template helper
ciar4n Sep 29, 2019
efcebbd
update xml and lang
ciar4n Sep 29, 2019
9330834
missed
ciar4n Sep 30, 2019
5826aa2
apply primary color to logo
ciar4n Sep 30, 2019
f0b987f
make remaining inputs reactive
ciar4n Sep 30, 2019
0876fdc
remove redundant variables
ciar4n Sep 30, 2019
1f2ae47
hound
ciar4n Sep 30, 2019
600535b
hound
ciar4n Sep 30, 2019
4014121
Merge branch '4.0-dev' of https://github.com/joomla/joomla-cms into r…
ciar4n Sep 30, 2019
26d8c6e
Merge branch '4.0-dev' into refactor-atum-color
ciar4n Sep 30, 2019
9e14ff5
Codestyle
wilsonge Sep 30, 2019
dd178d1
alpha sort lang
ciar4n Sep 30, 2019
01a45b3
Merge branch 'refactor-atum-color' of https://github.com/ciar4n/jooml…
ciar4n Sep 30, 2019
6fc70c0
Update template.es6.js
ciar4n Oct 1, 2019
d6e82a0
Update template.es6.js
ciar4n Oct 1, 2019
cd09b7d
Merge branch '4.0-dev' into refactor-atum-color
ciar4n Oct 1, 2019
4e09c9a
update composer.json
ciar4n Oct 1, 2019
d80d88f
Merge branch '4.0-dev' into refactor-atum-color
ciar4n Oct 3, 2019
5e8f10d
use getElementById
ciar4n Oct 4, 2019
40c62e7
Merge branch 'refactor-atum-color' of https://github.com/ciar4n/jooml…
ciar4n Oct 4, 2019
1574af7
remove css comment
ciar4n Oct 5, 2019
70ee25b
Merge branch '4.0-dev' into refactor-atum-color
ciar4n Oct 5, 2019
59a5b25
Merge branch '4.0-dev' into refactor-atum-color
ciar4n Oct 10, 2019
bb4d1a2
double spaces
ciar4n Oct 20, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
243 changes: 0 additions & 243 deletions administrator/templates/atum/Service/HTML/Atum.php

This file was deleted.

12 changes: 8 additions & 4 deletions administrator/templates/atum/error_full.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@
$hiddenMenu = $app->input->get('hidemainmenu');
$joomlaLogo = $this->baseurl . '/templates/' . $this->template . '/images/logo.svg';

require_once __DIR__ . '/Service/HTML/Atum.php';

// Template params
$siteLogo = $this->params->get('siteLogo')
? Uri::root() . $this->params->get('siteLogo')
Expand Down Expand Up @@ -66,6 +64,14 @@

// Opacity must be set before displaying the DOM, so don't move to a CSS file
$css = '
:root {
--primary: ' . $this->params->get('primary-color', '#1a466b') . ';
--secondary: ' . $this->params->get('secondary-color', '#001B4C') . ';
--atum-bg-light: ' . $this->params->get('bg-light', '#e8e8e8') . ';
--atum-text-dark: ' . $this->params->get('text-dark', '#495057') . ';
--atum-text-light: ' . $this->params->get('text-light', '#ffffff') . ';
--atum-link-color: ' . $this->params->get('link-color', '#1757a1') . ';
}
.container-main > * {
opacity: 0;
}
Expand All @@ -78,8 +84,6 @@

$monochrome = (bool) $this->params->get('monochrome');

HTMLHelper::getServiceRegistry()->register('atum', 'JHtmlAtum');
HTMLHelper::_('atum.rootcolors', $this->params);
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
Expand Down
12 changes: 8 additions & 4 deletions administrator/templates/atum/error_login.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@
$hiddenMenu = $app->input->get('hidemainmenu');
$joomlaLogo = $this->baseurl . '/templates/' . $this->template . '/images/logo.svg';

require_once __DIR__ . '/Service/HTML/Atum.php';

// Template params
$siteLogo = $this->params->get('siteLogo')
? Uri::root() . $this->params->get('siteLogo')
Expand Down Expand Up @@ -66,6 +64,14 @@

// Opacity must be set before displaying the DOM, so don't move to a CSS file
$css = '
:root {
--primary: ' . $this->params->get('primary-color', '#1a466b') . ';
--secondary: ' . $this->params->get('secondary-color', '#001B4C') . ';
--atum-bg-light: ' . $this->params->get('bg-light', '#e8e8e8') . ';
--atum-text-dark: ' . $this->params->get('text-dark', '#495057') . ';
--atum-text-light: ' . $this->params->get('text-light', '#ffffff') . ';
--atum-link-color: ' . $this->params->get('link-color', '#1757a1') . ';
}
.container-main > * {
opacity: 0;
}
Expand All @@ -78,8 +84,6 @@

$monochrome = (bool) $this->params->get('monochrome');

HTMLHelper::getServiceRegistry()->register('atum', 'JHtmlAtum');
HTMLHelper::_('atum.rootcolors', $this->params);
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
Expand Down
2 changes: 1 addition & 1 deletion administrator/templates/atum/images/logo-blue.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion administrator/templates/atum/images/logo-joomla-blue.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading