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
/**
 * @class Ext.view.BoundList
 */
 
/**
 * @var {color}
 * The background-color of the BoundList
 */
$boundlist-background-color: #fff !default;
 
/**
 * @var {color}
 * The border-color of the BoundList
 */
$boundlist-border-color: $neutral-color !default;
 
/**
 * @var {number}
 * The border-width of the BoundList
 */
$boundlist-border-width: 1px !default;
 
/**
 * @var {string}
 * The border-style of the BoundList
 */
$boundlist-border-style: solid !default;
 
/**
 * @var {number}
 * The height of BoundList items
 */
$boundlist-item-height: 22px !default;
 
/**
 * @var {number/list}
 * The padding of BoundList items
 */
$boundlist-item-padding: 0 3px !default;
 
/**
 * @var {number}
 * The border-width of BoundList items
 */
$boundlist-item-border-width: 1px !default;
 
/**
 * @var {string}
 * The border-style of BoundList items
 */
$boundlist-item-border-style: dotted !default;
 
/**
 * @var {color}
 * The border-color of BoundList items
 */
$boundlist-item-border-color: $boundlist-background-color !default;
 
/**
 * @var {color}
 * The border-color of hovered BoundList items
 */
$boundlist-item-over-border-color: $base-color !default;
 
/**
 * @var {color}
 * The border-color of selected BoundList items
 */
$boundlist-item-selected-border-color: $base-color !default;
 
/**
 * @var {color}
 * The background-color of hovered BoundList items
 */
$boundlist-item-over-background-color: $base-color !default;
 
/**
 * @var {color}
 * The background-color of selected BoundList items
 */
$boundlist-item-selected-background-color: $base-color !default;