Update to new OpenStack logos

Replaces the old OpenStack logo files in the bootstrap theme
with new versions.

Change-Id: Id114be40b29777ae1ef35fd9cd19ad278af4c893
This commit is contained in:
Tom Fifield 2017-03-04 17:25:41 +08:00 committed by Marton Kiss
parent 22befe9cd7
commit 4295b16cc9
5 changed files with 22 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -35,7 +35,8 @@ function openstack_bootstrap_preprocess_page(&$variables) {
* - front page
* - ambassador program
*
* and add no-bleed-margins to each other page.
* and add no-bleed-margins to each other page,
* add new favicon with version number to the html header.
*
* @see html.tpl.php
*/
@ -46,6 +47,26 @@ function openstack_bootstrap_preprocess_html(&$variables) {
} else {
$variables['classes_array'][] = 'no-bleed-margins';
}
// add new favicon with version to clear the browser's favicon cache
$favicon = theme_get_setting('favicon');
$element = array(
'rel' => 'shortcut icon',
'href' => drupal_strip_dangerous_protocols($favicon.'?v=2'),
);
drupal_add_html_head_link($element);
}
/**
* Implements hook_html_head_alter().
*
* Remove default favicon
*/
function openstack_bootstrap_html_head_alter(&$head_elements) {
// Remove existing favicon location
$favicon = theme_get_setting('favicon');
$default_favicon_element = 'drupal_add_html_head_link:shortcut icon:' . $favicon;
unset($head_elements[$default_favicon_element]);
}
/**