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

Unified Diff: Source/devtools/front_end/elementsPanel.css

Issue 596323002: DevTools: make ElementsTreeOutline shadow dom-based. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tests fixed Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/elementsPanel.css
diff --git a/Source/devtools/front_end/elementsPanel.css b/Source/devtools/front_end/elementsPanel.css
index 53e0da4ad7f4143d82e75f8f9606c3f59204e867..d7ccf90f907f1b71bd9495f642a560bb195dfb94 100644
--- a/Source/devtools/front_end/elementsPanel.css
+++ b/Source/devtools/front_end/elementsPanel.css
@@ -30,7 +30,7 @@
#elements-content {
flex: 1 1;
overflow: auto;
- padding-left: 0;
+ padding: 2px 0 0 0;
transform: translateZ(0);
}
@@ -43,55 +43,6 @@
width: 100%;
}
-#elements-content > ol {
- display: inline-block;
- min-height: 100%;
- transform: translateZ(0);
-}
-
-.elements-tree-outline.pick-node-mode {
- cursor: pointer;
-}
-
-#elements-content .editing {
- margin-left: 8px;
-}
-
-#elements-content .elements-gutter-decoration {
- position: absolute;
- left: 1px;
- margin-top: 2px;
- height: 8px;
- width: 8px;
- border-radius: 4px;
- border: 1px solid orange;
- background-color: orange;
-}
-
-#elements-content .elements-gutter-decoration.elements-has-decorated-children {
- opacity: 0.5;
-}
-
-#elements-content .CodeMirror {
- /* Consistent with the .editing class in inspectorStyle.css */
- box-shadow: rgba(0, 0, 0, .5) 3px 3px 4px;
- outline: 1px solid rgb(66%, 66%, 66%) !important;
- background-color: white;
-}
-
-#elements-content .CodeMirror pre {
- padding: 0;
-}
-
-#elements-content .CodeMirror-lines {
- padding: 0;
-}
-
-.elements-tree-editor {
- -webkit-user-select: text;
- -webkit-user-modify: read-write-plaintext-only;
-}
-
.metrics {
padding: 8px;
font-size: 10px;
@@ -495,12 +446,6 @@
display: block;
}
-.add-attribute {
- margin-left: 1px;
- margin-right: 1px;
- white-space: nowrap;
-}
-
.section .event-bars {
display: none;
}
@@ -760,28 +705,6 @@ li.child-editing .styles-clipboard-only {
background-color: rgb(216, 216, 216);
}
-.elements-tree-element-pick-node-1 {
- border-radius: 3px;
- padding: 1px 0 1px 0;
- -webkit-animation: elements-tree-element-pick-node-animation-1 0.5s 1;
-}
-
-.elements-tree-element-pick-node-2 {
- border-radius: 3px;
- padding: 1px 0 1px 0;
- -webkit-animation: elements-tree-element-pick-node-animation-2 0.5s 1;
-}
-
-@-webkit-keyframes elements-tree-element-pick-node-animation-1 {
- from { background-color: rgb(255, 210, 126); }
- to { background-color: inherit; }
-}
-
-@-webkit-keyframes elements-tree-element-pick-node-animation-2 {
- from { background-color: rgb(255, 210, 126); }
- to { background-color: inherit; }
-}
-
.sidebar-separator {
background-color: rgb(230, 230, 230);
padding: 0 5px;
« no previous file with comments | « Source/devtools/front_end/elements/ElementsTreeOutline.js ('k') | Source/devtools/front_end/elementsTreeOutline.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698