introjs.min.css 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. .introjs-overlay{
  2. position:absolute;
  3. z-index:999999;
  4. background-color:#000;
  5. opacity:0;
  6. background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  7. background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.4)),color-stop(100%,rgba(0,0,0,0.9)));
  8. background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);background:radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  9. filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#66000000',endColorstr='#e6000000',GradientType=1);-ms-filter:"alpha(opacity=50)";
  10. filter:alpha(opacity=50);-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-ms-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out
  11. }
  12. .introjs-fixParent {
  13. z-index: auto !important;
  14. opacity: 1.0 !important;
  15. }
  16. .introjs-showElement, tr.introjs-showElement>td, tr.introjs-showElement>th {
  17. z-index: 9999999 !important;
  18. }
  19. .introjs-relativePosition, tr.introjs-showElement>td, tr.introjs-showElement>th {
  20. position: relative;
  21. }
  22. .introjs-helperLayer {
  23. position: absolute;
  24. z-index: 9999998;
  25. background-color: #FFF;
  26. background-color: rgba(255, 255, 255, .9);
  27. border: 1px solid #777;
  28. border: 1px solid rgba(0, 0, 0, .5);
  29. border-radius: 4px;
  30. box-shadow: 0 2px 15px rgba(0, 0, 0, .4);
  31. -webkit-transition: all .3s ease-out;
  32. -moz-transition: all .3s ease-out;
  33. -ms-transition: all .3s ease-out;
  34. -o-transition: all .3s ease-out;
  35. transition: all .3s ease-out;
  36. }
  37. .introjs-helperNumberLayer {
  38. position: absolute;
  39. top: -16px;
  40. left: -16px;
  41. z-index: 9999999999 !important;
  42. padding: 2px;
  43. font-family: Arial, verdana, tahoma;
  44. font-size: 13px;
  45. font-weight: bold;
  46. color: white;
  47. text-align: center;
  48. text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
  49. background: #ff3019;
  50. background: -webkit-linear-gradient(top, #ff3019 0, #cf0404 100%);
  51. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff3019), color-stop(100%, #cf0404));
  52. background: -moz-linear-gradient(top, #ff3019 0, #cf0404 100%);
  53. background: -ms-linear-gradient(top, #ff3019 0, #cf0404 100%);
  54. background: -o-linear-gradient(top, #ff3019 0, #cf0404 100%);
  55. background: linear-gradient(to bottom, #ff3019 0, #cf0404 100%);
  56. width: 20px;
  57. height: 20px;
  58. line-height: 20px;
  59. border: 3px solid white;
  60. border-radius: 50%;
  61. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3019', endColorstr='#cf0404', GradientType=0);
  62. filter: progid:DXImageTransform.Microsoft.Shadow(direction=135, strength=2, color=ff0000);
  63. box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
  64. }
  65. .introjs-arrow {
  66. border: 5px solid white;
  67. content: '';
  68. position: absolute;
  69. }
  70. .introjs-arrow.top {
  71. top: -10px;
  72. border-top-color: transparent;
  73. border-right-color: transparent;
  74. border-bottom-color: white;
  75. border-left-color: transparent;
  76. }
  77. .introjs-arrow.top-right {
  78. top: -10px;
  79. right: 10px;
  80. border-top-color: transparent;
  81. border-right-color: transparent;
  82. border-bottom-color: white;
  83. border-left-color: transparent;
  84. }
  85. .introjs-arrow.top-middle {
  86. top: -10px;
  87. left: 50%;
  88. margin-left: -5px;
  89. border-top-color: transparent;
  90. border-right-color: transparent;
  91. border-bottom-color: white;
  92. border-left-color: transparent;
  93. }
  94. .introjs-arrow.right {
  95. right: -10px;
  96. top: 10px;
  97. border-top-color: transparent;
  98. border-right-color: transparent;
  99. border-bottom-color: transparent;
  100. border-left-color: white;
  101. }
  102. .introjs-arrow.bottom {
  103. bottom: -10px;
  104. border-top-color: white;
  105. border-right-color: transparent;
  106. border-bottom-color: transparent;
  107. border-left-color: transparent;
  108. }
  109. .introjs-arrow.left {
  110. left: -10px;
  111. top: 10px;
  112. border-top-color: transparent;
  113. border-right-color: white;
  114. border-bottom-color: transparent;
  115. border-left-color: transparent;
  116. }
  117. .introjs-tooltip {
  118. position: absolute;
  119. padding: 10px;
  120. background-color: white;
  121. min-width: 200px;
  122. max-width: 300px;
  123. border-radius: 3px;
  124. box-shadow: 0 1px 10px rgba(0, 0, 0, .4);
  125. -webkit-transition: opacity .1s ease-out;
  126. -moz-transition: opacity .1s ease-out;
  127. -ms-transition: opacity .1s ease-out;
  128. -o-transition: opacity .1s ease-out;
  129. transition: opacity .1s ease-out;
  130. }
  131. .introjs-tooltipbuttons {
  132. text-align: right;
  133. }
  134. .introjs-button {
  135. position: relative;
  136. overflow: visible;
  137. display: inline-block;
  138. padding: .3em .8em;
  139. border: 1px solid #d4d4d4;
  140. margin: 0;
  141. text-decoration: none;
  142. text-shadow: 1px 1px 0 #fff;
  143. font: 11px/normal sans-serif;
  144. color: #333;
  145. white-space: nowrap;
  146. cursor: pointer;
  147. outline: 0;
  148. background-color: #ececec;
  149. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
  150. background-image: -moz-linear-gradient(#f4f4f4, #ececec);
  151. background-image: -o-linear-gradient(#f4f4f4, #ececec);
  152. background-image: linear-gradient(#f4f4f4, #ececec);
  153. -webkit-background-clip: padding;
  154. -moz-background-clip: padding;
  155. -o-background-clip: padding-box;
  156. -webkit-border-radius: .2em;
  157. -moz-border-radius: .2em;
  158. border-radius: .2em;
  159. zoom: 1;
  160. *display: inline;
  161. margin-top: 10px;
  162. }
  163. .introjs-button:hover {
  164. border-color: #bcbcbc;
  165. text-decoration: none;
  166. box-shadow: 0 1px 1px #e3e3e3;
  167. }
  168. .introjs-button:focus, .introjs-button:active {
  169. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ececec), to(#f4f4f4));
  170. background-image: -moz-linear-gradient(#ececec, #f4f4f4);
  171. background-image: -o-linear-gradient(#ececec, #f4f4f4);
  172. background-image: linear-gradient(#ececec, #f4f4f4);
  173. }
  174. .introjs-button::-moz-focus-inner {
  175. padding: 0;
  176. border: 0;
  177. }
  178. .introjs-skipbutton {
  179. margin-right: 5px;
  180. color: #7a7a7a;
  181. }
  182. .introjs-prevbutton {
  183. -webkit-border-radius: .2em 0 0 .2em;
  184. -moz-border-radius: .2em 0 0 .2em;
  185. border-radius: .2em 0 0 .2em;
  186. border-right: 0;
  187. }
  188. .introjs-nextbutton {
  189. -webkit-border-radius: 0 .2em .2em 0;
  190. -moz-border-radius: 0 .2em .2em 0;
  191. border-radius: 0 .2em .2em 0;
  192. }
  193. .introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus {
  194. color: #9a9a9a;
  195. border-color: #d4d4d4;
  196. box-shadow: none;
  197. cursor: default;
  198. background-color: #f4f4f4;
  199. background-image: none;
  200. text-decoration: none;
  201. }
  202. .introjs-bullets {
  203. text-align: center;
  204. }
  205. .introjs-bullets ul {
  206. clear: both;
  207. margin: 15px auto 0;
  208. padding: 0;
  209. display: inline-block;
  210. }
  211. .introjs-bullets ul li {
  212. list-style: none;
  213. float: left;
  214. margin: 0 2px;
  215. }
  216. .introjs-bullets ul li a {
  217. display: block;
  218. width: 6px;
  219. height: 6px;
  220. background: #ccc;
  221. border-radius: 10px;
  222. -moz-border-radius: 10px;
  223. -webkit-border-radius: 10px;
  224. text-decoration: none;
  225. }
  226. .introjs-bullets ul li a:hover {
  227. background: #999;
  228. }
  229. .introjs-bullets ul li a.active {
  230. background: #999;
  231. }
  232. .introjsFloatingElement {
  233. position: absolute;
  234. height: 0;
  235. width: 0;
  236. left: 50%;
  237. top: 50%
  238. }
  239. .tour-warning {
  240. color: #fff;
  241. font-weight: 400;
  242. background-color: #E95D4E;
  243. border: none;
  244. border-radius: 10px;
  245. font-size: 14px;
  246. line-height: 1.72222;
  247. }
  248. .tour-warning img{
  249. padding-right: .5em;
  250. }
  251. .tour-warning:hover,
  252. .tour-warning.hover,
  253. .tour-warning:focus,
  254. .tour-warning:active,
  255. .tour-warning.active,
  256. .open > .dropdown-toggle.btn-warning {
  257. color: #fff;
  258. background-color: #EC7063;
  259. }
  260. .tour-warning:active,
  261. .tour-warning.active,
  262. .open > .dropdown-toggle.tour-warning {
  263. background: #EC7063;
  264. }
  265. .tour-warning.disabled,
  266. .tour-warning[disabled],
  267. fieldset[disabled] .tour-warning,
  268. .tour-warning.disabled:hover,
  269. .tour-warning[disabled]:hover,
  270. fieldset[disabled] .tour-warning:hover,
  271. .tour-warning.disabled.hover,
  272. .tour-warning[disabled].hover,
  273. fieldset[disabled] .tour-warning.hover,
  274. .tour-warning.disabled:focus,
  275. .tour-warning[disabled]:focus,
  276. fieldset[disabled] .tour-warning:focus,
  277. .tour-warning.disabled:active,
  278. .tour-warning[disabled]:active,
  279. fieldset[disabled] .tour-warning:active,
  280. .tour-warning.disabled.active,
  281. .tour-warning[disabled].active,
  282. fieldset[disabled] .tour-warning.active {
  283. background-color: #bdc3c7;
  284. border-color: #f1c40f;
  285. }
  286. .tour-warning .badge {
  287. color: #f1c40f;
  288. background-color: #fff;
  289. }