@beacon-interactive-systems-llc/beacon-platform-ui 17.6.5 → 17.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/styles/_buttons.scss +4 -0
- package/styles/_modals.scss +29 -6
package/package.json
CHANGED
package/styles/_buttons.scss
CHANGED
package/styles/_modals.scss
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
$platform_modal_contrasts: (
|
|
2
|
+
light: (
|
|
3
|
+
modalBody: $beacon-gray-100,
|
|
4
|
+
modalFooter: $beacon-gray-200
|
|
5
|
+
),
|
|
6
|
+
dark: (
|
|
7
|
+
modalBody: $beacon-gray-600,
|
|
8
|
+
modalFooter: $beacon-gray-500
|
|
9
|
+
),
|
|
10
|
+
highcontrast: (
|
|
11
|
+
modalBody: $beacon-black,
|
|
12
|
+
modalFooter: $beacon-gray-600
|
|
13
|
+
)
|
|
14
|
+
);
|
|
15
|
+
|
|
1
16
|
// ipad portrait
|
|
2
17
|
@media (min-width: 768px) and (max-width: 768px) {
|
|
3
18
|
.modal-dialog.modal-lg.widescreen {
|
|
@@ -47,19 +62,27 @@
|
|
|
47
62
|
|
|
48
63
|
.modal-content {
|
|
49
64
|
@include font-color--default;
|
|
50
|
-
border-radius: 5px;
|
|
51
65
|
}
|
|
52
66
|
|
|
53
67
|
.modal-body {
|
|
54
|
-
@include themify($
|
|
55
|
-
background-color: apply('
|
|
68
|
+
@include themify($platform_modal_contrasts) {
|
|
69
|
+
background-color: apply('modalBody');
|
|
56
70
|
}
|
|
57
|
-
|
|
71
|
+
border-top-right-radius: 5px;
|
|
72
|
+
border-top-left-radius: 5px;
|
|
73
|
+
padding: 16px 16px 24px 16px;
|
|
58
74
|
}
|
|
59
75
|
|
|
60
76
|
.modal-footer {
|
|
61
|
-
@include themify($
|
|
62
|
-
background-color: apply('
|
|
77
|
+
@include themify($platform_modal_contrasts) {
|
|
78
|
+
background-color: apply('modalFooter');
|
|
63
79
|
}
|
|
80
|
+
border-bottom-right-radius: 5px;
|
|
81
|
+
border-bottom-left-radius: 5px;
|
|
82
|
+
padding: 8px 16px;
|
|
64
83
|
border-top: none;
|
|
84
|
+
|
|
85
|
+
button {
|
|
86
|
+
margin: 0px;
|
|
87
|
+
}
|
|
65
88
|
}
|