수수료 관리 스타일 정리

This commit is contained in:
현성필
2025-12-01 15:38:28 +09:00
parent 67e64bc352
commit f3f313a105
2 changed files with 139 additions and 84 deletions
@@ -6,6 +6,12 @@
// ==================== Commission Management Page ====================
// Commission Container
.commission-container {
max-width: 1400px;
margin: 0 auto;
}
.wrap {
max-width: 1400px;
margin: 0 auto;
@@ -21,22 +27,24 @@
margin-bottom: $spacing-md;
}
// Search Box
.searchBox {
background: $gray-bg;
padding: $spacing-lg;
background: #f8f9fa;
padding: 20px;
border-radius: $border-radius-md;
margin-bottom: $spacing-lg;
margin-top: 20px;
margin-bottom: 20px;
&.row-two {
display: flex;
align-items: center;
gap: $spacing-lg;
gap: 20px;
flex-wrap: wrap;
}
label {
font-weight: $font-weight-medium;
color: $text-gray;
color: $text-dark;
min-width: 80px;
}
@@ -52,23 +60,40 @@
.form-inline {
display: flex;
align-items: center;
gap: $spacing-sm;
gap: 10px;
}
.btnBox {
margin-left: auto;
.btn + .btn {
margin-left: 5px;
}
}
// Print Button (initially hidden)
#printBtn {
display: none;
}
// Notice Text
.commission-notice {
color: #dc3545;
margin-top: 30px;
line-height: 1.6;
}
.voffset3 {
margin-top: 30px;
}
// Color Utilities
.color_red {
color: $accent-orange;
}
.color_blue {
color: $primary-blue;
color: #007bff;
}
.color_darkRed {
@@ -78,7 +103,7 @@
// Table Styles
.table-responsive {
overflow-x: auto;
margin-top: $spacing-3xl;
margin-top: 30px;
}
.table {
@@ -112,9 +137,33 @@
}
.border-type {
border: 2px solid $border-gray;
border: 2px solid #dee2e6;
}
// Commission Tables
.commission-table-wrapper {
margin-top: 30px;
.table {
border: 2px solid #dee2e6;
}
}
// Summary Row
.summary-row {
background-color: #fff3cd !important;
td {
font-weight: $font-weight-semibold;
}
.summary-amount {
font-size: 16px;
color: #007bff;
}
}
// Text Alignment Utilities
.text-center {
text-align: center;
}
@@ -127,6 +176,7 @@
text-align: left;
}
// Background Utilities
.bg-warning {
background-color: #fff3cd !important;
}