diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2012-06-14 08:23:22 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-29 14:59:24 +0100 |
commit | 7315ac6e8fb6b40cb0fc6fb9de55851f167cc8fd (patch) | |
tree | 54b8ada7122d5b691d06d0de6b3519bc10a05446 | |
parent | 522b5864e9f75729fffabf309c0771b0ef470052 (diff) | |
download | poky-7315ac6e8fb6b40cb0fc6fb9de55851f167cc8fd.tar.gz |
documentation/kernel-manual/style.css: Updated styles
(From yocto-docs rev: bf692e60c87082bb0c175b3924fd4d37276ddeea)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/kernel-manual/style.css | 35 |
1 files changed, 25 insertions, 10 deletions
diff --git a/documentation/kernel-manual/style.css b/documentation/kernel-manual/style.css index 33a01d125a..f919cca214 100644 --- a/documentation/kernel-manual/style.css +++ b/documentation/kernel-manual/style.css | |||
@@ -654,7 +654,7 @@ hr { | |||
654 | 654 | ||
655 | 655 | ||
656 | .tip, .warning, .caution, .note { | 656 | .tip, .warning, .caution, .note { |
657 | border-color: #aaa; | 657 | border-color: #fff; |
658 | } | 658 | } |
659 | 659 | ||
660 | 660 | ||
@@ -662,24 +662,24 @@ hr { | |||
662 | .warning table th, | 662 | .warning table th, |
663 | .caution table th, | 663 | .caution table th, |
664 | .note table th { | 664 | .note table th { |
665 | border-bottom-color: #aaa; | 665 | border-bottom-color: #fff; |
666 | } | 666 | } |
667 | 667 | ||
668 | 668 | ||
669 | .warning { | 669 | .warning { |
670 | background-color: #fea; | 670 | background-color: #f0f0f2; |
671 | } | 671 | } |
672 | 672 | ||
673 | .caution { | 673 | .caution { |
674 | background-color: #fea; | 674 | background-color: #f0f0f2; |
675 | } | 675 | } |
676 | 676 | ||
677 | .tip { | 677 | .tip { |
678 | background-color: #eff; | 678 | background-color: #f0f0f2; |
679 | } | 679 | } |
680 | 680 | ||
681 | .note { | 681 | .note { |
682 | background-color: #dfc; | 682 | background-color: #f0f0f2; |
683 | } | 683 | } |
684 | 684 | ||
685 | .glossary dl dt, | 685 | .glossary dl dt, |
@@ -946,8 +946,8 @@ table { | |||
946 | 946 | ||
947 | .tip, | 947 | .tip, |
948 | .note { | 948 | .note { |
949 | background: #666666; | 949 | background: #f0f0f2; |
950 | color: #fff; | 950 | color: #333; |
951 | padding: 20px; | 951 | padding: 20px; |
952 | margin: 20px; | 952 | margin: 20px; |
953 | } | 953 | } |
@@ -958,11 +958,26 @@ table { | |||
958 | margin: 0em; | 958 | margin: 0em; |
959 | font-size: 2em; | 959 | font-size: 2em; |
960 | font-weight: bold; | 960 | font-weight: bold; |
961 | color: #fff; | 961 | color: #333; |
962 | } | 962 | } |
963 | 963 | ||
964 | .tip a, | 964 | .tip a, |
965 | .note a { | 965 | .note a { |
966 | color: #fff; | 966 | color: #333; |
967 | text-decoration: underline; | 967 | text-decoration: underline; |
968 | } | 968 | } |
969 | |||
970 | .footnote { | ||
971 | font-size: small; | ||
972 | color: #333; | ||
973 | } | ||
974 | |||
975 | /* Changes the announcement text */ | ||
976 | .tip h3, | ||
977 | .warning h3, | ||
978 | .caution h3, | ||
979 | .note h3 { | ||
980 | font-size:large; | ||
981 | color: #00557D; | ||
982 | } | ||
983 | |||