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

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

Issue 205193002: DevTools: promote large views with overflow to layers in order to not repaint on scroll. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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
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 10 matching lines...) Expand all
21 } 21 }
22 22
23 .data-grid .data-container { 23 .data-grid .data-container {
24 position: absolute; 24 position: absolute;
25 top: 17px; 25 top: 17px;
26 bottom: 0; 26 bottom: 0;
27 left: 0; 27 left: 0;
28 right: 0; 28 right: 0;
29 overflow-x: hidden; 29 overflow-x: hidden;
30 overflow-y: overlay; 30 overflow-y: overlay;
31 -webkit-transform: translateZ(0);
31 } 32 }
32 33
33 .data-grid.inline { 34 .data-grid.inline {
34 border-left: none; 35 border-left: none;
35 } 36 }
36 37
37 .data-grid.inline .data-container { 38 .data-grid.inline .data-container {
38 position: static; 39 position: static;
39 } 40 }
40 41
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 text-indent: 10px; 239 text-indent: 10px;
239 } 240 }
240 241
241 .data-grid-resizer { 242 .data-grid-resizer {
242 position: absolute; 243 position: absolute;
243 top: 0; 244 top: 0;
244 bottom: 0; 245 bottom: 0;
245 width: 5px; 246 width: 5px;
246 z-index: 500; 247 z-index: 500;
247 } 248 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/elementsPanel.css » ('j') | Source/devtools/front_end/elementsPanel.css » ('J')

Powered by Google App Engine
This is Rietveld 408576698