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

Unified Diff: Source/devtools/front_end/resources/indexedDBViews.css

Issue 720223002: DevTools: only allow status bar items in status bars. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaselined Created 6 years, 1 month 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/resources/indexedDBViews.css
diff --git a/Source/devtools/front_end/resources/indexedDBViews.css b/Source/devtools/front_end/resources/indexedDBViews.css
index 5d61509127c6b4089fcc490c103b4d20028271bf..122aaaa6c898f2fc1f6e07eb7965837aee596cf5 100644
--- a/Source/devtools/front_end/resources/indexedDBViews.css
+++ b/Source/devtools/front_end/resources/indexedDBViews.css
@@ -59,18 +59,36 @@
border-top: none;
height: 24px;
padding: 1px;
+ background-color: #eee;
+ border-bottom: 1px solid #ccc;
}
.indexed-db-data-view .data-grid-container {
top: 24px;
}
-.indexed-db-data-view .data-view-toolbar .back-button img {
- content: url(Images/back.png);
+.indexed-db-status-bar-back-button,
+.indexed-db-status-bar-forward-button {
+ background-repeat: no-repeat;
+ border: 3px solid transparent;
}
-.indexed-db-data-view .data-view-toolbar .forward-button img {
- content: url(Images/forward.png);
+.indexed-db-status-bar-back-button:disabled,
+.indexed-db-status-bar-forward-button:disabled {
+ opacity: 0.5;
+}
+
+.indexed-db-status-bar-back-button {
+ background-image: url(Images/back.png);
+}
+
+.indexed-db-status-bar-forward-button {
+ background-image: url(Images/forward.png);
+}
+
+.indexed-db-status-bar-back-button .glyph,
+.indexed-db-status-bar-forward-button .glyph {
+ display: none;
}
.indexed-db-data-view .data-view-toolbar .key-input {
« no previous file with comments | « Source/devtools/front_end/resources/ResourcesPanel.js ('k') | Source/devtools/front_end/resources/resourcesPanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698