| 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 243f8e432970648a3ff7b48e92582df03d88de23..c5c7edc92260c18ba6816ef1e72c24a584404ca7 100644
 | 
| --- a/chrome/browser/resources/vr_shell/vr_shell_ui.css
 | 
| +++ b/chrome/browser/resources/vr_shell/vr_shell_ui.css
 | 
| @@ -80,7 +80,7 @@ html {
 | 
|    background-position: center;
 | 
|    background-repeat: no-repeat;
 | 
|    background-size: contain;
 | 
| -  border-radius: 50%;
 | 
| +  border-radius: 10%;
 | 
|    height: 96px;
 | 
|    margin: auto auto;
 | 
|    opacity: 0.8;
 | 
| @@ -113,12 +113,15 @@ html {
 | 
|  }
 | 
|  
 | 
|  #reload-ui-button {
 | 
| -  background-color: #555;
 | 
|    color: white;
 | 
|    font-size: 24px;
 | 
|    padding: 12px;
 | 
|  }
 | 
|  
 | 
| +#reload-ui-button:hover {
 | 
| +  background-color: pink;
 | 
| +}
 | 
| +
 | 
|  #url-indicator-container {
 | 
|    --tranX: 0;
 | 
|    --tranY: -0.65;
 | 
| @@ -180,12 +183,69 @@ html {
 | 
|  
 | 
|  #url-indicator #url {
 | 
|    color: #252525;
 | 
| -  font-size: 34px;
 | 
| +  font-size: 48px;
 | 
|    overflow: hidden;
 | 
|    white-space: nowrap;
 | 
| +  width: 100%;
 | 
|  }
 | 
|  
 | 
|  #url-indicator #path {
 | 
|    color: #868686;
 | 
|  }
 | 
|  
 | 
| +#omnibox-ui-element {
 | 
| +  --tranX: 0;
 | 
| +  --tranY: -0.1;
 | 
| +  --tranZ: -1.0;
 | 
| +  font-family: arial;
 | 
| +  font-size: 16px;
 | 
| +  background-color: transparent;
 | 
| +  box-sizing: border-box;
 | 
| +  width: 400px;
 | 
| +}
 | 
| +
 | 
| +#suggestions {
 | 
| +  border: 1px solid transparent;
 | 
| +  box-sizing: border-box;
 | 
| +}
 | 
| +
 | 
| +.suggestion {
 | 
| +  align-items: center;
 | 
| +  background-color: white;
 | 
| +  border-left: 5px solid transparent;
 | 
| +  border-right: 5px solid transparent;
 | 
| +  box-sizing: border-box;
 | 
| +  display: flex;
 | 
| +  height: 24px;
 | 
| +  overflow: hidden;
 | 
| +  visibility: hidden;
 | 
| +  white-space: nowrap;
 | 
| +}
 | 
| +
 | 
| +.suggestion:hover {
 | 
| +  background-color: orange;
 | 
| +}
 | 
| +
 | 
| +#omnibox-url-element {
 | 
| +  background-color: white;
 | 
| +  border: 1px solid grey;
 | 
| +  box-sizing: border-box;
 | 
| +  display: flex;
 | 
| +  flex-direction: row-reverse;
 | 
| +  margin-top: 2px;
 | 
| +  padding: 5px;
 | 
| +}
 | 
| +
 | 
| +#omnibox-input-field {
 | 
| +  border: none;
 | 
| +  font-size: 16px;
 | 
| +  outline: none;
 | 
| +  overflow: hidden;
 | 
| +  white-space: nowrap;
 | 
| +  width: 100%;
 | 
| +}
 | 
| +
 | 
| +#omnibox-clear-button {
 | 
| +  background: url(../../../../ui/webui/resources/images/x-hover.png) no-repeat center center;
 | 
| +  width: 18px;
 | 
| +}
 | 
| 
 |