2018-06-03 22:00:27 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2018-06-26 16:51:51 +08:00
|
|
|
需要快速预览对象概要时使用,点击遮罩区关闭。
|
2018-06-22 15:46:21 +08:00
|
|
|
|
2018-06-03 22:00:27 +08:00
|
|
|
## en-US
|
|
|
|
|
2019-04-19 20:59:45 +08:00
|
|
|
Use Drawer to quickly preview details of an object, such as those in a list.
|
2018-06-03 22:00:27 +08:00
|
|
|
|
2019-12-25 17:43:39 +08:00
|
|
|
```css
|
|
|
|
.site-description-item-profile-wrapper {
|
2020-05-10 17:15:41 +08:00
|
|
|
margin-bottom: 7px;
|
2019-12-25 17:43:39 +08:00
|
|
|
color: rgba(0, 0, 0, 0.65);
|
2020-04-28 11:16:01 +08:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.5715;
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-theme='compact'] .site-description-item-profile-wrapper {
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 1.66667;
|
2019-12-25 17:43:39 +08:00
|
|
|
}
|
2020-04-28 11:16:01 +08:00
|
|
|
|
|
|
|
.ant-drawer-body p.site-description-item-profile-p {
|
2020-05-10 17:15:41 +08:00
|
|
|
display: block;
|
|
|
|
margin-bottom: 16px;
|
2020-04-28 11:16:01 +08:00
|
|
|
color: rgba(0, 0, 0, 0.85);
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.5715;
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-theme='compact'] .ant-drawer-body p.site-description-item-profile-p {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.66667;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-description-item-profile-p-label {
|
|
|
|
display: inline-block;
|
2020-05-10 17:15:41 +08:00
|
|
|
margin-right: 8px;
|
2019-12-25 17:43:39 +08:00
|
|
|
color: rgba(0, 0, 0, 0.85);
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
<style>
|
|
|
|
[data-theme="dark"] .site-description-item-profile-p {
|
|
|
|
color: rgba(255,255,255,0.85);
|
|
|
|
}
|
|
|
|
[data-theme="dark"] .site-description-item-profile-wrapper {
|
|
|
|
color: rgba(255,255,255,0.65);
|
|
|
|
}
|
|
|
|
</style>
|