Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: notification.html

Issue 5749582424178688: Ported over anti-adblock message notification (Closed)
Patch Set: Created March 21, 2014, 1:29 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « metadata.common ('k') | notification.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: notification.html
===================================================================
--- a/notification.html
+++ b/notification.html
@@ -7,6 +7,8 @@
background-color: #f8f6f2;
font-family: Arial, sans;
font-size: 12px;
+ /* Notifications are not resized dynamically so we need to make it as big as possible */
+ height: 144px;
}
#notification
@@ -28,6 +30,7 @@
</style>
<script src="ext/common.js"></script>
<script src="ext/background.js"></script>
+ <script src="i18n.js"></script>
<script src="notification.js"></script>
</head>
<body>
@@ -35,6 +38,11 @@
<div id="notification">
<h1 id="notification-title"></h1>
<p id="notification-message"></p>
+ <div id="notification-question">
+ <button id="notification-yes" class="i18n_overlay_notification_button_yes"></button>
+ <button id="notification-no" class="i18n_overlay_notification_button_no"></button>
+ <a id="notification-close" href="#" class="i18n_overlay_notification_button_close"></a>
+ </div>
</div>
</body>
</html>
« no previous file with comments | « metadata.common ('k') | notification.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld