[PCAC] Applying Piccolo theme 44/73644/3
authorEdit Koselak <edit.koselak@nokia.com>
Thu, 17 Nov 2022 11:13:11 +0000 (12:13 +0100)
committerGergely Csatari <gergely.csatari@nokia.com>
Thu, 22 Dec 2022 15:46:46 +0000 (17:46 +0200)
- changing the color of the search button
- changing the color of the Page contents label
- removing option to switch to dark mode

Signed-off-by: Edit Koselak <edit.koselak@nokia.com>
Change-Id: I13977278cb0684706a3ad886966eeb478f037c17

docs/_static/custom.css
docs/conf.py
docs/requirements.txt

index 9e2fb98..46c9616 100644 (file)
@@ -1,29 +1,66 @@
-/* Color of the top header */
-.md-header {
+/* Changing the color of top navbar in piccolo */
+div#top_nav nav {
     background-color: #16326c;
+    padding:0.5rem;
 }
 
-/* Color of the bottom header */
-.md-tabs {
-    background-color: #16326c;
+/* Changing the size of the logo in the top navbar in piccolo */
+div#top_nav nav h1 img {
+       height: 2rem;
+}
+
+/* Changing the margin of the main text in piccolo */
+div.document {
+       margin-left: 10rem;
+       margin-right: 20rem;
+}
+
+/* Changing link color in piccolo */
+a {
+       color: #007574ff;
+}
+
+/* Changing link color in the left sidebar in piccolo */
+div.sphinxsidebar ul li a.current {
+       color: #007574ff;
+}
+
+/* Changing the hover color in the left sidebar in piccolo */
+div.sphinxsidebar ul li a:hover {
+       color: #007574ff;
+}
+
+/* Changing the hover color in the right sidebar in piccolo */
+div#right_sidebar ul li a:hover {
+       color: #007574ff;
+}
+
+/* Changing the color of the > icon next to Page contents */
+div#right_sidebar p span.icon {
+       color: #007574ff;
+}
+
+/* Changing the color of the Page contents title */
+div#right_sidebar p span {
+       color: #007574ff;
 }
 
-/* Color of links */
-.md-typeset a {
-    color: #16326c;
+/* Changing the color of the search button */
+div.document form input[type=submit], div.document form button {
+       background-color: #16326c;
 }
 
-.md-typeset h1 {
-    font-size: 1.8rem;
-    color: rgba(0,0,0,.87);
+/* Changing the color of the Search text in the Search button */
+div#searchbox form.search input[type="submit"] {
+       color: #16326c;
 }
 
-/* Hiding the content from left side navbar */
-.md-nav__title {
-    display: none;
+/* Changing the color of the > icon next to the collapsed Page contents */
+div#show_right_sidebar p span.icon {
+       color: rgba(0, 0, 0, 0.6);
 }
 
-/* Hiding the content from the top navbar */
-.md-tabs__list {
-    display: none;
+/* Removing option to switch to dark mode */
+div#top_nav nav a#mode_toggle, div#top_nav nav a#source_link {
+       display: none;
 }
\ No newline at end of file
index 00d63dc..d875acb 100644 (file)
@@ -6,7 +6,7 @@ author = 'Anuket Project of Linux Foundation Networking'
 extensions = ['sphinx.ext.intersphinx',
               'sphinx.ext.autosectionlabel'
              ]
-html_theme = "sphinx_material"
+html_theme = "piccolo_theme"
 exclude_patterns = [
     '**/.tox',
     'templates',                     # suppress warning that these files are not included in any toctree
index 5b543fe..3282306 100644 (file)
@@ -3,4 +3,4 @@
 # process, which may cause wedges in the gate later.
 sphinx!=1.6.6,!=1.6.7,!=2.1.0,!=3.0.0,!=3.4.2 # BSD
 doc8 # Apache-2.0
-sphinx-material
+piccolo-theme