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

Side by Side Diff: Source/devtools/front_end/dataGrid.css

Issue 152493003: Remove all usage of -webkit-*gradient inside blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | « Source/devtools/front_end/cssNamedFlows.css ('k') | Source/devtools/front_end/dialog.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .data-grid { 1 .data-grid {
2 position: relative; 2 position: relative;
3 border: 1px solid #aaa; 3 border: 1px solid #aaa;
4 font-size: 11px; 4 font-size: 11px;
5 line-height: 120%; 5 line-height: 120%;
6 } 6 }
7 7
8 .data-grid .highlight { 8 .data-grid .highlight {
9 background-color: rgb(255, 230, 179); 9 background-color: rgb(255, 230, 179);
10 } 10 }
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 } 77 }
78 78
79 .data-grid table.data { 79 .data-grid table.data {
80 position: absolute; 80 position: absolute;
81 left: 0; 81 left: 0;
82 top: 0; 82 top: 0;
83 right: 0; 83 right: 0;
84 bottom: 0; 84 bottom: 0;
85 height: 100%; 85 height: 100%;
86 border-top: 0 none transparent; 86 border-top: 0 none transparent;
87 background-image: -webkit-gradient(linear, left top, left bottom, from(white ), color-stop(0.5, white), color-stop(0.5, rgb(234, 243, 255)), to(rgb(234, 243, 255))); 87 background-image: linear-gradient(linear, to bottom, white, white 50%, rgb(2 34, 243, 255) 50%, rgb(234, 243, 255));
eustas 2014/02/05 14:39:00 The value is invalid. 'linear' parameter should ha
Julien - ping for review 2014/02/05 17:16:31 Excellent catch! Followed up with https://coderevi
88 background-size: 128px 32px; 88 background-size: 128px 32px;
89 table-layout: fixed; 89 table-layout: fixed;
90 } 90 }
91 91
92 .data-grid.inline table.data { 92 .data-grid.inline table.data {
93 position: static; 93 position: static;
94 } 94 }
95 95
96 .data-grid table.data tr { 96 .data-grid table.data tr {
97 display: none; 97 display: none;
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 text-indent: 10px; 238 text-indent: 10px;
239 } 239 }
240 240
241 .data-grid-resizer { 241 .data-grid-resizer {
242 position: absolute; 242 position: absolute;
243 top: 0; 243 top: 0;
244 bottom: 0; 244 bottom: 0;
245 width: 5px; 245 width: 5px;
246 z-index: 500; 246 z-index: 500;
247 } 247 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/cssNamedFlows.css ('k') | Source/devtools/front_end/dialog.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698