38 lines
664 B
CSS
38 lines
664 B
CSS
/* 优化弹出窗口背景和圆角 */
|
|
#fgc-popup-dialog{
|
|
border-radius: 8px !important;
|
|
overflow: hidden;
|
|
}
|
|
/* .FUI-dialog-cover.FUI-show{
|
|
backdrop-filter: blur(3px);
|
|
} */
|
|
|
|
/* 单选按钮圆形 */
|
|
.singlebox .fgc-toggle-button {
|
|
border-radius: 20px;
|
|
}
|
|
|
|
/* 活字格菜单组件 */
|
|
.pms-menu-row ul {
|
|
text-align: center;
|
|
}
|
|
.pms-menu-row ul li {
|
|
width: auto !important;
|
|
margin: 0 10px;
|
|
}
|
|
.pms-menu-row ul li a {
|
|
padding: 0px 10px !important;
|
|
}
|
|
|
|
/*文字溢出隐藏*/
|
|
|
|
.ec-label label,
|
|
.ec-label a {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap !important;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ec-label .fgc-align {
|
|
width: 100%;
|
|
} |