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

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: Fix test 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 .styles-section .style-properties .inherited { 392 .styles-section .style-properties .inherited {
393 opacity: 0.5; 393 opacity: 0.5;
394 } 394 }
395 395
396 .styles-section .style-properties .has-ignorable-error { 396 .styles-section .style-properties .has-ignorable-error {
397 color: gray; 397 color: gray;
398 } 398 }
399 399
400 .styles-element-state-pane { 400 .styles-element-state-pane {
401 overflow: hidden; 401 overflow: hidden;
402 margin-top: -56px;
403 padding-top: 18px; 402 padding-top: 18px;
404 height: 56px; 403 height: 56px;
405 -webkit-transition: margin-top 0.1s ease-in-out;
406 padding-left: 2px; 404 padding-left: 2px;
405 border-bottom: 1px solid rgb(189, 189, 189);
407 } 406 }
408 407
409 .styles-element-state-pane.expanded { 408 @keyframes styles-element-state-pane-slidein {
409 from {
410 margin-top: -56px;
411 }
412 to {
413 margin-top: 0px;
414 }
415 }
416
417 @keyframes styles-element-state-pane-slideout {
418 from {
419 margin-top: 0px;
420 }
421 to {
422 margin-top: -56px;
423 }
424 }
425
426 .styles-sidebar-toolbar-pane {
427 position: relative;
428 animation-duration: 0.1s;
429 animation-direction: normal;
430 }
431
432 .styles-sidebar-toolbar-pane-container {
433 position: relative;
434 max-height: 56px;
435 overflow: hidden;
436 }
437
438 .styles-element-state-pane.visible {
410 border-bottom: 1px solid rgb(189, 189, 189); 439 border-bottom: 1px solid rgb(189, 189, 189);
411 margin-top: 0; 440 margin-top: 0;
412 } 441 }
413 442
414 .styles-element-state-pane > table { 443 .styles-element-state-pane > table {
415 width: 100%; 444 width: 100%;
416 border-spacing: 0; 445 border-spacing: 0;
417 } 446 }
418 447
419 .styles-element-state-pane label { 448 .styles-element-state-pane label {
420 display: flex; 449 display: flex;
421 margin: 1px; 450 margin: 1px;
422 } 451 }
423 452
424 .styles-animations-controls-pane {
425 overflow: hidden;
426 -webkit-transition: height 0.1s ease-out;
427 height: 0;
428 }
429
430 .styles-animations-controls-pane > * { 453 .styles-animations-controls-pane > * {
431 margin: 6px 4px; 454 margin: 6px 4px;
432 } 455 }
433 456
434 .styles-animations-controls-pane.expanded { 457 .styles-animations-controls-pane {
435 border-bottom: 1px solid rgb(189, 189, 189); 458 border-bottom: 1px solid rgb(189, 189, 189);
436 height: 56px; 459 height: 56px;
460 overflow: hidden;
437 } 461 }
438 462
439 .animations-controls { 463 .animations-controls {
440 width: 100%; 464 width: 100%;
441 max-width: 200px; 465 max-width: 200px;
442 display: flex; 466 display: flex;
443 align-items: center; 467 align-items: center;
444 } 468 }
445 469
446 .animations-controls > .toolbar { 470 .animations-controls > .toolbar {
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
719 .style-properties li.editing-sub-part { 743 .style-properties li.editing-sub-part {
720 padding: 3px 6px 8px 18px; 744 padding: 3px 6px 8px 18px;
721 margin: -1px -6px -8px -6px; 745 margin: -1px -6px -8px -6px;
722 text-overflow: clip; 746 text-overflow: clip;
723 } 747 }
724 748
725 .styles-pane-toolbar { 749 .styles-pane-toolbar {
726 float: right; 750 float: right;
727 margin-top: -3px; 751 margin-top: -3px;
728 } 752 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/elements/StylesSidebarPane.js ('k') | Source/devtools/front_end/elements/module.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698