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

Unified Diff: chrome/browser/resources/vr_shell/vr_shell_ui.css

Issue 2550243002: Color the VR omnibox security icons. (Closed)
Patch Set: Arg. Fix style. Created 3 years, 12 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/vr_shell/vr_shell_ui.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/vr_shell/vr_shell_ui.css
diff --git a/chrome/browser/resources/vr_shell/vr_shell_ui.css b/chrome/browser/resources/vr_shell/vr_shell_ui.css
index 77c6cb516ef503c0fa4f85df8e9d1ccb9149b6e6..bb0b549bd5bec6a5adf9c6b8dfe36f1feeafb986 100644
--- a/chrome/browser/resources/vr_shell/vr_shell_ui.css
+++ b/chrome/browser/resources/vr_shell/vr_shell_ui.css
@@ -99,7 +99,8 @@ html {
white-space: nowrap;
}
-#back .button {
+#back .button,
+#forward .button {
background-image: url(../../../../ui/webui/resources/images/vr_back.svg);
}
@@ -108,7 +109,6 @@ html {
}
#forward .button {
- background-image: url(../../../../ui/webui/resources/images/vr_back.svg);
bshe 2017/01/03 17:05:56 optional nit: I found the old version is more read
transform: scaleX(-1);
}
@@ -151,7 +151,8 @@ html {
max-width: 448px;
}
-#omni .connection-security {
+.omni-icon {
+ -webkit-mask-size: 50px;
display: none;
flex: none;
height: 50px;
@@ -159,6 +160,21 @@ html {
width: 50px;
}
+#omni-info-icon {
+ -webkit-mask-image: url(../../../../ui/webui/resources/images/i_circle.svg);
+ background-color: rgb(90, 90, 90);
+}
+
+#omni-lock-icon {
+ -webkit-mask-image: url(../../../../ui/webui/resources/images/lock.svg);
+ background-color: rgb(11, 128, 67);
+}
+
+#omni-warning-icon {
+ -webkit-mask-image: url(../../../../ui/webui/resources/images/warning.svg);
+ background-color: rgb(199, 56, 33);
+}
+
#omni #url {
color: #252525;
font-size: 34px;
« no previous file with comments | « no previous file | chrome/browser/resources/vr_shell/vr_shell_ui.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698