@fmdeui/fmui 1.0.28 → 1.0.29

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