fxrui.html (1731B)
1 <!doctype html> 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public 3 - License, v. 2.0. If a copy of the MPL was not distributed with this 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 5 6 <!-- 7 This file contains the HTML UI for the 2D window of Firefox Reality on Desktop 8 --> 9 10 <!-- 1280x720 chosen for default 16:9 ratio --> 11 <html width="1280" height="720"> 12 <head> 13 <title>Firefox Reality</title> 14 <link rel="stylesheet" href="common.css" /> 15 <link rel="stylesheet" href="fxrui.css" /> 16 <link rel="stylesheet" href="fxrui_blue.css" /> 17 <script src="common.js"></script> 18 <script src="permissions.js"></script> 19 <script src="fxrui.js"></script> 20 </head> 21 22 <body> 23 <div id="eBrowserContainer" class="browser_container"></div> 24 25 <div class="navbar_container"> 26 <button id="eBack" class="icon_container icon_backward"></button> 27 <button id="eForward" class="icon_container icon_forward"></button> 28 <button 29 id="eRefresh" 30 class="icon_container icon_refresh icon_disabled_hide" 31 ></button> 32 <button 33 id="eStop" 34 class="icon_container icon_stop icon_disabled_hide" 35 disabled 36 ></button> 37 <button id="eHome" class="icon_container icon_home"></button> 38 39 <div 40 class="urlbar_container urlbar_container_normal" 41 id="eUrlBarContainer" 42 > 43 <img 44 class="urlbar_secure_icon" 45 id="eUrlSecure" 46 src="assets/icon-secure.svg" 47 alt="Secure" 48 /> 49 <input class="urlbar_input" id="eUrlInput" type="text" value="" /> 50 </div> 51 <button id="ePrefs" class="icon_container icon_prefs"></button> 52 </div> 53 </body> 54 </html>