无编辑摘要 |
无编辑摘要 标签:已被回退 |
||
第1行: | 第1行: | ||
/* | /* 玩家卡片特有样式 */ | ||
.mc-player-card { | |||
flex-direction: row !important; /* 强制横向布局 */ | |||
. | align-items: center; | ||
padding: 15px 20px; | |||
height: auto !important; /* 自适应高度 */ | |||
} | } | ||
/* | /* 头像样式调整 */ | ||
.mc-player-avatar { | |||
width: 50px !important; | |||
height: 50px !important; | |||
margin-right: 15px; | |||
border-radius: 50% !important; | |||
overflow: hidden; | |||
} | } | ||
.mc-avatar-img { | |||
border-radius: 50% !important; /* 圆形头像 */ | |||
transition: transform 0.5s ease !important; | |||
} | } | ||
/* | /* 头像点击旋转动画 */ | ||
.mc-player-card:active .mc-avatar-img { | |||
transform: rotate(360deg) !important; | |||
} | } | ||
/* | /* 文字区域样式 */ | ||
.mc-player-info { | |||
flex: 1; | |||
min-width: 0; | |||
padding: 0 5px; | |||
padding: | |||
} | } | ||
/* | /* 名称样式修正 */ | ||
.mc-player-name { | |||
padding: 0 !important; | |||
. | background: transparent !important; | ||
border: none !important; | |||
margin: 0 0 5px 0 !important; | |||
} | } | ||
/* | /* 中文介绍样式 */ | ||
. | .mc-player-chinese { | ||
padding: 0 !important; | |||
margin: 0 0 3px 0 !important; | |||
max-height: none !important; /* 取消行数限制 */ | |||
} | } | ||
/* | /* 英文介绍样式 */ | ||
.mc-player-english { | |||
padding: 0 !important; | |||
margin: 0 !important; | |||
. | max-height: none !important; | ||
font-style: italic !important; | |||
color: #666 !important; | |||
} | } | ||
/* | /* 按钮区域调整 */ | ||
. | .mc-player-card .home-link { | ||
margin: 0 !important; | |||
padding: 0 !important; | |||
.home-link { | |||
} | } |
2025年7月25日 (五) 23:55的版本
/* 玩家卡片特有样式 */
.mc-player-card {
flex-direction: row !important; /* 强制横向布局 */
align-items: center;
padding: 15px 20px;
height: auto !important; /* 自适应高度 */
}
/* 头像样式调整 */
.mc-player-avatar {
width: 50px !important;
height: 50px !important;
margin-right: 15px;
border-radius: 50% !important;
overflow: hidden;
}
.mc-avatar-img {
border-radius: 50% !important; /* 圆形头像 */
transition: transform 0.5s ease !important;
}
/* 头像点击旋转动画 */
.mc-player-card:active .mc-avatar-img {
transform: rotate(360deg) !important;
}
/* 文字区域样式 */
.mc-player-info {
flex: 1;
min-width: 0;
padding: 0 5px;
}
/* 名称样式修正 */
.mc-player-name {
padding: 0 !important;
background: transparent !important;
border: none !important;
margin: 0 0 5px 0 !important;
}
/* 中文介绍样式 */
.mc-player-chinese {
padding: 0 !important;
margin: 0 0 3px 0 !important;
max-height: none !important; /* 取消行数限制 */
}
/* 英文介绍样式 */
.mc-player-english {
padding: 0 !important;
margin: 0 !important;
max-height: none !important;
font-style: italic !important;
color: #666 !important;
}
/* 按钮区域调整 */
.mc-player-card .home-link {
margin: 0 !important;
padding: 0 !important;
}