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.

_form.scss 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. .subscription-create,
  2. .subscription-update {
  3. .subscription-form {
  4. display: none ;
  5. &.loaded {
  6. display: block ;
  7. }
  8. .points-sale {
  9. .locality {
  10. color: gray ;
  11. }
  12. label {
  13. cursor: pointer ;
  14. }
  15. }
  16. .days {
  17. .form-group {
  18. float: left ;
  19. margin-right: 15px ;
  20. }
  21. }
  22. .points-sale {
  23. table {
  24. tr.selected {
  25. td {
  26. background-color: $color2 ;
  27. }
  28. }
  29. .the-name {
  30. font-family: 'capsuularegular' ;
  31. font-size: 20px ;
  32. color: black ;
  33. }
  34. .block-code {
  35. width: 150px ;
  36. }
  37. .actions {
  38. width: 150px ;
  39. button {
  40. width: 100% ;
  41. display: block ;
  42. }
  43. }
  44. }
  45. }
  46. .comment-textarea {
  47. width: 100% ;
  48. height: 100px ;
  49. }
  50. .products {
  51. .monday, .tuesday, .wednesday, .thursday,
  52. .friday, .saturday, .sunday, .no-day {
  53. display: none ;
  54. }
  55. .monday-active .monday,
  56. .tuesday-active .tuesday,
  57. .wednesday-active .wednesday,
  58. .thursday-active .thursday,
  59. .friday-active .friday,
  60. .saturday-active .saturday,
  61. .sunday-active .sunday {
  62. display: block ;
  63. }
  64. td.quantity {
  65. width: 180px ;
  66. input {
  67. text-align: center ;
  68. border-right: 0px none ;
  69. &.has-quantity {
  70. font-weight: bold ;
  71. }
  72. }
  73. .input-group-addon {
  74. background-color: white ;
  75. padding-left: 0px ;
  76. border-left: 0px none ;
  77. }
  78. }
  79. .name {
  80. font-family: "capsuularegular" ;
  81. font-size: 20px ;
  82. color: black ;
  83. }
  84. .description {
  85. font-style: italic;
  86. }
  87. .recipe {
  88. font-size: 12px ;
  89. }
  90. .price-unit, .price-total {
  91. text-align: center ;
  92. width: 150px ;
  93. }
  94. .unit {
  95. color: gray ;
  96. font-size: 13px ;
  97. }
  98. tr.total .price-total {
  99. text-align: center ;
  100. font-size: 20px ;
  101. }
  102. }
  103. }
  104. }