From f002d8b38e3d792b6feff9913c4a6934745c15ee Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 18 May 2019 01:10:34 -0400 Subject: [PATCH] Add custom CSS for :menuselection: Signed-off-by: Roberto Rosario --- docs/_static/css/custom.css | 5 +++++ docs/conf.py | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 docs/_static/css/custom.css diff --git a/docs/_static/css/custom.css b/docs/_static/css/custom.css new file mode 100644 index 0000000000..5b7b241614 --- /dev/null +++ b/docs/_static/css/custom.css @@ -0,0 +1,5 @@ +.menuselection { + color: white; + background: #2c3e50; + padding: 3px; +} diff --git a/docs/conf.py b/docs/conf.py index d3c455069c..210f696c85 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -249,3 +249,6 @@ extlinks = { 'https://gitlab.com/mayan-edms/mayan-edms/issues/%s', 'GitLab issue #' ) } + +def setup(app): + app.add_stylesheet('css/custom.css')