fix(Vue): route from node_modules
- also remove Module Icons - padding lessening
This commit is contained in:
parent
de3ce708bc
commit
9f2d7a2f42
5 changed files with 9 additions and 9 deletions
|
|
@ -133,7 +133,7 @@
|
|||
"public/js/lib/Sortable.min.js",
|
||||
"public/js/lib/jquery/jquery.hotkeys.js",
|
||||
"public/js/lib/bootstrap.min.js",
|
||||
"public/js/lib/vue/dist/vue.js",
|
||||
"node_modules/vue/dist/vue.js",
|
||||
"node_modules/moment/min/moment-with-locales.min.js",
|
||||
"node_modules/moment-timezone/builds/moment-timezone-with-data.min.js",
|
||||
"public/js/lib/socket.io.min.js",
|
||||
|
|
|
|||
|
|
@ -14,9 +14,6 @@
|
|||
class="border module-box"
|
||||
>
|
||||
<div class="flush-top">
|
||||
<div class="icon-box">
|
||||
<span><i class="icon text-extra-muted" :class="module.icon"></i></span>
|
||||
</div>
|
||||
<div class="module-box-content">
|
||||
<h4 class="h4">
|
||||
{{ module.label }}
|
||||
|
|
@ -111,7 +108,8 @@ export default {
|
|||
.module-box {
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
padding: 5px 0px;
|
||||
padding: 5px 15px;
|
||||
padding-top: 3px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
|
@ -144,5 +142,9 @@ export default {
|
|||
font-size: 24px;
|
||||
}
|
||||
|
||||
.open-notification {
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ export default {
|
|||
}
|
||||
|
||||
.section-box {
|
||||
padding: 10px 20px;
|
||||
padding: 5px 20px;
|
||||
border-radius: 4px;
|
||||
|
||||
p {
|
||||
|
|
|
|||
|
|
@ -18,8 +18,6 @@ frappe.modules.Home = class {
|
|||
});
|
||||
}
|
||||
setup_header() {
|
||||
this.page.set_title(__('Modules'));
|
||||
|
||||
// subtitle
|
||||
}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ function watch_assets() {
|
|||
|
||||
case 'BUNDLE_START': {
|
||||
const output = event.output[0];
|
||||
if (output.endsWith('.js')) {
|
||||
if (output.endsWith('.js', '.vue')) {
|
||||
log('Rebuilding', path.basename(event.output[0]));
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue