Robert Vogel has submitted this change and it was merged. 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 --- M resources/bluespice/bluespice.css 1 file changed, 76 insertions(+), 1 deletion(-) Approvals: Robert Vogel: Verified; Looks good to me, approved 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/248825 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ia1c8234c414186b5c80b466bf8e551d7606471e5 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/BlueSpiceFoundation Gerrit-Branch: REL1_23 Gerrit-Owner: Dvogel hallowelt <[email protected]> Gerrit-Reviewer: Mglaser <[email protected]> Gerrit-Reviewer: Pwirth <[email protected]> Gerrit-Reviewer: Robert Vogel <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
