refactor: apply radius on global datatable
This commit is contained in:
parent
ce7e1de32d
commit
b4baf5eb27
2 changed files with 2 additions and 2 deletions
|
|
@ -80,7 +80,7 @@ frappe.views.ReportView = class ReportView extends frappe.views.ListView {
|
|||
setup_result_area() {
|
||||
super.setup_result_area();
|
||||
this.setup_charts_area();
|
||||
this.$datatable_wrapper = $('<div class="datatable-wrapper rounded"></div>');
|
||||
this.$datatable_wrapper = $('<div class="datatable-wrapper"></div>');
|
||||
this.$result.append(this.$datatable_wrapper);
|
||||
this.settings.onload && this.settings.onload(this);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,13 +12,13 @@
|
|||
--dt-border-radius: var(--border-radius);
|
||||
--dt-cell-bg: var(--fg-color);
|
||||
--dt-border-color: var(--table-border-color);
|
||||
--dt-border-radius: var(--border-radius);
|
||||
--dt-header-cell-bg: var(--subtle-fg);
|
||||
--dt-selection-highlight-color: var(--highlight-color);
|
||||
|
||||
background-color: var(--bg-color);
|
||||
margin-left: -1px;
|
||||
margin-top: 0px;
|
||||
border-radius: var(--dt-border-radius);
|
||||
@include get_textstyle("base", "regular");
|
||||
|
||||
.dt-cell {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue