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

Side by Side Diff: stylesheets/style.css

Issue 84943003: chromium-status: automatically linkify usernames/status messages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-status
Patch Set: address Vadim's feedback in status.py Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « status.py ('k') | templates/main.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 body { 1 body {
2 font-family: Arial, sans-serif; 2 font-family: Arial, sans-serif;
3 padding: 0px; 3 padding: 0px;
4 } 4 }
5 5
6 h1 { 6 h1 {
7 font-size: 14pt; 7 font-size: 14pt;
8 font-style: italic; 8 font-style: italic;
9 margin: 0px; 9 margin: 0px;
10 padding: 5px; 10 padding: 5px;
(...skipping 16 matching lines...) Expand all
27 border-spacing: 0px; 27 border-spacing: 0px;
28 } 28 }
29 th { 29 th {
30 background-color: #AAA; 30 background-color: #AAA;
31 color: white; 31 color: white;
32 padding: 5px; 32 padding: 5px;
33 width: 100px; 33 width: 100px;
34 font-size: 9pt; 34 font-size: 9pt;
35 } 35 }
36 36
37 a:link {
38 text-decoration: none;
39 }
40 a:hover {
41 text-decoration: underline;
42 }
43
37 div.error { 44 div.error {
38 background-color: #fcc; 45 background-color: #fcc;
39 width: 80%; 46 width: 80%;
40 padding: 7px; 47 padding: 7px;
41 border: 2px solid red; 48 border: 2px solid red;
42 font-weight: bold; 49 font-weight: bold;
43 margin-top: 10px; 50 margin-top: 10px;
44 margin-bottom: 20px; 51 margin-bottom: 20px;
45 } 52 }
46 53
(...skipping 15 matching lines...) Expand all
62 background-color: #FF80FF; 69 background-color: #FF80FF;
63 } 70 }
64 71
65 .open { 72 .open {
66 background-color: #8FDF5F; 73 background-color: #8FDF5F;
67 } 74 }
68 75
69 .throttled { 76 .throttled {
70 background-color: #FFFC6C; 77 background-color: #FFFC6C;
71 } 78 }
OLDNEW
« no previous file with comments | « status.py ('k') | templates/main.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698