@concretecms/bedrock 1.3.2 → 1.3.5

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.
@@ -386,8 +386,8 @@
386
386
  }
387
387
 
388
388
  if (!my.getElem().parent().is('#ccm-stack-container')) {
389
- var template = _(ccmi18n.emptyArea).template()
390
- elem.text(template({ area_handle: my.getElem().data('area-display-name') }))
389
+ var template = _('<span>' + ccmi18n.emptyArea + '</span>').template()
390
+ elem.html(template({ area_handle: my.getElem().data('area-display-name') }))
391
391
  }
392
392
  my.getDragAreas().push(drag_area)
393
393
  return drag_area
@@ -93,9 +93,11 @@
93
93
  @import './permission-grid';
94
94
  @import './tooltips';
95
95
  @import 'spectrum-colorpicker2/dist/spectrum';
96
+ @import './color-picker';
96
97
  @import './icons';
97
98
  @import './date-time';
98
99
  @import './dropdown';
99
100
  @import './utilities';
100
101
  @import './popover';
101
102
  @import './nav';
103
+ @import './nav-sidebar';
@@ -0,0 +1,28 @@
1
+ div.ccm-ui {
2
+ .ccm-widget-colorpicker {
3
+ border: 1px solid $input-border-color;
4
+ height: unset;
5
+ padding: 5px;
6
+ width: unset;
7
+
8
+ .sp-preview {
9
+ border: 1px solid $input-border-color;
10
+ border-radius: 2px;
11
+ height: 30px;
12
+ margin-right: 15px;
13
+ width: 35px;
14
+ }
15
+
16
+ .sp-dd {
17
+ color: $input-color;
18
+ font-size: 12px;
19
+ line-height: 2.6rem;
20
+ right: 2px;
21
+ }
22
+
23
+ &.sp-replacer:hover,
24
+ &.sp-replacer.sp-active {
25
+ border-color: $input-focus-border-color;
26
+ }
27
+ }
28
+ }
@@ -127,30 +127,6 @@
127
127
  position: relative;
128
128
  }
129
129
 
130
- .sp-dd {
131
- display: none;
132
- }
133
-
134
- .sp-replacer {
135
- border: 1px solid #444;
136
- border-radius: 4px;
137
- height: 28px;
138
- margin-left: 10px;
139
- padding: 0;
140
- width: 28px;
141
-
142
- .sp-preview {
143
- border: 0;
144
- height: 28px;
145
- width: 28px;
146
-
147
- .sp-preview-inner {
148
- height: 28px;
149
- width: 28px;
150
- }
151
- }
152
- }
153
-
154
130
  h3 {
155
131
  font-size: $font-size-base;
156
132
  font-weight: bold;
@@ -13,12 +13,6 @@
13
13
  padding: 40px 0;
14
14
  }
15
15
 
16
- .external-auth-option {
17
- margin-left: auto;
18
- margin-right: auto;
19
- max-width: 360px;
20
- }
21
-
22
16
  h2.login-page-title {
23
17
  color: #fff;
24
18
  font-size: $modal-title-font-size;
@@ -0,0 +1,43 @@
1
+ div.ccm-ui {
2
+ .nav {
3
+ &.nav-sidebar {
4
+ @include border-radius($list-group-border-radius);
5
+
6
+ .nav-item {
7
+ border: $list-group-border-width solid $list-group-border-color;
8
+
9
+ &:first-child {
10
+ @include border-top-radius(inherit);
11
+ }
12
+
13
+ &:last-child {
14
+ @include border-bottom-radius(inherit);
15
+ }
16
+
17
+ + .nav-item {
18
+ border-top-width: 0;
19
+ }
20
+
21
+ a {
22
+ &:hover {
23
+ background-color: $gray-100;
24
+ }
25
+
26
+ &.active {
27
+ position: relative;
28
+
29
+ &::before {
30
+ background-color: $blue;
31
+ bottom: 0;
32
+ content: '';
33
+ left: 0;
34
+ position: absolute;
35
+ top: 0;
36
+ width: 2px;
37
+ }
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
43
+ }
@@ -129,12 +129,13 @@ div.ccm-area.ccm-menu-item-hover {
129
129
  }
130
130
 
131
131
  div.ccm-area-footer {
132
- //bottom: -35px;
132
+ bottom: 0;
133
133
  left: 0;
134
134
  max-width: 100%;
135
135
  opacity: 0;
136
136
  padding-left: 20px;
137
137
  position: absolute;
138
+ transform: translateY(100%);
138
139
  transition: opacity 0.5 s cubic-bezier(0.19, 1, 0.22, 1);
139
140
  white-space: nowrap;
140
141
  //padding-top: 15px;
@@ -148,7 +149,6 @@ div.ccm-area-footer {
148
149
  color: #666;
149
150
  display: inline-block;
150
151
  font-size: $font-size-base !important;
151
- height: 35px;
152
152
  max-width: 100%;
153
153
  padding: 8px 15px;
154
154
 
@@ -409,9 +409,12 @@ div.ccm-area-drag-area {
409
409
  outline-color: rgb(170, 255, 170);
410
410
  outline-style: solid;
411
411
  outline-width: 0;
412
- text-indent: -10000em;
413
412
  transition: outline-width 0.5s cubic-bezier(0.19, 1, 0.22, 1), outline-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
414
413
 
414
+ span {
415
+ display: none;
416
+ }
417
+
415
418
  &.ccm-area-drag-area-contender {
416
419
  background-color: rgba(221, 255, 221, 0.5);
417
420
  outline: solid 5px rgba(221, 255, 221, 0.7) !important;
@@ -445,9 +448,12 @@ html.ccm-block-dragging {
445
448
  div.ccm-area[data-total-blocks='0'] {
446
449
  div.ccm-area-drag-area {
447
450
  color: #bbb;
451
+ display: block;
448
452
  padding: 24px;
449
453
  text-align: center !important; /* https://github.com/concrete5/concrete5/issues/10249 */
450
- text-indent: 0;
454
+ span {
455
+ display: inline-block;
456
+ }
451
457
  }
452
458
  }
453
459
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@concretecms/bedrock",
3
- "version": "1.3.2",
3
+ "version": "1.3.5",
4
4
  "description": "The asset framework and dependencies for Concrete CMS.",
5
5
  "scripts": {
6
6
  "lint": "standardx \"**/*.{js,vue}\" && stylelint assets/**/*.{scss,vue}",