forked from alaguraj/odoo-testing-addons
52 lines
905 B
CSS
52 lines
905 B
CSS
/* Equal Split Panel — dine360_restaurant */
|
|
|
|
.equal-split-toggle-bar {
|
|
min-height: 44px;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.equal-split-toggle-btn {
|
|
min-width: 130px;
|
|
}
|
|
|
|
.equal-split-panel {
|
|
background: #fff;
|
|
animation: slideDown 0.18s ease-out;
|
|
}
|
|
|
|
@keyframes slideDown {
|
|
from { opacity: 0; transform: translateY(-6px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
.equal-split-counter-btn {
|
|
width: 52px;
|
|
height: 52px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.equal-split-count-display {
|
|
min-width: 60px;
|
|
}
|
|
|
|
.equal-split-count-number {
|
|
font-size: 2.4rem;
|
|
line-height: 1.1;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
.equal-split-amount-box {
|
|
background: #e8f4fd;
|
|
border: 2px solid #3498db;
|
|
min-width: 200px;
|
|
}
|
|
|
|
.equal-split-amount {
|
|
font-size: 2rem;
|
|
color: #2980b9;
|
|
}
|