hide iris text in narrow menu, use lowercase i

This commit is contained in:
Martti Malmi 2022-06-20 18:25:53 +03:00
parent effd11b7f1
commit ed4728b44f
5 changed files with 9 additions and 9 deletions

View File

@ -875,7 +875,7 @@ header.footer .header-content {
margin-right: 0;
}
.application-list a.logo img:last-child {
.application-list a.logo span {
display: none;
}

View File

@ -83,13 +83,13 @@ class Main extends Component {
}
let content = '';
const isDesktopNonMac = s.platform && s.platform !== 'darwin';
const titleTemplate = s.unseenMsgsTotal ? `(${s.unseenMsgsTotal}) %s | Iris` : "%s | Iris";
const defaultTitle = s.unseenMsgsTotal ? `(${s.unseenMsgsTotal}) Iris` : 'Iris';
const titleTemplate = s.unseenMsgsTotal ? `(${s.unseenMsgsTotal}) %s | iris` : "%s | iris";
const defaultTitle = s.unseenMsgsTotal ? `(${s.unseenMsgsTotal}) iris` : 'iris';
if (s.loggedIn || window.location.pathname.length <= 2) {
content = s.loggedIn ? html`
${isDesktopNonMac ? html`
<div class="windows-titlebar">
<span>Iris</span>
<span>iris</span>
<div class="title-bar-btns">
<button class="min-btn" onClick=${() => this.electronCmd('minimize')}>-</button>
<button class="max-btn" onClick=${() => this.electronCmd('maximize')}>+</button>

View File

@ -35,7 +35,7 @@ export default class Menu extends Component {
<a href="/" onClick=${() => this.menuLinkClicked()} tabindex="0" class="logo">
<div class="mobile-menu-icon visible-xs-inline-block">${Icons.menu}</div>
<img src=${logo} width=30 height=30/>
<span style="font-size: 1.5em">Iris</span>
<span style="font-size: 1.5em">iris</span>
</a>
`}
${APPLICATIONS.map(a => {

View File

@ -72,8 +72,8 @@ class Login extends Component {
${!this.state.showSwitchAccount ? html`
<form id="login-form" autocomplete="off" onSubmit=${e => this.onLoginFormSubmit(e)}>
<div id="create-account">
<img width="86" height="86" src=${logo} alt="Iris"/>
<h1>Iris</h1>
<img width="86" height="86" src=${logo} alt="iris"/>
<h1>iris</h1>
<input onInput=${e => this.onNameChange(e)} autocomplete="off" autocorrect="off" autocapitalize="sentences" spellcheck="off" id="login-form-name" type="text" name="name" placeholder="${t('whats_your_name')}"/>
<p><button id="sign-up" type="submit">${t('new_user_go')}</button></p>
<br/>

View File

@ -2,12 +2,12 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>Iris</title>
<title>iris</title>
<base href="./">
<meta name="description" content="Social Networking Freedom" data-react-helmet="true" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta property="og:title" content="Iris" data-react-helmet="true" />
<meta property="og:title" content="iris" data-react-helmet="true" />
<meta property="og:description" content="Social Networking Freedom" data-react-helmet="true" />
<meta property="og:url" content="https://iris.to" data-react-helmet="true" />
<meta property="og:image" content="https://iris.to/assets/img/cover.jpg" data-react-helmet="true" />