MediaWiki:Common.css: Difference between revisions

wiki.TerraBase.info
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 3: Line 3:
/* OK, first a note for you BJ.  This took a FORKING hour to figure out back on 8.13.2020;
/* OK, first a note for you BJ.  This took a FORKING hour to figure out back on 8.13.2020;


The Create Source Tab will not be available if this Extension is enabled: require_once "$IP/extensions/SourceProtection/SourceProtection.php";
The Create Source Tab will was not available because this Extension was enabled: require_once "$IP/extensions/SourceProtection/SourceProtection.php";


So if you want to edit this file, temporarily delete it in LocalSettings.php
Temporarily disabled it and got the Create Source Tab back (again after a forking hour of research and effort)


And the reason why that happened was because Mediawiki added a new group that Administrators were not initially part of named Interface Administrators (under Special Pages, User Rights, Enter User Name, Search, see available Groups at the bottom and check it off) which also caused my Administrator account to not have the ability to save the page, once the Create Source Tab was available.


And to make matters worse, Mediawiki added a new group that Administrators were not initially part of named Interface Administrators (under Special Pages, User Rights, Enter User Name, Search, see available Groups at the bottom
Once my ROOT account was added to the new group, everything worked, even after enabling the above mentioned Extension.
 
And all of it was because I wanted to add collapsible capability to some long code blocks on the WRT Article I was working on.  And I never got to the forking MariaDB fine tuning stuff because of it.  And next I get to do this on the RSS Wiki.





Revision as of 23:21, 13 August 2020

/* CSS placed here will be applied to all skins */

/* OK, first a note for you BJ.  This took a FORKING hour to figure out back on 8.13.2020;

The Create Source Tab will was not available because this Extension was enabled: require_once "$IP/extensions/SourceProtection/SourceProtection.php";

Temporarily disabled it and got the Create Source Tab back (again after a forking hour of research and effort)

And the reason why that happened was because Mediawiki added a new group that Administrators were not initially part of named Interface Administrators (under Special Pages, User Rights, Enter User Name, Search, see available Groups at the bottom and check it off) which also caused my Administrator account to not have the ability to save the page, once the Create Source Tab was available.

Once my ROOT account was added to the new group, everything worked, even after enabling the above mentioned Extension.

And all of it was because I wanted to add collapsible capability to some long code blocks on the WRT Article I was working on.  And I never got to the forking MariaDB fine tuning stuff because of it.  And next I get to do this on the RSS Wiki.


*/

/* Collapsible elements. Toggle-link moved to left.
/* Margin around it adjusted. */

.mw-collapsible span.mw-collapsible-toggle {
    float:left;
    margin-left:0;
    margin-right:1em;
}