browser/metro/base/content/startui/FirstRunOverlay.xul

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

michael@0 1 <?xml version="1.0"?>
michael@0 2
michael@0 3 <?xml-stylesheet href="chrome://browser/skin/firstrun.css" type="text/css"?>
michael@0 4
michael@0 5 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 6 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 7 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 8
michael@0 9 <!DOCTYPE window [
michael@0 10 <!ENTITY % browserDTD SYSTEM "chrome://browser/locale/browser.dtd">
michael@0 11 %browserDTD;
michael@0 12 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
michael@0 13 %brandDTD;
michael@0 14 ]>
michael@0 15
michael@0 16 <overlay id="firstrun"
michael@0 17 xmlns:html="http://www.w3.org/1999/xhtml"
michael@0 18 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
michael@0 19
michael@0 20 <hbox id="start-container">
michael@0 21 <box id="instruction-topsites-box" insertafter="start-topsites" class="firstrun">
michael@0 22 <box id="instruction-topsites">
michael@0 23 <vbox class="instruction-content-container">
michael@0 24 <image class="instruction-arrow arrow-back-straight" />
michael@0 25 <image class="instruction-arrow arrow-back" />
michael@0 26 <label class="instruction-label">&firstRunTopSites.label;</label>
michael@0 27 </vbox>
michael@0 28 </box>
michael@0 29 </box>
michael@0 30
michael@0 31 <vbox id="firstrun-welcome" insertafter="instruction-topsites-box" class="firstrun" align="center" pack="center">
michael@0 32 <image class="welcome-image" />
michael@0 33 <label class="welcome-title" value="&firstRunWelcome.label;"/>
michael@0 34 <label class="welcome-subtitle" value="&firstRunDifferent.label;"/>
michael@0 35 </vbox>
michael@0 36
michael@0 37 <box insertafter="start-bookmarks" class="firstrun">
michael@0 38 <box id="instruction-bookmarks">
michael@0 39 <vbox class="instruction-content-container" align="center">
michael@0 40 <image class="instruction-arrow arrow-forward" />
michael@0 41 <label class="instruction-label">&firstRunBookmarks.label;</label>
michael@0 42 </vbox>
michael@0 43 </box>
michael@0 44 </box>
michael@0 45
michael@0 46 <box id="instruction-history-container" insertafter="start-history" class="firstrun">
michael@0 47 <box id="instruction-history">
michael@0 48 <vbox class="instruction-content-container" align="center">
michael@0 49 <image class="instruction-arrow arrow-forward" />
michael@0 50 <label class="instruction-label">&firstRunHistory.label;</label>
michael@0 51 </vbox>
michael@0 52 </box>
michael@0 53 </box>
michael@0 54
michael@0 55 <box id="instruction-tabs" class="firstrun">
michael@0 56 <vbox class="instruction-content-container" align="center">
michael@0 57 <image class="instruction-arrow arrow-top" />
michael@0 58 <label class="instruction-label">&firstRunTabs.label;</label>
michael@0 59 </vbox>
michael@0 60 </box>
michael@0 61
michael@0 62 <box id="instruction-menu" class="firstrun">
michael@0 63 <hbox class="instruction-content-container" align="right">
michael@0 64 <label class="instruction-label">&firstRunMenu.label;</label>
michael@0 65 <image class="instruction-arrow arrow-down" />
michael@0 66 </hbox>
michael@0 67 </box>
michael@0 68
michael@0 69 </hbox>
michael@0 70 </overlay>

mercurial