@fmdeui/fmui 1.0.28 → 1.0.30

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.
Files changed (187) hide show
  1. package/es/component.mjs +3 -1
  2. package/es/components/fm-layout/index.d.ts +32 -0
  3. package/es/components/fm-layout/src/component/aside.vue.d.ts +5 -0
  4. package/es/components/fm-layout/src/component/columnsAside.vue.d.ts +5 -0
  5. package/es/components/fm-layout/src/component/header.vue.d.ts +16 -0
  6. package/es/components/fm-layout/src/component/main.vue.d.ts +7 -0
  7. package/es/components/fm-layout/src/footer/index.vue.d.ts +3 -0
  8. package/es/components/fm-layout/src/index.vue.d.ts +22 -0
  9. package/es/components/fm-layout/src/logo/index.vue.d.ts +3 -0
  10. package/es/components/fm-layout/src/main/classic.vue.d.ts +18 -0
  11. package/es/components/fm-layout/src/main/columns.vue.d.ts +19 -0
  12. package/es/components/fm-layout/src/main/defaults.vue.d.ts +48 -0
  13. package/es/components/fm-layout/src/main/transverse.vue.d.ts +18 -0
  14. package/es/components/fm-layout/src/navBars/index.vue.d.ts +16 -0
  15. package/es/components/fm-layout/src/navBars/tagsView/contextmenu.vue.d.ts +28 -0
  16. package/es/components/fm-layout/src/navBars/tagsView/tagsView.vue.d.ts +45 -0
  17. package/es/components/fm-layout/src/navBars/topBar/breadcrumb.vue.d.ts +3 -0
  18. package/es/components/fm-layout/src/navBars/topBar/index.vue.d.ts +16 -0
  19. package/es/components/fm-layout/src/navBars/topBar/search.vue.d.ts +7 -0
  20. package/es/components/fm-layout/src/navBars/topBar/upgradeInfo.vue.d.ts +5 -0
  21. package/es/components/fm-layout/src/navBars/topBar/user.vue.d.ts +75 -0
  22. package/es/components/fm-layout/src/navBars/topBar/userNews.vue.d.ts +9 -0
  23. package/es/components/fm-layout/src/navMenu/horizontal.vue.d.ts +42 -0
  24. package/es/components/fm-layout/src/navMenu/subItem.vue.d.ts +42 -0
  25. package/es/components/fm-layout/src/navMenu/vertical.vue.d.ts +42 -0
  26. package/es/components/fm-layout/src/routerView/iframes.vue.d.ts +35 -0
  27. package/es/components/fm-layout/src/routerView/parent.vue.d.ts +3 -0
  28. package/es/components/fm-layout/src/type.d.ts +2 -0
  29. package/es/components/fm-layout/style/css.d.ts +0 -0
  30. package/es/components/fm-layout/style/index.d.ts +0 -0
  31. package/es/components/index.d.ts +1 -0
  32. package/es/packages/components/fm-layout/index.mjs +7 -0
  33. package/es/packages/components/fm-layout/src/component/aside.vue.mjs +5 -0
  34. package/es/packages/components/fm-layout/src/component/aside.vue2.mjs +175 -0
  35. package/es/packages/components/fm-layout/src/component/columnsAside.vue.mjs +5 -0
  36. package/es/packages/components/fm-layout/src/component/columnsAside.vue2.mjs +273 -0
  37. package/es/packages/components/fm-layout/src/component/header.vue.mjs +5 -0
  38. package/es/packages/components/fm-layout/src/component/header.vue2.mjs +50 -0
  39. package/es/packages/components/fm-layout/src/component/main.vue.mjs +5 -0
  40. package/es/packages/components/fm-layout/src/component/main.vue2.mjs +81 -0
  41. package/es/packages/components/fm-layout/src/footer/index.vue.mjs +5 -0
  42. package/es/packages/components/fm-layout/src/footer/index.vue2.mjs +29 -0
  43. package/es/packages/components/fm-layout/src/index.vue.mjs +5 -0
  44. package/es/packages/components/fm-layout/src/index.vue2.mjs +91 -0
  45. package/es/packages/components/fm-layout/src/logo/index.vue.mjs +5 -0
  46. package/es/packages/components/fm-layout/src/logo/index.vue2.mjs +57 -0
  47. package/es/packages/components/fm-layout/src/main/classic.vue.mjs +5 -0
  48. package/es/packages/components/fm-layout/src/main/classic.vue2.mjs +87 -0
  49. package/es/packages/components/fm-layout/src/main/columns.vue.mjs +5 -0
  50. package/es/packages/components/fm-layout/src/main/columns.vue2.mjs +100 -0
  51. package/es/packages/components/fm-layout/src/main/defaults.vue.mjs +5 -0
  52. package/es/packages/components/fm-layout/src/main/defaults.vue2.mjs +153 -0
  53. package/es/packages/components/fm-layout/src/main/transverse.vue.mjs +5 -0
  54. package/es/packages/components/fm-layout/src/main/transverse.vue2.mjs +70 -0
  55. package/es/packages/components/fm-layout/src/navBars/index.vue.mjs +5 -0
  56. package/es/packages/components/fm-layout/src/navBars/index.vue2.mjs +44 -0
  57. package/es/packages/components/fm-layout/src/navBars/tagsView/contextmenu.vue.mjs +5 -0
  58. package/es/packages/components/fm-layout/src/navBars/tagsView/contextmenu.vue2.mjs +156 -0
  59. package/es/packages/components/fm-layout/src/navBars/tagsView/tagsView.vue.mjs +5 -0
  60. package/es/packages/components/fm-layout/src/navBars/tagsView/tagsView.vue2.mjs +576 -0
  61. package/es/packages/components/fm-layout/src/navBars/topBar/breadcrumb.vue.mjs +5 -0
  62. package/es/packages/components/fm-layout/src/navBars/topBar/breadcrumb.vue2.mjs +169 -0
  63. package/es/packages/components/fm-layout/src/navBars/topBar/index.vue.mjs +5 -0
  64. package/es/packages/components/fm-layout/src/navBars/topBar/index.vue2.mjs +113 -0
  65. package/es/packages/components/fm-layout/src/navBars/topBar/search.vue.mjs +5 -0
  66. package/es/packages/components/fm-layout/src/navBars/topBar/search.vue2.mjs +120 -0
  67. package/es/packages/components/fm-layout/src/navBars/topBar/upgradeInfo.vue.mjs +5 -0
  68. package/es/packages/components/fm-layout/src/navBars/topBar/upgradeInfo.vue2.mjs +72 -0
  69. package/es/packages/components/fm-layout/src/navBars/topBar/user.vue.mjs +5 -0
  70. package/es/packages/components/fm-layout/src/navBars/topBar/user.vue2.mjs +699 -0
  71. package/es/packages/components/fm-layout/src/navBars/topBar/userNews.vue.mjs +5 -0
  72. package/es/packages/components/fm-layout/src/navBars/topBar/userNews.vue2.mjs +255 -0
  73. package/es/packages/components/fm-layout/src/navMenu/horizontal.vue.mjs +5 -0
  74. package/es/packages/components/fm-layout/src/navMenu/horizontal.vue2.mjs +182 -0
  75. package/es/packages/components/fm-layout/src/navMenu/subItem.vue.mjs +5 -0
  76. package/es/packages/components/fm-layout/src/navMenu/subItem.vue2.mjs +113 -0
  77. package/es/packages/components/fm-layout/src/navMenu/vertical.vue.mjs +5 -0
  78. package/es/packages/components/fm-layout/src/navMenu/vertical.vue2.mjs +159 -0
  79. package/es/packages/components/fm-layout/src/routerView/iframes.vue.mjs +5 -0
  80. package/es/packages/components/fm-layout/src/routerView/iframes.vue2.mjs +128 -0
  81. package/es/packages/components/fm-layout/src/routerView/parent.vue.mjs +5 -0
  82. package/es/packages/components/fm-layout/src/routerView/parent.vue2.mjs +141 -0
  83. package/es/packages/components/fm-layout/src/type.mjs +1 -0
  84. package/es/packages/components/index.mjs +1 -0
  85. package/index.js +4071 -73
  86. package/index.min.js +5 -5
  87. package/index.min.mjs +5 -5
  88. package/index.mjs +4082 -81
  89. package/lib/{index.css → component.css} +2 -2
  90. package/lib/component.js +3 -1
  91. package/lib/components/fm-layout/index.d.ts +32 -0
  92. package/lib/components/fm-layout/src/component/aside.vue.d.ts +5 -0
  93. package/lib/components/fm-layout/src/component/columnsAside.vue.d.ts +5 -0
  94. package/lib/components/fm-layout/src/component/header.vue.d.ts +16 -0
  95. package/lib/components/fm-layout/src/component/main.vue.d.ts +7 -0
  96. package/lib/components/fm-layout/src/footer/index.vue.d.ts +3 -0
  97. package/lib/components/fm-layout/src/index.vue.d.ts +22 -0
  98. package/lib/components/fm-layout/src/logo/index.vue.d.ts +3 -0
  99. package/lib/components/fm-layout/src/main/classic.vue.d.ts +18 -0
  100. package/lib/components/fm-layout/src/main/columns.vue.d.ts +19 -0
  101. package/lib/components/fm-layout/src/main/defaults.vue.d.ts +48 -0
  102. package/lib/components/fm-layout/src/main/transverse.vue.d.ts +18 -0
  103. package/lib/components/fm-layout/src/navBars/index.vue.d.ts +16 -0
  104. package/lib/components/fm-layout/src/navBars/tagsView/contextmenu.vue.d.ts +28 -0
  105. package/lib/components/fm-layout/src/navBars/tagsView/tagsView.vue.d.ts +45 -0
  106. package/lib/components/fm-layout/src/navBars/topBar/breadcrumb.vue.d.ts +3 -0
  107. package/lib/components/fm-layout/src/navBars/topBar/index.vue.d.ts +16 -0
  108. package/lib/components/fm-layout/src/navBars/topBar/search.vue.d.ts +7 -0
  109. package/lib/components/fm-layout/src/navBars/topBar/upgradeInfo.vue.d.ts +5 -0
  110. package/lib/components/fm-layout/src/navBars/topBar/user.vue.d.ts +75 -0
  111. package/lib/components/fm-layout/src/navBars/topBar/userNews.vue.d.ts +9 -0
  112. package/lib/components/fm-layout/src/navMenu/horizontal.vue.d.ts +42 -0
  113. package/lib/components/fm-layout/src/navMenu/subItem.vue.d.ts +42 -0
  114. package/lib/components/fm-layout/src/navMenu/vertical.vue.d.ts +42 -0
  115. package/lib/components/fm-layout/src/routerView/iframes.vue.d.ts +35 -0
  116. package/lib/components/fm-layout/src/routerView/parent.vue.d.ts +3 -0
  117. package/lib/components/fm-layout/src/type.d.ts +2 -0
  118. package/lib/components/fm-layout/style/css.d.ts +0 -0
  119. package/lib/components/fm-layout/style/index.d.ts +0 -0
  120. package/lib/components/index.d.ts +1 -0
  121. package/lib/packages/components/fm-layout/index.js +9 -0
  122. package/lib/packages/components/fm-layout/src/component/aside.vue.js +9 -0
  123. package/lib/packages/components/fm-layout/src/component/aside.vue2.js +179 -0
  124. package/lib/packages/components/fm-layout/src/component/columnsAside.vue.js +9 -0
  125. package/lib/packages/components/fm-layout/src/component/columnsAside.vue2.js +277 -0
  126. package/lib/packages/components/fm-layout/src/component/header.vue.js +9 -0
  127. package/lib/packages/components/fm-layout/src/component/header.vue2.js +54 -0
  128. package/lib/packages/components/fm-layout/src/component/main.vue.js +9 -0
  129. package/lib/packages/components/fm-layout/src/component/main.vue2.js +85 -0
  130. package/lib/packages/components/fm-layout/src/footer/index.vue.js +9 -0
  131. package/lib/packages/components/fm-layout/src/footer/index.vue2.js +33 -0
  132. package/lib/packages/components/fm-layout/src/index.vue.js +9 -0
  133. package/lib/packages/components/fm-layout/src/index.vue2.js +95 -0
  134. package/lib/packages/components/fm-layout/src/logo/index.vue.js +9 -0
  135. package/lib/packages/components/fm-layout/src/logo/index.vue2.js +61 -0
  136. package/lib/packages/components/fm-layout/src/main/classic.vue.js +9 -0
  137. package/lib/packages/components/fm-layout/src/main/classic.vue2.js +91 -0
  138. package/lib/packages/components/fm-layout/src/main/columns.vue.js +9 -0
  139. package/lib/packages/components/fm-layout/src/main/columns.vue2.js +104 -0
  140. package/lib/packages/components/fm-layout/src/main/defaults.vue.js +9 -0
  141. package/lib/packages/components/fm-layout/src/main/defaults.vue2.js +157 -0
  142. package/lib/packages/components/fm-layout/src/main/transverse.vue.js +9 -0
  143. package/lib/packages/components/fm-layout/src/main/transverse.vue2.js +74 -0
  144. package/lib/packages/components/fm-layout/src/navBars/index.vue.js +9 -0
  145. package/lib/packages/components/fm-layout/src/navBars/index.vue2.js +48 -0
  146. package/lib/packages/components/fm-layout/src/navBars/tagsView/contextmenu.vue.js +9 -0
  147. package/lib/packages/components/fm-layout/src/navBars/tagsView/contextmenu.vue2.js +160 -0
  148. package/lib/packages/components/fm-layout/src/navBars/tagsView/tagsView.vue.js +9 -0
  149. package/lib/packages/components/fm-layout/src/navBars/tagsView/tagsView.vue2.js +580 -0
  150. package/lib/packages/components/fm-layout/src/navBars/topBar/breadcrumb.vue.js +9 -0
  151. package/lib/packages/components/fm-layout/src/navBars/topBar/breadcrumb.vue2.js +173 -0
  152. package/lib/packages/components/fm-layout/src/navBars/topBar/index.vue.js +9 -0
  153. package/lib/packages/components/fm-layout/src/navBars/topBar/index.vue2.js +117 -0
  154. package/lib/packages/components/fm-layout/src/navBars/topBar/search.vue.js +9 -0
  155. package/lib/packages/components/fm-layout/src/navBars/topBar/search.vue2.js +124 -0
  156. package/lib/packages/components/fm-layout/src/navBars/topBar/upgradeInfo.vue.js +9 -0
  157. package/lib/packages/components/fm-layout/src/navBars/topBar/upgradeInfo.vue2.js +76 -0
  158. package/lib/packages/components/fm-layout/src/navBars/topBar/user.vue.js +9 -0
  159. package/lib/packages/components/fm-layout/src/navBars/topBar/user.vue2.js +703 -0
  160. package/lib/packages/components/fm-layout/src/navBars/topBar/userNews.vue.js +9 -0
  161. package/lib/packages/components/fm-layout/src/navBars/topBar/userNews.vue2.js +259 -0
  162. package/lib/packages/components/fm-layout/src/navMenu/horizontal.vue.js +9 -0
  163. package/lib/packages/components/fm-layout/src/navMenu/horizontal.vue2.js +186 -0
  164. package/lib/packages/components/fm-layout/src/navMenu/subItem.vue.js +9 -0
  165. package/lib/packages/components/fm-layout/src/navMenu/subItem.vue2.js +117 -0
  166. package/lib/packages/components/fm-layout/src/navMenu/vertical.vue.js +9 -0
  167. package/lib/packages/components/fm-layout/src/navMenu/vertical.vue2.js +163 -0
  168. package/lib/packages/components/fm-layout/src/routerView/iframes.vue.js +9 -0
  169. package/lib/packages/components/fm-layout/src/routerView/iframes.vue2.js +132 -0
  170. package/lib/packages/components/fm-layout/src/routerView/parent.vue.js +9 -0
  171. package/lib/packages/components/fm-layout/src/routerView/parent.vue2.js +145 -0
  172. package/lib/packages/components/fm-layout/src/type.js +2 -0
  173. package/lib/packages/components/index.js +14 -12
  174. package/locale/en.js +1 -1
  175. package/locale/en.min.js +1 -1
  176. package/locale/en.min.mjs +1 -1
  177. package/locale/en.mjs +1 -1
  178. package/locale/zh-cn.js +1 -1
  179. package/locale/zh-cn.min.js +1 -1
  180. package/locale/zh-cn.min.mjs +1 -1
  181. package/locale/zh-cn.mjs +1 -1
  182. package/package.json +1 -1
  183. package/theme-chalk/f-layout.css +1 -0
  184. package/theme-chalk/index.css +1 -1
  185. package/theme-chalk/src/index.scss +1 -0
  186. package/theme-chalk/src/layout.scss +657 -0
  187. /package/es/{version.css → defaults.css} +0 -0
