28 Commits

Author SHA1 Message Date
jesusbotella
aef4e7f9f5 0.2.3 2018-06-14 12:21:53 +02:00
Jesús Botella
34c8e8c816 Merge pull request #200 from CartoDB/disable-pointerevents-in-disabled-buttons
Disable pointer events in disabled buttons
2018-06-14 12:21:39 +02:00
jesusbotella
54ce151f5f Disable pointer events when disabled button is active 2018-06-14 11:28:37 +02:00
jesusbotella
b225ce7f0c Disable pointer events in disabled buttons 2018-06-14 10:52:47 +02:00
Rubén Moya
3913e9f932 Merge pull request #199 from CartoDB/add-no-padding-button
Add noPadding helper to CDB-Button
2018-05-25 09:33:57 +02:00
rubenmoya
25b418781f Add noPadding helper to CDB-Button 2018-05-25 09:20:46 +02:00
Jesús Botella
4cbe7053b7 Merge pull request #198 from CartoDB/add-left-xxl-margin
Add XXL left space
2018-05-23 12:15:12 +02:00
jesusbotella
75e6927015 Merge branch 'master' into add-left-xxl-margin 2018-05-23 11:57:57 +02:00
Jesús Botella
261ac8a261 Merge pull request #197 from CartoDB/update-select-styles
Update hover and focus styles to match input text
2018-05-21 16:19:55 +02:00
jesusbotella
78f686abd7 Update NodeJS version for Travis checks 2018-05-21 16:07:34 +02:00
jesusbotella
d338a1050c Add XXL left space 2018-05-16 11:51:08 +02:00
IagoLast
72023bfb75 0.2.2 2018-05-10 16:09:32 +02:00
IagoLast
57424ee145 Fix version 2018-05-10 16:09:26 +02:00
IagoLast
87f3524b8a Add release scripts 2018-05-10 16:08:51 +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
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
Rubén Moya
9bd80bea8b Merge pull request #192 from CartoDB/fix-disabled-checked-checkbox
Better color for disabled & checked checkbox
2018-02-08 13:01:04 +01:00
rubenmoya
85928ff84f 🐶 2018-02-08 10:54:02 +01:00
rubenmoya
95ea1a1a1f Better color for disabled & checked checkbox 2018-02-08 10:48:44 +01:00
Carlos Matallín
d8c5b2fe6d Merge pull request #191 from CartoDB/arrow-mini
add arrow mini
2018-02-06 19:00:14 +01:00
Carlos Matallín
d6c9fb4e8a arrow mini 2018-02-05 16:33:24 +01:00
8 changed files with 53 additions and 6 deletions

View File

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

View File

@@ -1,7 +1,7 @@
{
"name": "cartoassets",
"description": "Share frontend assets between different CARTO repositories",
"version": "0.2.00",
"version": "0.2.3",
"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"
}
}

View File

@@ -175,9 +175,17 @@ Layout Component:
&.is-disabled {
opacity: 0.24;
cursor: default;
&:active {
pointer-events: none;
}
}
}
.CDB-Button--noPadding {
padding: 0;
}
.CDB-Button--loading {
.CDB-Button-loader {
position: absolute;

View File

@@ -111,3 +111,14 @@
opacity: 0;
}
}
.CDB-Checkbox:checked:disabled + .CDB-Checkbox-face {
border: 1px solid $cSecondaryLine;
background: $cThirdBackground;
&::before,
&::after {
background: $cAltText;
opacity: 1;
}
}

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

@@ -126,6 +126,17 @@ Description
}
}
.CDB-ArrowToogle.is-mini {
&::before {
left: 3px;
width: 6px;
}
&::after {
right: 3px;
width: 6px;
}
}
.CDB-ArrowToogle.is-blue {
&::before {
background: $cBlue;

View File

@@ -38,9 +38,15 @@
.u-lSpace--s {
margin-left: 2px;
}
.u-lSpace--m {
margin-left: 8px;
}
.u-lSpace--xl {
margin-left: 12px;
}
.u-lSpace--xxl {
margin-left: 16px;
}
.u-ellipsis {
text-overflow: ellipsis;