mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-24 06:24:22 +00:00
fix(core): add webkit prefix to user-select property (#631)
* Update mixins.less * Update Sections.less * Update TableOfContents.less * Update interface-edit-section-links.less * Update mixins.less * Update Sections.less * Update TableOfContents.less * Update interface-edit-section-links.less
This commit is contained in:
parent
99935453db
commit
d92fd77e54
|
@ -74,6 +74,7 @@
|
||||||
margin: var( --space-xs );
|
margin: var( --space-xs );
|
||||||
contain: content;
|
contain: content;
|
||||||
overscroll-behavior: contain;
|
overscroll-behavior: contain;
|
||||||
|
-webkit-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
.citizen-card();
|
.citizen-card();
|
||||||
.citizen-card-hide( bottom @position );
|
.citizen-card-hide( bottom @position );
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
&-heading {
|
&-heading {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
// So that double clicking won't highlight everything
|
// So that double clicking won't highlight everything
|
||||||
|
-webkit-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
|
||||||
&--collapsed {
|
&--collapsed {
|
||||||
|
|
|
@ -153,6 +153,7 @@
|
||||||
padding: var( --space-md );
|
padding: var( --space-md );
|
||||||
margin: var( --space-xs );
|
margin: var( --space-xs );
|
||||||
overscroll-behavior: contain;
|
overscroll-behavior: contain;
|
||||||
|
-webkit-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
.citizen-card;
|
.citizen-card;
|
||||||
.citizen-card-hide( bottom right, '', false );
|
.citizen-card-hide( bottom right, '', false );
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-left: var( --space-sm );
|
margin-left: var( --space-sm );
|
||||||
float: right; // Can't target the container so have to use to float
|
float: right; // Can't target the container so have to use to float
|
||||||
|
-webkit-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
|
||||||
// Hide dividers since we are making links into icons
|
// Hide dividers since we are making links into icons
|
||||||
|
|
Loading…
Reference in a new issue