README.rst 7.17 KB
Newer Older
David Baumgold committed
1 2 3 4 5 6 7 8 9 10
#####################
Comprehensive Theming
#####################


Comprehensive Theming lets you customize the appearance of your Open edX
installation.  You can override Sass and CSS settings, images, or entire HTML
templates.

Eventually, Comprehensive Theming will obsolete existing theming mechanisms,
11
but for now they co-exist peacefully. This document describes how to use
David Baumgold committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
Comprehensive Theming, and also the changes you'll need to make to keep other
theming mechanisms working.


Creating a theme
================

A theme is a directory of assets.  You can create this directory wherever you
like, it does not have to be inside the edx-platform directory.  The structure
within this directory mirrors the assets in the edx-platform repo itself.
Files you provide in your theme are used in place of the same-named files in
edx-platform.  Here's a sample::

    my-theme
    └── lms
        ├── static
        │   ├── images
        │   │   └── logo.png
        │   └── sass
        │       ├── _overrides.scss
        │       ├── lms-main-rtl.scss
        │       └── lms-main.scss
        └── templates
            ├── footer.html
            └── header.html

The top directory is named whatever you like.  This example uses "my-theme".
The files provided here override the files in edx-platform.  In this case, the
``my-theme/lms/static/sass/lms-main.scss`` file is used in place of the
41
``edx-platform/lms/static/sass/lms-main.scss`` file.
David Baumgold committed
42 43 44 45 46 47 48 49 50 51 52 53 54


Images
------

Images can be substituted simply by placing the new image at the right place
in the theme directory.  In our example above, the lms/static/images/logo.png
image is overridden.


Sass/CSS
--------

55 56 57
Most CSS styling in Open edX is done with Sass files compiled to CSS. EdX is
converting over to use `Bootstrap Theming`_, so you can follow the instructions
defined here:
David Baumgold committed
58

59
.. _Bootstrap Theming: https://getbootstrap.com/docs/4.0/getting-started/theming/
David Baumgold committed
60

61
There are two example themes provided within edx-platform's themes directory:
David Baumgold committed
62

63 64
* red-theme: switches Open edX's primary color to red instead of blue
* dark-theme: uses a dark background and light foreground colors
David Baumgold committed
65

66
For more details, see `Changing Themes for an Open edX Site`_.
David Baumgold committed
67

68
.. _Changing Themes for an Open edX Site: https://edx.readthedocs.io/projects/edx-installing-configuring-and-running/en/latest/configuration/changing_appearance/theming/index.html
David Baumgold committed
69 70 71 72 73 74 75 76 77

HTML Templates
--------------

You can make changes to HTML templates by copying them to your theme directory
in the appropriate place, and making the changes you need.  Keep in mind that
in the future if you upgrade the Open edX code, you may have to update the
copied template in your theme also.

78 79 80 81 82 83 84 85 86
Template Names
==============

Here are the list of template names that you *should* use in your comprehensive
theme (so far):

* ``header.html``
* ``footer.html``

David Baumgold committed
87 88 89
Installing your theme
---------------------

90 91
To use your theme, you need to add a configuration value pointing to your theme
directory. There are two ways to do this.
David Baumgold committed
92

93
#.  If you usually edit server-vars.yml:
David Baumgold committed
94

95 96
    #.  As the vagrant user, edit (or create)
        /edx/app/edx_ansible/server-vars.yml to add the
97
        ``edxapp_comprehensive_theme_dir`` value::
David Baumgold committed
98

99
            edxapp_comprehensive_theme_dir: '/full/path/to/my-theme'
David Baumgold committed
100

101
    #.  Run the update script::
David Baumgold committed
102

103 104 105 106
            $ sudo /edx/bin/update configuration master
            $ sudo /edx/bin/update edx-platform HEAD

#.  Otherwise, edit the /edx/app/edxapp/lms.env.json file to add the
107
    ``COMPREHENSIVE_THEME_DIRS`` value::
108

109
        "COMPREHENSIVE_THEME_DIRS": ["/full/path/to/my-theme"],
110 111

Restart your site.  Your changes should now be visible.
David Baumgold committed
112 113


114 115 116 117 118
Comprehensive Theming
=====================
* The ``PROFILE_IMAGE_DEFAULT_FILENAME`` Django setting is now ignored.


David Baumgold committed
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
"Stanford" theming
==================

If you want to continue using the "Stanford" theming system, there are a few
changes you'll need to make.

Create the following new files in the ``sass`` directory of your theme:

* lms-main.scss
* lms-main-rtl.scss
* lms-course.scss
* lms-course-rtl.scss
* lms-footer.scss
* lms-footer-rtl.scss

The contents of each of these files will be very similar. Here's what
``lms-main.scss`` should look like::

    $static-path: '../../../..';
    @import 'lms/static/sass/lms-main';
    @import '_default';

Each file should set the ``$static-path`` variable to a relative path that
points to the ``lms/static`` directory inside of ``edx-platform``. Then,
it should ``@import`` the sass file under ``lms/static/sass`` that matches
its name: ``lms-footer.scss`` should import ``lms/static/sass/lms-footer``,
for example. Finally, the file should import the ``_default`` name, which
refers to the ``_default.scss`` Sass file that should already exist in your
Stanford theme directory.

If your theme uses a different name than "default", you'll need to use that
name in the ``@import`` line.

Run the ``update_assets`` command to recompile the theme::

    $ paver update_assets lms --settings=aws
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179

Microsites
==========

If you want to continue using the "Microsites" theming system, there are a few
changes you'll need to make. A few templates have been renamed, or folded into
other templates:

* ``header_extra.html`` has been renamed to ``head-extra.html``. This file
  was always inserted into the ``<head>`` element of the page, rather than
  the header of the ``<body>`` element, so this change makes the name more
  accurate.

* ``google_analytics.html`` has been removed. The contents of this template
  can and should be added to the ``head-extra.html`` template.

* ``google_tag_manager.html`` has been renamed to ``body-initial.html``.

In addition, there are some other changes you'll need to make:

* The ``google_analytics_file`` config value is now ignored. If your Open edX
  installation has a Google Analytics account ID set, the Google Analytics
  JavaScript will be included automatically on your site using that account ID.
  You can set this account ID either using the "GOOGLE_ANALYTICS_ACCOUNT" value
  in the Django settings, or by setting the newly-added "GOOGLE_ANALYTICS_ACCOUNT"
180
  config value in your site configuration.
181 182

* If you don't want the Google Analytics JavaScript to be output at all in your
183
  site, set the "GOOGLE_ANALYTICS_ACCOUNT" config value to the empty string.
184 185 186 187 188 189
  If you want to customize the way that Google Analytics is loaded, set the
  "GOOGLE_ANALYTICS_ACCOUNT" config value to the empty string, and then load
  Google Analytics yourself (with whatever customizations you want) in your
  ``head-extra.html`` template.

* The ``css_overrides_file`` config value is now ignored. To add a CSS override
190
  file to your site configuration, create a ``head-extra.html`` template with the
191 192 193 194 195
  following content:

  .. code-block:: mako

    <%namespace name='static' file='../../static_content.html'/>
196
    <% style_overrides_file = static.get_value('css_overrides_file') %>
197 198 199 200 201 202 203 204

    % if style_overrides_file:
      <link rel="stylesheet" type="text/css" href="${static.url(style_overrides_file)}" />
    % endif

  If you already have a ``head-extra.html`` template, you can modify it to
  output this ``<link rel="stylesheet">`` tag, in addition to whatever else you
  already have in that template.