879140b8ce
Making the text of the edit table button not selectable so that when post's contents are copied, the edit table label does not copy over as well.
13 lines
218 B
SCSS
13 lines
218 B
SCSS
.open-popup-link {
|
|
display: inline;
|
|
margin-inline: 0.25em;
|
|
}
|
|
|
|
.btn-edit-table {
|
|
-webkit-user-select: none;
|
|
-webkit-touch-callout: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|