2025-02-26 16:33:36 +01:00
|
|
|
@use "sass:color";
|
|
|
|
@use "../split/custom_vars";
|
|
|
|
|
2025-02-09 16:45:35 +01:00
|
|
|
#caisse-now {
|
2025-02-14 17:56:44 +01:00
|
|
|
min-height: 90vh;
|
2025-02-26 14:51:48 +01:00
|
|
|
width: 70vw;
|
2025-02-26 16:33:36 +01:00
|
|
|
padding-left: 1vw;
|
2025-02-14 17:56:44 +01:00
|
|
|
|
2025-02-09 16:45:35 +01:00
|
|
|
.product-box {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 1rem;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
width: 100%;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.product-button {
|
|
|
|
width: 80%;
|
|
|
|
text-overflow-ellipsis: "...";
|
|
|
|
}
|
|
|
|
|
|
|
|
.listing-products {
|
|
|
|
|
|
|
|
button.active {
|
|
|
|
background: yellowgreen;
|
|
|
|
}
|
|
|
|
|
2025-02-26 14:51:48 +01:00
|
|
|
.btn,
|
|
|
|
button {
|
2025-02-09 16:45:35 +01:00
|
|
|
font-size: 1.6rem;
|
|
|
|
padding: 1.5rem;
|
|
|
|
-webkit-border-radius: 1rem;
|
|
|
|
-moz-border-radius: 1rem;
|
|
|
|
border-radius: 1rem;
|
2025-02-26 16:33:36 +01:00
|
|
|
border-color: custom_vars.$all-text-color;
|
2025-02-09 16:45:35 +01:00
|
|
|
box-shadow: 5px 3px 10px 2px #ddd;
|
|
|
|
border-width: 0;
|
|
|
|
|
|
|
|
&.btn-primary {
|
2025-02-26 16:33:36 +01:00
|
|
|
background-color: custom_vars.$deepblue;
|
2025-02-09 16:45:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2025-02-26 16:33:36 +01:00
|
|
|
background: custom_vars.$lightblue;
|
2025-02-09 16:45:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-default {
|
2025-02-26 16:33:36 +01:00
|
|
|
background: custom_vars.$lightblue;
|
2025-02-09 16:45:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.badge-success {
|
2025-02-26 16:33:36 +01:00
|
|
|
background: color.mix(green, custom_vars.$lightblue);
|
2025-02-09 16:45:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-comment {
|
|
|
|
width: calc(100% - 40px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// container of categories
|
|
|
|
.horizontal-land {
|
|
|
|
overflow-x: auto;
|
|
|
|
overflow-y: hidden;
|
|
|
|
//width: 100%;
|
|
|
|
height: 75vh;
|
|
|
|
background: #ccc;
|
|
|
|
padding: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
// list of one category
|
|
|
|
.one-category {
|
|
|
|
background: #dedede;
|
2025-02-26 14:51:48 +01:00
|
|
|
width: 31rem;
|
2025-02-09 16:45:35 +01:00
|
|
|
margin: 0 4px;
|
|
|
|
height: calc(74vh - 1rem);
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: inline-block;
|
|
|
|
white-space: nowrap;
|
2025-02-26 14:51:48 +01:00
|
|
|
overflow-y: auto;
|
|
|
|
|
2025-02-09 16:45:35 +01:00
|
|
|
h2 {
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
&:first-letter {
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.category-listing {
|
2025-02-26 16:33:36 +01:00
|
|
|
border: solid 1px custom_vars.$grey;
|
2025-02-09 16:45:35 +01:00
|
|
|
padding: 1rem;
|
|
|
|
margin: 0.5rem;
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.validate_selling {
|
|
|
|
margin: 0.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.product-listing {
|
|
|
|
height: 70vh;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sellings {
|
|
|
|
.remove-item {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-26 14:51:48 +01:00
|
|
|
#loaded {
|
|
|
|
padding-bottom: 10rem;
|
|
|
|
}
|
|
|
|
|
2025-02-09 16:45:35 +01:00
|
|
|
#not_loaded {
|
|
|
|
width: 100%;
|
|
|
|
height: 75vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selling-ok {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
left: 2em;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
.block {
|
|
|
|
display: block;
|
|
|
|
width: calc(100% - 2em);
|
|
|
|
text-align: center;
|
|
|
|
}
|
2025-02-14 17:56:44 +01:00
|
|
|
|
2025-02-26 14:51:48 +01:00
|
|
|
#main_options {
|
2025-02-14 17:56:44 +01:00
|
|
|
width: 100%;
|
2025-02-26 16:33:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#other_time,
|
|
|
|
#categories_visibility {
|
|
|
|
display: block;
|
|
|
|
padding-top: 1rem;
|
|
|
|
padding-bottom: 5rem;
|
|
|
|
min-height: 500px;
|
2025-02-14 17:56:44 +01:00
|
|
|
}
|