rk-web-core 0.10.57 → 0.10.60
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
(window.webpackJsonprk_web_core=window.webpackJsonprk_web_core||[]).push([[1],{
|
|
1
|
+
(window.webpackJsonprk_web_core=window.webpackJsonprk_web_core||[]).push([[1],{318:function(n,t,e){var r={"./App.vue":321};function o(n){var t=i(n);return e(t)}function i(n){if(!e.o(r,n)){var t=new Error("Cannot find module '"+n+"'");throw t.code="MODULE_NOT_FOUND",t}return r[n]}o.keys=function(){return Object.keys(r)},o.resolve=i,n.exports=o,o.id=318},319:function(n,t,e){"use strict";e.r(t);var r=e(320),o=e.n(r);for(var i in r)["default"].indexOf(i)<0&&function(n){e.d(t,n,(function(){return r[n]}))}(i);t.default=o.a},320:function(n,t,e){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={name:"app",data:function(){return{}}}},321:function(n,t,e){"use strict";e.r(t);var r=e(323),o=e(319);for(var i in o)["default"].indexOf(i)<0&&function(n){e.d(t,n,(function(){return o[n]}))}(i);var u=e(322),a=Object(u.a)(o.default,r.a,r.b,!1,null,null,null);t.default=a.exports},322:function(n,t,e){"use strict";function r(n,t,e,r,o,i,u,a){var s,c="function"==typeof n?n.options:n;if(t&&(c.render=t,c.staticRenderFns=e,c._compiled=!0),r&&(c.functional=!0),i&&(c._scopeId="data-v-"+i),u?(s=function(n){(n=n||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(n=__VUE_SSR_CONTEXT__),o&&o.call(this,n),n&&n._registeredComponents&&n._registeredComponents.add(u)},c._ssrRegister=s):o&&(s=a?function(){o.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:o),s)if(c.functional){c._injectStyles=s;var f=c.render;c.render=function(n,t){return s.call(t),f(n,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,s):[s]}return{exports:n,options:c}}e.d(t,"a",(function(){return r}))},323:function(n,t,e){"use strict";e.d(t,"a",(function(){return r})),e.d(t,"b",(function(){return o}));var r=function(){var n=this.$createElement;return(this._self._c||n)("div",{attrs:{id:"app"}})},o=[]}}]);
|
package/package.json
CHANGED
package/rk-web-core.css
CHANGED
|
@@ -227,6 +227,9 @@
|
|
|
227
227
|
position: relative;
|
|
228
228
|
}
|
|
229
229
|
.rk-web-core-header-dark-inner {
|
|
230
|
+
background: rgba(23, 36, 69, 0.8);
|
|
231
|
+
backdrop-filter: blur(4px);
|
|
232
|
+
--webkit-backdrop-filter: blur(4px);
|
|
230
233
|
background: linear-gradient(180deg, rgba(2, 32, 74, 0.1), rgba(2, 32, 74, 0.2));
|
|
231
234
|
}
|
|
232
235
|
.rk-web-core-header-dark-nav-item {
|
|
@@ -331,10 +334,42 @@
|
|
|
331
334
|
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
|
|
332
335
|
overflow: hidden;
|
|
333
336
|
}
|
|
337
|
+
.rk-web-core-slider .ant-menu-sub li span {
|
|
338
|
+
margin-left: var(--left);
|
|
339
|
+
}
|
|
334
340
|
.rk-web-core-slider-inner {
|
|
335
341
|
overflow: hidden;
|
|
336
342
|
height: calc(100vh - 70px);
|
|
337
343
|
}
|
|
344
|
+
.rk-web-core-slider-inner-header {
|
|
345
|
+
flex: 1;
|
|
346
|
+
overflow: hidden;
|
|
347
|
+
}
|
|
348
|
+
.rk-web-core-slider-inner-footer {
|
|
349
|
+
height: 40px;
|
|
350
|
+
background: rgba(15, 110, 255, 0.05);
|
|
351
|
+
display: flex;
|
|
352
|
+
justify-content: flex-end;
|
|
353
|
+
align-items: center;
|
|
354
|
+
padding-right: 16px;
|
|
355
|
+
}
|
|
356
|
+
.rk-web-core-slider-inner-footer span {
|
|
357
|
+
display: inline-block;
|
|
358
|
+
width: 24px;
|
|
359
|
+
height: 24px;
|
|
360
|
+
cursor: pointer;
|
|
361
|
+
user-select: none;
|
|
362
|
+
}
|
|
363
|
+
.rk-web-core-slider-inner-footer span svg {
|
|
364
|
+
width: 24px;
|
|
365
|
+
height: 24px;
|
|
366
|
+
fill: #84919A;
|
|
367
|
+
transition: all 300ms;
|
|
368
|
+
}
|
|
369
|
+
.rk-web-core-slider-inner-footer span:hover svg,
|
|
370
|
+
.rk-web-core-slider-inner-footer span:active svg {
|
|
371
|
+
fill: #0F6EFF;
|
|
372
|
+
}
|
|
338
373
|
.rk-web-core-slider .ant-menu-item-selected {
|
|
339
374
|
background: #f1f3f6;
|
|
340
375
|
color: #0f6eff !important;
|