Home | History | Annotate | Download | only in views
      1 <!DOCTYPE html>
      2 <!--
      3  * Copyright (c) 2010 The Chromium Authors. All rights reserved.  Use of this
      4  * source code is governed by a BSD-style license that can be found in the
      5  * LICENSE file.
      6 -->
      7 <html>
      8 <head>
      9   <title id=optionsTitle></title>
     10   <script src="../javascript/options.js"></script>
     11   <script src="../javascript/util.js"></script>
     12   <style>
     13     #content {
     14       background-color: white;
     15       border: 4px solid #B5C7DE;
     16       border-radius: 12px;
     17       margin: 40px auto 20px;
     18       padding: 8px;
     19       width: 600px;
     20     }
     21     .option_row {
     22       clear: left;
     23       padding: 2.5em 1em 0;
     24       text-align:center
     25     }
     26     #status {
     27       background-color: rgb(255, 241, 168);
     28       display: none;
     29       margin-left: 3px;
     30       padding: 1px 2px;
     31       text-align: center;
     32       font-size: 15px;
     33       color: #000;
     34     }
     35     #multiCalendarText {
     36       font-size: 15px;
     37       color: #000;
     38     }
     39     body {
     40       background-color: "#ebeff9";
     41     }
     42     #logo {
     43       font-size: 20px;
     44       text-align: center;
     45     }
     46     #extensionName {
     47       color: #444;
     48     }
     49   </style>
     50 
     51 </head>
     52 <body>
     53   <div id="content">
     54     <div id = "logo">
     55       <img src="../images/icon-128.gif" width="48">&nbsp;&nbsp;&nbsp;
     56       <img src="../images/calendar_logo.gif" id="imageTooltip" title="" alt="">
     57       <br>
     58       <label id="extensionName" ></label>
     59     </div>
     60 
     61     <div class="option_row">
     62       <div>
     63         <table cellpadding=1 width=100%>
     64           <tr>
     65             <td width="15%">
     66               &nbsp;
     67             </td>
     68             <td width="5%">
     69               <input type="checkbox" id="multiCalendar" name="multiCalendar" onclick="save()" title="">
     70             </td>
     71             <td width="40%" align="left">
     72               <span id="multiCalendarText" title=""></span>
     73             </td>
     74             <td width="30%">
     75               <label id="status"></label>
     76             </td>
     77             <td width="10%">
     78               &nbsp;
     79             </td>
     80           </tr>
     81         </table>
     82         <br>
     83       </div>
     84     </div>
     85   </div>
     86 </body>
     87 </html>
     88