* first cut * Code refactoring, styling * Added Sorting * Revert query_report to use slickgrid * cleanup * Edit cell working * Add regrid, remove datatable * Add clusterize * Update lib, fix get_checked_items * New ReportView * wip * Enable editing, fix styles * update lib * wip * fix refresh rows and editable cells * Refresh list_view every 3s, decouple refreshing logic * Report editing fixes * Cleanup loading fields, add column then refresh list * [wip] New List View * [working] Render results * ListView is now BaseList, add new ListView and GanttView * Create new page for each ListView * GanttView working * CalendarView working * KanbanView working * Cache list_view based on page_name * Gantt view buttons on mobile * Add ReportView * Refresh datatable on render * Setup like * [start][filters] clean up FilterList * [filters] refactor FilterList * [filters] minor fix * [filters] fix remove filter * filter utils * more utils, remove apply * rewrite as class, remove 'me' references * [filter] implement on_change to decouple parent functions * Integrate new filters with new BaseList * Setup freeze area for ListView * Set breadcrumbs on setup_page * Trigger list update from events * Setup footnote area * Fix Kanban Board filters * Add filters to standard filters, then filter_list * Remove old files * Fix ImageView * Some more fixes for BaseList.init * Fix order_by on load * Report View: remember columns * Fix for hidden filters * Fix for delete items * InboxView * Shift select checkboxes * Fix ESLint errors * More refactoring - Move ListMenu to Listview - New FileView - Ability to add custom breadcrumbs * FileManager working * Tags, set filters from route options * Custom Reports Working * List Sidebar reports * Report Name as title * Fix ESLint errors * Fix UI tests * Fix Kanban test * Format ID column * [fix] Kanban cards title * Checkbox fix * Fix Activity Page * Update rows in Report in place * Child Table columns in Report View
71 lines
961 B
Text
71 lines
961 B
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: 34px;
|
|
}
|
|
}
|
|
|
|
.frappe-control {
|
|
margin: 0;
|
|
}
|
|
.form-group {
|
|
margin: 0;
|
|
}
|
|
.form-control {
|
|
border-radius: 0px;
|
|
border: none;
|
|
}
|
|
.link-btn {
|
|
top: 6px;
|
|
}
|
|
select {
|
|
height: 34px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
|
|
@keyframes breathe {
|
|
0% {
|
|
background-color: transparent;
|
|
}
|
|
50% {
|
|
background-color: @extra-light-yellow;
|
|
}
|
|
100% {
|
|
background-color: transparent;
|
|
}
|
|
}
|