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

Side by Side Diff: runtime/observatory/lib/src/elements/css/shared.css

Issue 2299893003: Converted Observatory logging-page element (Closed)
Patch Set: Updated observatory_sources.gypi Created 4 years, 3 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
OLDNEW
1 /* Global styles */ 1 /* Global styles */
2 * { 2 * {
3 margin: 0; 3 margin: 0;
4 padding: 0; 4 padding: 0;
5 box-sizing: border-box; 5 box-sizing: border-box;
6 } 6 }
7 7
8 body { 8 body {
9 padding-top: 56px; 9 padding-top: 56px;
10 color: #333; 10 color: #333;
(...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after
1193 .nav-option { 1193 .nav-option {
1194 float: right; 1194 float: right;
1195 margin: 3px; 1195 margin: 3px;
1196 padding: 8px; 1196 padding: 8px;
1197 } 1197 }
1198 1198
1199 .nav-option label { 1199 .nav-option label {
1200 color: white; 1200 color: white;
1201 } 1201 }
1202 1202
1203 /* logging-list */
1204
1205 logging-list .outlined {
1206 -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
1207 -moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
1208 box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
1209 margin: 4px;
1210 }
1211 logging-list .logItem {
1212 display: inline-block;
1213 font: normal 14px consolas, courier, monospace;
1214 white-space: pre;
1215 line-height: 125%;
1216 width: 100%;
1217 }
1218 logging-list .level {
1219 display: inline-block;
1220 width: 5em;
1221 }
1222 logging-list .time {
1223 display: inline-block;
1224 width: 12em;
1225 }
1226 logging-list .FINEST {
1227 background-color: #FAFAFA;
1228 }
1229 logging-list .FINER {
1230 background-color: #ECEFF1;
1231 }
1232 logging-list .FINE {
1233 background-color: #EFEBE9;
1234 }
1235 logging-list .CONFIG {
1236 background-color: #FFF3E0;
1237 }
1238 logging-list .INFO {
1239 background-color: #F1F8E9;
1240 }
1241 logging-list .WARNING {
1242 background-color: #FFE0B2;
1243 }
1244 logging-list .SEVERE {
1245 background-color: #FFCCBC;
1246 }
1247 logging-list .SHOUT {
1248 background-color: #FFCDD2;
1249 }
1250
1203 /* megamorphic-cache-ref */ 1251 /* megamorphic-cache-ref */
1204 /* TODO(cbernaschina) fix megamorphic-cache-ref-wrapped to megamorphic-cache-ref 1252 /* TODO(cbernaschina) fix megamorphic-cache-ref-wrapped to megamorphic-cache-ref
1205 when wrapper removed */ 1253 when wrapper removed */
1206 1254
1207 megamorphic-cache-ref-wrapped > a[href]:hover { 1255 megamorphic-cache-ref-wrapped > a[href]:hover {
1208 text-decoration: underline; 1256 text-decoration: underline;
1209 } 1257 }
1210 megamorphic-cache-ref-wrapped > a[href] { 1258 megamorphic-cache-ref-wrapped > a[href] {
1211 color: #0489c3; 1259 color: #0489c3;
1212 text-decoration: none; 1260 text-decoration: none;
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
1825 1873
1826 vm-connect-target > button.delete-button:hover { 1874 vm-connect-target > button.delete-button:hover {
1827 background: #ff0000; 1875 background: #ff0000;
1828 } 1876 }
1829 1877
1830 /* vm-connect */ 1878 /* vm-connect */
1831 1879
1832 vm-connect ul { 1880 vm-connect ul {
1833 list-style-type: none; 1881 list-style-type: none;
1834 } 1882 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/app/page.dart ('k') | runtime/observatory/lib/src/elements/logging.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698