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

Unified Diff: html/templates/NotificationWindow.html

Issue 6505394822184960: Issue 1109 - Support notifications (Closed)
Patch Set: improve ReplaceMulti and change loading of html template Created June 29, 2015, 11:09 a.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 | « adblockplus.gyp ('k') | installer/src/msi/adblockplusie.wxs » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: html/templates/NotificationWindow.html
diff --git a/html/templates/NotificationWindow.html b/html/templates/NotificationWindow.html
new file mode 100644
index 0000000000000000000000000000000000000000..abbc2b43b75672a28528746221ad7b9f4520159e
--- /dev/null
+++ b/html/templates/NotificationWindow.html
@@ -0,0 +1,64 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta http-equiv="x-ua-compatible" content="IE=8">
+ <style>
+ * {
+ cursor: default;
+ }
+
+ a {
+ cursor: pointer;
+ }
+
+ html, body, div {
+ margin: 0;
+ }
+ .caption {
+ background-color: #eeeeee;
+ min-height: 18px;
+ clear: both;
+ }
+ .closeButton {
+ background-color: grey;
+ color: white;
+ font-weight: bold;
+ font-family: "Consolas, monaco, monospace";
+ text-decoration: none;
+ width: 18px;
+ height: 18px;
+ vertical-align: middle;
+ text-align: center;
+ margin-right: 10px;
+ cursor: default;
+ }
+ .closeButton:hover {
+ background-color: red;
+ text-decoration: none;
+ }
+ .title {
+ font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
+ font-size: 14px;
+ font-style: normal;
+ font-weight: 400;
+ line-height: 15.4px;
+ padding: 5px 5px 2px 10px;
+ }
+ .body {
+ font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ font-weight: 400;
+ overflow-x: hidden;
+ overflow-y: auto;
+ padding: 5px;
+ }
+ </style>
+ </head>
+ <body>
+ <div class="caption">
+ <a class="closeButton" style="float: right;" href="#">&times;</a>
+ <div class="title"><!--Title--></div>
+ </div>
+ <div class="body"><!--Body--></div>
+ </body>
+</html>
« no previous file with comments | « adblockplus.gyp ('k') | installer/src/msi/adblockplusie.wxs » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld