File tree 2 files changed +27
-1
lines changed
exampleSite/content/test-product 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -1014,6 +1014,26 @@ button:has(~ .product-selector[style*="none"]) > .product-selector-button-icon {
1014
1014
align-items : flex-start;
1015
1015
}
1016
1016
1017
+ /* Details/Summary */
1018
+ details summary {
1019
+ color : oklch (var (--color-brand ));
1020
+ transition : text-decoration-color 0.15s ease-in-out;
1021
+ text-decoration : underline;
1022
+ text-decoration-color : oklch (var (--color-brand ) / 0.3 );
1023
+
1024
+ & ~ * {
1025
+ margin-top : 1rem ;
1026
+ }
1027
+ }
1028
+
1029
+ details summary : hover {
1030
+ text-decoration-color : oklch (var (--color-brand ) / 0.8 );
1031
+ }
1032
+
1033
+ details : hover {
1034
+ cursor : pointer;
1035
+ }
1036
+
1017
1037
/* Table of Contents */
1018
1038
# TableOfContents {
1019
1039
/* Close all TOC on sidebar */
@@ -1096,7 +1116,7 @@ h3:target,
1096
1116
h4 : target ,
1097
1117
h5 : target ,
1098
1118
h6 : target {
1099
- color : var (--color-brand );
1119
+ color : oklch ( var (--color-brand ) );
1100
1120
1101
1121
.headerlink ::before {
1102
1122
display : block !important ;
Original file line number Diff line number Diff line change @@ -64,3 +64,9 @@ This won't render anything.
64
64
65
65
{{< see-also >}}See also!{{< /see-also >}}
66
66
67
+
68
+ ## details
69
+ <details open >
70
+ <summary>Learn how to pin NGINX Plus to a specific version</summary>
71
+ And this is the content on how to do so.
72
+ </details >
You can’t perform that action at this time.
0 commit comments