jquery.steps.css 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. /*
  2. Common
  3. */
  4. .wizard,
  5. .tabcontrol
  6. {
  7. display: block;
  8. width: 100%;
  9. overflow: hidden;
  10. }
  11. .wizard a,
  12. .tabcontrol a
  13. {
  14. outline: 0;
  15. }
  16. .wizard ul,
  17. .tabcontrol ul
  18. {
  19. list-style: none !important;
  20. padding: 0;
  21. margin: 0;
  22. }
  23. .wizard ul > li,
  24. .tabcontrol ul > li
  25. {
  26. display: block;
  27. padding: 0;
  28. }
  29. /* Accessibility */
  30. .wizard > .steps .current-info,
  31. .tabcontrol > .steps .current-info
  32. {
  33. position: absolute;
  34. left: -999em;
  35. }
  36. .wizard > .content > .title,
  37. .tabcontrol > .content > .title
  38. {
  39. position: absolute;
  40. left: -999em;
  41. }
  42. /*
  43. Wizard
  44. */
  45. .wizard > .steps
  46. {
  47. position: relative;
  48. display: block;
  49. width: 100%;
  50. }
  51. .wizard.vertical > .steps
  52. {
  53. display: inline;
  54. float: left;
  55. width: 30%;
  56. }
  57. .wizard > .steps .number
  58. {
  59. font-size: 1.429em;
  60. }
  61. .wizard > .steps > ul > li
  62. {
  63. width: 25%;
  64. }
  65. .wizard > .steps > ul > li,
  66. .wizard > .actions > ul > li
  67. {
  68. float: left;
  69. }
  70. .wizard.vertical > .steps > ul > li
  71. {
  72. float: none;
  73. width: 100%;
  74. }
  75. .wizard > .steps a,
  76. .wizard > .steps a:hover,
  77. .wizard > .steps a:active
  78. {
  79. display: block;
  80. width: auto;
  81. margin: 0 0.5em 0.5em;
  82. padding: 1em 1em;
  83. text-decoration: none;
  84. -webkit-border-radius: 5px;
  85. -moz-border-radius: 5px;
  86. border-radius: 5px;
  87. }
  88. .wizard > .steps .disabled a,
  89. .wizard > .steps .disabled a:hover,
  90. .wizard > .steps .disabled a:active
  91. {
  92. background: #eee;
  93. color: #aaa;
  94. cursor: default;
  95. }
  96. .wizard > .steps .current a,
  97. .wizard > .steps .current a:hover,
  98. .wizard > .steps .current a:active
  99. {
  100. background: #2184be;
  101. color: #fff;
  102. cursor: default;
  103. }
  104. .wizard > .steps .done a,
  105. .wizard > .steps .done a:hover,
  106. .wizard > .steps .done a:active
  107. {
  108. background: #9dc8e2;
  109. color: #fff;
  110. }
  111. .wizard > .steps .error a,
  112. .wizard > .steps .error a:hover,
  113. .wizard > .steps .error a:active
  114. {
  115. background: #ff3111;
  116. color: #fff;
  117. }
  118. .wizard > .content
  119. {
  120. background: #eee;
  121. display: block;
  122. margin: 0.5em;
  123. min-height: 35em;
  124. overflow: hidden;
  125. position: relative;
  126. width: auto;
  127. -webkit-border-radius: 5px;
  128. -moz-border-radius: 5px;
  129. border-radius: 5px;
  130. }
  131. .wizard.vertical > .content
  132. {
  133. display: inline;
  134. float: left;
  135. margin: 0 2.5% 0.5em 2.5%;
  136. width: 65%;
  137. }
  138. .wizard > .content > .body
  139. {
  140. float: left;
  141. position: absolute;
  142. width: 95%;
  143. height: 95%;
  144. padding: 2.5%;
  145. }
  146. .wizard > .content > .body ul
  147. {
  148. list-style: disc !important;
  149. }
  150. .wizard > .content > .body ul > li
  151. {
  152. display: list-item;
  153. }
  154. .wizard > .content > .body > iframe
  155. {
  156. border: 0 none;
  157. width: 100%;
  158. height: 100%;
  159. }
  160. .wizard > .content > .body input
  161. {
  162. display: block;
  163. border: 1px solid #ccc;
  164. }
  165. .wizard > .content > .body input[type="checkbox"]
  166. {
  167. display: inline-block;
  168. }
  169. .wizard > .content > .body input.error
  170. {
  171. background: rgb(251, 227, 228);
  172. border: 1px solid #fbc2c4;
  173. color: #8a1f11;
  174. }
  175. .wizard > .content > .body label
  176. {
  177. display: inline-block;
  178. margin-bottom: 0.5em;
  179. }
  180. .wizard > .content > .body label.error
  181. {
  182. color: #8a1f11;
  183. display: inline-block;
  184. margin-left: 1.5em;
  185. }
  186. .wizard > .actions
  187. {
  188. position: relative;
  189. display: block;
  190. text-align: right;
  191. width: 100%;
  192. }
  193. .wizard.vertical > .actions
  194. {
  195. display: inline;
  196. float: right;
  197. margin: 0 2.5%;
  198. width: 95%;
  199. }
  200. .wizard > .actions > ul
  201. {
  202. display: inline-block;
  203. text-align: right;
  204. }
  205. .wizard > .actions > ul > li
  206. {
  207. margin: 0 0.5em;
  208. }
  209. .wizard.vertical > .actions > ul > li
  210. {
  211. margin: 0 0 0 1em;
  212. }
  213. .wizard > .actions a,
  214. .wizard > .actions a:hover,
  215. .wizard > .actions a:active
  216. {
  217. background: #2184be;
  218. color: #fff;
  219. display: block;
  220. padding: 0.5em 1em;
  221. text-decoration: none;
  222. -webkit-border-radius: 5px;
  223. -moz-border-radius: 5px;
  224. border-radius: 5px;
  225. }
  226. .wizard > .actions .disabled a,
  227. .wizard > .actions .disabled a:hover,
  228. .wizard > .actions .disabled a:active
  229. {
  230. background: #eee;
  231. color: #aaa;
  232. }
  233. .wizard > .loading
  234. {
  235. }
  236. .wizard > .loading .spinner
  237. {
  238. }
  239. /*
  240. Tabcontrol
  241. */
  242. .tabcontrol > .steps
  243. {
  244. position: relative;
  245. display: block;
  246. width: 100%;
  247. }
  248. .tabcontrol > .steps > ul
  249. {
  250. position: relative;
  251. margin: 6px 0 0 0;
  252. top: 1px;
  253. z-index: 1;
  254. }
  255. .tabcontrol > .steps > ul > li
  256. {
  257. float: left;
  258. margin: 5px 2px 0 0;
  259. padding: 1px;
  260. -webkit-border-top-left-radius: 5px;
  261. -webkit-border-top-right-radius: 5px;
  262. -moz-border-radius-topleft: 5px;
  263. -moz-border-radius-topright: 5px;
  264. border-top-left-radius: 5px;
  265. border-top-right-radius: 5px;
  266. }
  267. .tabcontrol > .steps > ul > li:hover
  268. {
  269. background: #edecec;
  270. border: 1px solid #bbb;
  271. padding: 0;
  272. }
  273. .tabcontrol > .steps > ul > li.current
  274. {
  275. background: #fff;
  276. border: 1px solid #bbb;
  277. border-bottom: 0 none;
  278. padding: 0 0 1px 0;
  279. margin-top: 0;
  280. }
  281. .tabcontrol > .steps > ul > li > a
  282. {
  283. color: #5f5f5f;
  284. display: inline-block;
  285. border: 0 none;
  286. margin: 0;
  287. padding: 10px 30px;
  288. text-decoration: none;
  289. }
  290. .tabcontrol > .steps > ul > li > a:hover
  291. {
  292. text-decoration: none;
  293. }
  294. .tabcontrol > .steps > ul > li.current > a
  295. {
  296. padding: 15px 30px 10px 30px;
  297. }
  298. .tabcontrol > .content
  299. {
  300. position: relative;
  301. display: inline-block;
  302. width: 100%;
  303. height: 35em;
  304. overflow: hidden;
  305. border-top: 1px solid #bbb;
  306. padding-top: 20px;
  307. }
  308. .tabcontrol > .content > .body
  309. {
  310. float: left;
  311. position: absolute;
  312. width: 95%;
  313. height: 95%;
  314. padding: 2.5%;
  315. }
  316. .tabcontrol > .content > .body ul
  317. {
  318. list-style: disc !important;
  319. }
  320. .tabcontrol > .content > .body ul > li
  321. {
  322. display: list-item;
  323. }