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

Side by Side Diff: Source/devtools/front_end/inspectorStyle.css

Issue 397303002: DevTools: [Elements] Implement shortcut-based node cut-copy-pasting (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add visual feedback for nodes in the clipboard Created 6 years, 5 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 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after
1348 right: 0; 1348 right: 0;
1349 height: 15px; 1349 height: 15px;
1350 z-index: -1; 1350 z-index: -1;
1351 } 1351 }
1352 1352
1353 .outline-disclosure li.selected .selection { 1353 .outline-disclosure li.selected .selection {
1354 display: block; 1354 display: block;
1355 background-color: rgb(212, 212, 212); 1355 background-color: rgb(212, 212, 212);
1356 } 1356 }
1357 1357
1358 .outline-disclosure li.in-clipboard .highlight {
1359 outline: 1px dotted darkgrey;
1360 }
1361
1358 .outline-disclosure li.elements-drag-over .selection { 1362 .outline-disclosure li.elements-drag-over .selection {
1359 display: block; 1363 display: block;
1360 margin-top: -2px; 1364 margin-top: -2px;
1361 border-top: 2px solid rgb(56, 121, 217); 1365 border-top: 2px solid rgb(56, 121, 217);
1362 } 1366 }
1363 1367
1364 .outline-disclosure ol:focus li.selected .selection { 1368 .outline-disclosure ol:focus li.selected .selection {
1365 background-color: rgb(56, 121, 217); 1369 background-color: rgb(56, 121, 217);
1366 } 1370 }
1367 1371
(...skipping 1573 matching lines...) Expand 10 before | Expand all | Expand 10 after
2941 } 2945 }
2942 2946
2943 .viewport-control-gap-element { 2947 .viewport-control-gap-element {
2944 color: transparent; 2948 color: transparent;
2945 } 2949 }
2946 2950
2947 label.checkbox-with-label { 2951 label.checkbox-with-label {
2948 display: flex; 2952 display: flex;
2949 -webkit-user-select: none; 2953 -webkit-user-select: none;
2950 } 2954 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698