@appscode/design-system 1.0.43-alpha.59 → 1.0.43-alpha.62
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.
- package/base/utilities/_default.scss +26 -0
- package/components/_ac-card.scss +1 -1
- package/components/_ac-content-layout.scss +2 -2
- package/components/_card-body-wrapper.scss +1 -1
- package/components/_dashboard-header.scss +2 -2
- package/components/_left-sidebar-menu.scss +4 -0
- package/components/_preview-modal.scss +1 -1
- package/components/bbum/_sign-up-notification.scss +1 -1
- package/components/bbum/_single-post-preview.scss +1 -1
- package/package.json +1 -1
|
@@ -148,6 +148,32 @@
|
|
|
148
148
|
background-color: $ac-white;
|
|
149
149
|
}
|
|
150
150
|
|
|
151
|
+
// color swatch start
|
|
152
|
+
input[type="color"] {
|
|
153
|
+
-webkit-appearance: none;
|
|
154
|
+
border: none;
|
|
155
|
+
width: 20px;
|
|
156
|
+
height: 20px;
|
|
157
|
+
border-radius: 50%;
|
|
158
|
+
border: 1px solid #777;
|
|
159
|
+
margin-left: 3px;
|
|
160
|
+
padding: 2px;
|
|
161
|
+
cursor: pointer;
|
|
162
|
+
}
|
|
163
|
+
input[type="color"]::-webkit-color-swatch-wrapper {
|
|
164
|
+
padding: 0;
|
|
165
|
+
}
|
|
166
|
+
// input[type="color"]::-moz-color-swatch,
|
|
167
|
+
input[type="color"]::-webkit-color-swatch {
|
|
168
|
+
border: none;
|
|
169
|
+
border-radius: 50%;
|
|
170
|
+
}
|
|
171
|
+
input[type="color"]::-moz-color-swatch {
|
|
172
|
+
border: none;
|
|
173
|
+
border-radius: 50%;
|
|
174
|
+
}
|
|
175
|
+
// color swatch end
|
|
176
|
+
|
|
151
177
|
.is-dark-theme {
|
|
152
178
|
.dropdown-content {
|
|
153
179
|
background-color: $dark-bg-light;
|
package/components/_ac-card.scss
CHANGED
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
border: none;
|
|
7
7
|
|
|
8
8
|
&.style-2 {
|
|
9
|
-
border: 1px solid $
|
|
9
|
+
border: 1px solid $ac-white-light;
|
|
10
10
|
box-shadow: none;
|
|
11
11
|
padding: 0;
|
|
12
12
|
border-radius: 4px;
|
|
13
13
|
|
|
14
14
|
.ac-content-header {
|
|
15
|
-
background-color: $
|
|
15
|
+
background-color: $ac-blue-light;
|
|
16
16
|
|
|
17
17
|
&.is-bg-white {
|
|
18
18
|
.ac-cheader-left {
|
|
@@ -129,11 +129,15 @@
|
|
|
129
129
|
height: calc(100vh - 100px);
|
|
130
130
|
overflow-y: auto;
|
|
131
131
|
padding-top: 8px;
|
|
132
|
+
scrollbar-color: #fff #fff;
|
|
132
133
|
|
|
133
134
|
/* width */
|
|
134
135
|
&::-webkit-scrollbar {
|
|
135
136
|
display: none;
|
|
136
137
|
}
|
|
138
|
+
&::-webkit-scrollbar {
|
|
139
|
+
display: none;
|
|
140
|
+
}
|
|
137
141
|
|
|
138
142
|
li {
|
|
139
143
|
&.is-open {
|