Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zwbetz-gh/cupper-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSidharth R <ofw3210@gmail.com>2021-09-06 07:41:35 +0300
committerGitHub <noreply@github.com>2021-09-06 07:41:35 +0300
commitb87a99af1fe064a574ba385a9f11334f4296f314 (patch)
treed2dea1b43688bb3ff0da67598d877332883c4c78
parentebceede3a7a602af01d382b6f3d65ef274de5f1a (diff)
🖱️ Fix selection highlight css rules for text generated by cmd shortcode (#59)
* Fix non selectable text in cmd shortcode * Invert selection colors for text generated by cmd shortcode
-rw-r--r--assets/css/template-styles.css5
1 files changed, 4 insertions, 1 deletions
diff --git a/assets/css/template-styles.css b/assets/css/template-styles.css
index 9ce3042..74a2eb3 100644
--- a/assets/css/template-styles.css
+++ b/assets/css/template-styles.css
@@ -168,7 +168,10 @@ code {
font-weight: bold;
padding-right: 0.25em;
}
-
+.cmd code::selection{
+ background: #fefefe;
+ color: rgba(0,0,0,.8);
+}
/* Lists */
main ul,
main ol {