Merge branch 'develop' of ***REMOVED*** into develop

This commit is contained in:
07akioni 2019-10-15 15:53:18 +08:00
commit f2dd5cd177
3 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "naive-ui",
"version": "0.5.5",
"version": "0.5.8",
"description": "",
"main": "index.js",
"scripts": {

View File

@ -6,7 +6,8 @@ export default {
loadingBarInstance: null,
finishCallback () {
if (this.loadingBarInstance) {
document.body.removeChild(this.loadingBarInstance.$el)
// document.body.removeChild(this.loadingBarInstance.$el)
this.loadingBarInstance.$el.remove()
this.loadingBarInstance.$destroy()
this.loadingBarInstance = null
}

View File

@ -1,8 +1,8 @@
@mixin setup-dark-table {
$--table-header-background-color: #2b3147 !global;
$--table-body-background-color: #1f263e !global;
$--table-header-color: $--neutral-3 !global;
$--table-body-color: $--neutral-4 !global;
$--table-header-color: $--text-1 !global;
$--table-body-color: $--text-2 !global;
$--table-row-hover: $--table-header-background-color !global;
$--table-box-shadow: 0 3px 20px 6px rgba(0, 0, 0, .2) !global;
$--table-border: none !global;