Update Parity logo (#3036)
* Add new parity logos * FirstRun logo * Tabbar logo * Remove duplicated block image * Parity favicons * Remove images to be replaced * Paritybar logo * Add favicon * Adding HTML Loader for Webpack for image linking
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/parity-logo-black-no-text.png" type="image/png">
|
||||
<title>Basic Token Deployment</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/parity-logo-black-no-text.png" type="image/png">
|
||||
<title>GAVcoin</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/parity-logo-black-no-text.png" type="image/png">
|
||||
<title>GitHub Hint</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/parity-logo-black-no-text.png" type="image/png">
|
||||
<title>Token Registry</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/parity-logo-black-no-text.png" type="image/png">
|
||||
<title>Method Signature Registry</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/parity-logo-black-no-text.png" type="image/png">
|
||||
<title>Token Registry</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/parity-logo-black-no-text.png" type="image/png">
|
||||
<title>dev::Parity.js</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/parity-logo-black-no-text.png" type="image/png">
|
||||
<title>dev::Web3</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.0 MiB |
@@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/parity-logo-black-no-text.png" type="image/png">
|
||||
<title>Parity</title>
|
||||
<style>
|
||||
html, body, #container {
|
||||
|
||||
@@ -39,7 +39,6 @@ import './environment';
|
||||
|
||||
import '../assets/fonts/Roboto/font.css';
|
||||
import '../assets/fonts/RobotoMono/font.css';
|
||||
import '../assets/images/parity.ico';
|
||||
|
||||
import styles from './reset.css';
|
||||
import './index.html';
|
||||
|
||||
@@ -16,12 +16,13 @@
|
||||
|
||||
import React, { Component } from 'react';
|
||||
|
||||
import imagesEthcore from '../../../../assets/images/ethcore-logo-white-square.png';
|
||||
import imagesEthcore from '../../../../assets/images/parity-logo-white.svg';
|
||||
|
||||
const LOGO_STYLE = {
|
||||
float: 'right',
|
||||
width: '25%',
|
||||
height: 'auto'
|
||||
height: 'auto',
|
||||
margin: '0 1.5em'
|
||||
};
|
||||
|
||||
export default class FirstRun extends Component {
|
||||
|
||||
@@ -65,8 +65,7 @@ button.tabactive:hover {
|
||||
|
||||
.logo img {
|
||||
height: 28px;
|
||||
width: 28px;
|
||||
margin-right: 0.5em;
|
||||
margin-right: 0.75em;
|
||||
}
|
||||
|
||||
.logo div {
|
||||
|
||||
@@ -23,7 +23,7 @@ import { Tabs, Tab } from 'material-ui/Tabs';
|
||||
import { Badge, Tooltip } from '../../../ui';
|
||||
|
||||
import styles from './tabBar.css';
|
||||
import imagesEthcoreBlock from '../../../../assets/images/ethcore-block.png';
|
||||
import imagesEthcoreBlock from '../../../../assets/images/parity-logo-white-no-text.svg';
|
||||
|
||||
const TABMAP = {
|
||||
accounts: 'account',
|
||||
@@ -64,7 +64,6 @@ class TabBar extends Component {
|
||||
<ToolbarGroup>
|
||||
<div className={ styles.logo }>
|
||||
<img src={ imagesEthcoreBlock } />
|
||||
<div>Parity</div>
|
||||
</div>
|
||||
</ToolbarGroup>
|
||||
);
|
||||
|
||||
@@ -87,10 +87,15 @@
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.button {
|
||||
.button, .parityButton {
|
||||
overflow: visible !important;
|
||||
}
|
||||
|
||||
.parityButton img {
|
||||
width: auto !important;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
.button svg {
|
||||
fill: white !important;
|
||||
}
|
||||
@@ -128,7 +133,7 @@
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
.header svg ,
|
||||
.header svg,
|
||||
.coner svg {
|
||||
fill: white !important;
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ import ContentClear from 'material-ui/svg-icons/content/clear';
|
||||
import { Badge, Button, ContainerTitle, ParityBackground } from '../../ui';
|
||||
import { Embedded as Signer } from '../Signer';
|
||||
|
||||
import imagesEthcoreBlock from '../../../assets/images/ethcore-block.png';
|
||||
import imagesEthcoreBlock from '../../../assets/images/parity-logo-white-no-text.svg';
|
||||
import styles from './parityBar.css';
|
||||
|
||||
class ParityBar extends Component {
|
||||
@@ -79,7 +79,7 @@ class ParityBar extends Component {
|
||||
<div className={ styles.cornercolor }>
|
||||
<Link to='/apps'>
|
||||
<Button
|
||||
className={ styles.button }
|
||||
className={ styles.parityButton }
|
||||
icon={ parityIcon }
|
||||
label={ this.renderLabel('Parity') } />
|
||||
</Link>
|
||||
|
||||
Reference in New Issue
Block a user