产品原型
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

291 lines
5.5 KiB

4 years ago
  1. /* so the window resize fires within a frame in IE7 */
  2. html, body {
  3. height: 100%;
  4. }
  5. .mobileFrameCursor div * {
  6. cursor: inherit !important;
  7. }
  8. a {
  9. color: inherit;
  10. }
  11. p {
  12. margin: 0px;
  13. text-rendering: optimizeLegibility;
  14. font-feature-settings: "kern" 1;
  15. -webkit-font-feature-settings: "kern";
  16. -moz-font-feature-settings: "kern";
  17. -moz-font-feature-settings: "kern=1";
  18. font-kerning: normal;
  19. }
  20. ul {
  21. margin:0px;
  22. }
  23. iframe {
  24. background: #FFFFFF;
  25. }
  26. /* to match IE with C, FF */
  27. input {
  28. padding: 1px 0px 1px 0px;
  29. box-sizing: border-box;
  30. -moz-box-sizing: border-box;
  31. }
  32. input[type=text]::-ms-clear {
  33. width: 0;
  34. height: 0;
  35. display: none;
  36. }
  37. textarea {
  38. margin: 0px;
  39. box-sizing: border-box;
  40. -moz-box-sizing: border-box;
  41. }
  42. .focused:focus, .selectedFocused:focus {
  43. outline: none;
  44. }
  45. div.intcases {
  46. font-family: arial;
  47. font-size: 12px;
  48. text-align:left;
  49. border:1px solid #AAA;
  50. background:#FFF none repeat scroll 0% 0%;
  51. z-index:9999;
  52. visibility:hidden;
  53. position:absolute;
  54. padding: 0px;
  55. border-radius: 3px;
  56. white-space: nowrap;
  57. }
  58. div.intcaselink {
  59. cursor: pointer;
  60. padding: 3px 8px 3px 8px;
  61. margin: 5px;
  62. background:#EEE none repeat scroll 0% 0%;
  63. border:1px solid #AAA;
  64. border-radius: 3px;
  65. }
  66. div.refpageimage {
  67. position: absolute;
  68. left: 0px;
  69. top: 0px;
  70. font-size: 0px;
  71. width: 16px;
  72. height: 16px;
  73. cursor: pointer;
  74. background-image: url(images/newwindow.gif);
  75. background-repeat: no-repeat;
  76. }
  77. div.annnoteimage {
  78. position: absolute;
  79. left: 0px;
  80. top: 0px;
  81. font-size: 0px;
  82. /*width: 16px;
  83. height: 12px;*/
  84. cursor: help;
  85. /*background-image: url(images/note.gif);*/
  86. /*background-repeat: no-repeat;*/
  87. width: 13px;
  88. height: 12px;
  89. padding-top: 1px;
  90. text-align: center;
  91. background-color: #138CDD;
  92. -moz-box-shadow: 1px 1px 3px #aaa;
  93. -webkit-box-shadow: 1px 1px 3px #aaa;
  94. box-shadow: 1px 1px 3px #aaa;
  95. }
  96. div.annnoteline {
  97. display: inline-block;
  98. width: 9px;
  99. height: 1px;
  100. border-bottom: 1px solid white;
  101. margin-top: 1px;
  102. }
  103. div.annnotelabel {
  104. /*position: absolute;
  105. left: 0px;
  106. top: 0px;*/
  107. font-family: Helvetica,Arial;
  108. white-space: nowrap;
  109. padding-top: 1px;
  110. background-color: #fff849;
  111. font-size: 10px;
  112. font-weight: bold;
  113. line-height: 14px;
  114. margin-right: 3px;
  115. padding: 0px 4px;
  116. color: #000;
  117. -moz-box-shadow: 1px 1px 3px #aaa;
  118. -webkit-box-shadow: 1px 1px 3px #aaa;
  119. box-shadow: 1px 1px 3px #aaa;
  120. }
  121. div.annnote {
  122. display: flex;
  123. position: absolute;
  124. cursor: help;
  125. line-height: 14px;
  126. }
  127. .annotation {
  128. font-size: 12px;
  129. padding-left: 2px;
  130. margin-bottom: 5px;
  131. }
  132. .annotationName {
  133. /*font-size: 13px;
  134. font-weight: bold;
  135. margin-bottom: 3px;
  136. white-space: nowrap;*/
  137. font-family: 'Trebuchet MS';
  138. font-size: 14px;
  139. font-weight: bold;
  140. margin-bottom: 5px;
  141. white-space: nowrap;
  142. }
  143. .annotationValue {
  144. font-family: Arial, Helvetica, Sans-Serif;
  145. font-size: 12px;
  146. color: #4a4a4a;
  147. line-height: 21px;
  148. margin-bottom: 20px;
  149. }
  150. .noteLink {
  151. text-decoration: inherit;
  152. color: inherit;
  153. }
  154. .noteLink:hover {
  155. background-color: white;
  156. }
  157. /* this is a fix for the issue where dialogs jump around and takes the text-align from the body */
  158. .dialogFix {
  159. position:absolute;
  160. text-align:left;
  161. border: 1px solid #8f949a;
  162. }
  163. @keyframes pulsate {
  164. from {
  165. box-shadow: 0 0 10px #15d6ba;
  166. }
  167. to {
  168. box-shadow: 0 0 20px #15d6ba;
  169. }
  170. }
  171. @-webkit-keyframes pulsate {
  172. from {
  173. -webkit-box-shadow: 0 0 10px #15d6ba;
  174. box-shadow: 0 0 10px #15d6ba;
  175. }
  176. to {
  177. -webkit-box-shadow: 0 0 20px #15d6ba;
  178. box-shadow: 0 0 20px #15d6ba;
  179. }
  180. }
  181. @-moz-keyframes pulsate {
  182. from {
  183. -moz-box-shadow: 0 0 10px #15d6ba;
  184. box-shadow: 0 0 10px #15d6ba;
  185. }
  186. to {
  187. -moz-box-shadow: 0 0 20px #15d6ba;
  188. box-shadow: 0 0 20px #15d6ba;
  189. }
  190. }
  191. .legacyPulsateBorder {
  192. /*border: 5px solid #15d6ba;
  193. margin: -5px;*/
  194. -moz-box-shadow: 0 0 10px 3px #15d6ba;
  195. box-shadow: 0 0 10px 3px #15d6ba;
  196. }
  197. .pulsateBorder {
  198. animation-name: pulsate;
  199. animation-timing-function: ease-in-out;
  200. animation-duration: 0.9s;
  201. animation-iteration-count: infinite;
  202. animation-direction: alternate;
  203. -webkit-animation-name: pulsate;
  204. -webkit-animation-timing-function: ease-in-out;
  205. -webkit-animation-duration: 0.9s;
  206. -webkit-animation-iteration-count: infinite;
  207. -webkit-animation-direction: alternate;
  208. -moz-animation-name: pulsate;
  209. -moz-animation-timing-function: ease-in-out;
  210. -moz-animation-duration: 0.9s;
  211. -moz-animation-iteration-count: infinite;
  212. -moz-animation-direction: alternate;
  213. }
  214. .ax_default_hidden, .ax_default_unplaced{
  215. display: none;
  216. visibility: hidden;
  217. }
  218. .widgetNoteSelected {
  219. -moz-box-shadow: 0 0 10px 3px #138CDD;
  220. box-shadow: 0 0 10px 3px #138CDD;
  221. /*-moz-box-shadow: 0 0 20px #3915d6;
  222. box-shadow: 0 0 20px #3915d6;*/
  223. /*border: 3px solid #3915d6;*/
  224. /*margin: -3px;*/
  225. }
  226. .singleImg {
  227. display: none;
  228. visibility: hidden;
  229. }
  230. #ios-safari {
  231. overflow: auto;
  232. -webkit-overflow-scrolling: touch;
  233. }
  234. #ios-safari-html {
  235. display: block;
  236. overflow: auto;
  237. -webkit-overflow-scrolling: touch;
  238. position: absolute;
  239. top: 0;
  240. left: 0;
  241. right: 0;
  242. bottom: 0;
  243. }
  244. #ios-safari-fixed {
  245. position: absolute;
  246. pointer-events: none;
  247. width: initial;
  248. }
  249. #ios-safari-fixed div {
  250. pointer-events: auto;
  251. }