mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-21 01:28:47 +02:00
N°3914 Fix configure this list "sort fields" feature
This commit is contained in:
@@ -12,7 +12,9 @@ $ibo-datatable-panel--table-spacing: 48px !default;
|
||||
|
||||
$ibo-datatable-panel--body--padding: $ibo-panel--body--padding-top 0px $ibo-panel--body--padding-bottom !default;
|
||||
$ibo-datatable--selection-validation-buttons-toolbar--margin-top: 10px !default;
|
||||
$ibo-list-column--max-height: 150px;
|
||||
$ibo-list-column--max-height: 150px !default;
|
||||
|
||||
$ibo-datatable--sort-order--color: $ibo-color-orange-600 !default;
|
||||
|
||||
.ibo-datatable--toolbar {
|
||||
display: flex;
|
||||
@@ -74,4 +76,23 @@ $ibo-list-column--max-height: 150px;
|
||||
.ibo-datatable .ibo-field-badge {
|
||||
margin: 0;
|
||||
padding: 0px 4px;
|
||||
}
|
||||
|
||||
// Datatables configure this list dialog
|
||||
// Could be in a separate component, but is only used in datatables as of now
|
||||
|
||||
.ibo-sort-order{
|
||||
&::after{
|
||||
@extend %fa-solid-base;
|
||||
color: $ibo-datatable--sort-order--color;
|
||||
}
|
||||
&.ibo-is-descending::after{
|
||||
content: '\f0dd';
|
||||
}
|
||||
&.ibo-is-ascending::after{
|
||||
content: '\f0de';
|
||||
}
|
||||
&.ibo-is-none::after{
|
||||
content: '\f0dc';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user