fix(html) add doctype and fix HTML errors
* Changed render mode to standard compliant and adjusted CSS accordantly. * Fixed HTML errors, removed XHTML reminiscences and whitespace. * Added doctype and fixed a few HTML errors. * The input field speakerStatsSearch overflows the dialog box. Added missing box-sizing. Co-authored-by: Bo Frederiksen <bo.frederiksen@semaphor.dk>
This commit is contained in:
parent
2f42af0b70
commit
432d07c2ad
|
@ -44,6 +44,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.jitsi-icon {
|
.jitsi-icon {
|
||||||
|
line-height: 0;
|
||||||
&-default svg {
|
&-default svg {
|
||||||
fill: white;
|
fill: white;
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,6 +23,10 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.jBzxHz, #react {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
#largeVideoBackgroundContainer,
|
#largeVideoBackgroundContainer,
|
||||||
.large-video-background {
|
.large-video-background {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
<html itemscope itemtype="http://schema.org/Product" prefix="og: http://ogp.me/ns#" xmlns="http://www.w3.org/1999/html">
|
<!doctype html>
|
||||||
|
<html itemscope itemtype="http://schema.org/Product" prefix="og: http://ogp.me/ns#">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
<title>Jitsi API</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script src="https://meet.jit.si/external_api.js"></script>
|
<script src="https://meet.jit.si/external_api.js"></script>
|
||||||
|
|
14
index.html
14
index.html
|
@ -1,8 +1,8 @@
|
||||||
<html itemscope itemtype="http://schema.org/Product" prefix="og: http://ogp.me/ns#" xmlns="http://www.w3.org/1999/html">
|
<!doctype html>
|
||||||
|
<html itemscope itemtype="http://schema.org/Product" prefix="og: http://ogp.me/ns#">
|
||||||
<head>
|
<head>
|
||||||
<!--#include virtual="head.html" -->
|
<!--#include virtual="head.html" -->
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
||||||
<meta name="theme-color" content="#2A3A4B">
|
<meta name="theme-color" content="#2A3A4B">
|
||||||
<!--#include virtual="base.html" -->
|
<!--#include virtual="base.html" -->
|
||||||
|
@ -125,12 +125,12 @@
|
||||||
+ "font-weight: 400;"
|
+ "font-weight: 400;"
|
||||||
+ "transform: translate(-50%, -50%)'>"
|
+ "transform: translate(-50%, -50%)'>"
|
||||||
+ "Uh oh! We couldn't fully download everything we needed :("
|
+ "Uh oh! We couldn't fully download everything we needed :("
|
||||||
+ "<br/> "
|
+ "<br> "
|
||||||
+ "We will try again shortly. In the mean time, check for problems with your Internet connection!"
|
+ "We will try again shortly. In the mean time, check for problems with your Internet connection!"
|
||||||
+ "<br/><br/> "
|
+ "<br><br> "
|
||||||
+ "<div id='moreInfo' style='"
|
+ "<div id='moreInfo' style='"
|
||||||
+ "display: none;'>" + "Missing " + fileRef
|
+ "display: none;'>" + "Missing " + fileRef
|
||||||
+ "<br/><br/></div>"
|
+ "<br><br></div>"
|
||||||
+ "<a id='showMore' style='"
|
+ "<a id='showMore' style='"
|
||||||
+ "text-decoration: underline;"
|
+ "text-decoration: underline;"
|
||||||
+ "font-size:small;"
|
+ "font-size:small;"
|
||||||
|
@ -195,8 +195,8 @@
|
||||||
<!--#include virtual="static/settingsToolbarAdditionalContent.html" -->
|
<!--#include virtual="static/settingsToolbarAdditionalContent.html" -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<noscript aria-hidden="true">
|
<noscript>
|
||||||
<div>JavaScript is disabled. </br>For this site to work you have to enable JavaScript.</div>
|
<div>JavaScript is disabled.<br>For this site to work you have to enable JavaScript.</div>
|
||||||
</noscript>
|
</noscript>
|
||||||
<!--#include virtual="body.html" -->
|
<!--#include virtual="body.html" -->
|
||||||
<div id="react" role="main"></div>
|
<div id="react" role="main"></div>
|
||||||
|
|
|
@ -37,6 +37,7 @@ const useStyles = makeStyles(theme => {
|
||||||
padding: '10px 16px',
|
padding: '10px 16px',
|
||||||
width: '100%',
|
width: '100%',
|
||||||
height: 40,
|
height: 40,
|
||||||
|
boxSizing: 'border-box',
|
||||||
'&::placeholder': {
|
'&::placeholder': {
|
||||||
color: theme.palette.text03,
|
color: theme.palette.text03,
|
||||||
...theme.typography.bodyShortRegular,
|
...theme.typography.bodyShortRegular,
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
<title>Jitsi NW GUI</title>
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<!--#include virtual="/base.html" -->
|
<!--#include virtual="/base.html" -->
|
||||||
<link rel="stylesheet" href="css/all.css"/>
|
<link rel="stylesheet" href="css/all.css">
|
||||||
<!--#include virtual="/title.html" -->
|
<!--#include virtual="/title.html" -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<!--#include virtual="/base.html" -->
|
<!--#include virtual="/base.html" -->
|
||||||
<link rel="stylesheet" href="css/all.css"/>
|
<link rel="stylesheet" href="css/all.css">
|
||||||
<!--#include virtual="/title.html" -->
|
<!--#include virtual="/title.html" -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<!--#include virtual="/base.html" -->
|
<!--#include virtual="/base.html" -->
|
||||||
<link rel="stylesheet" href="css/all.css"/>
|
<link rel="stylesheet" href="css/all.css">
|
||||||
<!--#include virtual="/title.html" -->
|
<!--#include virtual="/title.html" -->
|
||||||
<script><!--#include virtual="/interface_config.js" --></script>
|
<script><!--#include virtual="/interface_config.js" --></script>
|
||||||
<script src="static/close.js"></script>
|
<script src="static/close.js"></script>
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<!--#include virtual="/base.html" -->
|
<!--#include virtual="/base.html" -->
|
||||||
<link rel="stylesheet" href="css/all.css"/>
|
<link rel="stylesheet" href="css/all.css">
|
||||||
<!--#include virtual="/title.html" -->
|
<!--#include virtual="/title.html" -->
|
||||||
<script><!--#include virtual="/interface_config.js" --></script>
|
<script><!--#include virtual="/interface_config.js" --></script>
|
||||||
<script src="static/close.js"></script>
|
<script src="static/close.js"></script>
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<body>
|
<body>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
<html itemscope itemtype="http://schema.org/Product" prefix="og: http://ogp.me/ns#" xmlns="http://www.w3.org/1999/html">
|
<!doctype html>
|
||||||
|
<html itemscope itemtype="http://schema.org/Product" prefix="og: http://ogp.me/ns#">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
<title>Jitsi login</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<!--#include virtual="/base.html" -->
|
<!--#include virtual="/base.html" -->
|
||||||
<!--#include virtual="/title.html" -->
|
<!--#include virtual="/title.html" -->
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<head>
|
<head>
|
||||||
<!--#include virtual="/head.html" -->
|
<!--#include virtual="/head.html" -->
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<!--#include virtual="/base.html" -->
|
<!--#include virtual="/base.html" -->
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/html">
|
<!doctype html>
|
||||||
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<!--#include virtual="/base.html" -->
|
<!--#include virtual="/base.html" -->
|
||||||
<link rel="stylesheet" href="css/all.css">
|
<link rel="stylesheet" href="css/all.css">
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<!--#include virtual="/base.html" -->
|
<!--#include virtual="/base.html" -->
|
||||||
<link rel="stylesheet" href="css/all.css"/>
|
<link rel="stylesheet" href="css/all.css">
|
||||||
<!--#include virtual="/title.html" -->
|
<!--#include virtual="/title.html" -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@ -12,11 +13,11 @@
|
||||||
<p class ='unsupported-desktop-browser__description'>
|
<p class ='unsupported-desktop-browser__description'>
|
||||||
We recommend to try with the latest version of
|
We recommend to try with the latest version of
|
||||||
<a
|
<a
|
||||||
className = 'unsupported-desktop-browser__link'
|
class='unsupported-desktop-browser__link'
|
||||||
href = 'https://www.google.com/chrome/' >Chrome</a> or
|
href='https://www.google.com/chrome/' >Chrome</a> or
|
||||||
<a
|
<a
|
||||||
class = 'unsupported-desktop-browser__link'
|
class='unsupported-desktop-browser__link'
|
||||||
href = 'https://www.chromium.org/'>Chromium</a>
|
href='https://www.chromium.org/'>Chromium</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
<template id="settings-toolbar-additional-content-template"></template>
|
<template id="settings-toolbar-additional-content-template"></template>
|
|
@ -1 +1 @@
|
||||||
<template id = "welcome-page-additional-card-template"></template>
|
<template id="welcome-page-additional-card-template"></template>
|
|
@ -1 +1 @@
|
||||||
<template id = "welcome-page-additional-content-template"></template>
|
<template id="welcome-page-additional-content-template"></template>
|
16
title.html
16
title.html
|
@ -1,9 +1,9 @@
|
||||||
<title>Jitsi Meet</title>
|
<title>Jitsi Meet</title>
|
||||||
<meta property="og:title" content="Jitsi Meet"/>
|
<meta property="og:title" content="Jitsi Meet">
|
||||||
<meta property="og:image" content="images/jitsilogo.png?v=1"/>
|
<meta property="og:image" content="images/jitsilogo.png?v=1">
|
||||||
<meta property="og:description" content="Join a WebRTC video conference powered by the Jitsi Videobridge"/>
|
<meta property="og:description" content="Join a WebRTC video conference powered by the Jitsi Videobridge">
|
||||||
<meta description="Join a WebRTC video conference powered by the Jitsi Videobridge"/>
|
<meta name="description" content="Join a WebRTC video conference powered by the Jitsi Videobridge">
|
||||||
<meta itemprop="name" content="Jitsi Meet"/>
|
<meta itemprop="name" content="Jitsi Meet">
|
||||||
<meta itemprop="description" content="Join a WebRTC video conference powered by the Jitsi Videobridge"/>
|
<meta itemprop="description" content="Join a WebRTC video conference powered by the Jitsi Videobridge">
|
||||||
<meta itemprop="image" content="images/jitsilogo.png?v=1"/>
|
<meta itemprop="image" content="images/jitsilogo.png?v=1">
|
||||||
<link rel="icon" type="image/png" href="images/favicon.ico?v=1"/>
|
<link rel="icon" type="image/png" href="images/favicon.ico?v=1">
|
Loading…
Reference in New Issue