seitime-frappe/frappe/public/less/frappe-datatable.less
Faris Ansari a522d970e3 Frappe Datatable in Query Reports (#5054)
* wip

* import DataTable in reportview

* first cut

* [wip] Tree in Query Report

* Remove SlickGrid

* Add beta message

* fix codacy
2018-02-27 16:08:32 +05:30

84 lines
1.1 KiB
Text

@import "variables.less";
.data-table {
margin-left: -1px;
margin-top: -1px;
font-size: @text-medium;
.data-table-col .edit-cell {
padding: 0;
input {
font-size: inherit;
height: 27px;
}
}
.data-table-col .content {
padding: 0.5rem;
}
.frappe-control {
margin: 0;
}
.form-group {
margin: 0;
}
.form-control {
border-radius: 0px;
border: none;
}
.link-btn {
top: 6px;
}
select {
height: 27px;
}
.checkbox {
margin: 7px 0 7px 8px;
}
[data-fieldtype="Color"] .control-input {
overflow: hidden;
}
.body-scrollable {
&::-webkit-scrollbar {
display: none;
}
}
.data-table-header {
background-color: @panel-bg;
color: @text-muted;
}
.data-table-row.row-update {
animation: 500ms breathe forwards;
}
.data-table-row.row-highlight {
background-color: @extra-light-yellow;
}
.report-tree-node {
display: inline-block;
.toggle {
cursor: pointer;
font-size: @text-regular;
}
}
}
@keyframes breathe {
0% {
background-color: transparent;
}
50% {
background-color: @extra-light-yellow;
}
100% {
background-color: transparent;
}
}