diff --git a/README.md b/README.md index 7bfb7e6..a837a1f 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,7 @@ npm run package - [ ] Auto-complete the directory path - [ ] Improve the treemap display +- [ ] Harmonize folder naming (directory, folder...) ## License diff --git a/assets/sass/dirstat.scss b/assets/sass/dirstat.scss index f896d91..0c4620b 100644 --- a/assets/sass/dirstat.scss +++ b/assets/sass/dirstat.scss @@ -1,13 +1,36 @@ @import '../../node_modules/bootstrap/dist/css/bootstrap.min.css'; +// Vue.js [v-cloak] { display: none; } +// Page structure +html { + position: relative; + min-height: 100%; +} body { + margin-bottom: 80px; background: #f5f5f5; } +// Footer +.footer { + position: absolute; + bottom: 0; + width: 100%; + + div.container { + border-top: solid 1px #e5e5e5; + padding: 12px 4px; + } + .icon { + font-size: x-large; + } +} + +// Breadcrumb customization .breadcrumb { background: #ffffff; border: solid 1px #ced4da; @@ -15,6 +38,7 @@ body { padding-bottom: 0.4rem !important; } +// Alerts customization .alert { &.alert-warning { border-color: darken(#ffeeba, 20%); diff --git a/package-lock.json b/package-lock.json index 526a011..f7268e3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "dir-stat", - "version": "0.2.0", + "version": "0.4.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 452ce9c..4e72397 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,13 @@ { "name": "dir-stat", - "version": "0.3.0", + "version": "0.4.0", "description": "Simple directory statistics", "scripts": { "build:assets": "gulp", + "build:dev": "npm run build:assets && go build dirstat.go", "build": "npm run build:assets && packr build -i -o dirstat.exe .", "ensure": "npm install && dep ensure", - "start": "npm run build && dirstat", + "start": "npm run build:dev && dirstat", "package": "powershell.exe ./scripts/package.ps1" }, "repository": { diff --git a/web/index.html b/web/index.html index a63300b..101457c 100644 --- a/web/index.html +++ b/web/index.html @@ -7,6 +7,10 @@