Issue #2404253 by wuinfo, mermentau: Undefined index: css in color_library_info_alter()

8.0.x
Alex Pott 2015-07-30 15:47:45 +01:00
parent 6366f77221
commit 6c2eb9c1ba
3 changed files with 37 additions and 19 deletions

View File

@ -76,6 +76,7 @@ function color_library_info_alter(&$libraries, $extension) {
$color_paths = \Drupal::config('color.theme.' . $extension)->get('stylesheets');
if (!empty($color_paths)) {
foreach (array_keys($libraries) as $name) {
if(isset($libraries[$name]['css'])) {
// Override stylesheets.
foreach ($libraries[$name]['css'] as $category => $css_assets) {
foreach ($css_assets as $path => $metadata) {
@ -102,6 +103,7 @@ function color_library_info_alter(&$libraries, $extension) {
}
}
}
}
}
/**

View File

@ -3,3 +3,10 @@ base:
css:
theme:
css/colors.css: {}
fontsizer:
version: VERSION
js:
js/color_test_theme-fontsize.js: {}
dependencies:
- core/jquery

View File

@ -0,0 +1,9 @@
/**
* @file
* Adds javascript functions for font resizing.
*/
(function ($) {
"use strict";
$(document).ready(function () {});
})(jQuery);