Change color when clicking on copy

This commit is contained in:
Thomas Dehaeze 2020-11-26 19:57:26 +01:00
parent c5000d395d
commit 7dc2dcd681

View File

@ -22,6 +22,7 @@
text-align: center; text-align: center;
cursor: text; cursor: text;
// Listing num
.listing-number { .listing-number {
font-weight: bold; font-weight: bold;
color: #343131; color: #343131;
@ -37,7 +38,8 @@
// When button is clicked // When button is clicked
&.src-copied { &.src-copied {
background-color: #d6e9ff; color: $white;
background-color: $color-primary;
} }
} }
@ -96,9 +98,7 @@ pre {
} }
} }
// Additional Formating of the code itself
.org-type { .org-type {
color: #228b22; color: #228b22;
} }