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

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

Issue 464343002: DevTools: align call stack rendering with the rest of the panels. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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/inspectorStyle.css
diff --git a/Source/devtools/front_end/inspectorStyle.css b/Source/devtools/front_end/inspectorStyle.css
index dcf1295819e783e8b952379e305a6ec5ee071837..0c550300ce8ecb7aa936ed41846b77637cb2618e 100644
--- a/Source/devtools/front_end/inspectorStyle.css
+++ b/Source/devtools/front_end/inspectorStyle.css
@@ -1408,52 +1408,30 @@ iframe.panel.extension {
.placard {
position: relative;
- border-top: 1px solid transparent;
padding: 3px 8px 4px 18px;
min-height: 18px;
white-space: nowrap;
}
-.placard:nth-of-type(2n) {
- background-color: rgb(234, 243, 255);
-}
-
.placard.selected {
- border-top: 1px solid rgb(172, 172, 172);
- background-image: linear-gradient(to bottom, rgb(182, 182, 182), rgb(162, 162, 162));
- background-origin: padding-box;
+ background-color: rgb(212, 212, 212);
background-clip: padding-box;
}
-:focus .placard.selected {
- border-top: 1px solid rgb(70, 103, 215);
- background-image: linear-gradient(to bottom, rgb(92, 147, 213), rgb(56, 121, 217));
-}
-
.placard .title {
font-weight: normal;
word-wrap: break-word;
white-space: normal;
}
-.placard.selected .title {
- color: white;
- font-weight: bold;
-}
-
.placard .subtitle {
float: right;
- font-size: 10px;
margin-left: 5px;
color: rgba(0, 0, 0, 0.7);
text-overflow: ellipsis;
overflow: hidden;
}
-.placard.selected .subtitle {
- color: rgba(255, 255, 255, 0.7);
-}
-
.placard .subtitle a {
color: inherit;
}

Powered by Google App Engine
This is Rietveld 408576698