-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1143 from jetstreamapp/web-ext/add-icon-position-…
…options Add button position configuration
- Loading branch information
Showing
16 changed files
with
237 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+3.67 KB
apps/jetstream-web-extension/src/assets/icons/jetstream-icon-inverse-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.95 KB
apps/jetstream-web-extension/src/assets/icons/jetstream-icon-inverse-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.08 KB
apps/jetstream-web-extension/src/assets/icons/jetstream-icon-inverse-24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.17 KB
apps/jetstream-web-extension/src/assets/icons/jetstream-icon-inverse-32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.42 KB
apps/jetstream-web-extension/src/assets/icons/jetstream-icon-inverse-48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
apps/jetstream-web-extension/src/core/GlobalExtensionLoggedOut.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { FeedbackLink, Grid } from '@jetstream/ui'; | ||
import { environment } from '../environments/environment'; | ||
|
||
export const GlobalExtensionLoggedOut = () => { | ||
return ( | ||
<div className="slds-card slds-box"> | ||
<p>This page is only accessible when you are logged in to the Chrome extension. Login to continue.</p> | ||
<a | ||
href={`${environment.serverUrl}/web-extension/init`} | ||
target="_blank" | ||
className="slds-button slds-button_brand slds-m-top_small" | ||
rel="noreferrer" | ||
> | ||
Sign In | ||
</a> | ||
<hr className="slds-m-vertical_medium" /> | ||
<Grid vertical> | ||
<div> | ||
<ol className="slds-list_ordered"> | ||
<li> | ||
Bug reports and feature requests - <FeedbackLink type="GH_ISSUE" /> | ||
</li> | ||
<li className="slds-m-top_x-small"> | ||
<FeedbackLink type="GH_DISCUSSION" /> | ||
</li> | ||
<li className="slds-m-top_x-small"> | ||
Ask a question in the <strong>#vendors-jetstream</strong> Discord channel <FeedbackLink type="DISCORD" /> | ||
</li> | ||
<li className="slds-m-top_x-small"> | ||
You can always email us at <FeedbackLink type="EMAIL" /> | ||
</li> | ||
</ol> | ||
</div> | ||
</Grid> | ||
</div> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.