Add a new home dashboard template and a premium POS theme with golden yellow and teal accents.
This commit is contained in:
parent
33a1baef46
commit
038bad056c
@ -37,7 +37,6 @@
|
|||||||
/* 4. Table/Seat Icons in Floor Map */
|
/* 4. Table/Seat Icons in Floor Map */
|
||||||
.pos .floor-map .table {
|
.pos .floor-map .table {
|
||||||
border-radius: 12px !important;
|
border-radius: 12px !important;
|
||||||
transition: all 0.3s ease !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pos .floor-map .table.selected {
|
.pos .floor-map .table.selected {
|
||||||
@ -78,20 +77,106 @@
|
|||||||
border-left: 4px solid var(--pos-primary) !important;
|
border-left: 4px solid var(--pos-primary) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 7. Product List */
|
/* 7. Product List - Alignment & Grand Look Transformation */
|
||||||
|
.pos .product-list-container {
|
||||||
|
background: linear-gradient(135deg, #8fe0d6 0%, #ffecb5 100%) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pos .product-list {
|
||||||
|
display: flex !important;
|
||||||
|
flex-wrap: wrap !important;
|
||||||
|
gap: 30px !important;
|
||||||
|
/* Proper gap between cards */
|
||||||
|
padding: 20px !important;
|
||||||
|
justify-content: flex-start !important;
|
||||||
|
}
|
||||||
|
|
||||||
.pos .product-list .product {
|
.pos .product-list .product {
|
||||||
border-radius: 15px !important;
|
background: #ffffff !important;
|
||||||
overflow: hidden !important;
|
border: none !important;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.05) !important;
|
border-radius: 20px !important;
|
||||||
|
/* Smoother rounded corners */
|
||||||
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
|
||||||
|
overflow: visible !important;
|
||||||
|
/* Allow image to overflow slightly if needed */
|
||||||
|
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
/* Margin replaced by parent gap */
|
||||||
|
height: 230px !important;
|
||||||
|
/* Increased from 180px */
|
||||||
|
width: 210px !important;
|
||||||
|
/* Increased from 140px */
|
||||||
|
display: flex !important;
|
||||||
|
flex-direction: column !important;
|
||||||
|
align-items: center !important;
|
||||||
|
padding: 15px !important;
|
||||||
|
position: relative !important;
|
||||||
|
/* For price tag positioning */
|
||||||
}
|
}
|
||||||
|
|
||||||
.pos .product-list .product:hover {
|
.pos .product-list .product:hover {
|
||||||
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
|
transform: translateY(-8px) !important;
|
||||||
border-color: var(--pos-primary) !important;
|
box-shadow: 0 20px 40px rgba(43, 177, 165, 0.15) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Circular Food Images with Premium Border */
|
||||||
|
.pos .product .product-img {
|
||||||
|
width: 130px !important;
|
||||||
|
/* Increased from 100px */
|
||||||
|
height: 130px !important;
|
||||||
|
/* Increased from 100px */
|
||||||
|
border-radius: 50% !important;
|
||||||
|
/* Perfectly circular */
|
||||||
|
border: 5px solid #ffffff !important;
|
||||||
|
/* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1) !important; */
|
||||||
|
margin-bottom: 8px !important;
|
||||||
|
transition: transform 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pos .product:hover .product-img {
|
||||||
|
transform: scale(1.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Product Name Styling */
|
||||||
|
.pos .product .product-name {
|
||||||
|
font-size: 15px !important;
|
||||||
|
/* Increased from 13px */
|
||||||
|
font-weight: 700 !important;
|
||||||
|
color: #2c3e50 !important;
|
||||||
|
text-align: center !important;
|
||||||
|
padding: 2px 10px !important;
|
||||||
|
line-height: 1.2 !important;
|
||||||
|
background: transparent !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Premium Floating Price Tag */
|
||||||
.pos .product .price-tag {
|
.pos .product .price-tag {
|
||||||
background: var(--pos-secondary) !important;
|
background: var(--pos-secondary) !important;
|
||||||
|
/* Teal */
|
||||||
|
color: #ffffff !important;
|
||||||
|
border-radius: 20px !important;
|
||||||
|
padding: 6px 16px !important;
|
||||||
|
/* Padding increased */
|
||||||
|
font-weight: 800 !important;
|
||||||
|
font-size: 14px !important;
|
||||||
|
/* Price font increased */
|
||||||
|
bottom: -15px !important;
|
||||||
|
/* Float at the bottom */
|
||||||
|
top: auto !important;
|
||||||
|
right: auto !important;
|
||||||
|
box-shadow: 0 4px 10px rgba(43, 177, 165, 0.3) !important;
|
||||||
|
border: 3px solid #ffffff !important;
|
||||||
|
text-align: center !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Info Icon Styling */
|
||||||
|
.pos .product .product-info-button {
|
||||||
|
background: rgba(254, 205, 79, 0.9) !important;
|
||||||
|
/* Golden Yellow */
|
||||||
|
color: #000 !important;
|
||||||
|
border-radius: 50% !important;
|
||||||
|
top: 5px !important;
|
||||||
|
right: 5px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 8. POS Buttons */
|
/* 8. POS Buttons */
|
||||||
|
|||||||
@ -9,6 +9,15 @@
|
|||||||
<!-- Top Bar -->
|
<!-- Top Bar -->
|
||||||
<div class="o_home_top_bar">
|
<div class="o_home_top_bar">
|
||||||
<div class="o_top_bar_island">
|
<div class="o_top_bar_island">
|
||||||
|
<a href="/" class="o_top_item" title="Chennora Home" style="width: auto; padding: 0 10px;">
|
||||||
|
<img t-attf-src="/web/binary/company_logo" style="height: 24px; width: auto; object-fit: contain;"/>
|
||||||
|
</a>
|
||||||
|
<div class="o_bar_divider" style="margin: 0 5px;"></div>
|
||||||
|
|
||||||
|
<a href="/" class="o_top_item" title="View Website">
|
||||||
|
<i class="fa fa-globe"/>
|
||||||
|
</a>
|
||||||
|
|
||||||
<a href="#" class="o_top_item" title="AI Assistant">
|
<a href="#" class="o_top_item" title="AI Assistant">
|
||||||
<span class="o_ai_icon">AI</span>
|
<span class="o_ai_icon">AI</span>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user