@zkwq/business 0.0.38 → 0.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/AppDialog.css +44 -44
- package/dist/css/AppDialog.min.css +1 -1
- package/dist/css/AppNumberBoard.css +122 -0
- package/dist/css/AppNumberBoard.min.css +1 -0
- package/dist/css/Cover.css +2 -3
- package/dist/css/Cover.min.css +1 -1
- package/dist/css/InstitutionAvatar.css +88 -0
- package/dist/css/InstitutionAvatar.min.css +1 -0
- package/dist/css/InstitutionProfile.css +117 -0
- package/dist/css/InstitutionProfile.min.css +1 -0
- package/dist/css/UserProfile.css +124 -0
- package/dist/css/UserProfile.min.css +1 -0
- package/dist/index.css +1 -1
- package/dist/index.js +3140 -2842
- package/dist/index.min.css +1 -1
- package/dist/index.min.js +5 -5
- package/dist/index.umd.cjs +7 -7
- package/dist/index.umd.min.cjs +6 -6
- package/dist/static/institution_avatar_placeholder.png +0 -0
- package/package.json +1 -1
package/dist/css/AppDialog.css
CHANGED
|
@@ -1,4 +1,47 @@
|
|
|
1
|
-
|
|
1
|
+
.AppDialog__wrapper.base-dialog__wrapper {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
overflow-x: hidden;
|
|
6
|
+
overflow-y: auto;
|
|
7
|
+
}
|
|
8
|
+
.AppDialog {
|
|
9
|
+
max-height: 100vh;
|
|
10
|
+
transition: max-height 0.8s ease, height 0.8s ease;
|
|
11
|
+
}
|
|
12
|
+
.AppDialog.base-dialog {
|
|
13
|
+
margin-top: 0 !important;
|
|
14
|
+
margin-bottom: 0 !important;
|
|
15
|
+
}
|
|
16
|
+
.AppDialog .base-dialog__header {
|
|
17
|
+
padding: 0;
|
|
18
|
+
}
|
|
19
|
+
.AppDialog .base-dialog__body {
|
|
20
|
+
padding: 0;
|
|
21
|
+
}
|
|
22
|
+
.AppDialog--fullPage {
|
|
23
|
+
height: 100vh;
|
|
24
|
+
}
|
|
25
|
+
.AppDialog--fullPage.AppDialog .base-dialog__body {
|
|
26
|
+
height: 100%;
|
|
27
|
+
}
|
|
28
|
+
.AppDialog--fullPage.AppDialog .AppDialog__inner {
|
|
29
|
+
height: 100vh;
|
|
30
|
+
overflow: visible;
|
|
31
|
+
}
|
|
32
|
+
.AppDialog--fullPage.AppDialog .AppDialog__content {
|
|
33
|
+
height: 100%;
|
|
34
|
+
}
|
|
35
|
+
.Modal__closeButton {
|
|
36
|
+
position: absolute;
|
|
37
|
+
top: 8px;
|
|
38
|
+
right: -60px;
|
|
39
|
+
padding: 12px;
|
|
40
|
+
}
|
|
41
|
+
.Modal__closeIcon {
|
|
42
|
+
vertical-align: top;
|
|
43
|
+
fill: #FFF;
|
|
44
|
+
}
|
|
2
45
|
|
|
3
46
|
|
|
4
47
|
|
|
@@ -116,47 +159,4 @@
|
|
|
116
159
|
.AppDialog__subtitle--left[data-v-47783249] {
|
|
117
160
|
padding: 0 16px;
|
|
118
161
|
}
|
|
119
|
-
}.AppDialog__wrapper.base-dialog__wrapper {
|
|
120
|
-
display: flex;
|
|
121
|
-
flex-direction: column;
|
|
122
|
-
justify-content: center;
|
|
123
|
-
overflow-x: hidden;
|
|
124
|
-
overflow-y: auto;
|
|
125
|
-
}
|
|
126
|
-
.AppDialog {
|
|
127
|
-
max-height: 100vh;
|
|
128
|
-
transition: max-height 0.8s ease, height 0.8s ease;
|
|
129
|
-
}
|
|
130
|
-
.AppDialog.base-dialog {
|
|
131
|
-
margin-top: 0 !important;
|
|
132
|
-
margin-bottom: 0 !important;
|
|
133
|
-
}
|
|
134
|
-
.AppDialog .base-dialog__header {
|
|
135
|
-
padding: 0;
|
|
136
|
-
}
|
|
137
|
-
.AppDialog .base-dialog__body {
|
|
138
|
-
padding: 0;
|
|
139
|
-
}
|
|
140
|
-
.AppDialog--fullPage {
|
|
141
|
-
height: 100vh;
|
|
142
|
-
}
|
|
143
|
-
.AppDialog--fullPage.AppDialog .base-dialog__body {
|
|
144
|
-
height: 100%;
|
|
145
|
-
}
|
|
146
|
-
.AppDialog--fullPage.AppDialog .AppDialog__inner {
|
|
147
|
-
height: 100vh;
|
|
148
|
-
overflow: visible;
|
|
149
|
-
}
|
|
150
|
-
.AppDialog--fullPage.AppDialog .AppDialog__content {
|
|
151
|
-
height: 100%;
|
|
152
|
-
}
|
|
153
|
-
.Modal__closeButton {
|
|
154
|
-
position: absolute;
|
|
155
|
-
top: 8px;
|
|
156
|
-
right: -60px;
|
|
157
|
-
padding: 12px;
|
|
158
|
-
}
|
|
159
|
-
.Modal__closeIcon {
|
|
160
|
-
vertical-align: top;
|
|
161
|
-
fill: #FFF;
|
|
162
162
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
[data-v-47783249]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.AppDialog__inner[data-v-47783249]{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog__content[data-v-47783249]{padding:10px 20px 50px}.AppDialog__title[data-v-47783249]{margin-top:40px;font-size:24px;font-weight:500;color:#2f3a91;text-align:center}.AppDialog__subtitle[data-v-47783249]{padding:0 38px;margin-top:4px;font-size:14px;line-height:1.5;color:#8590a6;text-align:center}.AppDialog__title--left[data-v-47783249]{padding:0 20px;font-size:15px;color:#2f3a91;font-weight:600;height:60px;line-height:60px}.AppDialog__subtitle--left[data-v-47783249]{padding:0 20px;font-size:14px;line-height:1;color:#8590a6;text-align:left}@media (max-width:576px){.AppDialog__title--left[data-v-47783249]{padding:20px 16px 10px}.AppDialog__subtitle--left[data-v-47783249]{padding:0 16px}}
|
|
1
|
+
.AppDialog__wrapper.base-dialog__wrapper{display:flex;flex-direction:column;justify-content:center;overflow-x:hidden;overflow-y:auto}.AppDialog{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog.base-dialog{margin-top:0!important;margin-bottom:0!important}.AppDialog .base-dialog__header{padding:0}.AppDialog .base-dialog__body{padding:0}.AppDialog--fullPage{height:100vh}.AppDialog--fullPage.AppDialog .base-dialog__body{height:100%}.AppDialog--fullPage.AppDialog .AppDialog__inner{height:100vh;overflow:visible}.AppDialog--fullPage.AppDialog .AppDialog__content{height:100%}.Modal__closeButton{position:absolute;top:8px;right:-60px;padding:12px}.Modal__closeIcon{vertical-align:top;fill:#FFF}[data-v-47783249]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.AppDialog__inner[data-v-47783249]{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog__content[data-v-47783249]{padding:10px 20px 50px}.AppDialog__title[data-v-47783249]{margin-top:40px;font-size:24px;font-weight:500;color:#2f3a91;text-align:center}.AppDialog__subtitle[data-v-47783249]{padding:0 38px;margin-top:4px;font-size:14px;line-height:1.5;color:#8590a6;text-align:center}.AppDialog__title--left[data-v-47783249]{padding:0 20px;font-size:15px;color:#2f3a91;font-weight:600;height:60px;line-height:60px}.AppDialog__subtitle--left[data-v-47783249]{padding:0 20px;font-size:14px;line-height:1;color:#8590a6;text-align:left}@media (max-width:576px){.AppDialog__title--left[data-v-47783249]{padding:20px 16px 10px}.AppDialog__subtitle--left[data-v-47783249]{padding:0 16px}}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
[data-v-2445abcc]:export {
|
|
13
|
+
primary: #2F3A91;
|
|
14
|
+
success: #67C23A;
|
|
15
|
+
warning: #FF791A;
|
|
16
|
+
danger: #F1403C;
|
|
17
|
+
info: #8590a6;
|
|
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
|
+
.NumberBoard__container[data-v-2445abcc] {
|
|
76
|
+
font-size: 14px;
|
|
77
|
+
text-align: center;
|
|
78
|
+
}
|
|
79
|
+
.NumberBoard[data-v-2445abcc] {
|
|
80
|
+
display: flex;
|
|
81
|
+
}
|
|
82
|
+
.NumberBoard--divider .NumberBoard__item + .NumberBoard__item .NumberBoard__itemInner[data-v-2445abcc] {
|
|
83
|
+
border-left: 1px solid #DCDFE6;
|
|
84
|
+
}
|
|
85
|
+
.NumberBoard__item[data-v-2445abcc] {
|
|
86
|
+
flex: 1;
|
|
87
|
+
}
|
|
88
|
+
.NumberBoard__item.Button[data-v-2445abcc] {
|
|
89
|
+
border: 0;
|
|
90
|
+
line-height: unset;
|
|
91
|
+
font-size: unset;
|
|
92
|
+
}
|
|
93
|
+
.NumberBoard__itemInner[data-v-2445abcc] {
|
|
94
|
+
text-align: center;
|
|
95
|
+
line-height: 1.6;
|
|
96
|
+
}
|
|
97
|
+
.NumberBoard__itemName[data-v-2445abcc] {
|
|
98
|
+
font-size: 14px;
|
|
99
|
+
color: #8590a6;
|
|
100
|
+
}
|
|
101
|
+
.NumberBoard__itemValue[data-v-2445abcc] {
|
|
102
|
+
color: #2F3A91;
|
|
103
|
+
display: inline-block;
|
|
104
|
+
font-size: 18px;
|
|
105
|
+
font-weight: 600;
|
|
106
|
+
font-synthesis: style;
|
|
107
|
+
}
|
|
108
|
+
html[data-ios] .NumberBoard__itemValue[data-v-2445abcc] {
|
|
109
|
+
font-weight: 500;
|
|
110
|
+
}
|
|
111
|
+
html[data-android] .NumberBoard__itemValue[data-v-2445abcc] {
|
|
112
|
+
font-weight: 700;
|
|
113
|
+
}
|
|
114
|
+
.HoverBoard__item[data-v-2445abcc] {
|
|
115
|
+
cursor: pointer;
|
|
116
|
+
}
|
|
117
|
+
.HoverBoard__item:hover .NumberBoard__itemName[data-v-2445abcc] {
|
|
118
|
+
color: #2F3A91;
|
|
119
|
+
}
|
|
120
|
+
.HoverBoard__item:hover .NumberBoard__itemValue[data-v-2445abcc] {
|
|
121
|
+
color: #2F3A91;
|
|
122
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[data-v-2445abcc]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.NumberBoard__container[data-v-2445abcc]{font-size:14px;text-align:center}.NumberBoard[data-v-2445abcc]{display:flex}.NumberBoard--divider .NumberBoard__item+.NumberBoard__item .NumberBoard__itemInner[data-v-2445abcc]{border-left:1px solid #dcdfe6}.NumberBoard__item[data-v-2445abcc]{flex:1}.NumberBoard__item.Button[data-v-2445abcc]{border:0;line-height:unset;font-size:unset}.NumberBoard__itemInner[data-v-2445abcc]{text-align:center;line-height:1.6}.NumberBoard__itemName[data-v-2445abcc]{font-size:14px;color:#8590a6}.NumberBoard__itemValue[data-v-2445abcc]{color:#2f3a91;display:inline-block;font-size:18px;font-weight:600;font-synthesis:style}html[data-ios] .NumberBoard__itemValue[data-v-2445abcc]{font-weight:500}html[data-android] .NumberBoard__itemValue[data-v-2445abcc]{font-weight:700}.HoverBoard__item[data-v-2445abcc]{cursor:pointer}.HoverBoard__item:hover .NumberBoard__itemName[data-v-2445abcc]{color:#2f3a91}.HoverBoard__item:hover .NumberBoard__itemValue[data-v-2445abcc]{color:#2f3a91}
|
package/dist/css/Cover.css
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
.avatar-uploader .base-upload{width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;}
|
|
3
|
-
|
|
4
2
|
|
|
5
3
|
|
|
6
4
|
|
|
@@ -114,4 +112,5 @@
|
|
|
114
112
|
.avatar[data-v-086ca00a] {
|
|
115
113
|
width: 314px;
|
|
116
114
|
height: 130px;
|
|
117
|
-
}
|
|
115
|
+
}
|
|
116
|
+
.avatar-uploader .base-upload{width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;}
|
package/dist/css/Cover.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
[data-v-086ca00a]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.avatar-uploader[data-v-086ca00a]{width:314px;height:130px;border:1px dashed #dcdfe6;display:flex;align-items:center;justify-content:center;position:relative}.avatar-uploader .FileMask__actions[data-v-086ca00a]{width:100%;height:100%;position:absolute;left:0;top:0;opacity:0;border-radius:4px;transition:all .2s;background-color:rgba(0,0,0,.5);color:#fff;display:flex;align-items:center;justify-content:center;font-size:18px}.avatar-uploader .FileMask__actions i[data-v-086ca00a]{cursor:pointer}.avatar-uploader .FileMask__actions i+i[data-v-086ca00a]{margin-left:16px}.avatar-uploader:hover .FileMask__actions[data-v-086ca00a]{opacity:1}.avatar-uploader-icon[data-v-086ca00a]{font-size:30px}.avatar[data-v-086ca00a]{width:314px;height:130px}.avatar-uploader .base-upload{width:100%;height:100%;display:flex;align-items:center;justify-content:center}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
[data-v-09cbadd1]:export {
|
|
13
|
+
primary: #2F3A91;
|
|
14
|
+
success: #67C23A;
|
|
15
|
+
warning: #FF791A;
|
|
16
|
+
danger: #F1403C;
|
|
17
|
+
info: #8590a6;
|
|
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
|
+
.Avatar[data-v-09cbadd1] {
|
|
76
|
+
background: #FFFFFF;
|
|
77
|
+
border-radius: 2px;
|
|
78
|
+
object-fit: cover;
|
|
79
|
+
}
|
|
80
|
+
.Avatar--pointer[data-v-09cbadd1] {
|
|
81
|
+
cursor: pointer;
|
|
82
|
+
}
|
|
83
|
+
.Avatar--large[data-v-09cbadd1] {
|
|
84
|
+
border-radius: 4px;
|
|
85
|
+
}
|
|
86
|
+
.Avatar--round[data-v-09cbadd1] {
|
|
87
|
+
border-radius: 50%;
|
|
88
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[data-v-09cbadd1]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.Avatar[data-v-09cbadd1]{background:#fff;border-radius:2px;object-fit:cover}.Avatar--pointer[data-v-09cbadd1]{cursor:pointer}.Avatar--large[data-v-09cbadd1]{border-radius:4px}.Avatar--round[data-v-09cbadd1]{border-radius:50%}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
[data-v-3e0f0f88]:export {
|
|
13
|
+
primary: #2F3A91;
|
|
14
|
+
success: #67C23A;
|
|
15
|
+
warning: #FF791A;
|
|
16
|
+
danger: #F1403C;
|
|
17
|
+
info: #8590a6;
|
|
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
|
+
.UserProfile[data-v-3e0f0f88] {
|
|
76
|
+
display: flex;
|
|
77
|
+
align-items: center;
|
|
78
|
+
}
|
|
79
|
+
.UserProfile .SmoothNumber[data-v-3e0f0f88] {
|
|
80
|
+
color: #2F3A91;
|
|
81
|
+
}
|
|
82
|
+
.UserProfile__avatar[data-v-3e0f0f88] {
|
|
83
|
+
margin-right: 12px;
|
|
84
|
+
}
|
|
85
|
+
.UserProfile__avatar .Avatar[data-v-3e0f0f88], .UserProfile__avatar .UserLink[data-v-3e0f0f88] {
|
|
86
|
+
display: block;
|
|
87
|
+
}
|
|
88
|
+
.UserProfile__content[data-v-3e0f0f88] {
|
|
89
|
+
flex: 1;
|
|
90
|
+
overflow: hidden;
|
|
91
|
+
}
|
|
92
|
+
.UserProfile__affiliation[data-v-3e0f0f88], .UserProfile__name[data-v-3e0f0f88] {
|
|
93
|
+
overflow: hidden;
|
|
94
|
+
text-overflow: ellipsis;
|
|
95
|
+
white-space: nowrap;
|
|
96
|
+
}
|
|
97
|
+
.UserProfile__name[data-v-3e0f0f88] {
|
|
98
|
+
font-size: 18px;
|
|
99
|
+
font-weight: 600;
|
|
100
|
+
font-synthesis: style;
|
|
101
|
+
color: #121212;
|
|
102
|
+
margin-bottom: 8px;
|
|
103
|
+
display: flex;
|
|
104
|
+
align-items: center;
|
|
105
|
+
white-space: normal;
|
|
106
|
+
}
|
|
107
|
+
.UserProfile__affiliation[data-v-3e0f0f88] {
|
|
108
|
+
color: #8590a6;
|
|
109
|
+
line-height: 1.5;
|
|
110
|
+
max-height: 42px;
|
|
111
|
+
overflow: hidden;
|
|
112
|
+
margin-top: 4px;
|
|
113
|
+
}
|
|
114
|
+
.UserProfile__name--light[data-v-3e0f0f88] {
|
|
115
|
+
font-weight: 500;
|
|
116
|
+
line-height: 26px;
|
|
117
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[data-v-3e0f0f88]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.UserProfile[data-v-3e0f0f88]{display:flex;align-items:center}.UserProfile .SmoothNumber[data-v-3e0f0f88]{color:#2f3a91}.UserProfile__avatar[data-v-3e0f0f88]{margin-right:12px}.UserProfile__avatar .Avatar[data-v-3e0f0f88],.UserProfile__avatar .UserLink[data-v-3e0f0f88]{display:block}.UserProfile__content[data-v-3e0f0f88]{flex:1;overflow:hidden}.UserProfile__affiliation[data-v-3e0f0f88],.UserProfile__name[data-v-3e0f0f88]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.UserProfile__name[data-v-3e0f0f88]{font-size:18px;font-weight:600;font-synthesis:style;color:#121212;margin-bottom:8px;display:flex;align-items:center;white-space:normal}.UserProfile__affiliation[data-v-3e0f0f88]{color:#8590a6;line-height:1.5;max-height:42px;overflow:hidden;margin-top:4px}.UserProfile__name--light[data-v-3e0f0f88]{font-weight:500;line-height:26px}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
[data-v-05e30502]:export {
|
|
13
|
+
primary: #2F3A91;
|
|
14
|
+
success: #67C23A;
|
|
15
|
+
warning: #FF791A;
|
|
16
|
+
danger: #F1403C;
|
|
17
|
+
info: #8590a6;
|
|
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
|
+
.UserProfile[data-v-05e30502] {
|
|
76
|
+
display: flex;
|
|
77
|
+
align-items: center;
|
|
78
|
+
}
|
|
79
|
+
.UserProfile__avatar[data-v-05e30502] {
|
|
80
|
+
margin-right: 12px;
|
|
81
|
+
}
|
|
82
|
+
.UserProfile__avatar .Avatar[data-v-05e30502], .UserProfile__avatar .UserLink[data-v-05e30502] {
|
|
83
|
+
display: block;
|
|
84
|
+
}
|
|
85
|
+
.UserProfile__content[data-v-05e30502] {
|
|
86
|
+
flex: 1;
|
|
87
|
+
overflow: hidden;
|
|
88
|
+
}
|
|
89
|
+
.UserProfile__affiliation[data-v-05e30502], .UserProfile__name[data-v-05e30502] {
|
|
90
|
+
overflow: hidden;
|
|
91
|
+
text-overflow: ellipsis;
|
|
92
|
+
white-space: nowrap;
|
|
93
|
+
}
|
|
94
|
+
.UserProfile__name[data-v-05e30502] {
|
|
95
|
+
font-size: 18px;
|
|
96
|
+
font-weight: 600;
|
|
97
|
+
font-synthesis: style;
|
|
98
|
+
line-height: 30px;
|
|
99
|
+
color: #2F3A91;
|
|
100
|
+
display: flex;
|
|
101
|
+
align-items: center;
|
|
102
|
+
white-space: normal;
|
|
103
|
+
}
|
|
104
|
+
.UserProfile__name .Tags--plain[data-v-05e30502] {
|
|
105
|
+
margin-bottom: 0;
|
|
106
|
+
display: flex;
|
|
107
|
+
align-items: center;
|
|
108
|
+
}
|
|
109
|
+
.UserProfile__name .Tags--plain .el-tag.el-tag--info[data-v-05e30502] {
|
|
110
|
+
margin: 0 0 0 8px;
|
|
111
|
+
}
|
|
112
|
+
.UserProfile__affiliation[data-v-05e30502] {
|
|
113
|
+
font-size: 14px;
|
|
114
|
+
margin-top: 4px;
|
|
115
|
+
}
|
|
116
|
+
.UserProfile__affiliation .RichText[data-v-05e30502] {
|
|
117
|
+
overflow: hidden;
|
|
118
|
+
text-overflow: ellipsis;
|
|
119
|
+
white-space: nowrap;
|
|
120
|
+
}
|
|
121
|
+
.UserProfile__name--light[data-v-05e30502] {
|
|
122
|
+
font-weight: 500;
|
|
123
|
+
line-height: 26px;
|
|
124
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[data-v-05e30502]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.UserProfile[data-v-05e30502]{display:flex;align-items:center}.UserProfile__avatar[data-v-05e30502]{margin-right:12px}.UserProfile__avatar .Avatar[data-v-05e30502],.UserProfile__avatar .UserLink[data-v-05e30502]{display:block}.UserProfile__content[data-v-05e30502]{flex:1;overflow:hidden}.UserProfile__affiliation[data-v-05e30502],.UserProfile__name[data-v-05e30502]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.UserProfile__name[data-v-05e30502]{font-size:18px;font-weight:600;font-synthesis:style;line-height:30px;color:#2f3a91;display:flex;align-items:center;white-space:normal}.UserProfile__name .Tags--plain[data-v-05e30502]{margin-bottom:0;display:flex;align-items:center}.UserProfile__name .Tags--plain .el-tag.el-tag--info[data-v-05e30502]{margin:0 0 0 8px}.UserProfile__affiliation[data-v-05e30502]{font-size:14px;margin-top:4px}.UserProfile__affiliation .RichText[data-v-05e30502]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.UserProfile__name--light[data-v-05e30502]{font-weight:500;line-height:26px}
|