Browse Source

several layout cleanups + dependency bump

remotes/philippdormann/main
Philipp Dormann 4 years ago
parent
commit
0d655ee495
No known key found for this signature in database GPG Key ID: 3BB9ADD52DCA4314
  1. 5
      package.json
  2. 4
      src/components/MonitorList.vue
  3. 2
      src/components/NotificationDialog.vue
  4. 2
      src/layouts/Layout.vue
  5. 2
      src/pages/Details.vue

5
package.json

@ -19,7 +19,10 @@
"axios": "0.21.1", "axios": "0.21.1",
"bcrypt": "5.0.1", "bcrypt": "5.0.1",
"bootstrap": "5.0.2", "bootstrap": "5.0.2",
"chart.js": "^3.5.1",
"chartjs-adapter-dayjs": "^1.0.0",
"command-exists": "1.2.9", "command-exists": "1.2.9",
"compare-versions": "^3.6.0",
"dayjs": "1.10.6", "dayjs": "1.10.6",
"express": "4.17.1", "express": "4.17.1",
"express-basic-auth": "1.2.0", "express-basic-auth": "1.2.0",
@ -37,7 +40,9 @@
"tcp-ping": "0.1.1", "tcp-ping": "0.1.1",
"v-pagination-3": "0.1.6", "v-pagination-3": "0.1.6",
"vue": "3.0.5", "vue": "3.0.5",
"vue-chart-3": "^0.5.7",
"vue-confirm-dialog": "1.0.2", "vue-confirm-dialog": "1.0.2",
"vue-i18n": "^8.25.0",
"vue-router": "4.0.10", "vue-router": "4.0.10",
"vue-toastification": "2.0.0-rc.1" "vue-toastification": "2.0.0-rc.1"
}, },

4
src/components/MonitorList.vue

@ -117,11 +117,11 @@ export default {
.list { .list {
.item { .item {
&:hover { &:hover {
background-color: $dark-bg2; background-color: #0a0a0a;
} }
&.active { &.active {
background-color: $dark-bg2; background-color: #0a0a0a;
} }
} }
} }

2
src/components/NotificationDialog.vue

@ -557,7 +557,7 @@ export default {
.dark { .dark {
.modal-dialog .form-text, .modal-dialog p { .modal-dialog .form-text, .modal-dialog p {
color: $dark-font-color; color: #0a0a0a;
} }
} }
</style> </style>

2
src/layouts/Layout.vue

@ -213,7 +213,7 @@ footer {
} }
.bottom-nav { .bottom-nav {
background-color: $dark-bg; background-color: #0a0a0a;
} }
} }

2
src/pages/Details.vue

@ -415,7 +415,7 @@ table {
.dark { .dark {
.keyword { .keyword {
color: $dark-font-color; color: #0a0a0a;
} }
} }
</style> </style>

Loading…
Cancel
Save