0
デフォルトは[+]と[ - ]です。他のアイコンに変更する方法が見つかりませんでした。例えば、下から右へhttps://ant.design/components/icon/から。Antd:行の展開アイコンを変更することは可能です
私のユーザーは非常に厄介です。
ありがとうございます!
デフォルトは[+]と[ - ]です。他のアイコンに変更する方法が見つかりませんでした。例えば、下から右へhttps://ant.design/components/icon/から。Antd:行の展開アイコンを変更することは可能です
私のユーザーは非常に厄介です。
ありがとうございます!
それを見つけた:
.ant-table-row-expand-icon-cell {
position: relative;
.ant-table-row-collapsed:after {
content : "\E61D";
font-family: "anticon" !important;
font-style: normal;
vertical-align: baseline;
text-align: center;
text-transform: none;
text-rendering: auto;
right: 16px;
top: 0;
display: inline-block;
transform: scale(0.66666667) rotate(0deg);
transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
zoom: 1;
}
.ant-table-row-expanded:after {
content : "\E61D";
font-family: "anticon" !important;
font-style: normal;
vertical-align: baseline;
text-align: center;
text-transform: none;
text-rendering: auto;
right: 16px;
top: 0;
display: inline-block;
transform: rotate(180deg) scale(0.75);
transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
zoom: 1;
}