mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/SyntaxHighlight_GeSHi
synced 2024-11-23 14:07:01 +00:00
copy button: use Codex colors for dark mode compatibility
Bug: T40932 Change-Id: I9a809954f64c6d3a14cc3e2b3c2fd38824f803f3
This commit is contained in:
parent
f4f8f00210
commit
38cbb6fed6
|
@ -674,7 +674,7 @@ class SyntaxHighlight extends ExtensionTagHandler implements
|
|||
'pygments.links.scribunto.js'
|
||||
] : [] ),
|
||||
'styles' => [
|
||||
'pygments.copy.css'
|
||||
'pygments.copy.less'
|
||||
],
|
||||
'messages' => [
|
||||
'syntaxhighlight-button-copy',
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
@import 'mediawiki.skin.variables.less';
|
||||
|
||||
/**
|
||||
* Adapted from https://www.mediawiki.org/wiki/MediaWiki:Gadget-site-tpl-copy.css
|
||||
* Original author: Krinkle
|
||||
|
@ -18,19 +20,20 @@
|
|||
box-sizing: border-box;
|
||||
padding: 5px 7px;
|
||||
border-radius: 2px;
|
||||
background: #fff;
|
||||
color: #36c;
|
||||
border: 1px solid #eaecf0;
|
||||
background: @background-color-base;
|
||||
color: @color-progressive;
|
||||
border: 1px solid @border-color-muted;
|
||||
}
|
||||
|
||||
.mw-highlight-copy--bound button:hover {
|
||||
cursor: pointer;
|
||||
background: #fff;
|
||||
border: 1px solid #447ff5;
|
||||
color: @color-progressive--hover;
|
||||
background: @background-color-interactive-subtle;
|
||||
border-color: @border-color-progressive--hover;
|
||||
}
|
||||
|
||||
.mw-highlight-copy--bound button:active {
|
||||
background: #eff3fa;
|
||||
color: #2a4b8d;
|
||||
border-color: #2a4b8d;
|
||||
color: @color-progressive--active;
|
||||
background: @background-color-interactive;
|
||||
border-color: @border-color-progressive--active;
|
||||
}
|
Loading…
Reference in a new issue