|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
-
- .order-order {
- #app-order-order {
-
- display: none ;
-
- &.loaded {
- display: block ;
- }
-
- #order-distribution-date {
- display: none ;
- }
-
- .slide-enter-active {
- transition: all .2s ease;
- }
-
- .slide-leave-active {
- transition: all 0s ease;
- }
- .slide-enter, .slide-leave-to {
- transform: translateX(10px);
- opacity: 0;
- }
-
- #steps {
- margin-bottom: 20px ;
- ul {
- height: 70px ;
-
- li {
- text-align: center ;
- padding-right: 8px ;
- padding-left: 8px ;
- position: relative ;
-
- .info-step {
- position: absolute ;
- top: 45px ;
- left: 0px ;
- width: 100% ;
- text-transform: normal ;
- color: $color1 ;
- font-family: 'capsuularegular' ;
- font-size: 17px ;
- font-weight: bold ;
- }
-
- .glyphicon-chevron-right,
- &.active .glyphicon-chevron-right {
- float: right ;
- color: gray ;
- position: relative ;
- top: 10px ;
- }
-
- &#step-date {
- padding-left: 0px ;
- }
-
- &#step-payment {
- padding-right: 0px ;
- }
-
- &#step-payment .btn::after,
- &#step-date .btn::before {
- display: none ;
- }
-
- .btn {
- color: #333 ;
- text-transform: uppercase ;
- display: block ;
- width: 100% ;
- position: relative ;
- background-color: #e0e0e0 ;
- @include border-radius(0px) ;
- border: 0px none ;
- text-transform: uppercase ;
-
- .button-content {
- position: relative;
- left: 8px ;
- }
-
- &.btn-primary {
- background-color: $color1 ;
- }
-
- &::after, &::before {
- content: '' ;
- position: absolute ;
- top: -1px ;
- }
-
- &::after {
- right: -34px ;
- border:17px solid transparent;
- border-left:17px solid #e0e0e0;
- background-color: transparent ;
- }
-
- &::before {
- left: 0px ;
- border:17px solid transparent;
- border-left:17px solid white;
- background-color: transparent ;
- }
-
- &.btn-primary::after {
- border-left:17px solid $color1;
- }
-
- &:hover {
- //background-color: lighten($color1, 5) ;
- }
-
- &:hover::after {
- //border:17px solid transparent;
- //border-left:17px solid #fefefe;
- }
- }
-
- .btn-primary {
- color: white ;
- }
- }
- }
- }
-
- #legend {
- #order-date-color,
- #distribution-date-color {
- width: 13px ;
- height: 13px ;
- display: inline-block ;
- }
-
- #order-date-color {
- background-color: #FF7F00 ;
- }
- #distribution-date-color {
- background-color: #5cb85c ;
- }
- }
-
- #calendar {
- margin-bottom: 15px ;
- .c-header .c-title-layout .c-title-popover .c-title-anchor .c-title[data-v-2083cb72] {
- font-size: 2rem ;
- }
- .c-day-background {
- padding: 20px ;
- }
-
- .c-day:hover {
- .c-day-background {
- background-color: #FF7F00 !important ;
- color: white !important ;
- }
- }
-
- .c-day-popover-content {
- font-size: 1.3rem ;
- }
- }
-
- .block-actions {
- text-align: right ;
- margin-top: 20px ;
- }
-
- table#points-sale {
- td.name {
- .the-name {
- font-family: 'capsuularegular' ;
- color: black ;
- font-size: 20px ;
- line-height: 25px ;
- }
- }
-
- td.actions {
- width: 150px ;
- button {
- width: 100% ;
- }
- }
-
- tr.selected {
- td {
- background-color: $color2 ;
- }
- }
- }
-
- table#products {
- td.photo {
- img {
- width: 100px ;
- }
- }
-
- td.name {
- .name {
- font-family: 'capsuularegular' ;
- color: black ;
- font-size: 20px ;
- line-height: 25px ;
- }
- .other {
- font-size: 14px ;
- color: #333 ;
- }
- .recipe {
- color: gray ;
- }
- }
- .price-unit, .price-total {
- width: 100px ;
- text-align: center ;
- }
- .td-quantity {
- width: 150px ;
- input.quantity {
- text-align: center ;
- }
- }
-
- tr.total {
- .price-total {
- font-size: 23px ;
- }
- }
- }
-
- #content-step-payment {
- .credit {
- margin-top: 20px ;
-
- .info {
- margin-left: 20px ;
- color: gray ;
- }
- }
- }
-
- #infos {
- margin-top: 30px ;
- .panel-body {
- padding-top: 0px ;
- white-space: pre-line ;
- }
- }
- }
-
-
- }
|