aboutsummaryrefslogtreecommitdiffstats
path: root/lib/erl_docgen
diff options
context:
space:
mode:
authorMariano Guerra <[email protected]>2016-10-21 12:51:13 +0100
committerMariano Guerra <[email protected]>2017-03-13 11:51:52 +0100
commit73c51597876ca53c4062dbd0b8405258c49e734a (patch)
tree5ff725cdcfc251a57ec2e9289b0f63abda4dbe7d /lib/erl_docgen
parent5aa3667dc23df5d16e5b2492b37d514b9322d917 (diff)
downloadotp-73c51597876ca53c4062dbd0b8405258c49e734a.tar.gz
otp-73c51597876ca53c4062dbd0b8405258c49e734a.tar.bz2
otp-73c51597876ca53c4062dbd0b8405258c49e734a.zip
improve warning/info colors
Diffstat (limited to 'lib/erl_docgen')
-rw-r--r--lib/erl_docgen/priv/css/otp_doc.css25
1 files changed, 12 insertions, 13 deletions
diff --git a/lib/erl_docgen/priv/css/otp_doc.css b/lib/erl_docgen/priv/css/otp_doc.css
index aade375210..4310d11f6d 100644
--- a/lib/erl_docgen/priv/css/otp_doc.css
+++ b/lib/erl_docgen/priv/css/otp_doc.css
@@ -68,38 +68,37 @@ span.bold_code { font-family: mono, Courier, monospace; white-space: pre; font
span.code { font-family: mono, Courier, monospace; white-space: pre; font-weight: normal }
.note, .warning, .do, .dont {
- border: solid #3E4349 1px;
+ border: 1px solid #495057;
margin: 1em 3em;
}
.note .label {
- background: #30d42a;
- color: white;
+ background-color: #2b8a3e;
+ color: #fefefe;
font-weight: bold;
padding: 5px 10px;
}
.note .content {
- background: #eafeea;
- color: #3E4349;
+ background: #f8f9fa;
line-height: 120%;
font-size: 90%;
- padding: 5px 10px;
+ padding: 0.5em 1em;
}
.warning .label {
- background: #C00;
- color: white;
+ background: #c92a2a;
+ color: #fefefe;
font-weight: bold;
padding: 5px 10px;
}
.warning .content {
- background: #FFF0F0;
- color: #3E4349;
+ background-color: #f8f9fa;
+ border: 1px solid #dee2e6;
line-height: 120%;
font-size: 90%;
- padding: 5px 10px;
+ padding: 0.5em 1em;
}
.do .label {
background: #30d42a;
- color: white;
+ color: #fefefe;
font-weight: bold;
padding: 5px 10px;
}
@@ -112,7 +111,7 @@ span.code { font-family: mono, Courier, monospace; white-space: pre; font
}
.dont .label {
background: #C00;
- color: white;
+ color: #fefefe;
font-weight: bold;
padding: 5px 10px;
}