mirror of
https://github.com/discourse/discourse-table-builder.git
synced 2026-09-17 15:22:14 -04:00
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;
|
|
}
|