mirror of https://github.com/zulip/zulip.git
design: Make copy text button clickable again.
Due to added opacity of 0.5 through the readonly property, the button for copy and close was not clickable. Increasing z-index of the button solves it.
This commit is contained in:
parent
2d11d58c9a
commit
6ddc4827fe
|
@ -390,6 +390,10 @@ li,
|
||||||
left: -5px;
|
left: -5px;
|
||||||
margin-top: -24px;
|
margin-top: -24px;
|
||||||
display: block;
|
display: block;
|
||||||
|
/* The z-index here ensures that the copy-message
|
||||||
|
icon is clickable and is needed because of reduced
|
||||||
|
opacity of readonly textarea */
|
||||||
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
#clipboard_image {
|
#clipboard_image {
|
||||||
|
|
Loading…
Reference in New Issue