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 top: -8px
} }
#timeslider-slider .star:before{ #timeslider-slider .star:before{
font-family: fontawesome-etherpad; font-family: fontawesome-etherpad, sans-serif;
color: #da9700; color: #da9700;
content: "\e856"; content: "\e856";
vertical-align:middle; 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 { #sidedivinner>div .line-number {
line-height: inherit; line-height: inherit;
font-family: RobotoMono; font-family: RobotoMono, sans-serif;
display: inline-block; display: inline-block;
color: #576273; color: #576273;
color: var(--text-soft-color); color: var(--text-soft-color);

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -5,7 +5,7 @@
; ;
%> %>
<!doctype html> <!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> <head>
<% e.begin_block("htmlHead"); %> <% e.begin_block("htmlHead"); %>
<% e.end_block(); %> <% e.end_block(); %>

View file

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

View file

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

View file

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

View file

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