~ubuntu-branches/ubuntu/trusty/epiphany-browser/trusty

« back to all changes in this revision

Viewing changes to data/pages/recovery.html

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2011-11-21 17:15:18 UTC
  • mfrom: (1.6.3) (98.2.3 sid)
  • Revision ID: package-import@ubuntu.com-20111121171518-0f07y0i5rvb2wrix
Tags: 3.2.1-2ubuntu1
* Resynchronize on Debian, remaining diffs:
* debian/branding.conf.in: set the branding to Ubuntu.
* debian/epiphany-browser-data.gsettings-override:
  - set startpage and search to Ubuntu
* debian/patches/80_ubuntu_search_url.patch: use Ubuntu search
* debian/patches/81_ubuntu_force_update_bookmarks_menu.patch:
  - update the bookmarks menu every time the internal structure
    is changed (needed for the indicator application menu to work correctly).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
2
<!--
3
 
  Copyright © 2010 Vinicius Depizzol
 
3
  Copyright © 2010, 2011 Vinicius Depizzol
4
4
 
5
5
  This program is free software; you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
9
9
 
10
10
  This program is distributed in the hope that it will be useful,
11
11
  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
13
  GNU General Public License for more details.
14
14
 
15
15
  You should have received a copy of the GNU General Public License
16
16
  along with this program; if not, write to the Free Software
17
17
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18
18
-->
19
 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="%s" lang="%s">
 
19
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="%s" lang="%s" dir="%s">
20
20
<head>
21
21
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
22
22
  <title>%s</title>
23
23
  <style type="text/css">
24
24
    body {
25
25
      margin: 0 auto;
26
 
      padding: 7em;
27
26
      font: message-box;
28
 
      display: table;
29
 
      direction: %s;
30
27
    }
31
 
    div#centeredContent {
32
 
      display: table;
 
28
 
 
29
    #container {
 
30
      padding: 10% 12% 5%;
33
31
      margin: 0 auto;
34
 
    }
35
 
    div#centeredContent h1 {
36
 
      display: table-row;
37
 
    }
38
 
    div#centeredContent div {
39
 
      display: table-row-group;
40
 
    }
41
 
    h1 {
42
 
      font-size: 180%;
43
 
    }
44
 
    img {
45
 
      vertical-align: middle;
 
32
      max-width: 650px;
 
33
    }
 
34
 
 
35
    #main_icon {
46
36
      float: left;
47
 
      margin-right: 20px;
48
 
      width: 50px;
49
 
      height: 50px;
50
 
    }
51
 
    p.buttonbox {
 
37
      padding-right: 20px;
 
38
    }
 
39
 
 
40
    html[dir="rtl"] #main_icon {
 
41
      padding-left: 20px;
 
42
      padding-right: 0;
 
43
      float: right;
 
44
    }
 
45
 
 
46
    #content {
 
47
      display: table-cell;
 
48
      vertical-align: top;
 
49
    }
 
50
 
 
51
    #content h1 {
 
52
      margin-top: 0;
 
53
    }
 
54
 
 
55
    #content .buttonbox {
52
56
      text-align: right;
53
57
    }
 
58
 
 
59
    html[dir="rtl"] #content .buttonbox {
 
60
      text-align: left;
 
61
    }
54
62
  </style>
55
63
  <script type="text/javascript">
56
64
    function load_anyway()
60
68
  </script>
61
69
</head>
62
70
<body>
63
 
<img src="%s"/>
64
 
<div id="centeredContent">
65
 
  <div>
66
 
    <h1 style="text-align:left;">%s</h1>
67
 
    <p class="message">%s</p>
68
 
    <p class="buttonbox">
69
 
      <button onclick="javascript:load_anyway()">%s</button></p>
 
71
  <div id="container">
 
72
      <div id="main_icon">
 
73
        <img src="%s" />
 
74
      </div>
 
75
      <div id="content">
 
76
          <h1>%s</h1>
 
77
          <div class="explanation">
 
78
            %s
 
79
          </div>
 
80
 
 
81
          <div class="buttonbox">
 
82
            <button onclick="javascript:load_anyway()">%s</button>
 
83
          </div>
 
84
      </div>
70
85
  </div>
71
 
</div>
72
86
</body>
73
87
</html>