This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/template/event/overall_header_content_before.html b/template/event/overall_header_content_before.html | |
| index d3ca985..2bad473 100644 | |
| --- a/template/event/overall_header_content_before.html | |
| +++ b/template/event/overall_header_content_before.html | |
| @@ -9,6 +9,7 @@ | |
| <i class="icon fa-fw fa-times"></i> | |
| </a> | |
| {% endif %} | |
| + <button id="phpbb_announcement_close"><i class="icon fa-minus-square fa-fw" aria-hidden="true"></i></button> | |
| <div>{{ announcement.BOARD_ANNOUNCEMENT }}</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function componentToHex(c) { | |
| var hex = c.toString(16); | |
| return hex.length == 1 ? "0" + hex : hex; | |
| } | |
| function rgbToHex(r, g, b) { | |
| return "#" + componentToHex(r) + componentToHex(g) + componentToHex(b); | |
| } | |
| function invert(rgb) { |