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

Unified Diff: notification.html

Issue 11161031: Show notifications on startup (Chrome) (Closed)
Patch Set: Addressed issues Created July 23, 2013, 12:51 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.opera ('k') | notification.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: notification.html
===================================================================
new file mode 100644
--- /dev/null
+++ b/notification.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ body
+ {
+ background-color: #f8f6f2;
+ font-family: Arial, sans;
+ font-size: 12px;
+ }
+
+ #notification
+ {
+ position: absolute;
+ top: 5px;
+ left: 65px;
+ }
+
+ #notification>h1
+ {
+ font-size: 16px;
+ }
+
+ #notification>*
+ {
+ margin: 5px;
+ }
+ </style>
+ <script src="notification.js"></script>
+ </head>
+ <body>
+ <img src="icons/abp-48.png">
+ <div id="notification">
+ <h1 id="title"></h1>
+ <p id="message"></p>
+ </div>
+ </body>
+</html>
« no previous file with comments | « metadata.opera ('k') | notification.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld