@concretecms/bedrock 1.6.2 → 1.6.4

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.
@@ -340,6 +340,13 @@ export default {
340
340
  height: 'auto'
341
341
  })
342
342
  })
343
+
344
+ // Remove the data-dialog=theme-customizer-custom-css div if it appears
345
+ // inside a div with the [role=dialog]. Fixes https://github.com/concretecms/concretecms/issues/12575
346
+ const $customCssDialog = $('div[role=dialog] div[data-dialog=theme-customizer-custom-css]')
347
+ if ($customCssDialog.length) {
348
+ $customCssDialog.remove()
349
+ }
343
350
  },
344
351
  props: {
345
352
  previewAction: {
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@concretecms/bedrock",
3
- "version": "1.6.2",
3
+ "version": "1.6.4",
4
4
  "description": "The asset framework and dependencies for Concrete CMS.",
5
5
  "scripts": {
6
6
  "lint": "standardx \"**/*.{js,vue}\" && stylelint assets/**/*.{scss,vue}",