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

Side by Side Diff: Source/devtools/front_end/elements/elementsPanel.css

Issue 1149373004: Devtools: Extensible toolbar in SSP (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 399
400 .styles-element-state-pane { 400 .styles-element-state-pane {
401 overflow: hidden; 401 overflow: hidden;
402 margin-top: -56px; 402 margin-top: -56px;
403 padding-top: 18px; 403 padding-top: 18px;
404 height: 56px; 404 height: 56px;
405 -webkit-transition: margin-top 0.1s ease-in-out; 405 -webkit-transition: margin-top 0.1s ease-in-out;
406 padding-left: 2px; 406 padding-left: 2px;
407 } 407 }
408 408
409 .styles-element-state-pane.expanded { 409 .styles-element-state-pane.visible {
410 border-bottom: 1px solid rgb(189, 189, 189); 410 border-bottom: 1px solid rgb(189, 189, 189);
411 margin-top: 0; 411 margin-top: 0;
412 } 412 }
413 413
414 .styles-element-state-pane > table { 414 .styles-element-state-pane > table {
415 width: 100%; 415 width: 100%;
416 border-spacing: 0; 416 border-spacing: 0;
417 } 417 }
418 418
419 .styles-element-state-pane label { 419 .styles-element-state-pane label {
420 display: flex; 420 display: flex;
421 margin: 1px; 421 margin: 1px;
422 } 422 }
423 423
424 .styles-animations-controls-pane { 424 .styles-animations-controls-pane {
425 overflow: hidden; 425 overflow: hidden;
426 -webkit-transition: height 0.1s ease-out; 426 -webkit-transition: height 0.1s ease-out;
427 height: 0; 427 height: 0;
428 } 428 }
429 429
430 .styles-animations-controls-pane > * { 430 .styles-animations-controls-pane > * {
431 margin: 6px 4px; 431 margin: 6px 4px;
432 } 432 }
433 433
434 .styles-animations-controls-pane.expanded { 434 .styles-animations-controls-pane.visible {
435 border-bottom: 1px solid rgb(189, 189, 189); 435 border-bottom: 1px solid rgb(189, 189, 189);
436 height: 56px; 436 height: 56px;
437 } 437 }
438 438
439 .animations-controls { 439 .animations-controls {
440 width: 100%; 440 width: 100%;
441 max-width: 200px; 441 max-width: 200px;
442 display: flex; 442 display: flex;
443 align-items: center; 443 align-items: center;
444 } 444 }
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
719 .style-properties li.editing-sub-part { 719 .style-properties li.editing-sub-part {
720 padding: 3px 6px 8px 18px; 720 padding: 3px 6px 8px 18px;
721 margin: -1px -6px -8px -6px; 721 margin: -1px -6px -8px -6px;
722 text-overflow: clip; 722 text-overflow: clip;
723 } 723 }
724 724
725 .styles-pane-toolbar { 725 .styles-pane-toolbar {
726 float: right; 726 float: right;
727 margin-top: -3px; 727 margin-top: -3px;
728 } 728 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698