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

Unified Diff: chrome/common/extensions/docs/examples/extensions/calendar/views/options.html

Issue 4996001: Adding anujb's calendar extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions
Patch Set: Created 10 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/docs/examples/extensions/calendar/views/background.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/examples/extensions/calendar/views/options.html
diff --git a/chrome/common/extensions/docs/examples/extensions/calendar/views/options.html b/chrome/common/extensions/docs/examples/extensions/calendar/views/options.html
new file mode 100644
index 0000000000000000000000000000000000000000..1cc70c2bc1fb0b6b1785d63ea2d9d5d4dd8813ae
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/extensions/calendar/views/options.html
@@ -0,0 +1,87 @@
+<!DOCTYPE html>
+<!--
+ * Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this
+ * source code is governed by a BSD-style license that can be found in the
+ * LICENSE file.
+-->
+<html>
+<head>
+ <title id=optionsTitle></title>
+ <script src="../javascript/options.js"></script>
+ <script src="../javascript/util.js"></script>
+ <style>
+ #content {
+ background-color: white;
+ border: 4px solid #B5C7DE;
+ border-radius: 12px;
+ margin: 40px auto 20px;
+ padding: 8px;
+ width: 600px;
+ }
+ .option_row {
+ clear: left;
+ padding: 2.5em 1em 0;
+ text-align:center
+ }
+ #status {
+ background-color: rgb(255, 241, 168);
+ display: none;
+ margin-left: 3px;
+ padding: 1px 2px;
+ text-align: center;
+ font-size: 15px;
+ color: #000;
+ }
+ #multiCalendarText {
+ font-size: 15px;
+ color: #000;
+ }
+ body {
+ background-color: "#ebeff9";
+ }
+ #logo {
+ font-size: 20px;
+ text-align: center;
+ }
+ #extensionName {
+ color: #444;
+ }
+ </style>
+
+</head>
+<body>
+ <div id="content">
+ <div id = "logo">
+ <img src="../images/icon-128.gif" width="48">&nbsp;&nbsp;&nbsp;
+ <img src="../images/calendar_logo.gif" id="imageTooltip" title="" alt="">
+ <br>
+ <label id="extensionName" ></label>
+ </div>
+
+ <div class="option_row">
+ <div>
+ <table cellpadding=1 width=100%>
+ <tr>
+ <td width="15%">
+ &nbsp;
+ </td>
+ <td width="5%">
+ <input type="checkbox" id="multiCalendar" name="multiCalendar" onclick="save()" title="">
+ </td>
+ <td width="40%" align="left">
+ <span id="multiCalendarText" title=""></span>
+ </td>
+ <td width="30%">
+ <label id="status"></label>
+ </td>
+ <td width="10%">
+ &nbsp;
+ </td>
+ </tr>
+ </table>
+ <br>
+ </div>
+ </div>
+ </div>
+</body>
+</html>
« no previous file with comments | « chrome/common/extensions/docs/examples/extensions/calendar/views/background.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698