@@ -0,0 +1,657 @@
1
+
2
+
3
+ .layout-columns-aside {
4
+ :deep(.el-scrollbar) {
5
+ height: calc(100% - 50px);
6
+ }
7
+ width: var(--el-columnsMenuWidth);
8
+ height: 100%;
9
+ background: var(--next-bg-columnsMenuBar);
10
+ ul {
11
+ position: relative;
12
+ .layout-columns-active,
13
+ .layout-columns-active a {
14
+ color: var(--next-bg-columnsMenuBarColor) !important;
15
+ transition: 0.3s ease-in-out;
16
+ }
17
+ .layout-columns-hover {
18
+ color: var(--el-color-primary);
19
+ a {
20
+ color: var(--el-color-primary);
21
+ }
22
+ }
23
+ li {
24
+ color: var(--next-bg-columnsMenuBarColor);
25
+ width: 100%;
26
+ height: var(--el-columnsMenuHeight);
27
+ text-align: center;
28
+ display: flex;
29
+ cursor: pointer;
30
+ position: relative;
31
+ z-index: 1;
32
+ &:hover {
33
+ //@extend .layout-columns-hover;
34
+ background-color: var(--el-color-primary-light-3);
35
+ }
36
+ .columns-vertical {
37
+ margin: auto;
38
+ .columns-vertical-title {
39
+ padding-top: 1px;
40
+ }
41
+ }
42
+ .columns-horizontal {
43
+ display: flex;
44
+ height: var(--el-columnsMenuHeight);
45
+ width: 100%;
46
+ align-items: center;
47
+ padding: 0 5px;
48
+ i {
49
+ margin-right: 3px;
50
+ }
51
+ a {
52
+ display: flex;
53
+ .columns-horizontal-title {
54
+ padding-top: 1px;
55
+ }
56
+ }
57
+ }
58
+ a {
59
+ text-decoration: none;
60
+ color: var(--next-bg-columnsMenuBarColor);
61
+ }
62
+ }
63
+ .columns-round {
64
+ background: var(--el-color-primary);
65
+ color: var(--el-color-white);
66
+ position: absolute;
67
+ left: 50%;
68
+ top: 2px;
69
+ height: var(--el-columnsMenuRoundHeight);
70
+ width: var(--el-columnsMenuRoundWidth);
71
+ transform: translateX(-50%);
72
+ z-index: 0;
73
+ transition: 0.5s ease-in-out;
74
+ border-radius: 5px;
75
+ }
76
+ .columns-card {
77
+ @extend .columns-round;
78
+ top: 0;
79
+ height: var(--el-columnsMenuHeight);
80
+ width: 100%;
81
+ border-radius: 0;
82
+ }
83
+ }
84
+
85
+ .layout-logo {
86
+ height: var(--el-columnsLogoHeight);
87
+ display: flex;
88
+ align-items: center;
89
+ justify-content: center;
90
+ margin-bottom: 8px;
91
+ margin-top: 5px;
92
+ animation: logoAnimation 0.3s ease-in-out;
93
+ &-medium-img {
94
+ width: auto;
95
+ height: 80%;
96
+ }
97
+ &:hover {
98
+ img {
99
+ animation: logoAnimation 0.3s ease-in-out;
100
+ }
101
+ }
102
+ }
103
+
104
+ }
105
+
106
+
107
+
108
+ .user-news-container {
109
+ .content-box {
110
+ font-size: 12px;
111
+ .notice-box {
112
+ height: 400px;
113
+
114
+ padding: 0 5px;
115
+ overflow-y: auto;
116
+ }
117
+ .notice-item {
118
+ display: flex;
119
+
120
+ padding: 10px 0;
121
+ border-bottom: 1px dashed var(--el-border-color);
122
+
123
+ &-icon {
124
+ margin: 0 15px;
125
+ display: inline-flex;
126
+ justify-content: center;
127
+ align-items: center;
128
+ }
129
+
130
+ &:hover {
131
+ background-color: var(--el-color-primary-light-9);
132
+ cursor: pointer;
133
+ }
134
+ .notice-title {
135
+ font-size: 14px;
136
+ font-weight: 600;
137
+
138
+ }
139
+
140
+ .notice-content {
141
+ color: var(--el-text-color-secondary);
142
+ margin: 10px 0;
143
+ }
144
+ .notice-time {
145
+ color: var(--el-text-color-secondary);
146
+ text-align: right;
147
+ }
148
+ }
149
+ }
150
+ .notice-foot {
151
+ height: 35px;
152
+ width: 100%;
153
+ color: var(--el-color-primary);
154
+ font-size: 14px;
155
+ cursor: pointer;
156
+
157
+ background-color: #fff;
158
+ display: flex;
159
+ align-items: center;
160
+ justify-content: center;
161
+
162
+ border-top: 1px solid #eee;
163
+ padding-top: 9px;
164
+ }
165
+ }
166
+ .el-tabs {
167
+ :deep(.el-tabs__header) {
168
+ margin: 0;
169
+ }
170
+ .el-tab-pane {
171
+ display: flex;
172
+ flex-direction: column;
173
+ }
174
+ }
175
+ .layout-navbars-breadcrumb-user {
176
+ display: flex;
177
+ align-items: center;
178
+ justify-content: flex-end;
179
+
180
+ &-link {
181
+ height: 100%;
182
+ display: flex;
183
+ align-items: center;
184
+ white-space: nowrap;
185
+
186
+ &-photo {
187
+ width: 25px;
188
+ height: 25px;
189
+ border-radius: 100%;
190
+ }
191
+ }
192
+
193
+ &-icon {
194
+ padding: 0 10px;
195
+ cursor: pointer;
196
+ color: var(--next-bg-topBarColor);
197
+ height: 50px;
198
+ line-height: 50px;
199
+ display: flex;
200
+ align-items: center;
201
+
202
+ &:hover {
203
+ background: var(--next-color-user-hover);
204
+
205
+ i {
206
+ display: inline-block;
207
+ animation: logoAnimation 0.3s ease-in-out;
208
+ }
209
+ }
210
+ }
211
+
212
+ :deep(.el-dropdown) {
213
+ color: var(--next-bg-topBarColor);
214
+ }
215
+
216
+ :deep(.el-badge) {
217
+ height: 40px;
218
+ line-height: 40px;
219
+ display: flex;
220
+ align-items: center;
221
+ }
222
+
223
+ :deep(.el-badge__content.is-fixed) {
224
+ top: 12px;
225
+ }
226
+ }
227
+ .layout-search-dialog {
228
+ position: relative;
229
+ :deep(.el-dialog) {
230
+ background-color: transparent;
231
+ box-shadow: none;
232
+
233
+ .el-dialog__header,
234
+ .el-dialog__body {
235
+ display: none;
236
+ }
237
+ .el-dialog__footer {
238
+ width: 100%;
239
+ position: absolute;
240
+ left: 50%;
241
+ transform: translateX(-50%);
242
+ top: -53vh;
243
+ }
244
+ }
245
+ :deep(.el-autocomplete) {
246
+ width: 560px;
247
+ position: absolute;
248
+ top: 150px;
249
+ left: 50%;
250
+ transform: translateX(-50%);
251
+ }
252
+ }
253
+ .layout-navbars-breadcrumb-index {
254
+ height: 50px;
255
+ display: flex;
256
+ align-items: center;
257
+ background: var(--next-bg-topBar);
258
+ border-bottom: 1px solid var(--next-border-color-light);
259
+ }
260
+
261
+ .layout-navbars-breadcrumb {
262
+ flex: 1;
263
+ height: inherit;
264
+ display: flex;
265
+ align-items: center;
266
+ .layout-navbars-breadcrumb-icon {
267
+ cursor: pointer;
268
+ font-size: 18px;
269
+ color: var(--next-bg-topBarColor);
270
+ height: 100%;
271
+ width: 40px;
272
+ opacity: 0.8;
273
+ &:hover {
274
+ opacity: 1;
275
+ }
276
+ }
277
+ .layout-navbars-breadcrumb-span {
278
+ display: flex;
279
+ opacity: 0.7;
280
+ color: var(--next-bg-topBarColor);
281
+ }
282
+ .layout-navbars-breadcrumb-iconfont {
283
+ font-size: 16px;
284
+ margin-right: 5px;
285
+ }
286
+ :deep(.el-breadcrumb__separator) {
287
+ opacity: 0.7;
288
+ color: var(--next-bg-topBarColor);
289
+ }
290
+ :deep(.el-breadcrumb__inner a, .el-breadcrumb__inner.is-link) {
291
+ font-weight: unset !important;
292
+ color: var(--next-bg-topBarColor);
293
+ &:hover {
294
+ color: var(--el-color-primary) !important;
295
+ }
296
+ }
297
+ }
298
+
299
+ .layout-navbars-tagsview {
300
+ background-color: var(--el-color-white);
301
+ border-bottom: 1px solid var(--next-border-color-light);
302
+ position: relative;
303
+ z-index: auto;
304
+ :deep(.el-scrollbar__wrap) {
305
+ overflow-x: auto !important;
306
+ }
307
+ &-ul {
308
+ list-style: none;
309
+ margin: 0;
310
+ padding: 0;
311
+ height: 34px;
312
+ display: flex;
313
+ align-items: center;
314
+ color: var(--el-text-color-regular);
315
+ font-size: 12px;
316
+ white-space: nowrap;
317
+ padding: 0 15px;
318
+ &-li {
319
+ height: 26px;
320
+ line-height: 26px;
321
+ display: flex;
322
+ align-items: center;
323
+ border: 1px solid var(--el-border-color-lighter);
324
+ padding: 0 15px;
325
+ margin-right: 5px;
326
+ border-radius: 2px;
327
+ position: relative;
328
+ z-index: 0;
329
+ cursor: pointer;
330
+ justify-content: space-between;
331
+ &:hover {
332
+ background-color: var(--el-color-primary-light-9);
333
+ color: var(--el-color-primary);
334
+ border-color: var(--el-color-primary-light-5);
335
+ }
336
+ &-iconfont {
337
+ position: relative;
338
+ left: -5px;
339
+ font-size: 12px;
340
+ }
341
+ &-icon {
342
+ border-radius: 100%;
343
+ position: relative;
344
+ height: 14px;
345
+ width: 14px;
346
+ text-align: center;
347
+ line-height: 14px;
348
+ right: -5px;
349
+ &:hover {
350
+ color: var(--el-color-white);
351
+ background-color: var(--el-color-primary-light-3);
352
+ }
353
+ }
354
+ .layout-icon-active {
355
+ display: block;
356
+ }
357
+ .layout-icon-three {
358
+ display: none;
359
+ }
360
+ }
361
+ .is-active {
362
+ color: var(--el-color-white);
363
+ background: var(--el-color-primary);
364
+ border-color: var(--el-color-primary);
365
+ transition: border-color 3s ease;
366
+ }
367
+ }
368
+ // 风格4
369
+ .tags-style-four {
370
+ .layout-navbars-tagsview-ul-li {
371
+ margin-right: 0 !important;
372
+ border: none !important;
373
+ position: relative;
374
+ border-radius: 3px !important;
375
+ .layout-icon-active {
376
+ display: none;
377
+ }
378
+ .layout-icon-three {
379
+ display: block;
380
+ }
381
+ &:hover {
382
+ background: none !important;
383
+ }
384
+ }
385
+ .is-active {
386
+ background: none !important;
387
+ color: var(--el-color-primary) !important;
388
+ }
389
+ }
390
+ // 风格5
391
+ .tags-style-five {
392
+ align-items: flex-end;
393
+ .tags-style-five-svg {
394
+ mask-image:
395
+ url('data:image/svg+xml,<svg width="35" height="71" viewBox="0 0 35 71" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-0.00012207 0.5C-0.00012207 70.5 -5.89311e-05 70.5 34.9999 70.5H-0.00012207V27.7586V0.5Z" fill="black"/></svg>'),
396
+ url('data:image/svg+xml,<svg width="35" height="70" viewBox="0 0 35 70" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M35 0C35 70 34.9999 70 0 70H35V27.2586V0Z" fill="black"/></svg>'),
397
+ url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect rx='8' width='100%' height='100%' fill='%23F8EAE7'/></svg>");
398
+ mask-size:
399
+ 20px 20px,
400
+ 20px 20px,
401
+ calc(100% - 29px) calc(100% + 17px);
402
+ mask-position:
403
+ right bottom,
404
+ left bottom,
405
+ center top;
406
+ mask-repeat: no-repeat;
407
+ -webkit-mask-image:
408
+ url('data:image/svg+xml,<svg width="35" height="71" viewBox="0 0 35 71" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-0.00012207 0.5C-0.00012207 70.5 -5.89311e-05 70.5 34.9999 70.5H-0.00012207V27.7586V0.5Z" fill="black"/></svg>'),
409
+ url('data:image/svg+xml,<svg width="35" height="70" viewBox="0 0 35 70" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M35 0C35 70 34.9999 70 0 70H35V27.2586V0Z" fill="black"/></svg>'),
410
+ url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect rx='8' width='100%' height='100%' fill='%23F8EAE7'/></svg>");
411
+ -webkit-mask-size:
412
+ 20px 20px,
413
+ 20px 20px,
414
+ calc(100% - 29px) calc(100% + 17px);
415
+ -webkit-mask-position:
416
+ right bottom,
417
+ left bottom,
418
+ center top;
419
+ -webkit-mask-repeat: no-repeat;
420
+ }
421
+ .layout-navbars-tagsview-ul-li {
422
+ padding: 0 5px;
423
+ border-width: 15px 27px 15px;
424
+ border-style: solid;
425
+ border-color: transparent;
426
+ margin: 0 -15px;
427
+ .layout-icon-active,
428
+ .layout-navbars-tagsview-ul-li-iconfont,
429
+ .layout-navbars-tagsview-ul-li-refresh {
430
+ display: none;
431
+ }
432
+ .layout-icon-three {
433
+ display: block;
434
+ }
435
+ &:hover {
436
+ @extend .tags-style-five-svg;
437
+ background: var(--el-color-primary-light-7);
438
+ color: unset;
439
+ }
440
+ }
441
+ .is-active {
442
+ @extend .tags-style-five-svg;
443
+ background: var(--el-color-primary-light-2) !important;
444
+ color: var(--next-bg-main-color) !important;
445
+ z-index: 1;
446
+ }
447
+ }
448
+ }
449
+ .layout-navbars-tagsview-shadow {
450
+ box-shadow: rgb(0 21 41 / 4%) 0px 1px 4px;
451
+ }
452
+
453
+ .custom-contextmenu {
454
+ transform-origin: center top;
455
+ z-index: 2190;
456
+ position: fixed;
457
+ .el-dropdown-menu__item {
458
+ font-size: 12px !important;
459
+ white-space: nowrap;
460
+ i {
461
+ font-size: 12px !important;
462
+ }
463
+ }
464
+ }
465
+ .layout-navbars-container {
466
+ display: flex;
467
+ flex-direction: column;
468
+ width: 100%;
469
+ height: 100%;
470
+ }
471
+ .el-menu-horizontal-warp {
472
+ flex: 1;
473
+ overflow: hidden;
474
+ margin-right: 30px;
475
+ :deep(.el-scrollbar__bar.is-vertical) {
476
+ display: none;
477
+ }
478
+ :deep(a) {
479
+ width: 100%;
480
+ }
481
+ .el-menu.el-menu--horizontal {
482
+ display: flex;
483
+ height: 100%;
484
+ width: 100%;
485
+ box-sizing: border-box;
486
+ }
487
+ }
488
+ .layout-logo {
489
+ width: 240px;
490
+ height: 50px;
491
+ display: flex;
492
+ align-items: center;
493
+ justify-content: center;
494
+ box-shadow: rgb(0 21 41 / 2%) 0px 1px 4px;
495
+ color: var(--el-color-primary);
496
+ font-size: 16px;
497
+ cursor: pointer;
498
+ // animation: logoAnimation 0.3s ease-in-out;
499
+ span {
500
+ white-space: nowrap;
501
+ display: inline-block;
502
+ font-weight: 900;
503
+ font-size: 18px;
504
+ }
505
+ &:hover {
506
+ span {
507
+ // color: var(--color-primary-light-1);
508
+ animation: logoAnimation 0.5s ease-in-out;
509
+ }
510
+ img {
511
+ animation: logoAnimation 0.5s ease-in-out;
512
+ }
513
+ }
514
+ &-medium-img {
515
+ width: 15%;
516
+ margin-right: 5px;
517
+ padding: 1px;
518
+ }
519
+ }
520
+ .layout-logo-size {
521
+ width: 100%;
522
+ height: 50px;
523
+ display: flex;
524
+ cursor: pointer;
525
+ animation: logoAnimation 0.3s ease-in-out;
526
+ &-img {
527
+ width: 35px;
528
+ margin: auto;
529
+ }
530
+ &:hover {
531
+ img {
532
+ animation: logoAnimation 0.3s ease-in-out;
533
+ }
534
+ }
535
+ }
536
+ .layout-footer {
537
+ width: 100%;
538
+ display: flex;
539
+
540
+ &-warp {
541
+ margin: auto;
542
+ color: var(--el-text-color-secondary);
543
+ text-align: center;
544
+ animation: error-num 0.3s ease;
545
+ }
546
+ }
547
+
548
+ .layout-link-container {
549
+ .layout-link-warp {
550
+ margin: auto;
551
+ display: flex;
552
+ flex-direction: column;
553
+ align-items: center;
554
+ justify-content: center;
555
+ i.layout-link-icon {
556
+ position: relative;
557
+ font-size: 100px;
558
+ color: var(--el-color-primary);
559
+ &::after {
560
+ content: '';
561
+ position: absolute;
562
+ left: 50px;
563
+ top: 0;
564
+ width: 15px;
565
+ height: 100px;
566
+ background: linear-gradient(
567
+ rgba(255, 255, 255, 0.01),
568
+ rgba(255, 255, 255, 0.01),
569
+ rgba(255, 255, 255, 0.01),
570
+ rgba(255, 255, 255, 0.05),
571
+ rgba(255, 255, 255, 0.05),
572
+ rgba(255, 255, 255, 0.05),
573
+ rgba(235, 255, 255, 0.5),
574
+ rgba(255, 255, 255, 0.05),
575
+ rgba(255, 255, 255, 0.05),
576
+ rgba(255, 255, 255, 0.05),
577
+ rgba(255, 255, 255, 0.01),
578
+ rgba(255, 255, 255, 0.01),
579
+ rgba(255, 255, 255, 0.01)
580
+ );
581
+ transform: rotate(-15deg);
582
+ animation: toRight 5s linear infinite;
583
+ }
584
+ }
585
+ .layout-link-msg {
586
+ font-size: 12px;
587
+ color: var(--next-bg-topBarColor);
588
+ opacity: 0.7;
589
+ margin-top: 15px;
590
+ }
591
+ }
592
+ }
593
+
594
+ .upgrade-dialog {
595
+ :deep(.el-dialog) {
596
+ .el-dialog__body {
597
+ padding: 0 !important;
598
+ }
599
+ .el-dialog__header {
600
+ display: none !important;
601
+ }
602
+ .upgrade-title {
603
+ text-align: center;
604
+ height: 130px;
605
+ display: flex;
606
+ align-items: center;
607
+ justify-content: center;
608
+ position: relative;
609
+ &::after {
610
+ content: '';
611
+ position: absolute;
612
+ background-color: var(--el-color-primary-light-1);
613
+ width: 130%;
614
+ height: 130px;
615
+ border-bottom-left-radius: 100%;
616
+ border-bottom-right-radius: 100%;
617
+ }
618
+ .upgrade-title-warp {
619
+ z-index: 1;
620
+ position: relative;
621
+ .upgrade-title-warp-txt {
622
+ color: var(--next-color-white);
623
+ font-size: 22px;
624
+ letter-spacing: 3px;
625
+ }
626
+ .upgrade-title-warp-version {
627
+ color: var(--next-color-white);
628
+ background-color: var(--el-color-primary-light-4);
629
+ font-size: 12px;
630
+ position: absolute;
631
+ display: flex;
632
+ top: -2px;
633
+ right: -50px;
634
+ padding: 2px 4px;
635
+ border-radius: 2px;
636
+ }
637
+ }
638
+ }
639
+ .upgrade-content {
640
+ padding: 20px;
641
+ line-height: 22px;
642
+ .upgrade-content-desc {
643
+ color: var(--el-color-info-light-5);
644
+ font-size: 12px;
645
+ }
646
+ }
647
+ .upgrade-btn {
648
+ border-top: 1px solid var(--el-border-color-lighter, #ebeef5);
649
+ display: flex;
650
+ justify-content: space-around;
651
+ padding: 15px 20px;
652
+ .el-button {
653
+ width: 100%;
654
+ }
655
+ }
656
+ }
657
+ }
File without changes