Skip to content

Commit b5f8cc3

Browse files
committed
Small improvement
1 parent 81eae56 commit b5f8cc3

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

inst/pkgdown/assets/BS5/gitdevr.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ mark,
160160
RGBA(var(--bs-link-color-rgb), 0.7) 95%,
161161
RGBA(var(--bs-link-color-rgb), 0.1)
162162
);
163+
color: var(--bs-body-color);
163164
}
164165

165166
/* ---Nav pills--- */
@@ -284,7 +285,7 @@ img.logo {
284285

285286
blockquote,
286287
.blockquote {
287-
border-left: 0.25rem solid var(--bs-link-hover-color);
288+
border-left: 0.25rem solid RGBA(var(--bs-link-color-rgb), 0.3);
288289
margin-bottom: 1rem;
289290
font-size: 1.25rem;
290291
}

vignettes/test/rendering.Rmd

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,20 @@ Inline equations: $y=x^2$
7878
This text too.
7979
:::
8080

81+
82+
## Buttons
83+
84+
<button type="button" class="btn btn-primary">Primary</button>
85+
<button type="button" class="btn btn-secondary">Secondary</button>
86+
<button type="button" class="btn btn-success">Success</button>
87+
<button type="button" class="btn btn-danger">Danger</button>
88+
<button type="button" class="btn btn-warning">Warning</button>
89+
<button type="button" class="btn btn-info">Info</button>
90+
<button type="button" class="btn btn-light">Light</button>
91+
<button type="button" class="btn btn-dark">Dark</button>
92+
93+
<button type="button" class="btn btn-link">Link</button>
94+
8195
## Code
8296

8397
### Line width
@@ -105,7 +119,7 @@ mean(a + 1)
105119

106120
R code in `r` block:
107121

108-
```R
122+
```r
109123
mean(a + 1)
110124
```
111125

0 commit comments

Comments
 (0)