@concretecms/bedrock 1.1.8 → 1.1.11
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.
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
var areas = my.getAreas()
|
|
331
331
|
var contenders
|
|
332
332
|
|
|
333
|
-
if (block instanceof Concrete.Layout) {
|
|
333
|
+
if (block instanceof Concrete.Layout || block instanceof Concrete.ContainerBlock) {
|
|
334
334
|
areas = [_(areas).find(function (a) {
|
|
335
335
|
return block.getArea() === a
|
|
336
336
|
})]
|
|
@@ -379,6 +379,19 @@ ul.ccm-edit-mode-inline-commands:hover {
|
|
|
379
379
|
margin: 0 !important;
|
|
380
380
|
padding: 0;
|
|
381
381
|
position: static;
|
|
382
|
+
|
|
383
|
+
.dropdown-item:first-child {
|
|
384
|
+
border-top-left-radius: $dropdown-border-radius;
|
|
385
|
+
border-top-right-radius: $dropdown-border-radius;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.dropdown-item:last-child {
|
|
389
|
+
border-bottom-left-radius: $dropdown-border-radius;
|
|
390
|
+
border-bottom-right-radius: $dropdown-border-radius;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
382
395
|
}
|
|
383
396
|
|
|
384
397
|
}
|
|
@@ -428,7 +441,7 @@ div.ccm-area[data-total-blocks='0'] {
|
|
|
428
441
|
div.ccm-area-drag-area {
|
|
429
442
|
color: #bbb;
|
|
430
443
|
padding: 24px;
|
|
431
|
-
text-align: center;
|
|
444
|
+
text-align: center !important; /* https://github.com/concrete5/concrete5/issues/10249 */
|
|
432
445
|
text-indent: 0;
|
|
433
446
|
}
|
|
434
447
|
}
|
|
@@ -111,15 +111,20 @@ $dropdown-item-padding-y: 0.625rem;
|
|
|
111
111
|
$dropdown-item-padding-x: 10px;
|
|
112
112
|
$dropdown-link-active-color: #fff;
|
|
113
113
|
$dropdown-border-color: transparent;
|
|
114
|
-
$dropdown-border-radius:
|
|
115
|
-
$dropdown-border-width:
|
|
114
|
+
$dropdown-border-radius: 5px;
|
|
115
|
+
$dropdown-border-width: 0;
|
|
116
116
|
$dropdown-min-width: 175px;
|
|
117
|
-
$dropdown-
|
|
117
|
+
$dropdown-padding-y: 10px;
|
|
118
|
+
$dropdown-box-shadow: 0 1px 1px 0 rgba(65, 69, 73, 0.3), 0 1px 3px 1px rgba(65, 69, 73, 0.15);
|
|
118
119
|
|
|
119
120
|
/* popovers - these are used for in page menus, help menus */
|
|
120
|
-
$popover-border-color:
|
|
121
|
-
$popover-border-radius:
|
|
122
|
-
$popover-
|
|
121
|
+
$popover-border-color: transparent;
|
|
122
|
+
$popover-border-radius: 5px;
|
|
123
|
+
$popover-inner-border-radius: 5px;
|
|
124
|
+
$popover-border-width: 0;
|
|
125
|
+
$popover-box-shadow: 0 1px 1px 0 rgba(65, 69, 73, 0.3), 0 1px 3px 1px rgba(65, 69, 73, 0.15);
|
|
126
|
+
$popover-arrow-width: 0;
|
|
127
|
+
$popover-arrow-height: 0;
|
|
123
128
|
|
|
124
129
|
/* Links */
|
|
125
130
|
$link-decoration: none;
|
|
@@ -1,23 +1,9 @@
|
|
|
1
1
|
div.ccm-block-desktop-waiting-for-me {
|
|
2
|
-
background-color: #fff;
|
|
3
|
-
border: 1px solid #dddfdf;
|
|
4
|
-
margin-bottom: 3rem;
|
|
5
|
-
padding: 20px;
|
|
6
|
-
|
|
7
|
-
h3 {
|
|
8
|
-
border-bottom: 1px solid #d6d6d8;
|
|
9
|
-
font-weight: normal;
|
|
10
|
-
margin-bottom: 20px;
|
|
11
|
-
margin-top: 0;
|
|
12
|
-
padding-bottom: 5px;
|
|
13
|
-
position: relative;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
2
|
i.ccm-block-desktop-waiting-for-me-loader {
|
|
17
3
|
display: none;
|
|
18
4
|
position: absolute;
|
|
19
|
-
right:
|
|
20
|
-
top:
|
|
5
|
+
right: 20px;
|
|
6
|
+
top: 18px;
|
|
21
7
|
}
|
|
22
8
|
|
|
23
9
|
div.ccm-block-desktop-waiting-for-me-loading {
|
package/package.json
CHANGED