jquery.steps.css 5.5 KB

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