@concretecms/bedrock 1.3.3 → 1.3.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.
@@ -93,6 +93,7 @@
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';
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@concretecms/bedrock",
3
- "version": "1.3.3",
3
+ "version": "1.3.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}",