index.scss
2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
.eagle-schema-page__header {
margin-bottom: 10px;
}
.eagle-schema-page__filter {
border: 1px solid #ebeef5;
padding-top: 10px;
padding-right: 10px;
border-radius: 4px;
margin-bottom: 10px;
}
.eagle-schema-page__action {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: flex-start;
line-height: 1;
.el-button + .el-button {
margin-left: 0;
}
.el-button {
margin-right: 10px;
margin-bottom: 10px;
}
}
.eagle-schema-page__table-operation {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
.el-button + .el-button {
margin-left: 0;
}
.el-button {
margin-right: 8px;
padding-top: 6px;
padding-bottom: 6px;
}
}
.eagle-schema-page__footer {
margin-top: 10px;
text-align: right;
display: flex;
justify-content: space-between;
align-items: center;
.selection-info {
word-break: break-all;
white-space: nowrap;
font-size: 12px;
color: #606266;
.num {
color: #333;
font-weight: bold;
padding: 0 5px;
font-size: 16px;
}
.el-button {
margin-left: 5px;
}
}
.el-pagination {
flex: auto;
}
}
.eagle-loading-toast {
$toast-color: #fff;
$toast-bg-color: #000;
background-color: rgba($toast-bg-color, 0);
.el-loading-spinner {
width: 200px;
height: 120px;
margin: auto;
background-color: rgba($toast-bg-color, 0.7);
color: $toast-color;
left: 50%;
transform: translateX(-50%);
border-radius: 16px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
.path {
stroke: $toast-color;
}
.el-icon-loading {
font-size: 32px;
color: $toast-color;
}
.el-loading-text {
font-size: 14px;
color: $toast-color;
margin-top: 10px;
}
}
}
.eagle-schema-page__drawer {
.el-drawer__header {
padding-bottom: 10px;
margin-bottom: 0;
border-bottom: 1px solid #DCDFE6;
}
.el-drawer__body {
box-sizing: border-box;
height: calc(100vh - 55px);
}
&-content {
padding: 20px;
overflow-y: auto;
}
&-footer {
height: 60px;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
padding: 10px;
background: #fff;
border-top: 1px solid #DCDFE6;
}
}