mirror of
https://github.com/Wx-2025/ST-Amily2-Chat-Optimisation.git
synced 2026-06-06 17:25:51 +00:00
149 lines
4.0 KiB
CSS
149 lines
4.0 KiB
CSS
|
|
.manual-command-block {
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
|
|
.manual-command-block .manual-input {
|
|
flex: 1 1 60px;
|
|
}
|
|
|
|
.manual-command-block .menu_button {
|
|
flex: 2 1 90px;
|
|
}
|
|
|
|
|
|
|
|
#amily2_manual_historiography_bureau .mhb-controls-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 6px;
|
|
padding: 12px;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
|
|
#amily2_manual_historiography_bureau .manual-command-block {
|
|
flex-wrap: wrap;
|
|
gap: 5px; /* 减小间距以适应换行 */
|
|
}
|
|
#amily2_manual_historiography_bureau .manual-command-block .manual-input {
|
|
flex: 1 1 50px; /* 弹性伸缩 */
|
|
}
|
|
#amily2_manual_historiography_bureau .manual-command-block .menu_button {
|
|
flex: 2 1 80px; /* 按钮占据更多空间 */
|
|
}
|
|
|
|
|
|
#amily2_manual_historiography_bureau .editor-buttons-panel .accent {
|
|
background: linear-gradient(to right, #FF5722, #E64A19);
|
|
border: 1px solid #D84315;
|
|
}
|
|
#amily2_manual_historiography_bureau .editor-buttons-panel .accent:hover {
|
|
box-shadow: 0 0 8px rgba(255, 87, 34, 0.7);
|
|
transform: scale(1.03);
|
|
}
|
|
#amily2_manual_historiography_bureau .editor-buttons-panel .secondary {
|
|
background: linear-gradient(to right, #ffb300, #fb8c00);
|
|
border: 1px solid #f57c00;
|
|
}
|
|
#amily2_manual_historiography_bureau .editor-buttons-panel .secondary:hover {
|
|
box-shadow: 0 0 8px rgba(255, 179, 0, 0.7);
|
|
transform: scale(1.03);
|
|
}
|
|
|
|
|
|
#amily2_manual_historiography_bureau .mhb-selector-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
gap: 12px;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
#amily2_manual_historiography_bureau .mhb-selector-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
min-width: 0;
|
|
gap: 5px;
|
|
}
|
|
#amily2_manual_historiography_bureau .mhb-selector-group > label {
|
|
width: auto;
|
|
margin-top: 0;
|
|
}
|
|
|
|
|
|
#amily2_manual_historiography_bureau .auto-command-block {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
flex-wrap: wrap; /* 允许换行 */
|
|
gap: 15px;
|
|
margin-top: 15px;
|
|
padding: 10px;
|
|
border: 1px solid var(--secondary-border);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
|
|
#amily2_manual_historiography_bureau .auto-control-pair {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
#amily2_manual_historiography_bureau #amily2_mhb_small_expedition_execute {
|
|
width: auto;
|
|
flex-grow: 0;
|
|
}
|
|
#amily2_manual_historiography_bureau #amily2_mhb_small_expedition_execute {
|
|
background: linear-gradient(135deg, #8e44ad, #6a1b9a);
|
|
border: 1px solid #4a148c;
|
|
color: white;
|
|
text-shadow: 0 0 2px rgba(0,0,0,0.3);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
#amily2_manual_historiography_bureau #amily2_mhb_small_expedition_execute:hover {
|
|
background: linear-gradient(135deg, #9b59b6, #8e44ad);
|
|
box-shadow: 0 0 10px rgba(142, 68, 173, 0.7);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
|
|
#amily2_manual_historiography_bureau #amily2_mhb_small_manual_execute {
|
|
background: linear-gradient(135deg, #ff8a65, #ff5722);
|
|
border: 1px solid #e64a19;
|
|
}
|
|
|
|
#amily2_manual_historiography_bureau #amily2_mhb_small_manual_execute:hover {
|
|
background: linear-gradient(135deg, #ff7043, #f4511e);
|
|
box-shadow: 0 0 10px rgba(255, 87, 34, 0.6);
|
|
}
|
|
|
|
#amily2_manual_historiography_bureau .danger {
|
|
background: linear-gradient(135deg, #e74c3c, #c0392b);
|
|
border: 1px solid #a93226;
|
|
color: white;
|
|
}
|
|
|
|
#amily2_manual_historiography_bureau .danger:hover {
|
|
background: linear-gradient(135deg, #ec7063, #e74c3c);
|
|
box-shadow: 0 0 10px rgba(231, 76, 60, 0.7);
|
|
}
|
|
|
|
#amily2_manual_historiography_bureau .success {
|
|
background: linear-gradient(135deg, #2ecc71, #27ae60);
|
|
color: white;
|
|
}
|
|
|
|
#amily2_manual_historiography_bureau .success:hover {
|
|
background: linear-gradient(135deg, #58d68d, #2ecc71);
|
|
box-shadow: 0 0 10px rgba(46, 204, 113, 0.7);
|
|
}
|