Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@

MediaWiki Extension for Liquipedia

Whilst this extension is open source, it has a close source dependency. If you want to use this extension you will have to patch it to use some other means to compile SCSS.

# Installation
* Install Liquipedias SCSS extension
* Extract the extension folder to extensions/NetworkNotice/
* Add the following line to LocalSettings.php:

Expand Down
10 changes: 7 additions & 3 deletions extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "NetworkNotice",
"version": "3.3.0",
"version": "4.0.0",
"author": [
"Tephus",
"[https://fo-nttax.de Alex Winkler]"
Expand All @@ -10,7 +10,10 @@
"license-name": "MIT",
"type": "other",
"requires": {
"MediaWiki": ">= 1.39.3"
"MediaWiki": ">= 1.43.0",
"extensions": {
"SCSS": "*"
}
},
"MessagesDirs": {
"NetworkNotice": [
Expand Down Expand Up @@ -49,8 +52,9 @@
},
"ResourceModules": {
"ext.networknotice.Notice.styles": {
"class": "\\Liquipedia\\Extension\\SCSS\\ResourceLoaderScssModule",
"styles": [
"styles/ext.networknotice.Notice.less"
"styles/ext.networknotice.Notice.scss"
],
"position": "bottom"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
padding: 0 0 0 1.5rem;
font-size: 0.875rem;
align-items: center;
background-color: #ffffff; // default for Bruinen & LakesideView light theme
background-color: #ffffff; /* default for Bruinen & LakesideView light theme */
margin-bottom: 0.5rem;

@media ( min-width: 768px ) {
Expand Down