File tree 1 file changed +33
-2
lines changed
1 file changed +33
-2
lines changed Original file line number Diff line number Diff line change 20
20
width: 17px;
21
21
height: 17px;
22
22
margin-right: 10px;
23
- margin-bottom: -3px;
23
+ margin-top: -6px;
24
+ font-size: 18px;
24
25
}
25
26
26
27
.success-icon {
34
35
35
36
#output-box {
36
37
word-wrap: break-word;
38
+ font-size: 14px;
37
39
}
38
40
39
41
.a-tag {
40
42
color: #f44336;
41
43
text-decoration: none;
42
44
font-weight: bold;
43
45
}
46
+
47
+ @-webkit-keyframes shake {
48
+ 0% {
49
+ opacity: 1;
50
+ }
51
+ 50% {
52
+ opacity: 0;
53
+ }
54
+ 100% {
55
+ opacity: 1;
56
+ }
57
+ }
58
+
59
+ @keyframes shake {
60
+ 0% {
61
+ opacity: 1;
62
+ }
63
+ 50% {
64
+ opacity: 0;
65
+ }
66
+ 100% {
67
+ opacity: 1;
68
+ }
69
+ }
70
+
71
+ .shake {
72
+ -webkit-animation: shake 2s infinite;
73
+ animation: shake 2s infinite;
74
+ }
44
75
</style>
45
76
</head>
46
77
<body>
@@ -104,7 +135,7 @@ class="mdui-img-fluid"
104
135
<div class="mdui-panel-item mdui-panel-item-open" id="shell-box">
105
136
<div class="mdui-panel-item-header">
106
137
<div id="running-box">
107
- <div class="mdui-spinner mdui-spinner-colorful loading-icon"></div >
138
+ <i class="mdui-icon material-icons loading-icon mdui-text-color-red shake">fiber_manual_record</i >
108
139
正在执行
109
140
</div>
110
141
<div id="success-box" style="display: none;">
You can’t perform that action at this time.
0 commit comments