-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented a flat list with separation into enabled and disabled plugins. The list of categories is presented as tags
- Loading branch information
Showing
19 changed files
with
516 additions
and
401 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
33 changes: 33 additions & 0 deletions
33
src/popup/components/SectionMainMenu/PluginList/NoData.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!-- @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3 --> | ||
<template> | ||
<div class="element item-wrapper list__item"> | ||
<span class="element__text">{{ _("noData") }}</span> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import { mixin } from "@/popup/components/mixins.js"; | ||
export default { | ||
name: "NoData", | ||
mixins: [mixin], | ||
}; | ||
</script> | ||
|
||
<style scoped> | ||
.element { | ||
display: flex; | ||
cursor: pointer; | ||
padding: 4px 4px 4px 40px; | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
background: var(--color-white); | ||
} | ||
.element__text { | ||
flex: auto; | ||
line-height: 24px; | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
} | ||
</style> |
Oops, something went wrong.