mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-23 17:50:38 +00:00
dark mode update
This commit is contained in:
@@ -129,8 +129,15 @@
|
||||
.button-base {
|
||||
|
||||
&.secondary {
|
||||
color: $dark_mode_text_primary;
|
||||
background: $dark_mode_foreground;
|
||||
|
||||
.content {
|
||||
color: $dark_mode_text_primary;
|
||||
}
|
||||
|
||||
polyline, path {
|
||||
stroke: $theme;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -110,8 +110,12 @@
|
||||
'homeDirectory',
|
||||
]),
|
||||
hasCapacity() {
|
||||
//return this.$store.getters.user.relationships.storage.data.attributes.used <= 100
|
||||
return true
|
||||
|
||||
if (! this.$store.getters.config.storageLimit) {
|
||||
return true
|
||||
}
|
||||
|
||||
return this.$store.getters.user.relationships.storage.data.attributes.used <= 100
|
||||
},
|
||||
directoryName() {
|
||||
return this.currentFolder ? this.currentFolder.name : this.homeDirectory.name
|
||||
|
||||
Reference in New Issue
Block a user