Index: chrome/browser/resources/user_manager/user_manager.css |
diff --git a/chrome/browser/resources/user_manager/user_manager.css b/chrome/browser/resources/user_manager/user_manager.css |
index c78fb69a6cdf3ac8a1c619400c28893dff56c100..1526b6e9e376fa5ab93925ecb520dd30001d4a1a 100644 |
--- a/chrome/browser/resources/user_manager/user_manager.css |
+++ b/chrome/browser/resources/user_manager/user_manager.css |
@@ -20,6 +20,13 @@ |
.pod { |
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); |
height: 226px; |
+ /* On non-retina desktop, the text is blurry if we use the scale3d() |
+ inherited from user_pod_row.js */ |
+ transform: scale(0.9); |
+} |
+ |
+podrow[ncolumns='6'] .pod { |
+ transform: scale(0.8); |
} |
.pod.faded { |
@@ -28,11 +35,11 @@ |
.pod.hovered:not(.focused) { |
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); |
- opacity: 0.9; |
} |
.pod.focused { |
box-shadow: 0 16px 21px rgba(0, 0, 0, 0.2); |
+ transform: scale(1) !important; |
} |
.pod.focused.locked { |
@@ -136,6 +143,9 @@ html[dir=rtl] .main-pane { |
.action-box-area { |
background-color: #f5f5f5; |
height: 24px; |
+ /* Because of crbug.com/406529, the text in the .name div is janky if there's |
+ an opacity transition in this div. */ |
+ transition: none; |
width: 24px; |
} |
@@ -158,3 +168,14 @@ html[dir=rtl] .main-pane { |
.action-box-area.active .action-box-button { |
border-top: 6px solid #4c4c4c; |
} |
+ |
+.action-box-remove-user-warning .remove-warning-button { |
+ height: 30px; |
+} |
+ |
+.action-box-remove-user-warning .remove-warning-button:focus { |
+ box-shadow: inset 0 0 0 1px #fff; |
+ /* Override the default blue border inherited from |
+ button.custom-appearance:focus. */ |
+ border: 1px solid transparent !important; |
xiyuan
2014/08/22 20:48:06
nit: alpha sort the css rules.
noms (inactive)
2014/08/23 19:08:11
Done.
|
+} |