Difference between revisions of "AppSuite:Dynamic Theme"

Line 1: Line 1:
 
<!-- !!! -->
 
<!-- !!! -->
 
<!-- PLEASE APPLY CHANGES ONLY TO THE NEW TECHNICAL DOCUMENTATION: wd/frontend/web/documentation -->  
 
<!-- PLEASE APPLY CHANGES ONLY TO THE NEW TECHNICAL DOCUMENTATION: wd/frontend/web/documentation -->  
<!-- !!! -
+
<!-- !!! -->
  
 
{{Stability-unstable}}
 
{{Stability-unstable}}

Revision as of 10:11, 11 February 2016


API status: New

Dynamic Theming

The dynamic theme plugin allows to have custom colors and logo without creating a real theme for each possible color combination. The customization information is stored in the Configuration Cascade and applied at runtime, immediately after login.

Installation

The theme generator consists of the single package open-xchange-dynamic-theme, which is installed on the OX middleware.

Before OX App Suite v7.6.2, the package included the command line tool /opt/open-xchange/sbin/update-dynamic-theme, which must be called after every update of other plugins. It is called automatically after the installation and upgrades of open-xchange-dynamic-theme. The tool examines all installed .less files and computes which CSS rules need to be changed to apply the custom colors everywhere.

Since v7.6.2, the tool is called automatically whenever necessary, so it is not necessary to call it manually, and therefore it is not installed in the /opt/open-xchange/sbin/ directory anymore.

Configuration

Enabling the Plugin

The plugin is enabled or disabled by the capability dynamic-theme, e.g. in a file /opt/open-xchange/etc/dynamic-theme.properties set

com.openexchange.capability.dynamic-theme=true

When using the plugin, the actual theme should be the built-in default theme. To prevent all users from changing it and hide the theme selector in the preferences, set the property io.ox/core//theme to read-only. To do this, change the file /opt/open-xchange/etc/meta/appsuite.yaml as follows:

io.ox/core//theme:
    protected: true

If some users won't use dynamic themes, this approach won't work. Instead, the theme selector can be disabled an enabled by controlling the list of available themes. The theme selector is hidden if the list is empty. To be able to do that with the Configuration Cascade, the entire list of themes needs to be specified as a single JSON value, e.g. by changing the file /opt/open-xchange/etc/settings/appsuite.properties as follows:

io.ox/core/settingOptions//themes={"default":"Default Theme"}

Then, to hide the theme selector for users with a dynamic theme, use the Configuration Cascade to change the value to {}.

Specifying a Theme

The package installs the file /opt/open-xchange/etc/settings/open-xchange-dynamic-theme.properties, which contains the global defaults for the custom theme settings. Any of the settings contained in that file can be changed per-context or at any other granularity supported by the Configuration Cascade. The individual settings are as follows:

Prefix Key Default value
io.ox/dynamic-theme// frameColor #333
iconColor #bbb
selectionColor #39a9e1
logoWidth 60
logoURL apps/themes/default/logo-small.png

The colors can be any CSS color; logoWidth is specified in pixels; logoURL can be relative (to /appsuite/), or absolute. When using absolute URLs to point to different hosts, use the form //hostname/path to keep the protocol (HTTP or HTTPS) and avoid any unnecessary security warnings.

Maintenance

The source file apps/io.ox/dynamic-theme/definitions.less.in contains the Less rules for the theme. All keys in the namespace io.ox/dynamic-theme// are converted to Less variables by prefixing them with @io-ox-dynamic-theme-. The set of keys in the following files must be kept in sync:

  • apps/io.ox/dynamic-themes/definitions.less.in
  • apps/io.ox/dynamic-theme/settings/defaults.js
  • lib/update-dynamic-theme.js
  • conf/settings/open-xchange-dynamic-theme.properties