Merge pull request #5885 from edx/sarina/name-branded-assets-in-lms
Consistently name branded assets in lms
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -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';
|
||||
|
||||
|
||||
@@ -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">
|
||||
|
||||
@@ -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>
|
||||
|
||||