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

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

Issue 658403002: DevTools: Support regex search and case sensitive search in sources panel (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed tests 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/inspectorStyle.css
diff --git a/Source/devtools/front_end/inspectorStyle.css b/Source/devtools/front_end/inspectorStyle.css
index 88942971807b349290638eff19597aeb22b5c0eb..c6ebdc2b258e1202e694ad40d70bf7b87fb817f5 100644
--- a/Source/devtools/front_end/inspectorStyle.css
+++ b/Source/devtools/front_end/inspectorStyle.css
@@ -277,11 +277,28 @@ body.undocked.platform-mac.inactive .toolbar-colors {
opacity: 1.0;
}
-.toolbar-search label {
- margin: auto 0;
+.toolbar-search .status-bar-item {
+ height: 20px;
+ width: 16px;
+}
+
+.toolbar-search .search-settings-prefix {
+ margin-left: 2px;
+}
+
+.toolbar-search .status-bar-item.case-sensitive-search.toggled-on .status-bar-button-text {
+ color: rgb(94, 146, 233);
+}
+
+.toolbar-search .status-bar-item.regex-search.toggled-on .status-bar-button-text {
+ color: rgb(94, 146, 233);
+}
+
+.toolbar-search .status-bar-item.regex-search.toggled-on {
+ color: rgb(66, 129, 235);
}
-.toolbar-search button {
+.toolbar-search button.search-action-button {
border: 1px solid rgb(163, 163, 163);
border-radius: 8px;
margin: 0;
@@ -290,7 +307,7 @@ body.undocked.platform-mac.inactive .toolbar-colors {
height: 20px;
}
-.toolbar-search button:active {
+.toolbar-search button.search-action-button:active {
background-image: linear-gradient(rgb(185, 185, 185), rgb(156, 156, 156));
}
@@ -460,11 +477,9 @@ body.undocked.platform-mac.inactive .toolbar-colors {
z-index: 1;
}
-.glyph.shadow {
- top: 0;
- bottom: 0;
- background-color: white;
- z-index: 0;
+.status-bar-item .status-bar-button-text {
+ font-weight: bold;
+ color: rgba(97, 97, 97, 1);
}
.long-click-glyph {
« no previous file with comments | « Source/devtools/front_end/extensions/ExtensionPanel.js ('k') | Source/devtools/front_end/network/NetworkPanel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698