1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fixing broken/missing icons (#665)

* Normalizing titles size and weight

Signed-off-by: alexfront <alex.andreev.email@gmail.com>

* Replacing deployment scale icon

Signed-off-by: alexfront <alex.andreev.email@gmail.com>

* Replacing download logs icon

Signed-off-by: alexfront <alex.andreev.email@gmail.com>

* Making <h4> tag bigger than <h5>

Signed-off-by: alexfront <alex.andreev.email@gmail.com>
Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
This commit is contained in:
Alex Andreev 2020-08-10 16:47:34 +03:00 committed by Lauri Nevala
parent 503888aa1c
commit 39391e7bf0
3 changed files with 5 additions and 5 deletions

View File

@ -98,7 +98,7 @@ export function DeploymentMenu(props: KubeObjectMenuProps<Deployment>) {
return ( return (
<KubeObjectMenu {...props}> <KubeObjectMenu {...props}>
<MenuItem onClick={() => DeploymentScaleDialog.open(object)}> <MenuItem onClick={() => DeploymentScaleDialog.open(object)}>
<Icon material="control_camera" title={_i18n._(t`Scale`)} interactive={toolbar}/> <Icon material="open_with" title={_i18n._(t`Scale`)} interactive={toolbar}/>
<span className="title"><Trans>Scale</Trans></span> <span className="title"><Trans>Scale</Trans></span>
</MenuItem> </MenuItem>
</KubeObjectMenu> </KubeObjectMenu>

View File

@ -226,7 +226,7 @@ export class PodLogsDialog extends React.Component<Props> {
tooltip={(showTimestamps ? _i18n._(t`Hide`) : _i18n._(t`Show`)) + " " + _i18n._(t`timestamps`)} tooltip={(showTimestamps ? _i18n._(t`Hide`) : _i18n._(t`Show`)) + " " + _i18n._(t`timestamps`)}
/> />
<Icon <Icon
material="save_alt" material="get_app"
onClick={this.downloadLogs} onClick={this.downloadLogs}
tooltip={_i18n._(t`Save`)} tooltip={_i18n._(t`Save`)}
/> />

View File

@ -82,7 +82,7 @@ hr {
h1 { h1 {
color: white; color: white;
font-size: 28px; font-size: 28px;
font-weight: 300; font-weight: normal;
letter-spacing: -.010em; letter-spacing: -.010em;
margin: 0; margin: 0;
} }
@ -99,13 +99,13 @@ h3 {
h4 { h4 {
@extend h3; @extend h3;
font-size: 16px; font-size: 18px;
} }
h5 { h5 {
@extend h4; @extend h4;
padding: $padding / 2 0; padding: $padding / 2 0;
font-size: 14px; font-size: 16px;
} }
h6 { h6 {