Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Lykke Andersen <Jakob@caput.dk>2021-03-30 15:13:17 +0300
committerJakob Lykke Andersen <Jakob@caput.dk>2021-04-12 20:07:51 +0300
commitf1d9d0aac61ad40fba8bfd82b97352782aa11a45 (patch)
tree7f3f5d4fdbe98dfb6fe6fac94e55b2f2322cbe14 /sphinx/themes/basic/static/basic.css_t
parent9cd9e124ff45553bf5a4385d37eeca6be47f9a80 (diff)
Decl styling, C styling and C++ char literal styling
Diffstat (limited to 'sphinx/themes/basic/static/basic.css_t')
-rw-r--r--sphinx/themes/basic/static/basic.css_t6
1 files changed, 5 insertions, 1 deletions
diff --git a/sphinx/themes/basic/static/basic.css_t b/sphinx/themes/basic/static/basic.css_t
index 7f505f6b1..450b92ead 100644
--- a/sphinx/themes/basic/static/basic.css_t
+++ b/sphinx/themes/basic/static/basic.css_t
@@ -538,19 +538,23 @@ table.hlist td {
/* C++ specific styling */
+.sig-inline.c-texpr,
.sig-inline.cpp-texpr {
font-family: unset;
}
+.sig.c .k, .sig.c .kt,
.sig.cpp .k, .sig.cpp .kt {
color: #0033B3;
}
+.sig.c .m,
.sig.cpp .m {
color: #1750EB;
}
-.sig.cpp .s {
+.sig.c .s, .sig.c .sc,
+.sig.cpp .s, .sig.cpp .sc {
color: #067D17;
}