mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-23 08:56:17 -04:00
CSS: Fix class name for outer iframe <html>
tag
* Add the class "pad" to the `<html>` tag in `pad.html` (the outer iframe's parent). * Change the CSS selector that refers to the `<html>` tag in `pad.html` from `html:not(.inner-editor)` to `html.pad`. * Change the class name of the outer iframe's `<html>` tag from "inner-editor" to "outer-editor". * Update CSS rules to use the new class name.
This commit is contained in:
parent
6615d36f8d
commit
48e1d1c23f
4 changed files with 4 additions and 4 deletions
|
@ -7,7 +7,7 @@
|
|||
<!doctype html>
|
||||
|
||||
<% e.begin_block("htmlHead"); %>
|
||||
<html class="<%=pluginUtils.clientPluginNames().join(' '); %> <%=settings.skinVariants%>">
|
||||
<html class="pad <%=pluginUtils.clientPluginNames().join(' '); %> <%=settings.skinVariants%>">
|
||||
<% e.end_block(); %>
|
||||
|
||||
<title><%=settings.title%></title>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue