add warning for unacceptable file format

This commit is contained in:
weijianli 2019-10-22 10:21:29 -05:00
parent cdf7c3411a
commit 0b372ddcef
8 changed files with 22 additions and 23 deletions

View File

@ -29,6 +29,8 @@ export default {
width: 100%; width: 100%;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
color: #19191a !important;
background-color: #1D1F2E;
} }
.fixed-header+.app-main { .fixed-header+.app-main {
@ -36,6 +38,7 @@ export default {
} }
.hasTagsView { .hasTagsView {
.app-main { .app-main {
/* 84 = navbar + tags-view = 50 + 34 */ /* 84 = navbar + tags-view = 50 + 34 */
min-height: calc(100vh - 84px); min-height: calc(100vh - 84px);

View File

@ -87,7 +87,7 @@ export default {
height: 62px; height: 62px;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
background: #fff; background: #19191a;
box-shadow: 0 1px 4px rgba(0,21,41,.08); box-shadow: 0 1px 4px rgba(0,21,41,.08);
padding: 0; padding: 0;

View File

@ -59,6 +59,9 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
@import "~@/styles/mixin.scss"; @import "~@/styles/mixin.scss";
@import "~@/styles/variables.scss"; @import "~@/styles/variables.scss";
.main-container {
background-color: #19191a;
}
.app-wrapper { .app-wrapper {
@include clearfix; @include clearfix;

View File

@ -138,19 +138,6 @@ export const constantRoutes = [
} }
] ]
}, },
{
path: '/documentation',
hidden: true,
component: Layout,
children: [
{
path: 'index',
component: () => import('@/views/documentation/index'),
name: 'Documentation',
meta: { title: 'Documentation', icon: 'documentation', affix: true }
}
]
},
{ {
path: '/guide', path: '/guide',
hidden: true, hidden: true,

View File

@ -97,7 +97,7 @@ div:focus {
} }
aside { aside {
background: #eef1f6; background: #19191a;
padding: 8px 24px; padding: 8px 24px;
margin-bottom: 20px; margin-bottom: 20px;
border-radius: 2px; border-radius: 2px;

View File

@ -20,7 +20,7 @@
<template> <template>
<div class="vue-spinner"> <div class="vue-spinner">
<Circle9></Circle9> <Circle9></Circle9>
<h1>Analyzing....</h1> <h1 style="color: white">Analyzing....</h1>
</div> </div>
</template> </template>

View File

@ -5,15 +5,15 @@
<i class="fa fa-cog" aria-hidden="true"></i> <i class="fa fa-cog" aria-hidden="true"></i>
Options Options
</button> --> </button> -->
<h1 id="example-title" class="example-title">Data Uploader</h1> <h1 id="example-title" class="example-title" style="color: white">Data Uploader</h1>
<div v-show="$refs.upload && $refs.upload.dropActive" class="drop-active"> <div v-show="$refs.upload && $refs.upload.dropActive" class="drop-active">
<h3>Drop files to upload</h3> <h3>Drop files to upload</h3>
</div> </div>
<div class="upload" v-show="!isOption"> <div class="upload" v-show="!isOption">
<div class="table-responsive" style="height: 400px"> <div class="table-responsive" style="height: 400px;">
<table class="table table-hover"> <table class="table table-hover table-dark" style="color: white">
<thead> <thead style="background-color: #313436;">
<tr> <tr>
<th>#</th> <th>#</th>
<th>Thumb</th> <th>Thumb</th>
@ -50,7 +50,8 @@
<td>{{file.size | formatSize}}</td> <td>{{file.size | formatSize}}</td>
<td>{{file.speed | formatSize}}</td> <td>{{file.speed | formatSize}}</td>
<td v-if="file.error">{{file.error}}</td> <!-- <td v-if="file.error">{{file.error}}</td> -->
<td v-if="file.error">fail: wrong format</td>
<td v-else-if="file.success">success</td> <td v-else-if="file.success">success</td>
<td v-else-if="file.active">active</td> <td v-else-if="file.active">active</td>
<td v-else></td> <td v-else></td>
@ -531,7 +532,6 @@ export default {
}, },
onSendAnalyzeRequest() { onSendAnalyzeRequest() {
// var k = [100, 120, 161, 134, 105, 160, 165,190,200]
this.$router.push({ name: "analyze" }) this.$router.push({ name: "analyze" })
@ -561,6 +561,11 @@ export default {
<style> <style>
@import '~bootstrap/dist/css/bootstrap.min.css'; @import '~bootstrap/dist/css/bootstrap.min.css';
.example-full {
color: #19191a;
background-color: #26293c;
}
.example-full .btn-group .dropdown-menu { .example-full .btn-group .dropdown-menu {
display: block; display: block;
visibility: hidden; visibility: hidden;

View File

@ -124,7 +124,8 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.dashboard-editor-container { .dashboard-editor-container {
padding: 32px; padding: 32px;
background-color: rgb(240, 242, 245); // background-color: rgb(240, 242, 245);
background-color: #26293c;
position: relative; position: relative;
.github-corner { .github-corner {