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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/coverage/coverageListView.css

Issue 2784993002: DevTools: coverage polish, part 2 (Closed)
Patch Set: Created 3 years, 8 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 .data-grid { 1 .data-grid {
2 border: none; 2 border: none;
3 } 3 }
4 4
5 .data-grid td .url-outer { 5 .data-grid td .url-outer {
6 width: 100%; 6 width: 100%;
7 display: inline-flex; 7 display: inline-flex;
8 justify-content: flex-start; 8 justify-content: flex-start;
9 } 9 }
10 10
(...skipping 27 matching lines...) Expand all
38 .data-grid td .bar-container { 38 .data-grid td .bar-container {
39 } 39 }
40 40
41 .data-grid td .bar-unused-size { 41 .data-grid td .bar-unused-size {
42 background-color: #E57373; 42 background-color: #E57373;
43 } 43 }
44 44
45 .data-grid td .bar-used-size { 45 .data-grid td .bar-used-size {
46 background-color: #81C784; 46 background-color: #81C784;
47 } 47 }
48
49 .data-grid td .percent-value {
50 color: #888;
51 width: 45px;
52 display: inline-block;
53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698