Use of `.bg-white` class in docs makes theming difficult in v5 - replace with `.bg-body`
Created by: vinorodrigues
A few of the example files make use of the .bg-white
class to define visual aspects of the examples. Using this makes theming tests problematic without modification either to the docs source, or defining theme colors unintuitively (e.g. .bg-white
is black?)
Use of directly calling color classes should be discouraged - i.e for the examples, .bg-body
should be used instead.
The following files make use of .bg-white
:
site/content/docs/5.0/utilities/shadows.md
site/content/docs/5.0/examples/product/index.html
site/content/docs/5.0/examples/offcanvas/index.html
site/content/docs/5.0/examples/cover/index.html
site/content/docs/5.0/examples/pricing/index.html
site/content/docs/5.0/examples/cheatsheet/index.html
site/content/docs/5.0/examples/cheatsheet-rtl/index.html
Also, site/content/docs/5.0/utilities/colors.md
file does not document the use of the .bg-body
class ... it's missing.