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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>The source code</title>
  <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
  <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
  <style type="text/css">
    .highlight { display: block; background-color: #ddd; }
  </style>
  <script type="text/javascript">
    function highlight() {
      document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
    }
  </script>
</head>
<body onload="prettyPrint(); highlight();">
  <pre class="prettyprint lang-js">.#{$prefix}accordion-layout-ct {
    background-color: $accordion-background-color;
    padding: $accordion-padding;
}
 
.#{$prefix}accordion-hd .#{$prefix}panel-header-text-container {
    color: $accordion-header-color;
    font-weight: $accordion-header-font-weight;
    font-family: $accordion-header-font-family;
    text-transform: $accordion-header-text-transform;
}
 
.#{$prefix}accordion-item {
    margin: $accordion-item-margin;
 
    .#{$prefix}accordion-hd {
        background: $accordion-header-background-color;
        border-top-color: $panel-header-inner-border-color;
        padding: $accordion-header-padding;
    }
 
    .#{$prefix}accordion-hd-sibling-expanded {
        border-top-color: $panel-border-color;
    }
 
    .#{$prefix}accordion-hd-last-collapsed {
        border-bottom-color: $accordion-header-background-color;
    }
 
    .#{$prefix}accordion-body {
        border-width: $accordion-body-border-width;
    }
}
 
.#{$prefix}accordion-hd {
    .#{$prefix}tool-collapse-top,
    .#{$prefix}tool-collapse-bottom {
        background-position: 0 ($accordion-header-tool-size * -17);
    }
 
    .#{$prefix}tool-expand-top,
    .#{$prefix}tool-expand-bottom {
        background-position: 0 ($accordion-header-tool-size * -16);
    }
 
 
    @if $tool-include-hover-icons {
        .#{$prefix}tool-over {
            .#{$prefix}tool-collapse-top,
            .#{$prefix}tool-collapse-bottom {
                background-position: (-$accordion-header-tool-size) ($accordion-header-tool-size * -17);
            }
 
            .#{$prefix}tool-expand-top,
            .#{$prefix}tool-expand-bottom {
                background-position: (-$accordion-header-tool-size) ($accordion-header-tool-size * -16);
            }
        }
    }
 
    .#{$prefix}tool-img {
        @if $accordion-tool-background-image != $tool-background-image {
            background-image: theme-background-image($accordion-tool-background-image);
        }
        // EXTJSIV-8846: partially transparent png images do not display correctly
        // in winXP/IE8m when the image element has a transparent background.
        // to fix this, we give the element the same background-color as the header.
        background-color: $accordion-header-background-color;
    }
}</pre>
</body>
</html>