| 1 |
|
| 2 |
|
| 3 |
/* Core Styles */ |
| 4 |
#wpcontent { |
| 5 |
padding-left: 0; |
| 6 |
} |
| 7 |
.stat-sublabel { |
| 8 |
font-size: 0.8rem; |
| 9 |
color: #666; |
| 10 |
display: block; |
| 11 |
margin-top: 0.5rem; |
| 12 |
} |
| 13 |
body.wp-admin .wrap.mxchat-transcripts-wrapper { |
| 14 |
max-width: 100%; |
| 15 |
margin: 0 auto; |
| 16 |
padding: 0; |
| 17 |
} |
| 18 |
|
| 19 |
/* Hero Section */ |
| 20 |
body.wp-admin .wrap.mxchat-transcripts-wrapper .mxchat-transcripts-hero { |
| 21 |
text-align: center; |
| 22 |
padding: 3.5rem 2rem; |
| 23 |
position: relative; |
| 24 |
background: #212121; |
| 25 |
border-bottom: 4px solid transparent; |
| 26 |
border-image: linear-gradient(135deg, #fa73e6, #7873f5, #3ac9d1); |
| 27 |
border-image-slice: 1; |
| 28 |
} |
| 29 |
|
| 30 |
body.wp-admin .wrap.mxchat-transcripts-wrapper .mxchat-transcripts-hero::before { |
| 31 |
content: ''; |
| 32 |
position: absolute; |
| 33 |
top: 0; |
| 34 |
left: 0; |
| 35 |
width: 100%; |
| 36 |
height: 100%; |
| 37 |
background: radial-gradient( |
| 38 |
circle at center, |
| 39 |
rgba(250, 115, 230, 0.08) 0%, |
| 40 |
rgba(120, 115, 245, 0.08) 50%, |
| 41 |
rgba(58, 201, 209, 0.08) 100% |
| 42 |
); |
| 43 |
z-index: 1; |
| 44 |
} |
| 45 |
|
| 46 |
body.wp-admin .wrap.mxchat-transcripts-wrapper .mxchat-main-title { |
| 47 |
font-size: 3.5rem; |
| 48 |
margin: 0 0 1.5rem; |
| 49 |
line-height: 1.2; |
| 50 |
color: white; |
| 51 |
position: relative; |
| 52 |
z-index: 2; |
| 53 |
} |
| 54 |
|
| 55 |
body.wp-admin .wrap.mxchat-transcripts-wrapper .mxchat-gradient-text { |
| 56 |
background: linear-gradient(135deg, #fa73e6, #7873f5, #3ac9d1); |
| 57 |
-webkit-background-clip: text; |
| 58 |
-webkit-text-fill-color: transparent; |
| 59 |
display: inline-block; |
| 60 |
font-weight: 700; |
| 61 |
} |
| 62 |
|
| 63 |
body.wp-admin .wrap.mxchat-transcripts-wrapper .mxchat-hero-subtitle { |
| 64 |
font-size: 1.25rem; |
| 65 |
color: rgba(255, 255, 255, 0.9); |
| 66 |
max-width: 800px; |
| 67 |
margin: 0 auto; |
| 68 |
position: relative; |
| 69 |
z-index: 2; |
| 70 |
line-height: 1.6; |
| 71 |
} |
| 72 |
|
| 73 |
/* Content Area */ |
| 74 |
body.wp-admin .wrap.mxchat-transcripts-wrapper .mxchat-content { |
| 75 |
padding: 2rem; |
| 76 |
max-width: 1400px; |
| 77 |
margin: 0 auto; |
| 78 |
} |
| 79 |
|
| 80 |
/* Responsive Design */ |
| 81 |
@media (max-width: 768px) { |
| 82 |
body.wp-admin .wrap.mxchat-transcripts-wrapper { |
| 83 |
padding: 0; |
| 84 |
} |
| 85 |
|
| 86 |
body.wp-admin .wrap.mxchat-transcripts-wrapper .mxchat-main-title { |
| 87 |
font-size: 2.5rem; |
| 88 |
} |
| 89 |
|
| 90 |
body.wp-admin .wrap.mxchat-transcripts-wrapper .mxchat-transcripts-hero { |
| 91 |
padding: 2.5rem 1.5rem; |
| 92 |
} |
| 93 |
|
| 94 |
.auto-fold #wpcontent { |
| 95 |
margin-left: 0; |
| 96 |
padding-left: 0px; |
| 97 |
} |
| 98 |
.mxchat-action-button { |
| 99 |
width: 100%; |
| 100 |
} |
| 101 |
} |
| 102 |
|
| 103 |
.mxchat-action-button { |
| 104 |
background: linear-gradient(135deg, #fa73e6, #7873f5); |
| 105 |
color: white; |
| 106 |
border: none; |
| 107 |
padding: 8px 16px; |
| 108 |
border-radius: 8px; |
| 109 |
cursor: pointer; |
| 110 |
font-weight: 600; |
| 111 |
display: flex; |
| 112 |
align-items: center; |
| 113 |
gap: 8px; |
| 114 |
transition: transform 0.2s ease, box-shadow 0.2s ease; |
| 115 |
} |
| 116 |
|
| 117 |
.mxchat-action-button:hover { |
| 118 |
transform: translateY(-1px); |
| 119 |
box-shadow: 0 4px 12px rgba(120, 115, 245, 0.2); |
| 120 |
} |
| 121 |
|
| 122 |
.mxchat-action-button.loading { |
| 123 |
opacity: 0.7; |
| 124 |
cursor: not-allowed; |
| 125 |
} |
| 126 |
|
| 127 |
.mxchat-action-button .dashicons { |
| 128 |
font-size: 16px; |
| 129 |
width: 16px; |
| 130 |
height: 16px; |
| 131 |
} |
| 132 |
|