Merge pull request #5885 from edx/sarina/name-branded-assets-in-lms

Consistently name branded assets in lms
This commit is contained in:
Sarina Canelake
2014-11-14 13:29:22 -05:00
8 changed files with 10 additions and 8 deletions

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -402,9 +402,9 @@ $homepage__header--background: lighten($blue, 15%);
// IMAGES: backgrounds
$homepage-bg-image: none;
$login-banner-image: url(../images/bg-banner-account.png);
$register-banner-image: url(../images/bg-banner-account.png);
$passwordreset-banner-image: url(../images/bg-banner-account.png);
$login-banner-image: url(../images/edx-background-banner-account.png);
$register-banner-image: url(../images/edx-background-banner-account.png);
$passwordreset-banner-image: url(../images/edx-background-banner-account.png);
$video-thumb-url: '../images/homepage-hero-video-thumb.jpg';

View File

@@ -11,11 +11,12 @@
<%
course_index_overlay_text = microsite.get_value('course_index_overlay_text', _("Explore free courses from leading universities."))
# not sure why this is, but if I use static.url('images/edx_bw.png') then the HTML rendering
# not sure why this is, but if I use static.url('images/edx-logo-bw.png') then the HTML rendering
# of this template goes wonky
logo_file = microsite.get_value(
'course_index_overlay_logo_file', settings.STATIC_URL + 'images/edx_bw.png')
'course_index_overlay_logo_file', settings.STATIC_URL + 'images/edx-logo-bw.png'
)
%>
<header class="search">

View File

@@ -65,11 +65,12 @@
<p>
<a href="http://openedx.org/">
## standard powered-by logo
<img src="https://files.edx.org/openedx-logos/edx-openedx-logo-tag.png" alt="Powered by Open edX" width="150" height="50" />
## Translators: 'Open edX' is a brand, please keep this untranslated. See http://openedx.org for more information.
<img src="https://files.edx.org/openedx-logos/openedx-logo-tag.png" alt="${_('Powered by Open edX')}" width="150" height="50" />
## greyscale logo for dark background
## <img src="https://files.edx.org/openedx-logos/edx-openedx-logo-tag-light.png" alt="Powered by Open edX" width="150" height="50" />
## <img src="https://files.edx.org/openedx-logos/openedx-logo-tag-light.png" alt="${_('Powered by Open edX')}" width="150" height="50" />
## greyscale logo for light background
## <img src="https://files.edx.org/openedx-logos/edx-openedx-logo-tag-dark.png" alt="Powered by Open edX" width="150" height="50" />
## <img src="https://files.edx.org/openedx-logos/openedx-logo-tag-dark.png" alt="${_('Powered by Open edX')}" width="150" height="50" />
</a>
</p>
</div>