from Wikichase implementation log

ext.cite.styles
ext.uls.interlanguage
ext.visualEditor.desktopArticleTarget.noscript
ext.wikimediaBadges
jquery.makeCollapsible.styles
mediawiki.page.gallery.styles
skins.vector.styles.legacy
wikibase.client.init
            - The 5th and 6th lines are referencing [https://github.com/wikimedia/mediawiki/tree/130b9b05fcd7ee8830ebb55b01ed5c7a814042a5/resources/src](https://github.com/wikimedia/mediawiki/tree/130b9b05fcd7ee8830ebb55b01ed5c7a814042a5/resources/src).
            - Is `wikibase.client.init` this?
                - [Extension:Wikibase Client - MediaWiki](https://www.mediawiki.org/wiki/Extension:Wikibase_Client/ja)
            - And is just `skins.vector.styles.legacy` enough?
                - What are the other module's CSS for?
                    - If I notice that "Hey, this is different from Wikipedia," I can look it up.
                - In the MediaWiki page, it says `skins.vector.icons,styles`.
                    - Just `skins.vector.styles` should be enough.
                    - I'm not sure, but it's probably better not to use the legacy version.
            - So, where is the source?
                - Let's find out what the Skin of [[MediaWiki]] is.
                    - Ah, there's a Skin called Vector.
                    - [https://www.mediawiki.org/wiki/Skin:Vector/en](https://www.mediawiki.org/wiki/Skin:Vector/en)
                        - > GNU General Public License 2.0 or later
- Does Vector CSS overlap with Wikipedia's common.css?
    - [https://en.wikipedia.org/wiki/MediaWiki:Common.css](https://en.wikipedia.org/wiki/MediaWiki:Common.css)
    - There are some minor differences depending on the language.
        - For example, the size of the "citation needed" label is different.
        - For now, I'll lazily load the ja.css file to avoid the hassle.
            - I'll think about a proper way to load it later using webpack or something.
- Well, ignoring the detailed params, combining Vector and Wikipedia Common.css should make it look like Wikipedia.
    - If I specify `site.styles` in the wikipedia.org module, I can get common.css and others.
- So, with `https://wikipedia.org/w/load.php?lang=ja&modules=skins.vector.styles|site.styles&only=styles`, I can get the desired CSS.
- However, the problem is the rights issue.
- The CSS itself seems to be under the GPL license.
    - [https://www.gnu.org/licenses/gpl-faq.en.html](https://www.gnu.org/licenses/gpl-faq.en.html)
    - > When we say “copy code,” we mean just that: you're taking a section of code from one source, with or without modification, and inserting it into your own program, thus forming a work based on the first section of code. “Use a library” means that you're not copying any source directly, but instead interacting with it through linking, importing, or other typical mechanisms that bind the sources together when you compile or run the code.
        - Using a library is treated differently from copying and pasting.
    - Oh, but derivative works also need to be released under the [[GPL]] license.- Or rather, does Wikipedia itself have rights to its content?