Chromium Code Reviews| 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 3e72a352ca7d0cec87018d21bec8ccc4e4e0867c..2f0e59c404a98ce257cc0bdde49f3003f11a3b4b 100644 |
| --- a/chrome/browser/resources/vr_shell/vr_shell_ui.css |
| +++ b/chrome/browser/resources/vr_shell/vr_shell_ui.css |
| @@ -113,7 +113,9 @@ html { |
| } |
| #reload-ui-button { |
| - background-color: #555; |
| + --tranX: 0; |
| + --tranY: -1.2; |
| + --tranZ: -1.2; |
| color: white; |
| font-size: 24px; |
| padding: 12px; |
| @@ -190,3 +192,47 @@ html { |
| color: #868686; |
| } |
| +#omnibox-ui-element { |
| + --tranX: 0; |
| + --tranY: -0.2; |
| + --tranZ: -1.0; |
| + font-family: arial; |
| +} |
| + |
| +#omnibox-url-divider { |
| + background-color: black; |
| + height: 1px; |
| +} |
| + |
| +#omnibox-url-element { |
| + background-color: white; |
| + display: flex; |
| + font-family: arial; |
|
bshe
2017/01/23 16:24:37
is this necessary? wouldn't it inherit from #omnib
|
| + padding: 5px; |
| + width: 100%; |
| +} |
| + |
| +.omnibox-suggestion { |
| + background-color: white; |
| + height: 22px; |
| + overflow: hidden; |
| + padding-left: 5px; |
| + padding-right: 5px; |
| + white-space: nowrap; |
| + width: 100%; |
| +} |
| + |
| +#omnibox-input-field { |
| + border: none; |
| + font-size: 16px; |
| + margin: 3px; |
| + overflow: hidden; |
| + padding: 0; |
| + white-space: nowrap; |
| + width: 280px; |
| +} |
| + |
| +#omnibox-clear-button { |
| + background: url(../../../../ui/webui/resources/images/x-hover.png) no-repeat center center; |
| + width: 15px; |
| +} |