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

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

Issue 460543002: DevTools: DataGrid: move unrelated CSS. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | Source/devtools/front_end/profiler/CPUProfileDataGrid.js » ('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 {
9 background-color: rgb(255, 230, 179);
10 }
11
12 .data-grid tr.selected .highlight {
13 background-color: transparent;
14 }
15
16 .data-grid table { 8 .data-grid table {
17 table-layout: fixed; 9 table-layout: fixed;
18 border-spacing: 0; 10 border-spacing: 0;
19 border-collapse: separate; 11 border-collapse: separate;
20 height: 100%; 12 height: 100%;
21 width: 100%; 13 width: 100%;
22 } 14 }
23 15
24 .data-grid .header-container, 16 .data-grid .header-container,
25 .data-grid .data-container { 17 .data-grid .data-container {
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 text-indent: 10px; 249 text-indent: 10px;
258 } 250 }
259 251
260 .data-grid-resizer { 252 .data-grid-resizer {
261 position: absolute; 253 position: absolute;
262 top: 0; 254 top: 0;
263 bottom: 0; 255 bottom: 0;
264 width: 5px; 256 width: 5px;
265 z-index: 500; 257 z-index: 500;
266 } 258 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/profiler/CPUProfileDataGrid.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698