Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update welcome page #302

Merged
merged 1 commit into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions theia-extensions/product/src/browser/branding-util.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export function renderSupport(windowService: WindowService): React.ReactNode {
<div >
Professional support, implementation services, consulting and training for building tools like this instance of Theia Blueprint and for
building other tools based on Eclipse Theia is available by selected companies as listed on the
<ExternalBrowserLink text="Theia support page" url="https://theia-ide.org/support/" windowService={windowService} ></ExternalBrowserLink>.
<ExternalBrowserLink text=" Theia support page" url="https://theia-ide.org/support/" windowService={windowService} ></ExternalBrowserLink>.
</div>
</div>;
}
Expand Down Expand Up @@ -138,7 +138,7 @@ export function renderDownloads(): React.ReactNode {
</h3>
<div className='gs-action-container'>
You can update Eclipse Theia Blueprint directly in this application by navigating to
File {'>'} Settings {'>'} Check for Updates… Moreover the application will check for Updates
File {'>'} Settings {'>'} Check for Updates… Moreover the application will check for updates
after each launch automatically.
</div>
<div className='gs-action-container'>
Expand Down
6 changes: 0 additions & 6 deletions theia-extensions/product/src/browser/style/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,6 @@
padding: 20px;
}

.gs-preference {
margin-top: 20px;
align-items: center;
display: flex;
}

.ad-logo {
background-image: var(--theia-branding-logo);
background-position: center center;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,17 @@

import '../../src/browser/style/index.css';

import { FrontendApplicationContribution, WidgetFactory, bindViewContribution } from '@theia/core/lib/browser';

import { WidgetFactory } from '@theia/core/lib/browser';
import { AboutDialog } from '@theia/core/lib/browser/about-dialog';
import { CommandContribution } from '@theia/core/lib/common/command';
import { ContainerModule } from '@theia/core/shared/inversify';
import { GettingStartedWidget } from '@theia/getting-started/lib/browser/getting-started-widget';
import { MenuContribution } from '@theia/core/lib/common/menu';
import { TheiaBlueprintAboutDialog } from './theia-blueprint-about-dialog';
import { TheiaBlueprintContribution } from './theia-blueprint-contribution';
import { TheiaBlueprintGettingStartedContribution } from './theia-blueprint-getting-started-contribution';
import { TheiaBlueprintGettingStartedWidget } from './theia-blueprint-getting-started-widget';

export default new ContainerModule((bind, _unbind, isBound, rebind) => {
bindViewContribution(bind, TheiaBlueprintGettingStartedContribution);
bind(FrontendApplicationContribution).toService(TheiaBlueprintGettingStartedContribution);
bind(TheiaBlueprintGettingStartedWidget).toSelf();
bind(WidgetFactory).toDynamicValue(context => ({
id: GettingStartedWidget.ID,
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,9 @@ export class TheiaBlueprintGettingStartedWidget extends GettingStartedWidget {
{renderDownloads()}
</div>
</div>
<div className='flex-grid'>
<div className='col'>
{this.renderPreferences()}
</div>
</div>
</div>
<div className='gs-preference-container'>
{this.renderPreferences()}
</div>
</div>;
}
Expand Down