Merge pull request #197 from CartoDB/update-select-styles

Update hover and focus styles to match input text
pull/198/head^2
Jesús Botella 6 years ago committed by GitHub
commit 261ac8a261
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

@ -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,

Loading…
Cancel
Save