Guest User

Untitled

a guest
Nov 23rd, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.91 KB | None | 0 0
  1. /** Global item styles **/
  2.  
  3. .annotorious-opacity-fade {
  4. -moz-transition-property: opacity;
  5. -moz-transition-duration: 0.5s;
  6. -moz-transition-delay: 0s;
  7. -webkit-transition-property: opacity;
  8. -webkit-transition-duration: 0.5s;
  9. -webkit-transition-delay: 0s;
  10. -o-transition-property: opacity;
  11. -o-transition-duration: 0.5s;
  12. -o-transition-delay: 0s;
  13. transition-property: opacity;
  14. transition-duration: 0.5s;
  15. transition-delay: 0s;
  16. }
  17.  
  18. .annotorious-item-focus {
  19. opacity:1.0;
  20. }
  21.  
  22. .annotorious-item-unfocus {
  23. opacity:0.4;
  24. }
  25.  
  26. /** Hint/help popup **/
  27.  
  28. .annotorious-hint-msg {
  29. background-color:rgba(0,0,0,0.5);
  30. margin:4px;
  31. padding:8px 15px 8px 30px;
  32. font-family: 'lucida grande',tahoma,verdana,arial,sans-serif;
  33. line-height: normal;
  34. font-size:12px;
  35. color:#fff;
  36. border-radius:4px;
  37. -moz-border-radius:4px;
  38. -webkit-border-radius:4px;
  39. -khtml-border-radius:4px;
  40. }
  41.  
  42. .annotorious-hint-icon {
  43. position:absolute;
  44. top:6px;
  45. left: 5px;
  46. background:url('feather_icon.png');
  47. background-repeat:no-repeat;
  48. width:19px;
  49. height:22px;
  50. margin:2px 4px 0px 6px;
  51. }
  52.  
  53. /** Popup **/
  54.  
  55. .annotorious-popup {
  56. line-height:135%;
  57. font-family:Arial, Verdana, Sans;
  58. font-size:12px;
  59. color:#000;
  60. background-color:#fff;
  61. border:1px solid #ccc;
  62. padding:9px 8px;
  63. word-wrap:break-word;
  64. width:180px;
  65. border-radius: 3px;
  66. -moz-border-radius: 3px;
  67. -webkit-border-radius: 3px;
  68. -khtml-border-radius: 3px;
  69. -moz-box-shadow:0px 5px 15px #111;
  70. -webkit-box-shadow:0px 5px 15px #111;
  71. box-shadow:0px 5px 15px #111;
  72.  
  73. -moz-transition-property: opacity;
  74. -moz-transition-duration: 0.5s;
  75. -moz-transition-delay: 0s;
  76. -webkit-transition-property: opacity;
  77. -webkit-transition-duration: 0.5s;
  78. -webkit-transition-delay: 0s;
  79. -o-transition-property: opacity;
  80. -o-transition-duration: 0.5s;
  81. -o-transition-delay: 0s;
  82. transition-property: opacity;
  83. transition-duration: 0.5s;
  84. transition-delay: 0s;
  85. }
  86.  
  87. .annotorious-popup-empty {
  88. color:#999;
  89. font-style:italic;
  90. }
  91.  
  92. .annotorious-popup-buttons {
  93. float:right;
  94. margin:0px 0px 1px 10px;
  95. height:16px;
  96.  
  97. -moz-transition-property: opacity;
  98. -moz-transition-duration: 1s;
  99. -moz-transition-delay: 0s;
  100. -webkit-transition-property: opacity;
  101. -webkit-transition-duration: 1s;
  102. -webkit-transition-delay: 0s;
  103. -o-transition-property: opacity;
  104. -o-transition-duration: 1s;
  105. -o-transition-delay: 0s;
  106. transition-property: opacity;
  107. transition-duration: 1s;
  108. transition-delay: 0s;
  109. }
  110.  
  111. .annotorious-popup-button {
  112. font-size:10px;
  113. text-decoration:none;
  114. display:inline-block;
  115. color:#000;
  116. font-weight:bold;
  117. margin-left:5px;
  118. opacity:0.4;
  119.  
  120. -moz-transition-property: opacity;
  121. -moz-transition-duration: 0.5s;
  122. -moz-transition-delay: 0s;
  123. -webkit-transition-property: opacity;
  124. -webkit-transition-duration: 0.5s;
  125. -webkit-transition-delay: 0s;
  126. -o-transition-property: opacity;
  127. -o-transition-duration: 0.5s;
  128. -o-transition-delay: 0s;
  129. transition-property: opacity;
  130. transition-duration: 0.5s;
  131. transition-delay: 0s;
  132. }
  133.  
  134. .annotorious-popup-button:hover {
  135. background-color:transparent;
  136. }
  137.  
  138. .annotorious-popup-button-active {
  139. opacity:0.9;
  140. }
  141.  
  142. .annotorious-popup-button-edit {
  143. background:url(pencil.png);
  144. width:16px;
  145. height:16px;
  146. text-indent:100px;
  147. overflow:hidden;
  148. }
  149.  
  150. .annotorious-popup-button-delete {
  151. background:url(delete.png);
  152. width:16px;
  153. height:16px;
  154. text-indent:100px;
  155. overflow:hidden;
  156. float:right;
  157. }
  158.  
  159. .annotorious-popup-field {
  160. border-top:1px solid #ccc;
  161. margin:6px 0px 0px 0px;
  162. padding-top:2px;
  163. }
  164.  
  165. /** Editor **/
  166.  
  167. .annotorious-editor {
  168. line-height: normal;
  169. padding:0px 0px 2px 0px;
  170. background-color:#f2f2f2;
  171. color:#000;
  172. opacity:0.97;
  173. border:1px solid #ccc;
  174. border-radius: 3px;
  175. -moz-border-radius: 3px;
  176. -webkit-border-radius: 3px;
  177. -khtml-border-radius: 3px;
  178. -moz-box-shadow:0px 5px 15px #111;
  179. -webkit-box-shadow:0px 5px 15px #111;
  180. box-shadow:0px 5px 15px #111;
  181. }
  182.  
  183. .annotorious-editor-text {
  184. border-width:0px 0px 1px 0px;
  185. border-style:solid;
  186. border-color:#ccc;
  187. line-height: normal;
  188. background-color:#fff;
  189. width:240px;
  190. height:50px;
  191. outline:none;
  192. font-family:Verdana, Arial;
  193. font-size:11px;
  194. padding:4px;
  195. margin:0px;
  196. color:#000;
  197. text-shadow:none;
  198. overflow-y:auto;
  199. display:block;
  200. }
  201.  
  202. .annotorious-editor-button-container {
  203. padding-top:2px;
  204. }
  205.  
  206. .annotorious-editor-button {
  207. float:right;
  208. line-height: normal;
  209. display:inline-block;
  210. text-align:center;
  211. text-decoration:none;
  212. font-family:Verdana, Arial;
  213. font-size:10px;
  214. border:1px solid #777;
  215. color:#ddd;
  216. padding:3px 8px;
  217. margin:1px 2px 0px 1px;
  218. cursor:pointer;
  219. cursor:hand;
  220. background:-webkit-gradient(linear, left top, left bottom, from(#888), to(#555));
  221. background:-moz-linear-gradient(top, #888, #555);
  222. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#555555');
  223. -moz-border-radius:2px;
  224. -webkit-border-radius:2px;
  225. -khtml-border-radius:2px;
  226. border-radius:2px;
  227. }
  228.  
  229. .annotorious-editor-button:hover {
  230. background:#999;
  231. }
  232.  
  233. .annotorious-editor-field {
  234. border-bottom:1px solid #ccc;
  235. margin:0px;
  236. background-color:#fff;
  237. padding:3px;
  238. font-family:Verdana, Arial;
  239. font-size:12px;
  240. }
  241.  
  242. /** OpenLayers module **/
  243. .annotorious-ol-boxmarker-outer {
  244. border:1px solid #000;
  245. }
  246.  
  247. .annotorious-ol-boxmarker-inner {
  248. border:1px solid #fff;
  249. -webkit-box-sizing: border-box;
  250. -moz-box-sizing: border-box;
  251. -ms-box-sizing: border-box;
  252. box-sizing: border-box;
  253. }
  254.  
  255. .annotorious-ol-hint {
  256. line-height: normal;
  257. font-family:Arial, Verdana, Sans;
  258. font-size:16px;
  259. color:#000;
  260. background-color:#fff;
  261. margin:0px;
  262. padding:9px;
  263. border-radius: 5px;
  264. -moz-border-radius: 5px;
  265. -webkit-border-radius: 5px;
  266. -khtml-border-radius: 5px;
  267. }
  268.  
  269. .annotorious-ol-hint-secondary {
  270. background-color:#fff000;
  271. }
  272.  
  273. canvas {
  274. z-index: 2;
  275. }
  276.  
  277. canvas.hidden {
  278. z-index: -1;
  279. visibility: hidden;
  280. }
  281.  
  282. html.hasTouch .annotator-viewer li .annotator-controls,
  283. html.hasTouch .annotator-viewer li .annotator-controls {
  284. opacity: 1;
  285. }
Add Comment
Please, Sign In to add comment