mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
Scoped styles in Table.vue
This commit is contained in:
parent
2614ff8230
commit
e436f0c20e
@ -290,32 +290,29 @@ export default {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style lang="scss" scoped>
|
||||||
.table-cell .form-control {
|
td {
|
||||||
|
padding: 0;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-cell {
|
||||||
|
padding: 0.75rem;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
border: 1px solid var(--blue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-control, .form-group .form-control {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: none;
|
border: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table td {
|
[data-fieldtype='Link'] .input-group-append {
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-cell {
|
|
||||||
padding: 0.75rem;
|
|
||||||
border: 1px solid transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table [data-fieldtype='Link'] .input-group-append {
|
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
td {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-cell.active {
|
|
||||||
border: 1px solid var(--blue);
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user