2016-07-21 10:07:30 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2016-11-09 14:45:10 +08:00
|
|
|
通常配合内容及按钮使用,表示一个流程的处理进度。
|
2015-06-25 20:01:20 +08:00
|
|
|
|
2016-07-21 10:07:30 +08:00
|
|
|
## en-US
|
|
|
|
|
2016-11-09 14:45:10 +08:00
|
|
|
Cooperate with the content and buttons, to represent the progress of a process.
|
2016-07-21 10:07:30 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```css
|
2016-11-09 14:45:10 +08:00
|
|
|
.steps-content {
|
2021-01-30 19:39:02 +08:00
|
|
|
min-height: 200px;
|
2016-11-09 14:45:10 +08:00
|
|
|
margin-top: 16px;
|
2021-01-30 19:39:02 +08:00
|
|
|
padding-top: 80px;
|
|
|
|
text-align: center;
|
|
|
|
background-color: #fafafa;
|
2016-11-09 14:45:10 +08:00
|
|
|
border: 1px dashed #e9e9e9;
|
2019-12-23 20:07:56 +08:00
|
|
|
border-radius: 2px;
|
2016-11-09 14:45:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.steps-action {
|
2016-12-04 15:50:54 +08:00
|
|
|
margin-top: 24px;
|
2016-11-09 14:45:10 +08:00
|
|
|
}
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|
2019-12-25 22:13:04 +08:00
|
|
|
|
|
|
|
<style>
|
|
|
|
[data-theme="dark"] .steps-content {
|
|
|
|
margin-top: 16px;
|
|
|
|
border: 1px dashed #303030;
|
|
|
|
background-color: rgba(255,255,255,0.04);
|
|
|
|
color: rgba(255,255,255,0.65);
|
|
|
|
padding-top: 80px;
|
|
|
|
}
|
|
|
|
</style>
|