Files
clue/UserFile/BaseCss.css
超哥 658b5c7f8f {"Message":"新增WebHook的订阅","MessageType":2,"Modules":[{"State":1,"Type":7,"Name":"Table/FGC_订单记录","ExclusiveType":0},{"State":1,"Type":7,"Name":"Table/FGC_订单明细表","ExclusiveType":0},{"State":1,"Type":7,"Name":"Table/FGC_商品表","ExclusiveType":0},{"State":1,"Type":7,"Name":"Table/项目动态"},{"State":1,"Type":7,"Name":"Table/项目版本"},{"State":1,"Type":23,"Name":"TableView/用户信息视图","ExclusiveType":0},{"State":1,"Type":23,"Name":"TableView/用户组织关系视图","ExclusiveType":0},{"State":1,"Type":23,"Name":"TableView/用户角色关系视图","ExclusiveType":0},{"State":1,"Type":23,"Name":"TableView/组织信息视图","ExclusiveType":0},{"State":1,"Type":23,"Name":"TableView/组织级别视图","ExclusiveType":0},{"State":1,"Type":23,"Name":"TableView/角色信息视图","ExclusiveType":0},{"State":1,"Type":23,"Name":"TableView/角色分类关系视图","ExclusiveType":0},{"State":1,"Type":23,"Name":"TableView/角色拥有权限视图","ExclusiveType":0},{"State":1,"Type":23,"Name":"TableView/角色组织关系视图","ExclusiveType":0},{"State":1,"Type":7,"Name":"Table/message_test","ExclusiveType":0},{"State":1,"Type":1,"Name":"PCPage/项目版本管理"},{"State":1,"Type":1,"Name":"PCPage/任务版本详情"},{"State":1,"Type":1,"Name":"PCPage/任务-任务信息"},{"State":1,"Type":1,"Name":"PCPage/新增任务"},{"State":1,"Type":1,"Name":"PCPage/工时总览"},{"State":1,"Type":1,"Name":"PCPage/个人工时首页"},{"State":1,"Type":1,"Name":"PCPage/首页"},{"State":1,"Type":3,"Name":"MasterPCPage/FGC_母版页"},{"State":1,"Type":15,"Name":"ServerCommand/AI报工数据转日报"},{"State":1,"Type":8,"Name":"ApplicationSetting"},{"State":1,"Type":12,"Name":"CustomLibrary"},{"State":1,"Type":26,"Name":"Upload"},{"State":1,"Type":39,"Name":"PublishConfiguration"},{"State":1,"Type":40,"Name":"Plugin"},{"State":1,"Type":27,"Name":"ServerCommandPrivate/请求令牌"},{"State":2,"Type":27,"Name":"ServerCommandPrivate/创建一个仓库WebHook"},{"State":1,"Type":27,"Name":"ServerCommandPrivate/删除一个仓库WebHook"},{"State":1,"Type":7,"Name":"Table/Git仓库表"},{"State":1,"Type":15,"Name":"ServerCommand/GitCallback"},{"State":1,"Type":7,"Name":"Table/Git_事件记录"},{"State":1,"Type":1,"Name":"PCPage/选择Git仓库"},{"State":1,"Type":15,"Name":"ServerCommand/同步一个仓库到表"},{"State":1,"Type":15,"Name":"ServerCommand/搜索仓库"},{"State":3,"Type":27,"Name":"ServerCommandPrivate/列出仓库的WebHooks"},{"State":3,"Type":16,"Name":"TaskScheduler/应用部署时"},{"State":3,"Type":20,"Name":"ServerCommands/系统"},{"State":3,"Type":15,"Name":"ServerCommand/获取版本号"},{"State":3,"Type":15,"Name":"ServerCommand/列出授权用户所有的Namespace"},{"State":3,"Type":15,"Name":"ServerCommand/创建一个仓库WebHook"}],"Version":"v1"}
2024-06-13 19:51:48 +08:00

185 lines
3.6 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* 优化弹出窗口背景和圆角 */
#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%;
}
/* 工具栏bar撑满圆角 */
.toolbar .menuContainer {
border-radius: 5px;
padding: 5px 0;
height: 100%;
}
.toolbar .menuContainer > ul {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
align-items: center;
height: 100%;
}
.toolbar-left .menuContainer > ul{
justify-content: flex-start;
}
.toolbar-right .menuContainer > ul{
justify-content: flex-end;
}
.toolbar .menuContainer > ul > li {
width: auto !important;
padding: 5px 0;
margin: 0 10px !important;
height: auto;
}
.toolbar .menuContainer > ul > li > a {
padding-left: 12px !important;
line-height: 0px !important;
min-height: 26px;
background: #efefef;
transition-duration: 0.3s;
}
.toolbar .menuContainer > ul > li > a:hover {
background: #d8d8d8;
}
.toolbar .menuContainer > ul > li > a > i {
margin: 0 !important;
}
.toolbar .menuContainer > ul > li > ul {
margin-top: 0px;
}
.toolbar .menuContainer > ul > li > ul li:last-child > a {
border-radius: 0 0 3px 3px;
}
.toolbar .menuContainer > ul > li > ul li:first-child > a {
border-radius: 3px 3px 0 0;
}
/* 定义淡入动画 */
@keyframes fadeIn {
from {
opacity: 0; /* 开始时元素完全透明 */
}
to {
opacity: 1; /* 结束时元素完全不透明 */
}
}
/* 应用淡入动画的CSS类 */
.fade-in {
opacity: 0; /* 初始状态为不可见 */
animation-name: fadeIn; /* 使用定义的fadeIn动画 */
animation-duration: 3s; /* 动画持续时间为2秒 */
animation-fill-mode: forwards; /* 动画完成后保持最后一帧的样式 */
}
.animation-delay-1{
animation-delay: 1s;
}
.animation-delay-2{
animation-delay: 3s;
}
.animation-delay-3{
animation-delay: 3s;
}
.max-height-150{
max-height: 140px;
overflow: auto !important;
}
/* 淡入淡出*/
.fade-effect {
transition: opacity 1s ease, transform 1s ease;
opacity: 1;
transform: translateY(0);
}
.hidden {
opacity: 0;
transform: translateY(20px); /* 向下移动20像素 */
}
/* 聊天气泡框 */
.chatEditor .editormd-html-preview {
padding: 0 !important;
background-color: transparent !important;
white-space: normal !important;
}
/* 定义旋转动画 */
@keyframes rotate-and-fade {
0% {
transform: rotate(0deg);
opacity: 1;
}
25% {
transform: rotate(90deg);
opacity: 0.6;
}
50% {
transform: rotate(180deg);
opacity: 1;
}
100% {
transform: rotate(360deg);
opacity: 0.6;
}
}
/* 应用动画的CSS类 */
.rotate-slow {
animation: rotate-and-fade 10s linear infinite; /* 持续时间10秒线性速率无限循环 */
}
/* 图文列表中按钮 */
.repeater-item:hover .hover-btn {
transition: all 0.5s;
opacity: 1;
}
.repeater-item .hover-btn {
opacity: 0;
}
/* 隐藏未注册提示条 */
a[href="https://www.grapecity.com.cn/solutions/huozige?utm_source=exe&utm_medium=huozige"] {
display: none;
}