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

Side by Side Diff: Tools/TestResultServer/static-dashboards/flakiness_dashboard_tests.css

Issue 402643002: Do not wrap the bugs column on the flakiness dashboard (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Just add nowrap on the link Created 6 years, 5 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
« no previous file with comments | « Tools/TestResultServer/static-dashboards/flakiness_dashboard.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 padding: 0 2px; 43 padding: 0 2px;
44 } 44 }
45 .test-table { 45 .test-table {
46 white-space: nowrap; 46 white-space: nowrap;
47 border-spacing: 1px; 47 border-spacing: 1px;
48 } 48 }
49 /* Let the bugs column wrap. */ 49 /* Let the bugs column wrap. */
50 .test-table tr > td:nth-child(2) { 50 .test-table tr > td:nth-child(2) {
51 white-space: normal; 51 white-space: normal;
52 } 52 }
53 .test-table .file-new-bug {
54 white-space: nowrap;
55 }
53 .test-table { 56 .test-table {
54 width: 100%; 57 width: 100%;
55 } 58 }
56 .test-table tr { 59 .test-table tr {
57 border: 1px solid red; 60 border: 1px solid red;
58 background-color: #E8E8E8; 61 background-color: #E8E8E8;
59 } 62 }
60 .test-table tbody tr:hover { 63 .test-table tbody tr:hover {
61 opacity: .7; 64 opacity: .7;
62 } 65 }
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 display: inline-block; 255 display: inline-block;
253 white-space: nowrap; 256 white-space: nowrap;
254 } 257 }
255 .skipped-builder:after { 258 .skipped-builder:after {
256 content: '|'; 259 content: '|';
257 margin: 5px; 260 margin: 5px;
258 } 261 }
259 .skipped-builder:last-child:after { 262 .skipped-builder:last-child:after {
260 content: ''; 263 content: '';
261 } 264 }
OLDNEW
« no previous file with comments | « Tools/TestResultServer/static-dashboards/flakiness_dashboard.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698