Skip to content

Commit 26e98bb

Browse files
committed
Rollback link color change
1 parent db70811 commit 26e98bb

File tree

2 files changed

+21
-7
lines changed

2 files changed

+21
-7
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org).
66

7+
## [0.9.3] - 2025-05-09
8+
### Added
9+
* *Nothing*
10+
11+
### Changed
12+
* *Nothing*
13+
14+
### Deprecated
15+
* *Nothing*
16+
17+
### Removed
18+
* *Nothing*
19+
20+
### Fixed
21+
* Rollback change in links color, as it overrides too many other styles. Bootstrap color will have preference for now.
22+
23+
724
## [0.9.2] - 2025-05-09
825
### Added
926
* *Nothing*

src/tailwind/tailwind.preset.css

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,11 @@
113113

114114
a {
115115
/*
116-
* FIXME Set this style as plain CSS instead of @apply to avoid higher specificity.
116+
* FIXME Set these styles as plain CSS instead of @apply to avoid higher specificity.
117117
* This can be set via @apply as soon as we stop using important for tailwind classes, once bootstrap is
118118
* removed
119119
*/
120+
color: var(--tw-color-lm-brand);
120121
border-radius: var(--tw-radius-xs);
121122

122123
@apply
@@ -125,12 +126,8 @@
125126
tw:focus-visible:z-1;
126127
}
127128

128-
/*
129-
* FIXME Workaround to avoid paginator items to be set with the wrong color.
130-
* Colors can be set above as soon as we stop using important for tailwind classes, once bootstrap is removed.
131-
*/
132-
a:not(.tw\:text-white) {
133-
@apply tw:text-lm-brand tw:dark:text-dm-brand
129+
[data-theme="dark"] a {
130+
color: var(--tw-color-dm-brand);
134131
}
135132

136133
h1 {

0 commit comments

Comments
 (0)