avm99963 | 04def3e | 2016-11-27 22:53:05 +0100 | [diff] [blame^] | 1 | <!doctype html> |
| 2 | <html> |
| 3 | <head> |
| 4 | <meta charset="utf-8"> |
| 5 | <style type="text/css"> |
| 6 | body { |
| 7 | font-family: arial, Verdana; |
| 8 | font-size: 12px; |
| 9 | width: auto; |
| 10 | overflow: visible; |
| 11 | margin-bottom: 2px; |
| 12 | } |
| 13 | .menu { |
| 14 | color: #3d5d6a; |
| 15 | line-height: 26px; |
| 16 | text-indent: .5em; |
| 17 | float: left; |
| 18 | white-space: nowrap; |
| 19 | background-repeat: no-repeat no-repeat; |
| 20 | background-position: 6px 5px; |
| 21 | } |
| 22 | .text { |
| 23 | float: left; |
| 24 | margin-left: 26px; |
| 25 | } |
| 26 | .shortcut { |
| 27 | color: #A1A192; |
| 28 | float: left; |
| 29 | margin-left: 26px; |
| 30 | display: none; |
| 31 | } |
| 32 | .menuI { |
| 33 | display: none; |
| 34 | } |
| 35 | ul { |
| 36 | list-style: none; |
| 37 | margin: 0px; |
| 38 | padding: 0px; |
| 39 | } |
| 40 | li { |
| 41 | list-style: none; |
| 42 | cursor: pointer; |
| 43 | margin: 0px; |
| 44 | padding: 0px; |
| 45 | clear: both; |
| 46 | overflow: hidden; |
| 47 | border: 1px solid white; |
| 48 | } |
| 49 | li:hover { |
| 50 | border-radius: 3px 3px; |
| 51 | background: -webkit-gradient(linear, left top, left bottom, |
| 52 | color-stop(0, #fff), color-stop(0.4, hsl(215, 67%, 97%)), |
| 53 | color-stop(0.41, hsl(213, 48%, 95%))); |
| 54 | border: solid 1px #c5cdd3; |
| 55 | } |
| 56 | #loadDiv { |
| 57 | color: #3d5d6a; |
| 58 | display: none; |
| 59 | font-weight: bold; |
| 60 | font-family: Verdana, simsun; |
| 61 | font-size: 12px; |
| 62 | margin-top: 20px; |
| 63 | line-height: 40px; |
| 64 | text-align: center; |
| 65 | } |
| 66 | #tip { |
| 67 | color: #3d5d6a; |
| 68 | font-size: 12px; |
| 69 | font-family: Verdana, simsun; |
| 70 | text-align: left; |
| 71 | } |
| 72 | .separator { |
| 73 | display: none; |
| 74 | width: 100%; |
| 75 | border-top: 1px solid #ddd; |
| 76 | margin: 5px 0; |
| 77 | } |
| 78 | #option { |
| 79 | display: none; |
| 80 | } |
| 81 | #optionItem { |
| 82 | margin-left: 26px; |
| 83 | } |
| 84 | </style> |
| 85 | </head> |
| 86 | <body> |
| 87 | <div id="loadDiv" ><img src="images/loading.gif" alt=""> |
| 88 | <div id="capturing"></div> |
| 89 | </div> |
| 90 | <div id="tip"></div> |
| 91 | <div id="item"> |
| 92 | <ul> |
| 93 | <li id="captureSpecialPageItem" class="menuI"> |
| 94 | <div class="menu" id="captureSpecialPage" |
| 95 | style="background-image: url(images/screen.png);"> |
| 96 | <span class="text" id="captureSpecialPageText"></span> |
| 97 | </div> |
| 98 | </li> |
| 99 | <li id="captureAreaItem" class="menuI"> |
| 100 | <div class="menu" id="captureArea" |
| 101 | style="background-image: url(images/custom.png);"> |
| 102 | <span class="text" id="captureAreaText"></span> |
| 103 | <span class="shortcut" id="captureAreaShortcut"></span> |
| 104 | </div> |
| 105 | </li> |
| 106 | <li id="captureWindowItem" class="menuI"> |
| 107 | <div class="menu" id="captureWindow" |
| 108 | style="background-image: url(images/screen.png);"> |
| 109 | <span class="text" id="captureWindowText"></span> |
| 110 | <span class="shortcut" id="captureWindowShortcut"></span> |
| 111 | </div> |
| 112 | </li> |
| 113 | <li id="captureWebpageItem" class="menuI"> |
| 114 | <div class="menu" id="captureWebpage" |
| 115 | style="background-image: url(images/whole.png);"> |
| 116 | <span class="text" id="captureWebpageText"></span> |
| 117 | <span class="shortcut" id="captureWebpageShortcut"</span> |
| 118 | </div> |
| 119 | </li> |
| 120 | <div id="separatorItem" class="separator"></div> |
| 121 | <li id="option"> |
| 122 | <div id="optionItem" class="menu"></div> |
| 123 | </li> |
| 124 | </ul> |
| 125 | </div> |
| 126 | <script src="js/hotkey_storage.js"></script> |
| 127 | <script src="js/popup.js"></script> |
| 128 | </body> |
| 129 | </html> |