diff --git a/styles/bootstrap/application.css b/styles/bootstrap/application.css index 777b68bcd..413ce0ce7 100644 --- a/styles/bootstrap/application.css +++ b/styles/bootstrap/application.css @@ -174,6 +174,20 @@ i.rejected {color: #b00000;} i.in-workflow {color: #11479e;} i.workflow-action {color: #91479e;} +span.openpopupbox { + cursor: pointer; +} + +div.popupbox { + background-color: #fff; + border-radius: 4px; + border: 1px solid #ccc; + padding: 15px; + display: none; + position: absolute; + width: 200px; +} + @media (max-width: 480px) { .nav-tabs > li { float:none; diff --git a/styles/bootstrap/application.js b/styles/bootstrap/application.js index 58bec5aad..037f2731b 100644 --- a/styles/bootstrap/application.js +++ b/styles/bootstrap/application.js @@ -988,4 +988,10 @@ $(document).ready(function() { /* {{{ */ timeout: (typeof timeout == 'undefined' ? 1500 : timeout), }); }); + + $('span.openpopupbox').on('click', function(e) { + $('div.popupbox').toggle(); + console.log('Hallo'); + }); + }); /* }}} */