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

Unified Diff: chrome/browser/resources/settings/settings.html

Issue 2802583003: MD Settings: remove an import and some variables from early loading shim (Closed)
Patch Set: attr->class Created 3 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/resources/settings/settings_ui/settings_ui.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/settings.html
diff --git a/chrome/browser/resources/settings/settings.html b/chrome/browser/resources/settings/settings.html
index f64ddf2d5ca1fd9d260ff417539a8043fc571d02..f56ed01b94b4a66cbb464f4216fa740e9bc163e6 100644
--- a/chrome/browser/resources/settings/settings.html
+++ b/chrome/browser/resources/settings/settings.html
@@ -1,26 +1,20 @@
<!doctype html>
-<html dir="$i18n{textdirection}" lang="$i18n{language}">
+<html dir="$i18n{textdirection}" lang="$i18n{language}" class="loading">
<head>
<meta charset="utf-8">
<title>$i18n{settings}</title>
<if expr="not use_vulcanize">
<base href="chrome://$i18n{hostname}">
</if>
- <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
<style>
html {
+ background-color: #f1f1f1;
overflow: hidden;
}
- settings-ui:unresolved {
- background-color: var(--md-background-color);
- border-top: 56px solid var(--md-toolbar-color);
- bottom: 0;
- display: block;
- left: 0;
- position: fixed;
- right: 0;
- top: 0;
+ .loading {
+ /* --google-blue-700 in disguise. Replaced when settings-ui loads. */
+ border-top: 56px solid rgb(51, 103, 214);
}
</style>
</head>
« no previous file with comments | « no previous file | chrome/browser/resources/settings/settings_ui/settings_ui.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698