Modernized html and added generic font family to css

This commit is contained in:
blackmambaza 2023-10-10 15:20:22 +02:00
parent c4c3e008c9
commit 22195c4a8d
16 changed files with 15 additions and 17 deletions

View file

@ -77,7 +77,7 @@
top: -8px
}
#timeslider-slider .star:before{
font-family: fontawesome-etherpad;
font-family: fontawesome-etherpad, sans-serif;
color: #da9700;
content: "\e856";
vertical-align:middle;

View file

@ -1 +1 @@
<!DOCTYPE html><html><head><title>Empty</title></head><body></body></html>
<!DOCTYPE html><html lang="en"><head><title>Empty</title></head><body></body></html>

View file

@ -13,7 +13,7 @@
#sidedivinner>div .line-number {
line-height: inherit;
font-family: RobotoMono;
font-family: RobotoMono, sans-serif;
display: inline-block;
color: #576273;
color: var(--text-soft-color);

View file

@ -5,7 +5,6 @@
background-color: var(--bg-color);
color: #576273;
color: var(--text-soft-color);
border-bottom: none;
}
#editbar.editor-scrolled {

View file

@ -95,7 +95,6 @@
.yui-skin-sam .yui-panel-container .yui-panel .hd {
cursor: move;
padding: 0;
border: 0;
background: 0;
margin: 0;

View file

@ -1,5 +1,5 @@
<!doctype html>
<html>
<html lang="en">
<head>
<title data-l10n-id="admin.page-title">Admin Dashboard - Etherpad</title>
<meta name="viewport" content="width=device-width">

View file

@ -1,5 +1,5 @@
<!doctype html>
<html>
<html lang="en">
<head>
<title data-l10n-id="admin_plugins_info.page-title">Plugin information - Etherpad</title>
<meta name="viewport" content="width=device-width">

View file

@ -1,5 +1,5 @@
<!doctype html>
<html>
<html lang="en">
<head>
<title data-l10n-id="admin_plugins.page-title">Plugin manager - Etherpad</title>
<meta name="viewport" content="width=device-width">

View file

@ -1,5 +1,5 @@
<!doctype html>
<html>
<html lang="en">
<head>
<title data-l10n-id="admin_settings.page-title">Settings - Etherpad</title>
<meta name="viewport" content="width=device-width">

View file

@ -2,7 +2,7 @@
var settings = require("ep_etherpad-lite/node/utils/Settings");
%>
<!doctype html>
<html>
<html lang="en">
<title><%=settings.title%></title>
<meta charset="utf-8">

View file

@ -1,5 +1,5 @@
<!doctype html>
<html>
<html lang="en">
<head>
<title>JavaScript license information</title>
<meta charset="utf-8">

View file

@ -5,7 +5,7 @@
;
%>
<!doctype html>
<html translate="no" class="pad <%=pluginUtils.clientPluginNames().join(' '); %> <%=settings.skinVariants%>">
<html translate="no" class="pad <%=pluginUtils.clientPluginNames().join(' '); %> <%=settings.skinVariants%>" lang="en">
<head>
<% e.begin_block("htmlHead"); %>
<% e.end_block(); %>

View file

@ -3,7 +3,7 @@
, langs = require("ep_etherpad-lite/node/hooks/i18n").availableLangs
%>
<!doctype html>
<html translate="no" class="pad <%=settings.skinVariants%>">
<html translate="no" class="pad <%=settings.skinVariants%>" lang="en">
<head>
<title data-l10n-id="timeslider.pageTitle" data-l10n-args='{ "appTitle": "<%=settings.title%>" }'><%=settings.title%> Timeslider</title>
<script>

View file

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>foo</title>
<meta charset="UTF-8">

View file

@ -1,5 +1,5 @@
<!doctype html>
<html>
<html lang="en">
<head>
<title>Frontend tests</title>
<meta charset="utf-8">

View file

@ -92,13 +92,13 @@ body {
right: -10px;
content: '(view source)';
font-size: 12px;
font-family: arial;
font-family: arial, sans-serif;
color: #888;
}
#mocha .test.pending:hover h2::after {
content: '(pending)';
font-family: arial;
font-family: arial, sans-serif;
}
#mocha .test.pass.medium .duration {