mirror of https://gitlab.com/curben/blog
Highlight button when hover over it
This commit is contained in:
parent
673707964f
commit
2cd6e3e6a5
|
@ -1185,7 +1185,7 @@ pre .javascript .function,pre .keyword {
|
||||||
}
|
}
|
||||||
|
|
||||||
.copy-button {
|
.copy-button {
|
||||||
background-color: #3f3f3f;
|
background-color: #333;
|
||||||
border: 1px solid #999;
|
border: 1px solid #999;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
color: #d8d8d8;
|
color: #d8d8d8;
|
||||||
|
@ -1198,3 +1198,7 @@ pre .javascript .function,pre .keyword {
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.copy-button:hover {
|
||||||
|
background-color: #3f3f3f;
|
||||||
|
}
|
Loading…
Reference in New Issue