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

Side by Side Diff: chrome/browser/resources/vr_shell/vr_shell_ui.css

Issue 2550243002: Color the VR omnibox security icons. (Closed)
Patch Set: Created 4 years 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 unified diff | Download patch
OLDNEW
1 /* Copyright 2016 The Chromium Authors. All rights reserved. 1 /* Copyright 2016 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 html { 5 html {
6 background-color: rgba(255, 255, 255, 0); 6 background-color: rgba(255, 255, 255, 0);
7 } 7 }
8 8
9 #ui { 9 #ui {
10 left: 0; 10 left: 0;
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 font-size: 24px; 93 font-size: 24px;
94 max-width: 192px; 94 max-width: 192px;
95 opacity: 0; 95 opacity: 0;
96 overflow: hidden; 96 overflow: hidden;
97 text-align: center; 97 text-align: center;
98 transition: opacity 150ms ease-in-out; 98 transition: opacity 150ms ease-in-out;
99 white-space: nowrap; 99 white-space: nowrap;
100 } 100 }
101 101
102 #back .button { 102 #back .button {
103 background-image: url(../../../../ui/webui/resources/images/vr_back.svg); 103 background-image: url(images/back.svg);
cjgrant 2016/12/05 20:28:35 The original line was resolved through html-flatte
bshe 2016/12/05 21:08:38 hmm. I think flattening would make loading slightl
cjgrant 2016/12/05 22:10:17 Example: The "i in a circle" image is used inline
104 } 104 }
105 105
106 #reload .button { 106 #reload .button {
107 background-image: url(../../../../ui/webui/resources/images/vr_reload.svg); 107 background-image: url(images/reload.svg);
108 } 108 }
109 109
110 #forward .button { 110 #forward .button {
111 background-image: url(../../../../ui/webui/resources/images/vr_back.svg); 111 background-image: url(images/back.svg);
112 transform: scaleX(-1); 112 transform: scaleX(-1);
113 } 113 }
114 114
115 #reload-ui-button { 115 #reload-ui-button {
116 background-color: #555; 116 background-color: #555;
117 color: white; 117 color: white;
118 font-size: 24px; 118 font-size: 24px;
119 padding: 12px; 119 padding: 12px;
120 } 120 }
121 121
(...skipping 22 matching lines...) Expand all
144 white-space: nowrap; 144 white-space: nowrap;
145 width: 512px; 145 width: 512px;
146 } 146 }
147 147
148 #omni-content { 148 #omni-content {
149 align-items: center; 149 align-items: center;
150 display: flex; 150 display: flex;
151 max-width: 448px; 151 max-width: 448px;
152 } 152 }
153 153
154 #omni .connection-security { 154 #omni-icon {
155 flex: none;
155 height: 50px; 156 height: 50px;
156 margin-right: 10px; 157 margin-right: 10px;
157 width: 50px; 158 width: 50px;
158 } 159 }
159 160
160 #omni #url { 161 #omni #url {
161 color: #252525; 162 color: #252525;
162 font-size: 34px; 163 font-size: 34px;
163 overflow: hidden; 164 overflow: hidden;
164 white-space: nowrap; 165 white-space: nowrap;
(...skipping 13 matching lines...) Expand all
178 border: 4px solid rgb(86, 203, 255); 179 border: 4px solid rgb(86, 203, 255);
179 } 180 }
180 181
181 #omni.idle { 182 #omni.idle {
182 background-color: #ececec; 183 background-color: #ececec;
183 } 184 }
184 185
185 #omni.idle #domain { 186 #omni.idle #domain {
186 color: black; 187 color: black;
187 } 188 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698