🌐 AI搜索 & 代理 主页
Skip to content

Commit a086140

Browse files
committed
Prettify
1 parent 6e7c840 commit a086140

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

src/_custom-controls.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,13 @@
107107
.input-group.input-group-sm & {
108108
min-height: calc(#{$input-height-sm} - #{$input-height-border});
109109
padding-top: $input-padding-y-sm;
110-
padding-bottom: $input-padding-y-sm
110+
padding-bottom: $input-padding-y-sm;
111111
}
112112

113113
.input-group.input-group-lg & {
114114
min-height: calc(#{$input-height-lg} - #{$input-height-border});
115115
padding-top: $input-padding-y-lg;
116-
padding-bottom: $input-padding-y-lg
116+
padding-bottom: $input-padding-y-lg;
117117
}
118118
}
119119
}

src/components/avatar/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,6 @@ Group multiple avatars together by wrapping them in a `<b-avatar-group>` compone
459459

460460
**Notes:**
461461

462-
-
463462
- The `variant`, `square` and `rounded` props on `<b-avatar-group>` will take precedence over the
464463
respective props on individual avatars.
465464

@@ -529,9 +528,9 @@ over the respective props on individual child avatars.
529528

530529
### Group overlap
531530

532-
By default child avatars inside a `<b-avatar-group>` will overlap by a factor of `0.3` (relative
533-
to the size of the avatar). You can control the overlap amount by setting the `overlap` prop to
534-
a value between `0` and `1`, where `0` means no overlap and `1` means 100% overlap.
531+
By default child avatars inside a `<b-avatar-group>` will overlap by a factor of `0.3` (relative to
532+
the size of the avatar). You can control the overlap amount by setting the `overlap` prop to a value
533+
between `0` and `1`, where `0` means no overlap and `1` means 100% overlap.
535534

536535
```html
537536
<template>

src/components/avatar/_avatar.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
&:hover {
3636
.b-avatar-img img {
37-
transform: scale(1.15)
37+
transform: scale(1.15);
3838
}
3939
}
4040
}

src/components/form-rating/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -473,8 +473,8 @@ The following is an example of placing `<b-form-rating>` in an input group:
473473

474474
When a `locale` is specified, the displayed value (when the `show-value` prop is `true`) will be in
475475
the browser's default locale. To change the locale, simple set the `locale` prop to the preferred
476-
locale, or an array of preferred locales (most preferred locale first). This will affect the optional
477-
displayed value and the left-to-right or right-to-left orientation of the component.
476+
locale, or an array of preferred locales (most preferred locale first). This will affect the
477+
optional displayed value and the left-to-right or right-to-left orientation of the component.
478478

479479
```html
480480
<template>

src/components/tooltip/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ override the `pointer-events` on the disabled element.
210210
| `container` | `null` | Element string ID to append rendered tooltip into. If `null` or element not found, tooltip is appended to `<body>` (default) | Any valid in-document unique element ID. |
211211
| `boundary` | `'scrollParent'` | The container that the tooltip will be constrained visually. The default should suffice in most cases, but you may need to change this if your target element is in a small container with overflow scroll | `'scrollParent'` (default), `'viewport'`, `'window'`, or a reference to an HTML element. |
212212
| `boundary-padding` | `5` | Amount of pixel used to define a minimum distance between the boundaries and the tooltip. This makes sure the tooltip always has a little padding between the edges of its container | Any positive number |
213-
| `noninteractive` | `false` | Whether the tooltip should not be user-interactive | `true` or `false` |
213+
| `noninteractive` | `false` | Whether the tooltip should not be user-interactive | `true` or `false` |
214214
| `variant` | `null` | Contextual color variant for the tooltip | Any contextual theme color variant name |
215215
| `custom-class` | `null` | A custom classname to apply to the tooltip outer wrapper element | A string |
216216
| `id` | `null` | An ID to use on the tooltip root element. If none is provided, one will automatically be generated. If you do provide an ID, it _must_ be guaranteed to be unique on the rendered page | A valid unique element ID string |

src/directives/tooltip/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ Where `<value>` can be (optional):
395395
| `fallbackPlacement` | String or Array | `'flip'` | Allow to specify which position Popper will use on fallback. Can be `flip`, `clockwise`, `counterclockwise` or an array of placements. For more information refer to Popper.js's behavior docs |
396396
| `boundary` | String ID or HTMLElement | `'scrollParent'` | The container that the tooltip will be constrained visually. The default should suffice in most cases, but you may need to change this if your target element is in a small container with overflow scroll. Supported values: `'scrollParent'` (default), `'viewport'`, `'window'`, or a reference to an HTML element |
397397
| `boundaryPadding` | Number | `5` | Amount of pixel used to define a minimum distance between the boundaries and the tooltip. This makes sure the tooltip always has a little padding between the edges of its container |
398-
| `interactive` | Boolean | `true` | Whether the tooltip should be user-interactive |
398+
| `interactive` | Boolean | `true` | Whether the tooltip should be user-interactive |
399399
| `variant` | String | `null` | Contextual color variant for the tooltip |
400400
| `customClass` | String | `null` | A custom classname to apply to the tooltip outer wrapper element |
401401
| `id` | String | `null` | An ID to use on the tooltip root element. If none is provided, one will automatically be generated. If you do provide an ID, it _must_ be guaranteed to be unique on the rendered page |

0 commit comments

Comments
 (0)