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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/css/shared.css

Issue 307503002: Add processes to Observatory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 /* Global styles */ 2 /* Global styles */
3 * { 3 * {
4 margin: 0; 4 margin: 0;
5 padding: 0; 5 padding: 0;
6 font: 400 14px 'Montserrat', sans-serif; 6 font: 400 14px 'Montserrat', sans-serif;
7 color: #333; 7 color: #333;
8 box-sizing: border-box; 8 box-sizing: border-box;
9 } 9 }
10 10
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 217
218 .well { 218 .well {
219 min-height: 20px; 219 min-height: 20px;
220 padding: 19px; 220 padding: 19px;
221 margin-bottom: 20px; 221 margin-bottom: 20px;
222 background-color: #f5f5f5; 222 background-color: #f5f5f5;
223 border: 1px solid #e3e3e3; 223 border: 1px solid #e3e3e3;
224 border-radius: 4px; 224 border-radius: 4px;
225 box-shadow: inset 0 1px 1px rgba(0,0,0,0.05); 225 box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
226 } 226 }
227
228 .break-wrap {
229 word-wrap: break-word;
230 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698