@concretecms/bedrock 1.2.4 → 1.2.7
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.
|
@@ -23,7 +23,7 @@ export default {
|
|
|
23
23
|
allowEmpty: true,
|
|
24
24
|
color: this.color,
|
|
25
25
|
showInitial: true,
|
|
26
|
-
showInput:
|
|
26
|
+
showInput: true,
|
|
27
27
|
cancelText: i18n && i18n.cancel ? i18n.cancel : 'Cancel',
|
|
28
28
|
chooseText: i18n && i18n.choose ? i18n.choose : 'Choose',
|
|
29
29
|
clearText: i18n && i18n.clearColorSelection ? i18n.clearColorSelection : 'Clear Color Selection',
|
package/assets/cms/js/tree.js
CHANGED
|
@@ -4,6 +4,7 @@ $enable-shadows: true;
|
|
|
4
4
|
|
|
5
5
|
/* colors */
|
|
6
6
|
$gray-100: #f7f7f7;
|
|
7
|
+
$gray-200: #e9ecef; // This is the same as BS default but we reference it below
|
|
7
8
|
$gray-300: #d8d8d8;
|
|
8
9
|
$gray-400: #9b9b9b;
|
|
9
10
|
$gray-500: #7c8088;
|
|
@@ -27,6 +28,10 @@ $body-color: $gray-700;
|
|
|
27
28
|
$small-font-size: 0.9rem;
|
|
28
29
|
$text-muted: $gray-500;
|
|
29
30
|
|
|
31
|
+
/* horizontal rules */
|
|
32
|
+
$hr-color: $gray-200;
|
|
33
|
+
$hr-opacity: 1;
|
|
34
|
+
|
|
30
35
|
/* borders */
|
|
31
36
|
$border-radius: 3px;
|
|
32
37
|
$border-radius-sm: 2px;
|
package/package.json
CHANGED