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

Unified Diff: chrome/browser/resources/md_user_manager/control_bar.html

Issue 2053723002: MD User Manager: Overhaul Urls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md-user-manager-locked-dialogs
Patch Set: Changed Urls for html resources to root-relative Urls Created 4 years, 6 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 | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/md_user_manager/create_profile.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/md_user_manager/control_bar.html
diff --git a/chrome/browser/resources/md_user_manager/control_bar.html b/chrome/browser/resources/md_user_manager/control_bar.html
index c943c18892d25030b113379e96efe2c46695ddf2..fd2e0c88a8a3d33068b9b124e7637e18630a8b7f 100644
--- a/chrome/browser/resources/md_user_manager/control_bar.html
+++ b/chrome/browser/resources/md_user_manager/control_bar.html
@@ -1,13 +1,13 @@
-<link rel="import" href="chrome://md-user-manager/profile_browser_proxy.html">
-<link rel="import" href="chrome://md-user-manager/shared_styles.html">
+<link rel="import" href="/profile_browser_proxy.html">
+<link rel="import" href="/shared_styles.html">
<link rel="import" href="chrome://resources/html/i18n_behavior.html">
<link rel="import" href="chrome://resources/html/polymer.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/iron-flex-layout.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-flex-layout-classes.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
<dom-module id="control-bar">
<template>
- <style include="shared-styles">
+ <style include="shared-styles iron-flex iron-flex-alignment">
#container {
-webkit-padding-end: 8px;
-webkit-padding-start: 24px;
@@ -19,14 +19,10 @@
#logo {
-webkit-margin-end: auto;
- content: -webkit-image-set(
- url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo_name_22.png) 1x,
- url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_logo_name_22.png) 2x);
- height: 22px;
}
</style>
<div id="container" class="layout horizontal end-justified">
- <div id="logo" alt=""></div>
+ <div id="logo" class="product-logo" alt=""></div>
<paper-button id="launchGuest" class="action secondary"
on-tap="onLaunchGuestTap_"
i18n-content="browseAsGuest" hidden="[[!showGuest]]"></paper-button>
@@ -34,5 +30,5 @@
i18n-content="addUser" hidden="[[!showAddPerson]]"></paper-button>
</div>
</template>
- <script src="chrome://md-user-manager/control_bar.js"></script>
+ <script src="control_bar.js"></script>
</dom-module>
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/md_user_manager/create_profile.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698