mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-25 09:56:15 -04:00
skins: Improve clientPluginNames class helper
Moving classes to html tag so it can be used to style other part of template depending on plugins like #users, #chat etc... Rename plugin class with "plugin-" prefix, because there were conflicts with some plugins using the same .ep_font_color class to apply css rules
This commit is contained in:
parent
401db8fce3
commit
378dbe8485
4 changed files with 23 additions and 23 deletions
|
@ -6,7 +6,7 @@
|
|||
%>
|
||||
<!doctype html>
|
||||
<% e.begin_block("htmlHead"); %>
|
||||
<html>
|
||||
<html class="<%=hooks.clientPluginNames().join(' '); %>">
|
||||
<% e.end_block(); %>
|
||||
|
||||
<title><%=settings.title%></title>
|
||||
|
@ -100,7 +100,7 @@
|
|||
<% e.end_block(); %>
|
||||
</div>
|
||||
|
||||
<div id="editorcontainerbox" class="<%=hooks.clientPluginNames().join(' '); %>">
|
||||
<div id="editorcontainerbox">
|
||||
<div id="editorcontainer" class="editorcontainer"></div>
|
||||
<div id="editorloadingbox">
|
||||
<div id="passwordRequired">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue