Index: chrome/browser/resources/crashes.css |
diff --git a/chrome/browser/resources/crashes.css b/chrome/browser/resources/crashes.css |
new file mode 100644 |
index 0000000000000000000000000000000000000000..76ec14b68a5ed9b18032ab7308216add60c03923 |
--- /dev/null |
+++ b/chrome/browser/resources/crashes.css |
@@ -0,0 +1,53 @@ |
+body { |
+ margin: 20px; |
+} |
+ |
+.hidden { |
+ display: none; |
+} |
+ |
+h1 { |
+ -webkit-padding-start: 75px; |
+ /* TODO(stuartmorgan): Get real art for this image */ |
+ background-image: url('../../app/theme/sadtab.png'); |
+ background-position: left; |
+ background-repeat: no-repeat; |
+ font-size: 156%; |
+ font-weight: bold; |
+ margin: 0; |
+ padding-bottom: 20px; |
+ padding-top: 20px; |
+} |
+ |
+html[dir=rtl] h1 { |
+ background-position: right; |
+} |
+ |
+#countBanner { |
+ background-color: #EBEFFA; |
+ border: 1px solid #BBB; |
+ border-radius: 2px; |
+ font-size: 100%; |
+ padding: 4px; |
+} |
+ |
+#crashList h3 { |
+ font-size: 100%; |
+} |
+ |
+#crashList > div > * { |
+ margin: 0.75em 0; |
+} |
+ |
+#crashList a:visited { |
+ color: #666666; |
Nico
2011/02/18 18:16:01
#666
stuartmorgan
2011/02/18 19:41:21
Done.
|
+} |
+ |
+#crashList > div:not(:last-child) { |
+ border-bottom: 1px solid #bbbbbb; |
Nico
2011/02/18 18:16:01
#BBB
stuartmorgan
2011/02/18 19:41:21
Done.
|
+} |
+ |
+#disabledMode h2 { |
+ color: #8d332a; |
+ font-size: 125%; |
+} |