Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3195)

Unified Diff: chrome/browser/resources/crashes.css

Issue 6545001: Implement chrome://crashes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addresses review comments Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..666f6a6df23c3e680e287d79776c17c71b67582c
--- /dev/null
+++ b/chrome/browser/resources/crashes.css
@@ -0,0 +1,53 @@
+body {
+ margin: 20px;
+}
+
+.hidden {
arv (Not doing code reviews) 2011/02/20 23:44:00 FYI, WebKit now supports the hidden boolean attrib
+ 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: #666;
+}
+
+#crashList > div:not(:last-child) {
+ border-bottom: 1px solid #bbb;
+}
+
+#disabledMode h2 {
+ color: #8d332a;
+ font-size: 125%;
+}

Powered by Google App Engine
This is Rietveld 408576698