@concretecms/bedrock 1.6.2 → 1.6.3
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.
|
@@ -562,9 +562,11 @@ div#ccm-menu-click-proxy {
|
|
|
562
562
|
div#ccm-menu-highlighter {
|
|
563
563
|
background-color: transparent;
|
|
564
564
|
height: 0;
|
|
565
|
+
opacity: 0;
|
|
565
566
|
position: absolute;
|
|
566
|
-
transition: background-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
|
|
567
|
+
transition: background-color 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity cubic-bezier(0.19, 1, 0.22, 1);
|
|
567
568
|
width: 0;
|
|
569
|
+
will-change: opacity, background-color;
|
|
568
570
|
z-index: $index-level-in-context-menu-highlighter;
|
|
569
571
|
}
|
|
570
572
|
|
|
@@ -28,6 +28,12 @@ table.ccm-block-document-library-table thead th.ccm-block-document-library-colum
|
|
|
28
28
|
width: 1px;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
+
table.ccm-block-document-library-table {
|
|
32
|
+
td {
|
|
33
|
+
vertical-align: middle;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
31
37
|
a.ccm-block-document-library-details::after {
|
|
32
38
|
border-color: transparent transparent #000;
|
|
33
39
|
border-style: solid;
|
package/package.json
CHANGED