Compare commits
8 Commits
fix-option
...
update-sel
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
78f686abd7 | ||
|
|
aa5486a1a3 | ||
|
|
c909567dc5 | ||
|
|
5ee0e4fed2 | ||
|
|
98f9a197e2 | ||
|
|
7280b80c3d | ||
|
|
8d8a9ea2c1 | ||
|
|
580ba86680 |
@@ -1,7 +1,7 @@
|
|||||||
cache: false
|
cache: false
|
||||||
language: node_js
|
language: node_js
|
||||||
node_js:
|
node_js:
|
||||||
- "4.1"
|
- "6.14.2"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- npm install
|
- npm install
|
||||||
|
|||||||
@@ -126,6 +126,8 @@ This is the generic loader for widgets, maps, components, ...
|
|||||||
.CDB-LoaderIcon-path {
|
.CDB-LoaderIcon-path {
|
||||||
stroke: rgba(255, 255, 255, 0.88);
|
stroke: rgba(255, 255, 255, 0.88);
|
||||||
stroke-linecap: round;
|
stroke-linecap: round;
|
||||||
|
stroke-dasharray: 90, 150;
|
||||||
|
stroke-dashoffset: 0;
|
||||||
animation: dash 1.5s ease-in-out infinite;
|
animation: dash 1.5s ease-in-out infinite;
|
||||||
stroke-width: 4px;
|
stroke-width: 4px;
|
||||||
}
|
}
|
||||||
@@ -137,11 +139,16 @@ This is the generic loader for widgets, maps, components, ...
|
|||||||
.CDB-LoaderIcon.is-dark .CDB-LoaderIcon-path {
|
.CDB-LoaderIcon.is-dark .CDB-LoaderIcon-path {
|
||||||
stroke: rgba(0, 0, 0, 0.24);
|
stroke: rgba(0, 0, 0, 0.24);
|
||||||
}
|
}
|
||||||
|
|
||||||
.CDB-LoaderIcon.is-blue .CDB-LoaderIcon-path {
|
.CDB-LoaderIcon.is-blue .CDB-LoaderIcon-path {
|
||||||
stroke: $cBlue;
|
stroke: $cBlue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes rotate {
|
@keyframes rotate {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
|
||||||
100% {
|
100% {
|
||||||
transform: rotate(360deg);
|
transform: rotate(360deg);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -179,6 +179,7 @@
|
|||||||
&:focus::after,
|
&:focus::after,
|
||||||
&:hover::after {
|
&:hover::after {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
top: -1px;
|
||||||
left: -1px;
|
left: -1px;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
height: $baseSize * 4;
|
height: $baseSize * 4;
|
||||||
|
|||||||
@@ -77,10 +77,10 @@
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
border: 1px solid $cHoverLine;
|
border: 1px solid $cBlueHover;
|
||||||
}
|
}
|
||||||
&:focus {
|
&:focus {
|
||||||
border: 1px solid $cBlue;
|
border: 1px solid $cBlackHover;
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
&:disabled {
|
&:disabled {
|
||||||
@@ -90,6 +90,10 @@
|
|||||||
&.has-error {
|
&.has-error {
|
||||||
@include default-form-error-style();
|
@include default-form-error-style();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.is-cursor {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.CDB-FieldError .CDB-Select,
|
.CDB-FieldError .CDB-Select,
|
||||||
|
|||||||
Reference in New Issue
Block a user