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: fix obtaining of DPI value of content (NotificationWindow) of NotificationBorderWindow Created Aug. 18, 2015, 9:43 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
Index: html/templates/NotificationWindow.html
diff --git a/html/templates/NotificationWindow.html b/html/templates/NotificationWindow.html
new file mode 100644
index 0000000000000000000000000000000000000000..9aed4d86a0361f136b949c7631a0de597caffbaf
--- /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: white;
+ 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 {
+ color: #000000;
+ font-family: Arial, sans-serif;
+ font-size: 16px;
+ font-weight: bold;
+ padding: 16px 20px 0px 0px;
+ }
+ .body {
+ font-family: Arial, sans-serif;
+ font-size: 12px;
+ font-weight: normal;
+ overflow-x: hidden;
+ overflow-y: auto;
+ text-align: justify;
+ padding: 2px 20px 20px 0px;
+ }
+ </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') | src/engine/Main.cpp » ('J')

Powered by Google App Engine
This is Rietveld