mediawiki-extensions-Syntax.../modules/pygments.copy.less
Siddharth VP 38cbb6fed6 copy button: use Codex colors for dark mode compatibility
Bug: T40932
Change-Id: I9a809954f64c6d3a14cc3e2b3c2fd38824f803f3
2024-09-28 23:06:30 +05:30

40 lines
974 B
Plaintext

@import 'mediawiki.skin.variables.less';
/**
* Adapted from https://www.mediawiki.org/wiki/MediaWiki:Gadget-site-tpl-copy.css
* Original author: Krinkle
*/
.mw-highlight-copy {
position: relative;
}
/**
* https://doc.wikimedia.org/oojs-ui/master/demos/ (2023-11-13)
* https://design.wikimedia.org/style-guide/components/buttons.html
*/
.mw-highlight-copy--bound button {
position: absolute;
top: -1em;
right: -0.9em;
box-sizing: border-box;
padding: 5px 7px;
border-radius: 2px;
background: @background-color-base;
color: @color-progressive;
border: 1px solid @border-color-muted;
}
.mw-highlight-copy--bound button:hover {
cursor: pointer;
color: @color-progressive--hover;
background: @background-color-interactive-subtle;
border-color: @border-color-progressive--hover;
}
.mw-highlight-copy--bound button:active {
color: @color-progressive--active;
background: @background-color-interactive;
border-color: @border-color-progressive--active;
}