Compare commits
9 Commits
fix-option
...
v0.2.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
72023bfb75 | ||
|
|
57424ee145 | ||
|
|
87f3524b8a | ||
|
|
c909567dc5 | ||
|
|
5ee0e4fed2 | ||
|
|
98f9a197e2 | ||
|
|
7280b80c3d | ||
|
|
8d8a9ea2c1 | ||
|
|
580ba86680 |
10
package.json
10
package.json
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "cartoassets",
|
||||
"description": "Share frontend assets between different CARTO repositories",
|
||||
"version": "0.2.00",
|
||||
"version": "0.2.2",
|
||||
"homepage": "https://github.com/cartodb/CartoAssets",
|
||||
"author": {
|
||||
"name": "CARTO",
|
||||
@@ -55,5 +55,11 @@
|
||||
"shared components",
|
||||
"editor",
|
||||
"deep-insights"
|
||||
]
|
||||
],
|
||||
"scripts": {
|
||||
"bump": "npm version patch",
|
||||
"bump:major": "npm version major",
|
||||
"bump:minor": "npm version minor",
|
||||
"postversion": "git push origin master --follow-tags"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -126,6 +126,8 @@ This is the generic loader for widgets, maps, components, ...
|
||||
.CDB-LoaderIcon-path {
|
||||
stroke: rgba(255, 255, 255, 0.88);
|
||||
stroke-linecap: round;
|
||||
stroke-dasharray: 90, 150;
|
||||
stroke-dashoffset: 0;
|
||||
animation: dash 1.5s ease-in-out infinite;
|
||||
stroke-width: 4px;
|
||||
}
|
||||
@@ -137,11 +139,16 @@ This is the generic loader for widgets, maps, components, ...
|
||||
.CDB-LoaderIcon.is-dark .CDB-LoaderIcon-path {
|
||||
stroke: rgba(0, 0, 0, 0.24);
|
||||
}
|
||||
|
||||
.CDB-LoaderIcon.is-blue .CDB-LoaderIcon-path {
|
||||
stroke: $cBlue;
|
||||
}
|
||||
|
||||
@keyframes rotate {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
|
||||
@@ -179,6 +179,7 @@
|
||||
&:focus::after,
|
||||
&:hover::after {
|
||||
position: absolute;
|
||||
top: -1px;
|
||||
left: -1px;
|
||||
width: 1px;
|
||||
height: $baseSize * 4;
|
||||
|
||||
Reference in New Issue
Block a user