diff options
author | Kai Huuhko <kai.huuhko@gmail.com> | 2015-04-22 14:16:50 +0300 |
---|---|---|
committer | Kai Huuhko <kai.huuhko@gmail.com> | 2015-04-23 04:45:20 +0300 |
commit | 8f68e52eccb2706e0e8ab39199cd72a4f8f22b0e (patch) | |
tree | 465d3acbeec20e335d64e5950de4d201c1d62a84 | |
parent | c3b9a5b18f4db8373b925ee3f07c0c9bc0e80ed4 (diff) |
Documentation: Prettify warning/note boxes, class headers
Sphinx 1.3 includes class constructor's signature in the class header;
reduced font size slightly to accommodate this change.
-rw-r--r-- | doc/themes/efldoc/static/efl.css | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/doc/themes/efldoc/static/efl.css b/doc/themes/efldoc/static/efl.css index 229104b..68d6dd3 100644 --- a/doc/themes/efldoc/static/efl.css +++ b/doc/themes/efldoc/static/efl.css | |||
@@ -325,7 +325,7 @@ cite, code, tt { | |||
325 | code, tt { | 325 | code, tt { |
326 | background-color: rgb(51,51,51); /*#f2f2f2*/ | 326 | background-color: rgb(51,51,51); /*#f2f2f2*/ |
327 | border: 1px solid rgb(32,32,32); /*#ddd*/ | 327 | border: 1px solid rgb(32,32,32); /*#ddd*/ |
328 | border-radius: 2px; | 328 | border-radius: 3px; |
329 | color: white; /*#333*/ | 329 | color: white; /*#333*/ |
330 | padding: 1px; | 330 | padding: 1px; |
331 | } | 331 | } |
@@ -406,8 +406,8 @@ table td, table th { | |||
406 | div.admonition, div.warning { | 406 | div.admonition, div.warning { |
407 | font-size: 0.9em; | 407 | font-size: 0.9em; |
408 | margin: 1em 0 1em 0; | 408 | margin: 1em 0 1em 0; |
409 | border: 1px solid rgb(32,32,32); /*#86989B*/ | 409 | border: 1px dashed rgb(32,32,32); /*#86989B*/ |
410 | border-radius: 2px; | 410 | border-radius: 12px; |
411 | background-color: rgb(51,51,51); /*#f7f7f7*/ | 411 | background-color: rgb(51,51,51); /*#f7f7f7*/ |
412 | padding: 0; | 412 | padding: 0; |
413 | } | 413 | } |
@@ -429,7 +429,7 @@ div.warning p.admonition-title { | |||
429 | } | 429 | } |
430 | 430 | ||
431 | div.warning { | 431 | div.warning { |
432 | border: 1px solid rgb(101,16,16); /*#940000*/ | 432 | border-color: rgb(101,16,16); /*#940000*/ |
433 | background-color: rgb(101,51,51); /*#FFCCCF*/ | 433 | background-color: rgb(101,51,51); /*#FFCCCF*/ |
434 | } | 434 | } |
435 | 435 | ||
@@ -506,11 +506,15 @@ dl.class { | |||
506 | } | 506 | } |
507 | 507 | ||
508 | dl.class > dt { | 508 | dl.class > dt { |
509 | font-size: 20px; | 509 | font-size: 1.2em; |
510 | background-color: #333; | 510 | background-color: #333; |
511 | padding: 2px; | 511 | padding: 2px; |
512 | } | 512 | } |
513 | 513 | ||
514 | dl.class > dt em { | ||
515 | font-size: 0.8em; | ||
516 | } | ||
517 | |||
514 | dl.class dt{ | 518 | dl.class dt{ |
515 | border-bottom: 1px solid #333; | 519 | border-bottom: 1px solid #333; |
516 | } | 520 | } |