@concretecms/bedrock 1.1.14 → 1.1.15

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.
@@ -341,6 +341,7 @@
341
341
  },
342
342
 
343
343
  disableDirectExit: function() {
344
+ ConcreteEvent.publish('ToolbarDirectExitDisabled')
344
345
  var $link = $('li.ccm-toolbar-page-edit a')
345
346
  if ($link.attr('data-launch-panel') != 'check-in' && $link.attr('data-disable-panel') != 'check-in') {
346
347
  $link.attr('data-launch-panel', 'check-in').on('click', function() {
@@ -19,17 +19,17 @@ div#ccm-toolbar {
19
19
  display: inline-block;
20
20
  }
21
21
 
22
- li > a {
22
+ .ccm-toolbar-item-list > li > a {
23
23
  padding: 14px 16px;
24
24
  width: auto !important;
25
25
  }
26
26
 
27
- li > a i,
28
- li > a img {
27
+ .ccm-toolbar-item-list > li > a i,
28
+ .ccm-toolbar-item-list > li > a img {
29
29
  position: static;
30
30
  }
31
31
 
32
- .spinner {
32
+ .ccm-toolbar-item-list > .spinner {
33
33
  left: 11px;
34
34
  }
35
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@concretecms/bedrock",
3
- "version": "1.1.14",
3
+ "version": "1.1.15",
4
4
  "description": "The asset framework and dependencies for Concrete CMS.",
5
5
  "scripts": {
6
6
  "lint": "standardx \"**/*.{js,vue}\" && stylelint assets/**/*.{scss,vue}",