Highlight button when hover over it

This commit is contained in:
curben 2018-10-20 19:04:52 +10:30
parent 673707964f
commit 2cd6e3e6a5
1 changed files with 5 additions and 1 deletions

View File

@ -1185,7 +1185,7 @@ pre .javascript .function,pre .keyword {
}
.copy-button {
background-color: #3f3f3f;
background-color: #333;
border: 1px solid #999;
border-radius: 5px;
color: #d8d8d8;
@ -1198,3 +1198,7 @@ pre .javascript .function,pre .keyword {
-moz-user-select: none;
-ms-user-select: none;
}
.copy-button:hover {
background-color: #3f3f3f;
}