Skip to content

Commit

Permalink
chore(project): sync generated files [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
carbon-bot committed Oct 23, 2019
1 parent 18ed97e commit 0dd565e
Showing 1 changed file with 33 additions and 3 deletions.
36 changes: 33 additions & 3 deletions packages/components/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@
- [❌animation\_\_loading--spin [mixin]](#animation__loading--spin-mixin)
- [❌animation\_\_loading--stop [mixin]](#animation__loading--stop-mixin)
- [❌loading\_\_gap [variable]](#loading__gap-variable)
- [❌loading--small\_\_gap [variable]](#loading--small__gap-variable)
- [❌loading\_\_size [variable]](#loading__size-variable)
- [modal](#modal)
- [❌modal [mixin]](#modal-mixin)
Expand Down Expand Up @@ -17374,8 +17375,14 @@ File uploader styles
}

.#{$prefix}--loading {
width: $carbon--spacing-06;
height: $carbon--spacing-06;
width: rem(32px);
height: rem(32px);
margin-right: -$carbon--spacing-03;
}

.#{$prefix}--inline-loading__animation .#{$prefix}--loading {
// Vanilla markup has `.bx--inline-loading__animation` which is used for `margin-right` adjustment
margin-right: 0;
}

.#{$prefix}--file-filename {
Expand Down Expand Up @@ -17692,7 +17699,7 @@ Inline loading styles
}

.#{$prefix}--loading__stroke {
stroke-dashoffset: 99;
stroke-dashoffset: $loading--small__gap;
}
}

Expand Down Expand Up @@ -17772,6 +17779,7 @@ Inline loading styles
- **Group**: [inline-loading](#inline-loading)
- **Requires**:
- [prefix [variable]](#prefix-variable)
- [loading--small\_\_gap [variable]](#loading--small__gap-variable)
- [text-02 [variable]](#text-02-variable)
- [interactive-04 [variable]](#interactive-04-variable)
- [support-01 [variable]](#support-01-variable)
Expand Down Expand Up @@ -18638,6 +18646,10 @@ Loading styles
stroke-dashoffset: $loading__gap;
}

.#{$prefix}--loading--small .#{$prefix}--loading__stroke {
stroke-dashoffset: $loading--small__gap;
}

.#{$prefix}--loading--stop {
@include animation__loading--stop;
}
Expand Down Expand Up @@ -18689,6 +18701,7 @@ Loading styles
- [loading\_\_size [variable]](#loading__size-variable)
- [interactive-04 [variable]](#interactive-04-variable)
- [loading\_\_gap [variable]](#loading__gap-variable)
- [loading--small\_\_gap [variable]](#loading--small__gap-variable)
- [ui-03 [variable]](#ui-03-variable)
- [ui-02 [variable]](#ui-02-variable)

Expand Down Expand Up @@ -18765,6 +18778,23 @@ $loading__gap: 40;
- **Used by**:
- [loading [mixin]](#loading-mixin)

### ❌loading--small\_\_gap [variable]

<details>
<summary>Source code</summary>

```scss
$loading--small__gap: 99;
```

</details>

- **Group**: [loading](#loading)
- **Type**: `Number`
- **Used by**:
- [inline-loading [mixin]](#inline-loading-mixin)
- [loading [mixin]](#loading-mixin)

### ❌loading\_\_size [variable]

<details>
Expand Down

0 comments on commit 0dd565e

Please sign in to comment.