review code.

This commit is contained in:
lijiahang
2023-10-26 17:12:17 +08:00
parent 6c4e588f92
commit 18de1a2a3a
18 changed files with 81 additions and 51 deletions

View File

@@ -120,6 +120,28 @@ body {
}
}
.click-icon-wrapper {
display: flex;
justify-content: center;
align-items: center;
color: var(--color-text-2);
background: var(--color-fill-2);
border-radius: 2px;
cursor: pointer;
border: 1px solid transparent;
transition: background-color 0.1s cubic-bezier(0, 0, 1, 1);
}
.click-icon-wrapper:hover {
background: var(--color-fill-3);
}
.copy-left {
color: rgb(var(--arcoblue-6));
cursor: pointer;
margin-right: 4px;
}
.span-blue {
color: rgb(var(--arcoblue-6));
}

View File

@@ -46,7 +46,6 @@
}
}
}
}
.table-wrapper {
@@ -110,22 +109,6 @@
padding: 18px 24px 14px 24px;
}
.click-icon-wrapper {
display: flex;
justify-content: center;
align-items: center;
color: var(--color-text-2);
background: var(--color-fill-2);
border-radius: 2px;
cursor: pointer;
border: 1px solid transparent;
transition: background-color 0.1s cubic-bezier(0, 0, 1, 1);
}
.click-icon-wrapper:hover {
background: var(--color-fill-3);
}
.arco-table-td-content {
color: rgba(var(--gray-9), .95);
font-size: 13px;