wizard_custom.scss 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516
  1. @import 'wizard_variables';
  2. .no-access-gutter {
  3. margin-top: 10px;
  4. display: flex;
  5. justify-content: flex-end;
  6. }
  7. .custom-wizard {
  8. background-color: initial;
  9. font-size: 1.1em;
  10. .wizard-step-contents {
  11. position: relative;
  12. display: flex;
  13. flex-direction: column;
  14. width: 100%;
  15. min-height: initial;
  16. }
  17. img.emoji {
  18. width: 20px;
  19. height: 20px;
  20. vertical-align: middle;
  21. }
  22. .wizard-step-title {
  23. flex: 0;
  24. }
  25. .wizard-step-description {
  26. flex: 0;
  27. p {
  28. line-height: 1.7;
  29. img {
  30. @extend img.emoji;
  31. }
  32. }
  33. i {
  34. margin-right: 7px;
  35. }
  36. ul li {
  37. margin: 10px 0;
  38. }
  39. .image-container {
  40. padding: 0 20px;
  41. margin: 50px 0;
  42. display: flex;
  43. justify-content: space-between;
  44. flex-wrap: wrap;
  45. a {
  46. cursor: pointer;
  47. }
  48. span {
  49. display: block;
  50. text-align: center;
  51. max-width: 140px;
  52. color: #333;
  53. }
  54. &.group {
  55. padding: 0;
  56. margin: 0;
  57. width: 130px;
  58. height: 130px;
  59. }
  60. }
  61. img.large {
  62. width: 150;
  63. padding: 25px;;
  64. }
  65. img.small {
  66. width: 100;
  67. padding: 15px;
  68. }
  69. img.x-small {
  70. width: 50px;
  71. height: 50px;
  72. padding: 3px;
  73. }
  74. label {
  75. display: block;
  76. text-align: center;
  77. }
  78. .inline-list > * {
  79. display: inline-block;
  80. }
  81. }
  82. .wizard-step-banner {
  83. width: initial;
  84. margin-bottom: 1em;
  85. img {
  86. max-height: 300px;
  87. }
  88. }
  89. .wizard-step-form {
  90. flex: auto;
  91. display: flex;
  92. flex-direction: column;
  93. width: 100%;
  94. }
  95. .wizard-field {
  96. &.tip {
  97. margin-top: auto;
  98. }
  99. label {
  100. display: flex;
  101. flex-flow: wrap;
  102. align-items: center;
  103. .label-value {
  104. width: 100%;
  105. p {
  106. margin: 0;
  107. }
  108. }
  109. .field-image {
  110. margin-right: 10px;
  111. img {
  112. width: 30px;
  113. height: 30px;
  114. }
  115. }
  116. .field-description {
  117. flex: 1;
  118. color: #333;
  119. margin-top: 0;
  120. p {
  121. margin: 0;
  122. line-height: 1.3em;
  123. }
  124. img {
  125. height: 15px;
  126. width: 15px;
  127. margin: 0 5px;
  128. }
  129. }
  130. }
  131. }
  132. .checkbox-field {
  133. display: flex;
  134. align-items: center;
  135. &> .input-area {
  136. order: 0;
  137. margin: 15px 20px !important;
  138. input {
  139. cursor: pointer;
  140. transform: scale(1.3);
  141. }
  142. }
  143. &> label {
  144. order: 1;
  145. }
  146. &> .field-description {
  147. margin-top: 0;
  148. order: 2;
  149. }
  150. }
  151. .control-group {
  152. display: inline-block;
  153. vertical-align: top;
  154. margin-right: 20px;
  155. .controls {
  156. margin: 5px 0;
  157. }
  158. input {
  159. width: 200px;
  160. line-height: 24px;
  161. }
  162. input[disabled] {
  163. background-color: #e9e9e9;
  164. border: #e9e9e9;
  165. }
  166. ul {
  167. padding: 0;
  168. }
  169. }
  170. .wizard-step-form .wizard-btn {
  171. display: block;
  172. margin: 20px 0;
  173. }
  174. .wizard-image-row .wizard-btn-upload {
  175. margin: 0;
  176. }
  177. .wizard-field-upload {
  178. .wizard-btn-upload-file {
  179. display: inline-block;
  180. position: relative;
  181. cursor: pointer;
  182. input {
  183. left: 0;
  184. right: 0;
  185. top: 0;
  186. bottom: 0;
  187. }
  188. }
  189. .filename {
  190. margin-left: 10px;
  191. }
  192. }
  193. .wizard-column .wizard-field .input-area {
  194. margin: 0.5em 0;
  195. }
  196. .combo-box {
  197. ul {
  198. padding: 0;
  199. }
  200. p {
  201. margin: 0;
  202. }
  203. }
  204. .wizard-buttons > a, .wizard-buttons > button, .spinner {
  205. display: inline-block;
  206. vertical-align: middle;
  207. }
  208. .spinner.small {
  209. margin-right: 10px;
  210. }
  211. }
  212. .step-message {
  213. position: absolute;
  214. top: 0;
  215. left: 0;
  216. right: 0;
  217. height: 0;
  218. line-height: 0;
  219. text-align: center;
  220. transition: all .2s;
  221. z-index: 2;
  222. &.success {
  223. height: 60px;
  224. line-height: 60px;
  225. background-color: #009900;
  226. color: #ffffff;
  227. }
  228. &.error {
  229. height: 60px;
  230. line-height: 60px;
  231. background-color: #e45735;
  232. color: #ffffff;
  233. }
  234. }
  235. .p-list-box {
  236. max-width: 550px;
  237. position: relative;
  238. margin: 10px 0;
  239. .spinner {
  240. position: absolute;
  241. right: 50%;
  242. top: 50%;
  243. }
  244. .p-text {
  245. margin-bottom: 5px;
  246. }
  247. ul {
  248. border: 1px solid #e9e9e9;
  249. padding: 0;
  250. margin: 0;
  251. list-style: none;
  252. height: 200px;
  253. overflow: scroll;
  254. }
  255. li {
  256. padding: 6px 12px;
  257. cursor: pointer;
  258. background-color: #fff;
  259. display: flex;
  260. border-top: 1px solid #e9e9e9;
  261. border-bottom: 1px solid #e9e9e9;
  262. &:hover, &.selected {
  263. background-color: #eee;
  264. }
  265. label {
  266. flex: 1 1 auto;
  267. cursor: pointer;
  268. }
  269. i {
  270. margin-right: 5px;
  271. }
  272. }
  273. .no-results {
  274. padding: 15px;
  275. }
  276. .default {
  277. margin: 0 auto;
  278. top: 50%;
  279. transform: translateY(-50%);
  280. position: absolute;
  281. width: 100%;
  282. text-align: center;
  283. color: #919191;
  284. }
  285. }
  286. .spinner {
  287. margin: 20px auto 20px auto;
  288. position: relative;
  289. -webkit-animation: rotate-forever 1s infinite linear;
  290. animation: rotate-forever 1s infinite linear;
  291. height: 30px;
  292. width: 30px;
  293. border: 4px solid #ccc;
  294. border-right-color: transparent;
  295. border-radius: 50%;
  296. &.small {
  297. width: 10px;
  298. height: 10px;
  299. margin: 0;
  300. display: inline-block;
  301. }
  302. }
  303. .user-selector-field.wizard-field {
  304. div.ac-wrap div.item a.remove, .remove-link {
  305. margin-left: 4px;
  306. font-size: 11px;
  307. line-height: 10px;
  308. padding: 1.5px 1.5px 1.5px 2.5px;
  309. border-radius: 12px;
  310. width: 10px;
  311. display: inline-block;
  312. border: 1px solid #e9e9e9;
  313. &:hover {
  314. background-color: #f2ab9a;
  315. border: 1px solid #ec8972;
  316. text-decoration: none;
  317. color: #e45735;
  318. }
  319. }
  320. div.ac-wrap {
  321. width: 98.5% !important;
  322. overflow: auto;
  323. max-height: 150px;
  324. background-color: white;
  325. border: 1px solid #e9e9e9;
  326. padding: 5px 4px 1px 4px;
  327. div.item {
  328. float: left;
  329. margin-bottom: 4px;
  330. margin-right: 10px;
  331. span {
  332. height: 24px;
  333. display: inline-block;
  334. line-height: 20px;
  335. }
  336. }
  337. .ac-collapsed-button {
  338. float: left;
  339. border-radius: 20px;
  340. position: relative;
  341. top: -2px;
  342. margin-right: 10px;
  343. }
  344. input[type="text"] {
  345. float: left;
  346. margin-bottom: 4px;
  347. height: 24px;
  348. display: block;
  349. border: 0;
  350. padding: 0;
  351. box-shadow: none;
  352. }
  353. }
  354. }
  355. img.avatar {
  356. border-radius: 50%;
  357. vertical-align: middle;
  358. }
  359. .autocomplete {
  360. z-index: 999999;
  361. position: absolute;
  362. width: 240px;
  363. background-color: white;
  364. border: 1px solid #e9e9e9;
  365. ul {
  366. list-style: none;
  367. padding: 0;
  368. margin: 0;
  369. li {
  370. .d-users {
  371. color: #333;
  372. padding: 0 2px;
  373. }
  374. border-bottom: 1px solid #e9e9e9;
  375. a {
  376. padding: 5px;
  377. display: block;
  378. white-space: nowrap;
  379. overflow: hidden;
  380. text-overflow: ellipsis;
  381. font-size: 14px;
  382. text-decoration: none;
  383. img {
  384. margin-right: 5px;
  385. }
  386. span.username {
  387. color: #000;
  388. vertical-align: middle;
  389. }
  390. span.name {
  391. font-size: 11px;
  392. vertical-align: middle;
  393. }
  394. &.selected {
  395. background-color: #d1f0ff;
  396. }
  397. &:hover {
  398. background-color: #ffffa6;
  399. text-decoration: none;
  400. }
  401. }
  402. }
  403. }
  404. }
  405. .checkbox-field.invalid .input-area {
  406. padding: 3px;
  407. border: 4px solid red;
  408. }
  409. @keyframes rotate-forever {
  410. 0% {
  411. transform: rotate(0deg);
  412. }
  413. 100% {
  414. transform: rotate(360deg);
  415. }
  416. }
  417. .p-text {
  418. &.bronze {
  419. color: #cd7f32;
  420. }
  421. &.silver {
  422. color: #c0c0c0;
  423. }
  424. &.gold {
  425. color: rgb(231, 195, 0);
  426. }
  427. }