13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
.#{$prefix}grid-header-ct {
    border: $grid-header-border-width $grid-header-border-style $panel-body-border-color;
 
    // Body border provided by headerCt only when in accordion layout.
    border-bottom-color: $grid-header-background-color;
 
    background-color: $grid-header-background-color;
    @if ($supports-gradients or $compile-all) and $grid-header-background-gradient != null {
        @include background-gradient($grid-header-background-color, $grid-header-background-gradient);
    }
}
 
@if $include-ext-layout-container-accordion {
    .#{$prefix}accordion-item .#{$prefix}grid-header-ct {
        border-width: 0 0 $grid-header-border-width !important;
    }
 
    // When hideHeaders: true, we need !important to override above rule
    .#{$prefix}accordion-item .#{$prefix}grid-header-ct-hidden {
        border: 0 !important;
    }
}
 
// create the bottom border of the header container by adding a top border to the
// grid body.  This is necessary because the header container is a docked item, and 
// Dock layout's border-collapsing mechanism removes the bottom border of top docked
// items with a !important.
.#{$prefix}grid-body {
    border-top-color: $grid-header-border-color;
}
 
.#{$prefix}hmenu-sort-asc .#{$prefix}menu-item-icon {
    background-image: theme-background-image('grid/hmenu-asc');
}
 
.#{$prefix}hmenu-sort-desc .#{$prefix}menu-item-icon {
    background-image: theme-background-image('grid/hmenu-desc');
}
 
.#{$prefix}cols-icon .#{$prefix}menu-item-icon {
    background-image: theme-background-image('grid/columns');
}