|
@@ -0,0 +1,140 @@
|
|
|
|
|
+.busi-state {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ padding-left: 20px;
|
|
|
|
|
+ font-size: 13px;
|
|
|
|
|
+}
|
|
|
|
|
+.busi-state-item {
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ height: 38px;
|
|
|
|
|
+ margin: 5px 5px 5px 0;
|
|
|
|
|
+ padding: 10px 10px 10px 30px;
|
|
|
|
|
+ border-top: 2px solid #ebebeb;
|
|
|
|
|
+ border-bottom: 2px solid #ebebeb;
|
|
|
|
|
+}
|
|
|
|
|
+.busi-state-item:first-child {
|
|
|
|
|
+ padding: 10px 10px 10px 10px;
|
|
|
|
|
+}
|
|
|
|
|
+.busi-state-item .state-arrow {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ width: 38px;
|
|
|
|
|
+ height: 38px;
|
|
|
|
|
+ background-color: #ffffff;
|
|
|
|
|
+ border-top: 2px solid #ebebeb;
|
|
|
|
|
+ border-right: 2px solid #ebebeb;
|
|
|
|
|
+ -webkit-transform: scale(0.707) rotate(45deg);
|
|
|
|
|
+ transform: scale(0.707) rotate(45deg);
|
|
|
|
|
+}
|
|
|
|
|
+.state-suc span.title {
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ z-index: 999;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+}
|
|
|
|
|
+.state-doing span.title,
|
|
|
|
|
+.state-undo span.title {
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ z-index: 999;
|
|
|
|
|
+ color: #967bbd;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+}
|
|
|
|
|
+.state-invalid span.title {
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ z-index: 999;
|
|
|
|
|
+}
|
|
|
|
|
+.busi-state-item .state-circle {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ z-index: -1;
|
|
|
|
|
+ width: 38px;
|
|
|
|
|
+ height: 38px;
|
|
|
|
|
+ background-color: #ffffff;
|
|
|
|
|
+ border-radius: 19px;
|
|
|
|
|
+ -webkit-transform: rotate(45deg);
|
|
|
|
|
+ transform: rotate(45deg);
|
|
|
|
|
+}
|
|
|
|
|
+.circle-left {
|
|
|
|
|
+ top: -2px;
|
|
|
|
|
+ left: -17px;
|
|
|
|
|
+ border-bottom: 2px solid #ebebeb;
|
|
|
|
|
+ border-left: 2px solid #ebebeb;
|
|
|
|
|
+}
|
|
|
|
|
+.circle-right {
|
|
|
|
|
+ top: -2px;
|
|
|
|
|
+ right: -15.5px;
|
|
|
|
|
+ z-index: 1;
|
|
|
|
|
+ border-top: 2px solid #ebebeb;
|
|
|
|
|
+ border-right: 2px solid #ebebeb;
|
|
|
|
|
+}
|
|
|
|
|
+.arrow-right {
|
|
|
|
|
+ top: -2px;
|
|
|
|
|
+ right: -19px;
|
|
|
|
|
+ z-index: 1;
|
|
|
|
|
+}
|
|
|
|
|
+.arrow-left {
|
|
|
|
|
+ top: -2px;
|
|
|
|
|
+ left: -18px;
|
|
|
|
|
+}
|
|
|
|
|
+.state-suc .circle-left,
|
|
|
|
|
+.state-suc .circle-right {
|
|
|
|
|
+ background-color: #967bbd;
|
|
|
|
|
+ border-color: #967bbd;
|
|
|
|
|
+}
|
|
|
|
|
+.state-suc {
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ background-color: #967bbd;
|
|
|
|
|
+ border-top: 2px solid #967bbd;
|
|
|
|
|
+ border-bottom: 2px solid #967bbd;
|
|
|
|
|
+}
|
|
|
|
|
+.state-suc .arrow-right {
|
|
|
|
|
+ background-color: #967bbd;
|
|
|
|
|
+ border-color: #967bbd;
|
|
|
|
|
+}
|
|
|
|
|
+.state-doing {
|
|
|
|
|
+ color: #967bbd;
|
|
|
|
|
+ background-color: #ffffff;
|
|
|
|
|
+ border-top: 2px solid #967bbd;
|
|
|
|
|
+ border-bottom: 2px solid #967bbd;
|
|
|
|
|
+}
|
|
|
|
|
+.state-doing .arrow-left,
|
|
|
|
|
+.state-doing .arrow-right,
|
|
|
|
|
+.state-doing .circle-left,
|
|
|
|
|
+.state-doing .circle-right {
|
|
|
|
|
+ background-color: #ffffff;
|
|
|
|
|
+ border-color: #967bbd;
|
|
|
|
|
+}
|
|
|
|
|
+.state-invalid .circle-left,
|
|
|
|
|
+.state-invalid .circle-right,
|
|
|
|
|
+.state-invalid .state-arrow,
|
|
|
|
|
+.state-invalid .state-circle {
|
|
|
|
|
+ background-color: #ebebeb;
|
|
|
|
|
+ border-color: #ebebeb;
|
|
|
|
|
+}
|
|
|
|
|
+.state-fail {
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ background-color: #ff6767;
|
|
|
|
|
+ border-top: 2px solid #ff6767;
|
|
|
|
|
+ border-bottom: 2px solid #ff6767;
|
|
|
|
|
+}
|
|
|
|
|
+.state-fail .arrow-left {
|
|
|
|
|
+ background-color: #ffffff;
|
|
|
|
|
+ border-color: #ff6767;
|
|
|
|
|
+}
|
|
|
|
|
+.state-fail .circle-left,
|
|
|
|
|
+.state-fail .circle-right {
|
|
|
|
|
+ background-color: #ff6767;
|
|
|
|
|
+ border-color: #ff6767;
|
|
|
|
|
+}
|
|
|
|
|
+.state-invalid {
|
|
|
|
|
+ color: #666666;
|
|
|
|
|
+ background-color: #ebebeb;
|
|
|
|
|
+ border-top: 2px solid #ebebeb;
|
|
|
|
|
+ border-bottom: 2px solid #ebebeb;
|
|
|
|
|
+}
|
|
|
|
|
+.state-invalid .arrow-left {
|
|
|
|
|
+ background-color: #ffffff;
|
|
|
|
|
+ border-color: #ebebeb;
|
|
|
|
|
+}
|
|
|
|
|
+.state-invalid .arrow-right {
|
|
|
|
|
+ background-color: #ebebeb;
|
|
|
|
|
+ border-color: #ebebeb;
|
|
|
|
|
+}
|