blob: adc2135808a4494acec23d601f5b88c81b7f944b (
plain) (
blame)
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
|
//
// Component: Modal
//
// ========================================================================
// Variables
// ========================================================================
$modal-header-background: $modal-dialog-background !default;
$modal-footer-background: $modal-dialog-background !default;
//
// New
//
$modal-header-border-width: $global-border-width !default;
$modal-header-border: $global-border !default;
$modal-footer-border-width: $global-border-width !default;
$modal-footer-border: $global-border !default;
$modal-close-full-padding: $global-margin !default;
$modal-close-full-background: $modal-dialog-background !default;
// Component
// ========================================================================
// @mixin hook-modal(){}
// Dialog
// ========================================================================
// @mixin hook-modal-dialog(){}
// Full
// ========================================================================
// @mixin hook-modal-full(){}
// Sections
// ========================================================================
// @mixin hook-modal-body(){}
// Title
// ========================================================================
// @mixin hook-modal-title(){}
// Close
// ========================================================================
// @mixin hook-modal-close(){}
// @mixin hook-modal-close-hover(){}
// @mixin hook-modal-close-default(){}
// @mixin hook-modal-close-default-hover(){}
// @mixin hook-modal-close-outside(){}
// @mixin hook-modal-close-outside-hover(){}
// @mixin hook-modal-close-full-hover(){}
// Miscellaneous
// ========================================================================
// @mixin hook-modal-misc(){}
|