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

Unified Diff: ui/file_manager/file_manager/main.html

Issue 2317113002: Remove ::shadow and /deep/ combinator from Files app. (Closed)
Patch Set: Created 4 years, 3 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: ui/file_manager/file_manager/main.html
diff --git a/ui/file_manager/file_manager/main.html b/ui/file_manager/file_manager/main.html
index 864b522d37a3cc5d800f5d27a5da2c5b807a70ee..b00ccf0aa010056627e9a55911c0dd690ff86d56 100644
--- a/ui/file_manager/file_manager/main.html
+++ b/ui/file_manager/file_manager/main.html
@@ -27,6 +27,40 @@
<link rel="stylesheet" href="foreground/css/common.css">
<link rel="stylesheet" href="chrome-extension://fbjakikfhfdajcamjleinfciajelkpek/cws_widget/cws_widget_container.css">
+ <style is="custom-style">
+ #search-box paper-input-container {
+ --paper-input-container-input: {
+ color: inherit;
+ font: inherit;
+ margin: 0.5em 0 0.25em;
+ padding: 0;
+ };
+ --paper-input-container-underline: {
+ background-color: rgba(255, 255, 0, 0.3);
+ };
+ --paper-input-container-underline-focus: {
+ background-color: white;
+ height: 1px;
+ };
+ }
+
+ .dialog-footer paper-input-container {
+ --paper-input-container-input: {
+ font: inherit;
+ };
+ --paper-input-container-underline: {
+ background-color: rgb(207, 207, 207);
+ };
+ --paper-input-container-underline-focus: {
+ background-color: rgb(33, 150, 243);
+ };
+ }
+
+ paper-progress {
+ --paper-progress-active-color: rgb(26, 194, 34);
+ }
+ </style>
+
<script src="foreground/js/elements_importer.js"></script>
<script src="foreground/js/main_scripts.js" defer></script>
</head>

Powered by Google App Engine
This is Rietveld 408576698