@myst-theme/styles 1.1.0 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +4 -0
- package/button.css +0 -4
- package/package.json +1 -1
- package/typography.css +9 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @myst-theme/styles@1.1.
|
|
2
|
+
> @myst-theme/styles@1.1.2 build
|
|
3
3
|
> tailwindcss -m -i ./app.css -o ../docs/public/tailwind.css
|
|
4
4
|
|
|
5
5
|
Browserslist: caniuse-lite is outdated. Please run:
|
|
@@ -8,4 +8,4 @@ Browserslist: caniuse-lite is outdated. Please run:
|
|
|
8
8
|
|
|
9
9
|
Rebuilding...
|
|
10
10
|
|
|
11
|
-
Done in
|
|
11
|
+
Done in 3445ms.
|
package/CHANGELOG.md
CHANGED
package/button.css
CHANGED
package/package.json
CHANGED
package/typography.css
CHANGED
|
@@ -15,8 +15,15 @@
|
|
|
15
15
|
@apply text-blue-700 dark:text-blue-400 underline decoration-[0.1em] underline-offset-[0.15em] decoration-blue-400 dark:decoration-blue-500 hover:text-blue-500 dark:hover:text-blue-300 hover:decoration-blue-500 dark:hover:decoration-blue-300;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
/* External link
|
|
19
|
-
.
|
|
18
|
+
/* External/download link icons: hidden by default, shown only for plain text links in prose */
|
|
19
|
+
.link-icon {
|
|
20
|
+
@apply hidden;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/* Only show link icons when it's a "prose" style element.
|
|
24
|
+
* This rule tries to filter out anything that's not just "link with some text inside, in page content".
|
|
25
|
+
*/
|
|
26
|
+
.prose a:not(.button):not(:has(img, figure, picture, video)) > .link-icon {
|
|
20
27
|
@apply inline-block w-[0.85em] h-[0.85em] ml-0.5 align-baseline opacity-80;
|
|
21
28
|
}
|
|
22
29
|
}
|