Files
certd/packages/ui/certd-client/src/style/certd.less

145 lines
2.0 KiB
Plaintext
Raw Normal View History

2024-09-19 17:38:51 +08:00
.fs-iconify.fs-icon {
2024-03-12 10:22:27 +08:00
display: inline-flex;
justify-content: center;
align-items: center;
2025-06-29 14:09:09 +08:00
font-size: 16px;
2025-03-30 01:41:27 +08:00
}
.fs-icon {
2025-06-29 14:09:09 +08:00
font-size: 16px;
2024-03-12 10:22:27 +08:00
}
.ant-btn {
display: inline-flex;
justify-content: center;
align-items: center;
2025-06-29 14:09:09 +08:00
.fs-iconify {
2025-01-19 00:33:34 +08:00
margin-right: 5px;
}
2024-03-12 10:22:27 +08:00
}
2024-09-19 17:38:51 +08:00
.cd-icon-button {
display: inline-flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
2024-09-19 17:38:51 +08:00
.cd-flex {
display: flex;
justify-content: left;
align-items: center;
}
2024-09-19 17:38:51 +08:00
.cd-flex-inline {
display: inline-flex;
justify-content: left;
align-items: center;
}
2024-09-19 17:38:51 +08:00
.ant-drawer-content {
&.fullscreen {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background: #fff;
}
}
.icon-button {
cursor: pointer;
2025-06-29 14:09:09 +08:00
font-size: 22px;
2024-09-19 17:38:51 +08:00
}
.ant-drawer {
.ant-drawer-header-title {
display: flex;
align-items: center;
.ant-drawer-title {
flex: 1;
display: flex;
align-items: center;
justify-content: space-between;
}
}
2024-10-27 02:51:56 +08:00
}
.settings-form {
width: 800px;
margin: 20px;
}
2025-06-29 14:09:09 +08:00
.fs-crud-table {
.ant-table-body {
2025-03-11 22:25:14 +08:00
height: 60vh;
table {
}
}
}
2025-06-29 14:09:09 +08:00
body a {
color: #1890ff;
&:hover {
color: #40a9ff;
}
}
2025-06-29 14:09:09 +08:00
span.fs-icon-svg {
2025-04-06 18:06:21 +08:00
display: inline-flex;
align-items: center;
2025-03-30 00:44:01 +08:00
}
2025-06-29 14:09:09 +08:00
.ant-btn .fs-icon:last-child {
margin-right: 0px;
2025-04-14 22:22:01 +08:00
}
2025-06-29 14:09:09 +08:00
.fs-iconify fs-icon {
svg {
vertical-align: 0 !important;
2025-04-14 22:22:01 +08:00
}
2025-04-17 23:05:52 +08:00
}
2025-06-29 14:09:09 +08:00
.fs-button {
span {
&:first-child {
2025-04-17 23:05:52 +08:00
margin-right: 5px;
}
2025-06-29 14:09:09 +08:00
&:last-child {
2025-04-17 23:05:52 +08:00
margin-left: 5px;
}
}
2025-06-29 14:09:09 +08:00
.fs-icon,
.fs-button-icon {
2025-04-17 23:05:52 +08:00
margin: 0 !important;
}
2025-06-29 14:09:09 +08:00
}
2026-03-22 23:31:24 +08:00
button.ant-btn.ant-btn-default.isPlus{
color: #c5913f;
border: 1px solid #c5913f;
&:disabled {
cursor: not-allowed;
border-color: hsl(240 5.9% 90%);
color: rgba(50, 54, 57, 0.25);
background-color: rgba(50, 54, 57, 0.04);
box-shadow: none;
}
}
.dark{
button.ant-btn.ant-btn-default.isPlus{
color: #c5913f;
border: 1px solid #c5913f;
&:disabled {
border-color: hsl(0, 0%, 31%);
color: rgba(233, 233, 233, 0.25);
}
}
2026-03-22 23:31:24 +08:00
}