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

Side by Side Diff: chrome_linux/resources/inspector/dataGrid.css

Issue 85333005: Update reference builds to Chrome 32.0.1700.19 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/reference_builds/
Patch Set: Created 7 years 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 vertical-align: top; 104 vertical-align: top;
105 height: 16px; /* Keep in sync with .data-grid table.data @ background-size * / 105 height: 16px; /* Keep in sync with .data-grid table.data @ background-size * /
106 line-height: 13px; 106 line-height: 13px;
107 padding: 1px 4px; 107 padding: 1px 4px;
108 white-space: nowrap; 108 white-space: nowrap;
109 overflow: hidden; 109 overflow: hidden;
110 border-left: 1px solid #aaa; 110 border-left: 1px solid #aaa;
111 -webkit-user-select: text; 111 -webkit-user-select: text;
112 } 112 }
113 113
114 .data-grid th:first-child,
115 .data-grid td:first-child {
116 border-left: none !important;
117 }
118
114 .data-grid td > div, 119 .data-grid td > div,
115 .data-grid th > div { 120 .data-grid th > div {
116 white-space: nowrap; 121 white-space: nowrap;
117 text-overflow: ellipsis; 122 text-overflow: ellipsis;
118 overflow: hidden; 123 overflow: hidden;
119 } 124 }
120 125
121 .data-grid td.editing > div { 126 .data-grid td.editing > div {
122 text-overflow: clip; 127 text-overflow: clip;
123 } 128 }
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 } 252 }
248 253
249 .data-grid-resizer { 254 .data-grid-resizer {
250 position: absolute; 255 position: absolute;
251 top: 0; 256 top: 0;
252 bottom: 0; 257 bottom: 0;
253 width: 5px; 258 width: 5px;
254 z-index: 500; 259 z-index: 500;
255 cursor: col-resize; 260 cursor: col-resize;
256 } 261 }
OLDNEW
« no previous file with comments | « chrome_linux/resources/inspector/cmdevtools.css ('k') | chrome_linux/resources/inspector/devtools.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698