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

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

Issue 1832253002: Settings People Revamp: Address CSS wrongdoings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: chrome/browser/resources/settings/people_page/people_page.html
diff --git a/chrome/browser/resources/settings/people_page/people_page.html b/chrome/browser/resources/settings/people_page/people_page.html
index bcaf789051c899b48fb6a46442de38c37ffd2d6d..da368353dddafb3f76fb32d071bbb2d8051d6e05 100644
--- a/chrome/browser/resources/settings/people_page/people_page.html
+++ b/chrome/browser/resources/settings/people_page/people_page.html
@@ -23,9 +23,27 @@
</if>
<dom-module id="settings-people-page">
- <link rel="import" type="css" href="people_page.css">
<template>
- <style include="settings-shared"></style>
+ <style include="settings-shared">
+ #account-picture {
+ -webkit-margin-end: 4px;
+ border-radius: 20px;
+ height: 40px;
+ object-fit: cover;
+ vertical-align: middle;
+ width: 40px;
+ }
+
+ #account-picture:hover {
+ cursor: pointer;
+ }
+
+<if expr="not chromeos">
+ #profile-name:hover {
+ cursor: pointer;
+ }
+</if>
+ </style>
<settings-animated-pages id="pages" current-route="{{currentRoute}}"
section="people">
<neon-animatable id="main">

Powered by Google App Engine
This is Rietveld 408576698