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.

_order.scss 11KB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. .order-order #main {
  2. #app-order-order {
  3. display: none ;
  4. h3 {
  5. font-family: "highvoltageregular" ;
  6. }
  7. &.loaded {
  8. display: block ;
  9. }
  10. #distribution-date, #order-distribution-date {
  11. display: none ;
  12. }
  13. .slide-enter-active {
  14. transition: all .2s ease;
  15. }
  16. .slide-leave-active {
  17. transition: all 0s ease;
  18. }
  19. .slide-enter, .slide-leave-to {
  20. transform: translateX(10px);
  21. opacity: 0;
  22. }
  23. #steps {
  24. margin-bottom: 20px ;
  25. ul {
  26. height: 70px ;
  27. li {
  28. text-align: center ;
  29. padding-right: 8px ;
  30. padding-left: 8px ;
  31. position: relative ;
  32. .info-step {
  33. position: absolute ;
  34. top: 45px ;
  35. left: 0px ;
  36. width: 100% ;
  37. text-transform: normal ;
  38. color: $color1 ;
  39. font-family: 'capsuularegular' ;
  40. font-size: 17px ;
  41. font-weight: bold ;
  42. }
  43. .glyphicon-chevron-right,
  44. &.active .glyphicon-chevron-right {
  45. float: right ;
  46. color: gray ;
  47. position: relative ;
  48. top: 10px ;
  49. }
  50. &.first {
  51. padding-left: 0px ;
  52. }
  53. &#step-payment {
  54. padding-right: 0px ;
  55. }
  56. &#step-payment .btn::after,
  57. &.first .btn::before {
  58. display: none ;
  59. }
  60. .btn {
  61. color: #333 ;
  62. text-transform: uppercase ;
  63. display: block ;
  64. width: 100% ;
  65. position: relative ;
  66. background-color: #e0e0e0 ;
  67. @include border-radius(0px) ;
  68. border: 0px none ;
  69. text-transform: uppercase ;
  70. .button-content {
  71. position: relative;
  72. left: 8px ;
  73. }
  74. &.btn-primary {
  75. background-color: $color1 ;
  76. }
  77. &::after, &::before {
  78. content: '' ;
  79. position: absolute ;
  80. top: -1px ;
  81. }
  82. &::after {
  83. right: -34px ;
  84. border:17px solid transparent;
  85. border-left:17px solid #e0e0e0;
  86. background-color: transparent ;
  87. }
  88. &::before {
  89. left: 0px ;
  90. border:17px solid transparent;
  91. border-left:17px solid white;
  92. background-color: transparent ;
  93. }
  94. &.btn-primary::after {
  95. border-left:17px solid $color1;
  96. }
  97. &:hover {
  98. //background-color: lighten($color1, 5) ;
  99. }
  100. &:hover::after {
  101. //border:17px solid transparent;
  102. //border-left:17px solid #fefefe;
  103. }
  104. }
  105. .btn-primary {
  106. color: white ;
  107. }
  108. }
  109. }
  110. }
  111. #legend {
  112. #order-date-color,
  113. #distribution-date-color {
  114. width: 13px ;
  115. height: 13px ;
  116. display: inline-block ;
  117. }
  118. #order-date-color {
  119. background-color: #FF7F00 ;
  120. }
  121. #distribution-date-color {
  122. background-color: #5cb85c ;
  123. }
  124. }
  125. #calendar {
  126. margin-bottom: 15px ;
  127. .c-header .c-title-layout .c-title-popover .c-title-anchor .c-title[data-v-2083cb72] {
  128. font-size: 2rem ;
  129. }
  130. .c-day-background {
  131. padding: 20px ;
  132. }
  133. .c-day:hover {
  134. .c-day-background {
  135. background-color: #FF7F00 !important ;
  136. color: white !important ;
  137. }
  138. }
  139. .c-day-popover-content {
  140. font-size: 1.3rem ;
  141. }
  142. }
  143. #content-step-date {
  144. #distributions-list {
  145. .panel {
  146. .btn-primary {
  147. float: right ;
  148. }
  149. .date {
  150. font-size: 20px ;
  151. }
  152. .point-sales {
  153. color: gray ;
  154. font-size: 14px ;
  155. margin-top: 8px ;
  156. }
  157. }
  158. }
  159. }
  160. .block-actions {
  161. text-align: right ;
  162. margin-top: 20px ;
  163. }
  164. table#points-sale {
  165. td.name {
  166. .the-name {
  167. font-family: 'capsuularegular' ;
  168. color: black ;
  169. font-size: 20px ;
  170. line-height: 25px ;
  171. }
  172. }
  173. td.actions {
  174. width: 150px ;
  175. button {
  176. width: 100% ;
  177. }
  178. }
  179. tr.selected {
  180. td {
  181. background-color: $color2 ;
  182. }
  183. }
  184. }
  185. table#products {
  186. td.category-name {
  187. font-family: "highvoltageregular" ;
  188. font-size: 22px ;
  189. line-height: 30px;
  190. text-transform: uppercase;
  191. padding-top: 13px ;
  192. .glyphicon-triangle-bottom,
  193. .glyphicon-triangle-right {
  194. font-size: 15px ;
  195. }
  196. span.label {
  197. //font-family: 'capsuularegular' ;
  198. font-family: 'Arial' ;
  199. font-weight: normal ;
  200. float: right ;
  201. text-transform: none ;
  202. margin-left: 15px ;
  203. }
  204. &:hover {
  205. cursor: pointer ;
  206. background-color: $color1 ;
  207. color: white ;
  208. }
  209. }
  210. td.photo {
  211. img {
  212. width: 100px ;
  213. }
  214. }
  215. td.name {
  216. .name {
  217. font-family: 'capsuularegular' ;
  218. color: black ;
  219. font-size: 20px ;
  220. line-height: 25px ;
  221. }
  222. .other {
  223. font-size: 14px ;
  224. color: #333 ;
  225. }
  226. .recipe {
  227. color: gray ;
  228. }
  229. }
  230. .price-unit, .price-total {
  231. width: 100px ;
  232. text-align: center ;
  233. .unit {
  234. color: gray ;
  235. font-size: 13px ;
  236. }
  237. }
  238. .td-quantity {
  239. width: 175px ;
  240. input.quantity {
  241. text-align: center ;
  242. border-right: 0px none ;
  243. }
  244. .input-group-addon {
  245. padding: 5px ;
  246. padding-left: 0px ;
  247. margin: 0px ;
  248. border-left: 0px none ;
  249. border-right: 0px none ;
  250. }
  251. }
  252. tr.total {
  253. .summary {
  254. h3 {
  255. margin-top: 0px ;
  256. font-family: 'capsuularegular' ;
  257. text-transform: none ;
  258. margin-bottom: 5px ;
  259. }
  260. ul {
  261. margin-bottom: 15px ;
  262. padding-left: 20px ;
  263. font-size: 23px ;
  264. li {
  265. .quantity {
  266. font-size: 18px ;
  267. }
  268. .name {
  269. font-family: 'capsuularegular' ;
  270. font-size: 24px ;
  271. }
  272. .other {
  273. font-family: 'arial' ;
  274. font-size: 14px ;
  275. }
  276. }
  277. }
  278. }
  279. .price-total {
  280. font-size: 23px ;
  281. }
  282. }
  283. }
  284. #content-step-payment {
  285. .delivery {
  286. margin-bottom: 20px ;
  287. .delivery-home {
  288. margin-bottom: 20px ;
  289. }
  290. .delivery-address {
  291. }
  292. }
  293. .comment {
  294. margin-bottom: 20px ;
  295. }
  296. .credit {
  297. .info {
  298. margin-left: 20px ;
  299. color: gray ;
  300. }
  301. }
  302. }
  303. #specific-delays {
  304. strong {
  305. //text-decoration: underline ;
  306. }
  307. }
  308. #infos {
  309. margin-top: 30px ;
  310. .panel-body {
  311. padding-top: 0px ;
  312. white-space: pre-line ;
  313. }
  314. }
  315. }
  316. }
  317. #main #content {
  318. .panel {
  319. h3 {
  320. font-family: "highvoltageregular" ;
  321. margin: 0px ;
  322. padding-top: 10px ;
  323. padding-bottom: 4px ;
  324. font-size: 20px ;
  325. }
  326. }
  327. }