12 Commits

Author SHA1 Message Date
jesusbotella
78f686abd7 Update NodeJS version for Travis checks 2018-05-21 16:07:34 +02:00
jesusbotella
aa5486a1a3 Update hover and focus styles to match input text 2018-05-07 09:53:13 +02:00
Elena Torró
c909567dc5 Merge pull request #196 from CartoDB/500onpremises-loading-circle
Fix loading circle in IE11
2018-03-23 10:38:49 +01:00
elenatorro
5ee0e4fed2 Set default stroke to make it work in IE11 2018-03-22 19:05:32 +01:00
elenatorro
98f9a197e2 Fix spinner for IE11 2018-03-20 18:31:31 +01:00
Rubén Moya
7280b80c3d Merge pull request #195 from CartoDB/fix-option-input-top
Fix border position
2018-03-16 14:34:30 +01:00
rubenmoya
8d8a9ea2c1 Add top since position is absolute 2018-03-16 13:06:58 +01:00
Rubén Moya
580ba86680 Merge pull request #194 from CartoDB/fix-option-input-border
Use fixed height in option-input border
2018-03-16 09:41:22 +01:00
rubenmoya
007bea85ad Use baseSize instead of hardcoded value 2018-03-16 09:35:22 +01:00
rubenmoya
e7f9d245c6 Use fixed height in option-input border 2018-03-14 16:44:03 +01:00
Rubén Moya
30d7cf0f99 Merge pull request #193 from CartoDB/add-medium-left-space
Add medium left space to utilities
2018-03-07 13:38:51 +01:00
rubenmoya
4c4676798c Add medium left space to utilities 2018-03-06 17:07:08 +01:00
5 changed files with 19 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
cache: false
language: node_js
node_js:
- "4.1"
- "6.14.2"
install:
- npm install

View File

@@ -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);
}

View File

@@ -179,9 +179,10 @@
&:focus::after,
&:hover::after {
position: absolute;
top: -1px;
left: -1px;
width: 1px;
height: calc(100% + 2px);
height: $baseSize * 4;
content: '';
}

View File

@@ -77,10 +77,10 @@
box-sizing: border-box;
&:hover {
border: 1px solid $cHoverLine;
border: 1px solid $cBlueHover;
}
&:focus {
border: 1px solid $cBlue;
border: 1px solid $cBlackHover;
outline: none;
}
&:disabled {
@@ -90,6 +90,10 @@
&.has-error {
@include default-form-error-style();
}
&.is-cursor {
cursor: pointer;
}
}
.CDB-FieldError .CDB-Select,

View File

@@ -38,6 +38,9 @@
.u-lSpace--s {
margin-left: 2px;
}
.u-lSpace--m {
margin-left: 8px;
}
.u-lSpace--xl {
margin-left: 12px;
}