Robert Vogel has uploaded a new change for review. https://gerrit.wikimedia.org/r/248826
Change subject: css styling for boxes and borders ...................................................................... css styling for boxes and borders added styling for boxex and borders according to https://help.bluespice.com/index.php/Boxen Change-Id: Ia1c8234c414186b5c80b466bf8e551d7606471e5 (cherry picked from commit 5934ba3e615921a1015ee835baf467a7d4056e84) --- M resources/bluespice/bluespice.css 1 file changed, 76 insertions(+), 1 deletion(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/BlueSpiceFoundation refs/changes/26/248826/1 diff --git a/resources/bluespice/bluespice.css b/resources/bluespice/bluespice.css index 6a9d64f..99e319c 100644 --- a/resources/bluespice/bluespice.css +++ b/resources/bluespice/bluespice.css @@ -41,4 +41,79 @@ .btn44 { height:44px!important; width:44px!important; -} \ No newline at end of file +} + +.bluebox, +.box-blue { + border:1px solid #6093D2; + background-color:#AEC8E8; + margin:0 0 10px; + padding:.3em .6em; +} + +.beigebox, +.box-beige { + border:1px solid #000; + background-color:#E0B978; + margin:0 0 10px; + padding:.3em .6em; +} + +.greenbox, +.box-green { + border:1px solid #237E14; + background-color:#DEFEBB; + margin:0 0 10px; + padding:.3em .6em; +} + +.yellowbox, +.box-yellow { + border:1px solid #DDDD00; + background-color:#FFFFAA; + margin:0 0 10px; + padding:.3em .6em; +} + +.redbox, +.box-red { + border:1px solid #DD0000; + background-color:#FFAAAA; + margin:0 0 10px; + padding:.3em .6em; +} + +.blueborder, +.border-blue { + border:1px solid #AEC8E8; + margin:0 0 10px; + padding:.3em .6em; +} + +.beigeborder, +.border-beige { + border:1px solid #E0B978; + margin:0 0 10px; + padding:.3em .6em; +} + +.greenborder, +.border-green { + border:1px solid #237E14; + margin:0 0 10px; + padding:.3em .6em; +} + +.yellowborder, +.border-yellow { + border:1px solid #DDDD00; + margin:0 0 10px; + padding:.3em .6em; +} + +.redborder, +.border-red { + border:1px solid #DD0000; + margin:0 0 10px; + padding:.3em .6em; +} -- To view, visit https://gerrit.wikimedia.org/r/248826 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ia1c8234c414186b5c80b466bf8e551d7606471e5 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/BlueSpiceFoundation Gerrit-Branch: master Gerrit-Owner: Robert Vogel <[email protected]> Gerrit-Reviewer: Dvogel hallowelt <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
