Skip to content

Commit

Permalink
swap 1.0 to 1.x
Browse files Browse the repository at this point in the history
- swap 1.0 in favor of 1.x
- added hover to questionmark icon
  • Loading branch information
dnenov committed Feb 27, 2024
1 parent c9f5cd6 commit cd73cd5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/assets/home.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src/components/Common/CustomIcons.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import React from 'react';
import styles from '../Common/CustomIcons.module.css';

export const GridViewIcon = () => (
<svg
width="36"
Expand Down Expand Up @@ -36,6 +38,7 @@ export const ListViewIcon = () => (
export const QuestionMarkIcon = () => (
<div style={{ verticalAlign: "center", marginLeft: "5px", marginTop: "4px", marginRight: "5px" }}>
<svg
className={styles['questionMarkIcon']}
width="16"
height="16"
viewBox="0 0 16 16"
Expand Down
3 changes: 3 additions & 0 deletions src/components/Common/CustomIcons.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.questionMarkIcon:hover path {
fill: #DCDCDC;
}
4 changes: 2 additions & 2 deletions src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"learning.title.text.videos": "Video Tutorials",
"samples.showsamples.text": "Show Samples in Folder",
"main.page.loading.text": "Loading",
"recent.item.old.format": "Dynamo 1.0 file format",
"recent.item.old.format.tooltip": "Author and thumbnail not available for files saved in Dynamo 1.0 format"
"recent.item.old.format": "Dynamo 1.x file format",
"recent.item.old.format.tooltip": "Author and thumbnail not available for files saved in Dynamo 1.x format"
}

0 comments on commit cd73cd5

Please sign in to comment.