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

Unified Diff: chrome_linux64/resources/inspector/resourcesPanel.css

Issue 310483004: Roll reference builds to 35.0.1916.114. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/reference_builds/
Patch Set: Created 6 years, 7 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: chrome_linux64/resources/inspector/resourcesPanel.css
===================================================================
--- chrome_linux64/resources/inspector/resourcesPanel.css (revision 273864)
+++ chrome_linux64/resources/inspector/resourcesPanel.css (working copy)
@@ -34,6 +34,7 @@
.resources.panel .sidebar {
padding-left: 0;
z-index: 10;
+ display: block;
}
.resources.panel .sidebar li {
@@ -47,18 +48,18 @@
}
.resources.panel .sidebar li.selected .selection {
- background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(162, 177, 207)), to(rgb(120, 138, 177)));
+ background-image: linear-gradient(to bottom, rgb(162, 177, 207), rgb(120, 138, 177));
border-top: 1px solid #979797;
height: 18px;
}
.resources.panel .sidebar :focus li.selected .selection {
- background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(92, 147, 213)), to(rgb(21, 83, 170)));
+ background-image: linear-gradient(to bottom, rgb(92, 147, 213), rgb(21, 83, 170));
border-top: 1px solid rgb(68, 128, 200);
}
body.inactive .resources.panel .sidebar li.selected .selection {
- background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(180, 180, 180)), to(rgb(138, 138, 138)));
+ background-image: linear-gradient(to bottom, rgb(180, 180, 180), rgb(138, 138, 138));
border-top: 1px solid rgb(151, 151, 151);
}
@@ -82,6 +83,7 @@
bottom: 23px;
left: 0;
right: 0;
+ display: flex;
}
.resources-status-bar {
@@ -127,7 +129,7 @@
}
.storage-view.visible {
- display: block;
+ display: flex;
}
.storage-view {
@@ -136,7 +138,7 @@
.storage-view .data-grid:not(.inline) {
border: none;
- height: 100%;
+ flex: auto;
}
.storage-view .storage-table-error {
@@ -178,7 +180,7 @@
.database-user-query::before,
.database-query-prompt::before,
.database-query-result::before {
- background-image: url(Images/statusbarButtonGlyphs2x.png);
+ background-image: url(Images/statusbarButtonGlyphs_2x.png);
}
} /* media */
« no previous file with comments | « chrome_linux64/resources/inspector/resourceView.css ('k') | chrome_linux64/resources/inspector/screencastView.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698