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

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

Issue 1577723002: Devtools: Add editable keyframes to the styles sidebar pane (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 } 253 }
254 254
255 .styles-section .styles-section-subtitle a { 255 .styles-section .styles-section-subtitle a {
256 color: inherit; 256 color: inherit;
257 } 257 }
258 258
259 .styles-section .selector { 259 .styles-section .selector {
260 color: #888; 260 color: #888;
261 } 261 }
262 262
263 .styles-section .simple-selector.selector-matches { 263 .styles-section .simple-selector.selector-matches, .styles-section.keyframe-key {
264 color: #222; 264 color: #222;
265 } 265 }
266 266
267 .styles-section a[data-uncopyable] { 267 .styles-section a[data-uncopyable] {
268 display: inline-block; 268 display: inline-block;
269 } 269 }
270 270
271 .styles-section a[data-uncopyable]::before { 271 .styles-section a[data-uncopyable]::before {
272 content: attr(data-uncopyable); 272 content: attr(data-uncopyable);
273 text-decoration: underline; 273 text-decoration: underline;
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 position: absolute; 789 position: absolute;
790 right: 0; 790 right: 0;
791 bottom: 0; 791 bottom: 0;
792 visibility: hidden; 792 visibility: hidden;
793 background-color: rgba(255, 255, 255, 0.9); 793 background-color: rgba(255, 255, 255, 0.9);
794 } 794 }
795 795
796 .styles-pane:not(.is-editing-style) .styles-section.matched-styles:not(.read-onl y):hover .sidebar-pane-section-toolbar { 796 .styles-pane:not(.is-editing-style) .styles-section.matched-styles:not(.read-onl y):hover .sidebar-pane-section-toolbar {
797 visibility: visible; 797 visibility: visible;
798 } 798 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698