Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: chrome/browser/resources/supervised_user_block_interstitial.html

Issue 1617293002: Putting the feedback section of the block interstitial to the correct place based on the mocks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta name="viewport" content="width=device-width"> 4 <meta name="viewport" content="width=device-width">
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <title i18n-content="blockPageTitle"></title> 6 <title i18n-content="blockPageTitle"></title>
7 <link rel="stylesheet" href="../../../ui/webui/resources/css/widgets.css"> 7 <link rel="stylesheet" href="../../../ui/webui/resources/css/widgets.css">
8 <link rel="stylesheet" href="supervised_user_block_interstitial.css"> 8 <link rel="stylesheet" href="supervised_user_block_interstitial.css">
9 <script src="../../../ui/webui/resources/js/cr.js"></script> 9 <script src="../../../ui/webui/resources/js/cr.js"></script>
10 <script src="../../../ui/webui/resources/js/util.js"></script> 10 <script src="../../../ui/webui/resources/js/util.js"></script>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 </a> 45 </a>
46 <a id="hide-details-link" i18n-content="hideDetailsLink" 46 <a id="hide-details-link" i18n-content="hideDetailsLink"
47 hidden class="button"></a> 47 hidden class="button"></a>
48 <a id="back-button" i18n-content="backButton" 48 <a id="back-button" i18n-content="backButton"
49 hidden class="button"></a> 49 hidden class="button"></a>
50 </div> 50 </div>
51 <div id="request-access-button" class="button" 51 <div id="request-access-button" class="button"
52 i18n-content="requestAccessButton"> 52 i18n-content="requestAccessButton">
53 </div> 53 </div>
54 </div> 54 </div>
55 <h1> 55 <h1>
Marc Treib 2016/01/22 00:35:52 Remove the empty h1
atanasova 2016/01/22 19:32:24 Done.
56 <a id="feedback-link" is="action-link" i18n-content="feedbackLink"></a>
57 </h1> 56 </h1>
58 <div id="details" hidden> 57 <div id="details" hidden>
59 <p id="details-header" i18n-content="blockReasonHeader"></p> 58 <p id="details-header" i18n-content="blockReasonHeader"></p>
60 <p id="details-message" i18n-content="blockReasonMessage"></p> 59 <p id="details-message" i18n-content="blockReasonMessage"></p>
60 <p id="feedback"></p>
61 </div> 61 </div>
62 </div> 62 </div>
63 </body> 63 </body>
64 </html> 64 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698