staff chnages
This commit is contained in:
Binary file not shown.
@@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
--primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||||
--secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
|
--secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
|
||||||
@@ -20,10 +21,9 @@
|
|||||||
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Main Container */
|
/* Main Container - FLUID LIKE SHIPMENT PAGE */
|
||||||
.staff-add-container {
|
.staff-add-container {
|
||||||
max-width: 900px;
|
width: 100%;
|
||||||
margin: 0 auto;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
right: -100px;
|
right: -100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Main Card */
|
/* Main Card - FLUID BEHAVIOR */
|
||||||
.staff-add-card {
|
.staff-add-card {
|
||||||
background: var(--glass-bg);
|
background: var(--glass-bg);
|
||||||
backdrop-filter: blur(10px);
|
backdrop-filter: blur(10px);
|
||||||
@@ -51,9 +51,10 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Header Section */
|
/* Header Section - FLUID SCALING */
|
||||||
.staff-add-header {
|
.staff-add-header {
|
||||||
background: var(--primary-gradient);
|
background: var(--primary-gradient);
|
||||||
padding: 35px 40px;
|
padding: 35px 40px;
|
||||||
@@ -105,7 +106,7 @@
|
|||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Progress Steps */
|
/* Progress Steps - FLUID ADJUSTMENTS */
|
||||||
.progress-steps {
|
.progress-steps {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
@@ -207,7 +208,7 @@
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Form Grid */
|
/* Form Grid - ADAPTIVE LIKE SHIPMENT PAGE */
|
||||||
.form-grid {
|
.form-grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||||
@@ -327,7 +328,7 @@
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Permissions Section */
|
/* Permissions Section - ADAPTIVE GRID */
|
||||||
.permissions-container {
|
.permissions-container {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
||||||
@@ -585,7 +586,305 @@
|
|||||||
.strength-good { background: #38b2ac; }
|
.strength-good { background: #38b2ac; }
|
||||||
.strength-strong { background: #48bb78; }
|
.strength-strong { background: #48bb78; }
|
||||||
|
|
||||||
/* Responsive Design */
|
/* =========================================== */
|
||||||
|
/* DESKTOP MEDIA QUERIES - LIKE SHIPMENT PAGE */
|
||||||
|
/* =========================================== */
|
||||||
|
|
||||||
|
/* Base desktop - 992px+ */
|
||||||
|
@media (min-width: 992px) {
|
||||||
|
body {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-stage {
|
||||||
|
padding: 0 30px 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-add-header {
|
||||||
|
padding: 30px 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-grid {
|
||||||
|
gap: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permissions-container {
|
||||||
|
gap: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navigation-buttons {
|
||||||
|
padding: 30px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Large desktop - 1200px+ */
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
.staff-add-card {
|
||||||
|
margin: 0 auto;
|
||||||
|
max-width: 95%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-grid {
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
gap: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permissions-container {
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
gap: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-add-header {
|
||||||
|
padding: 35px 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-title {
|
||||||
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-icon {
|
||||||
|
font-size: 42px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.progress-steps {
|
||||||
|
padding: 30px 35px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-stage {
|
||||||
|
padding: 0 35px 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step-circle {
|
||||||
|
width: 55px;
|
||||||
|
height: 55px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navigation-buttons {
|
||||||
|
padding: 30px 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
padding: 14px 32px;
|
||||||
|
min-width: 140px;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-submit {
|
||||||
|
min-width: 160px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Extra large desktop - 1440px+ */
|
||||||
|
@media (min-width: 1440px) {
|
||||||
|
.staff-add-card {
|
||||||
|
max-width: 97%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-grid {
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
gap: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permissions-container {
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
gap: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-add-header {
|
||||||
|
padding: 40px 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-title {
|
||||||
|
font-size: 2.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-icon {
|
||||||
|
font-size: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.progress-steps {
|
||||||
|
padding: 35px 40px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-stage {
|
||||||
|
padding: 0 40px 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step-circle {
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step-label {
|
||||||
|
font-size: 0.95rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-input {
|
||||||
|
padding: 16px 20px;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-label {
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.group-title {
|
||||||
|
font-size: 1.1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permission-group {
|
||||||
|
padding: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permission-name {
|
||||||
|
font-size: 0.95rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navigation-buttons {
|
||||||
|
padding: 35px 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
padding: 16px 36px;
|
||||||
|
min-width: 150px;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-submit {
|
||||||
|
min-width: 180px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ultra wide desktop - 1600px+ */
|
||||||
|
@media (min-width: 1600px) {
|
||||||
|
.staff-add-card {
|
||||||
|
max-width: 98%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-grid {
|
||||||
|
grid-template-columns: repeat(4, 1fr);
|
||||||
|
gap: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permissions-container {
|
||||||
|
grid-template-columns: repeat(4, 1fr);
|
||||||
|
gap: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-add-header {
|
||||||
|
padding: 45px 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-title {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-icon {
|
||||||
|
font-size: 55px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.progress-steps {
|
||||||
|
padding: 40px 45px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-stage {
|
||||||
|
padding: 0 45px 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step-circle {
|
||||||
|
width: 65px;
|
||||||
|
height: 65px;
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step-label {
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-input {
|
||||||
|
padding: 18px 22px;
|
||||||
|
font-size: 17px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-label {
|
||||||
|
font-size: 1.1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.group-title {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permission-group {
|
||||||
|
padding: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navigation-buttons {
|
||||||
|
padding: 40px 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
padding: 18px 40px;
|
||||||
|
min-width: 160px;
|
||||||
|
font-size: 17px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-submit {
|
||||||
|
min-width: 200px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ultra wide 4K+ screens - 1920px+ */
|
||||||
|
@media (min-width: 1920px) {
|
||||||
|
body {
|
||||||
|
padding: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-add-card {
|
||||||
|
max-width: 99%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-grid {
|
||||||
|
grid-template-columns: repeat(5, 1fr);
|
||||||
|
gap: 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permissions-container {
|
||||||
|
grid-template-columns: repeat(5, 1fr);
|
||||||
|
gap: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-add-header {
|
||||||
|
padding: 50px 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-title {
|
||||||
|
font-size: 2.7rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.progress-steps {
|
||||||
|
padding: 45px 50px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-stage {
|
||||||
|
padding: 0 50px 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navigation-buttons {
|
||||||
|
padding: 45px 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.decorative-circle {
|
||||||
|
width: 400px;
|
||||||
|
height: 400px;
|
||||||
|
top: -150px;
|
||||||
|
right: -150px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =========================================== */
|
||||||
|
/* MOBILE RESPONSIVE (UNCHANGED) */
|
||||||
|
/* =========================================== */
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
body {
|
body {
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
|
|||||||
@@ -18,10 +18,9 @@
|
|||||||
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Compact Container */
|
/* FLUID CONTAINER - LIKE SHIPMENT PAGE */
|
||||||
.staff-edit-container {
|
.staff-edit-container {
|
||||||
max-width: 900px;
|
width: 100%;
|
||||||
margin: 0 auto;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -33,6 +32,7 @@
|
|||||||
box-shadow: var(--shadow-lg);
|
box-shadow: var(--shadow-lg);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.staff-edit-card::before {
|
.staff-edit-card::before {
|
||||||
@@ -46,10 +46,10 @@
|
|||||||
z-index: 10;
|
z-index: 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Compact Header */
|
/* Fluid Header */
|
||||||
.staff-header {
|
.staff-header {
|
||||||
background: var(--primary-gradient);
|
background: var(--primary-gradient);
|
||||||
padding: 25px;
|
padding: 30px 25px;
|
||||||
color: white;
|
color: white;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -102,7 +102,7 @@
|
|||||||
border: 1px solid rgba(255,255,255,0.2);
|
border: 1px solid rgba(255,255,255,0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Compact Form Sections */
|
/* Fluid Form Sections */
|
||||||
.form-section {
|
.form-section {
|
||||||
padding: 25px;
|
padding: 25px;
|
||||||
border-bottom: 1px solid rgba(0,0,0,0.05);
|
border-bottom: 1px solid rgba(0,0,0,0.05);
|
||||||
@@ -135,7 +135,7 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Compact Form Grid */
|
/* ADAPTIVE FORM GRID - LIKE SHIPMENT PAGE */
|
||||||
.form-grid {
|
.form-grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||||
@@ -160,7 +160,7 @@
|
|||||||
margin-left: 3px;
|
margin-left: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Compact Form Inputs */
|
/* Form Inputs */
|
||||||
.form-input {
|
.form-input {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 12px 16px;
|
padding: 12px 16px;
|
||||||
@@ -189,7 +189,7 @@
|
|||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Compact Status Toggle */
|
/* Status Toggle */
|
||||||
.status-toggle {
|
.status-toggle {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
@@ -228,7 +228,7 @@
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Compact Permissions Section */
|
/* ADAPTIVE PERMISSIONS SECTION - LIKE SHIPMENT PAGE */
|
||||||
.permissions-container {
|
.permissions-container {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
|
||||||
@@ -337,7 +337,7 @@
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Compact Error Messages */
|
/* Error Messages */
|
||||||
.error-container {
|
.error-container {
|
||||||
background: linear-gradient(135deg, #fff5f5, #fed7d7);
|
background: linear-gradient(135deg, #fff5f5, #fed7d7);
|
||||||
border: 1.5px solid #fc8181;
|
border: 1.5px solid #fc8181;
|
||||||
@@ -377,7 +377,7 @@
|
|||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Compact Action Buttons */
|
/* Action Buttons */
|
||||||
.action-buttons {
|
.action-buttons {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 12px;
|
gap: 12px;
|
||||||
@@ -448,7 +448,267 @@
|
|||||||
.strength-good { background: #38b2ac; }
|
.strength-good { background: #38b2ac; }
|
||||||
.strength-strong { background: #48bb78; }
|
.strength-strong { background: #48bb78; }
|
||||||
|
|
||||||
/* Responsive Design */
|
/* =========================================== */
|
||||||
|
/* DESKTOP MEDIA QUERIES - LIKE SHIPMENT PAGE */
|
||||||
|
/* =========================================== */
|
||||||
|
|
||||||
|
/* Base desktop - 992px+ */
|
||||||
|
@media (min-width: 992px) {
|
||||||
|
body {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-section {
|
||||||
|
padding: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-header {
|
||||||
|
padding: 35px 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-grid {
|
||||||
|
gap: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permissions-container {
|
||||||
|
gap: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Large desktop - 1200px+ */
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
.staff-edit-card {
|
||||||
|
margin: 0 auto;
|
||||||
|
max-width: 95%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-grid {
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
gap: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permissions-container {
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
gap: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-header {
|
||||||
|
padding: 40px 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-title {
|
||||||
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-avatar {
|
||||||
|
width: 90px;
|
||||||
|
height: 90px;
|
||||||
|
font-size: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-avatar-initials {
|
||||||
|
font-size: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-title {
|
||||||
|
font-size: 1.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-section {
|
||||||
|
padding: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.action-buttons {
|
||||||
|
padding: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
padding: 14px 28px;
|
||||||
|
min-width: 140px;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Extra large desktop - 1440px+ */
|
||||||
|
@media (min-width: 1440px) {
|
||||||
|
.staff-edit-card {
|
||||||
|
max-width: 97%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-grid {
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
gap: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permissions-container {
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
gap: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-header {
|
||||||
|
padding: 45px 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-title {
|
||||||
|
font-size: 2.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-avatar {
|
||||||
|
width: 100px;
|
||||||
|
height: 100px;
|
||||||
|
font-size: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-avatar-initials {
|
||||||
|
font-size: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-title {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-input {
|
||||||
|
padding: 14px 18px;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-label {
|
||||||
|
font-size: 0.95rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-icon {
|
||||||
|
width: 45px;
|
||||||
|
height: 45px;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.group-title {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permission-group {
|
||||||
|
padding: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permission-name {
|
||||||
|
font-size: 0.95rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
padding: 15px 32px;
|
||||||
|
min-width: 150px;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ultra wide desktop - 1600px+ */
|
||||||
|
@media (min-width: 1600px) {
|
||||||
|
.staff-edit-card {
|
||||||
|
max-width: 98%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-grid {
|
||||||
|
grid-template-columns: repeat(4, 1fr);
|
||||||
|
gap: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permissions-container {
|
||||||
|
grid-template-columns: repeat(4, 1fr);
|
||||||
|
gap: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-header {
|
||||||
|
padding: 50px 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-title {
|
||||||
|
font-size: 2.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-avatar {
|
||||||
|
width: 110px;
|
||||||
|
height: 110px;
|
||||||
|
font-size: 44px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-avatar-initials {
|
||||||
|
font-size: 44px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-title {
|
||||||
|
font-size: 1.6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-input {
|
||||||
|
padding: 15px 20px;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-label {
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-icon {
|
||||||
|
width: 50px;
|
||||||
|
height: 50px;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.group-title {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permission-group {
|
||||||
|
padding: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
padding: 16px 36px;
|
||||||
|
min-width: 160px;
|
||||||
|
font-size: 17px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ultra wide 4K+ screens - 1920px+ */
|
||||||
|
@media (min-width: 1920px) {
|
||||||
|
body {
|
||||||
|
padding: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-edit-card {
|
||||||
|
max-width: 99%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-grid {
|
||||||
|
grid-template-columns: repeat(5, 1fr);
|
||||||
|
gap: 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permissions-container {
|
||||||
|
grid-template-columns: repeat(5, 1fr);
|
||||||
|
gap: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-header {
|
||||||
|
padding: 60px 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.staff-title {
|
||||||
|
font-size: 2.6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-section {
|
||||||
|
padding: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.action-buttons {
|
||||||
|
padding: 40px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =========================================== */
|
||||||
|
/* MOBILE RESPONSIVE (UNCHANGED) */
|
||||||
|
/* =========================================== */
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
body {
|
body {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
@@ -521,7 +781,7 @@
|
|||||||
<div class="staff-edit-container">
|
<div class="staff-edit-container">
|
||||||
<!-- Main Card -->
|
<!-- Main Card -->
|
||||||
<div class="staff-edit-card">
|
<div class="staff-edit-card">
|
||||||
<!-- Compact Header -->
|
<!-- Fluid Header -->
|
||||||
<div class="staff-header">
|
<div class="staff-header">
|
||||||
<div class="staff-avatar">
|
<div class="staff-avatar">
|
||||||
<div class="staff-avatar-initials">
|
<div class="staff-avatar-initials">
|
||||||
|
|||||||
Reference in New Issue
Block a user