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

Side by Side Diff: chrome/browser/resources/bookmark_manager/css/bmm.css

Issue 502613003: downloads/bookmarks: combine header CSS between downloads and bookmarks. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: whoops 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/downloads/downloads.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 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 <include src="../search_header.css">
6
5 html, 7 html,
6 body { 8 body {
7 cursor: default; 9 cursor: default;
8 height: 100%; 10 height: 100%;
9 margin: 0; 11 margin: 0;
10 overflow: hidden; 12 overflow: hidden;
11 width: 100%; 13 width: 100%;
12 } 14 }
13 15
14 body { 16 body {
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 -webkit-border-end: 15px solid white; 244 -webkit-border-end: 15px solid white;
243 -webkit-border-start: 0; 245 -webkit-border-start: 0;
244 background-color: rgb(235, 239, 249); 246 background-color: rgb(235, 239, 249);
245 cursor: e-resize; 247 cursor: e-resize;
246 width: 5px; 248 width: 5px;
247 <if expr="is_macosx"> 249 <if expr="is_macosx">
248 cursor: col-resize; 250 cursor: col-resize;
249 </if> 251 </if>
250 } 252 }
251 253
252 header {
253 align-items: center;
254 display: flex;
255 min-width: 400px;
256 padding: 0 12px;
257 }
258
259 header h2 {
260 flex: 1;
261 font-weight: normal;
262 line-height: 1; /* TODO(dbeam): include chrome_shared.css on this page. */
263 }
264
265 header form {
266 flex: none;
267 }
268
269 .tree-row.drag-on, 254 .tree-row.drag-on,
270 .drag-on { 255 .drag-on {
271 background-color: hsla(214, 91%, 85%, .5); 256 background-color: hsla(214, 91%, 85%, .5);
272 border: 1px solid hsl(214, 91%, 85%); 257 border: 1px solid hsl(214, 91%, 85%);
273 border-radius: 3px; 258 border-radius: 3px;
274 box-sizing: border-box; 259 box-sizing: border-box;
275 } 260 }
276 261
277 .drag-above::before, 262 .drag-above::before,
278 .drag-below::after { 263 .drag-below::after {
(...skipping 24 matching lines...) Expand all
303 list.drag-above::before { 288 list.drag-above::before {
304 top: 0 289 top: 0
305 } 290 }
306 291
307 list > .drag-below, 292 list > .drag-below,
308 list > .drag-above { 293 list > .drag-above {
309 overflow : visible; 294 overflow : visible;
310 } 295 }
311 296
312 .summary { 297 .summary {
313 background-color: rgb(235, 239, 249);
314 border-top: 1px solid rgb(156, 194, 239);
315 clear: both;
316 padding: 5px 10px;
317 white-space: nowrap; 298 white-space: nowrap;
benjhayden 2014/08/22 23:50:10 Why not share both nowrap and flex in search_heade
Dan Beam 2014/08/25 15:54:15 .summary { white-space: nowrap; } only applies
318 } 299 }
319 300
320 .summary > * { 301 .summary > * {
321 display: inline-block; 302 display: inline-block;
322 font-size: 100%; 303 font-size: 100%;
323 margin: 0; 304 margin: 0;
324 } 305 }
325 306
326 .summary button { 307 .summary button {
327 -webkit-appearance: none; 308 -webkit-appearance: none;
(...skipping 22 matching lines...) Expand all
350 331
351 list [editing] input, 332 list [editing] input,
352 .tree-item [editing] input { 333 .tree-item [editing] input {
353 padding: 3px 0; 334 padding: 3px 0;
354 } 335 }
355 336
356 .tree-row .expand-icon { 337 .tree-row .expand-icon {
357 top: 6px; 338 top: 6px;
358 } 339 }
359 } 340 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/downloads/downloads.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698