Csp compat (#695)

* Remove some inline CSS style to improve CSP compatibility

* update changelog
This commit is contained in:
Mathias Ertl 2016-10-03 19:45:06 +02:00 committed by JC Brand
parent fa4e51f3ba
commit 1ba68dc8b2
5 changed files with 14 additions and 2 deletions

View File

@ -6,6 +6,7 @@
- New event ['rosterContactsFetched'](https://conversejs.org/docs/html/development.html#rosterContactsFetched) [jcbrand]
- New event ['rosterGroupsFetched'](https://conversejs.org/docs/html/development.html#rosterGroupsFetched) [jcbrand]
- HTML templates are now loaded in the respective modules/plugins. [jcbrand]
- Start improving Content-Security-Policy compatibility by removing inline CSS.
## 2.0.0 (2016-09-16)
- #656 Online users count not shown initially [amanzur]

View File

@ -201,6 +201,12 @@
}
}
}
/* Custom addition for CSP */
dd.search-xmpp {
display: none;
}
dd.search-xmpp ul {
box-shadow: 1px 4px 10px 1px rgba(0, 0, 0, 0.4);
li:hover {

View File

@ -13,6 +13,11 @@
height: calc(100% - #{$controlbox-dropdown-height} - 20px);
}
/* Custom addition for CSP */
#online-count {
display: none;
}
.search-xmpp {
ul {
li.chat-info {

View File

@ -2,5 +2,5 @@
<dt id="xmpp-contact-search" class="fancy-dropdown">
<a class="toggle-xmpp-contact-form icon-plus" href="#" title="{{label_click_to_chat}}"> {{label_add_contact}}</a>
</dt>
<dd class="search-xmpp" style="display:none"><ul></ul></dd>
<dd class="search-xmpp"><ul></ul></dd>
</dl>

View File

@ -1,2 +1,2 @@
<span class="conn-feedback">{{label_toggle}}</span>
<span style="display: none" id="online-count">(0)</span>
<span id="online-count">(0)</span>