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 );
|
||||
contain: content;
|
||||
overscroll-behavior: contain;
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
.citizen-card();
|
||||
.citizen-card-hide( bottom @position );
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
&-heading {
|
||||
cursor: pointer;
|
||||
// So that double clicking won't highlight everything
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
|
||||
&--collapsed {
|
||||
|
|
|
@ -153,6 +153,7 @@
|
|||
padding: var( --space-md );
|
||||
margin: var( --space-xs );
|
||||
overscroll-behavior: contain;
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
.citizen-card;
|
||||
.citizen-card-hide( bottom right, '', false );
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
align-items: center;
|
||||
margin-left: var( --space-sm );
|
||||
float: right; // Can't target the container so have to use to float
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
|
||||
// Hide dividers since we are making links into icons
|
||||
|
|
Loading…
Reference in a new issue