diff --git a/web/public/favicon.ico b/web/public/favicon.ico index b8874d9..3bc4a2a 100644 Binary files a/web/public/favicon.ico and b/web/public/favicon.ico differ diff --git a/web/public/images/check-db-links.png b/web/public/images/check-db-links.png new file mode 100644 index 0000000..b66c7c8 Binary files /dev/null and b/web/public/images/check-db-links.png differ diff --git a/web/public/images/edit.png b/web/public/images/edit.png index 57605a7..ffded07 100644 Binary files a/web/public/images/edit.png and b/web/public/images/edit.png differ diff --git a/web/public/images/icons/article-grey.png b/web/public/images/icons/article-grey.png deleted file mode 100644 index 9706f82..0000000 Binary files a/web/public/images/icons/article-grey.png and /dev/null differ diff --git a/web/public/images/icons/article.png b/web/public/images/icons/article.png deleted file mode 100644 index 878a5df..0000000 Binary files a/web/public/images/icons/article.png and /dev/null differ diff --git a/web/public/images/icons/check-db-links.png b/web/public/images/icons/check-db-links.png deleted file mode 100644 index 7cb87c5..0000000 Binary files a/web/public/images/icons/check-db-links.png and /dev/null differ diff --git a/web/public/images/icons/db-report.png b/web/public/images/icons/db-report.png deleted file mode 100644 index 58d792e..0000000 Binary files a/web/public/images/icons/db-report.png and /dev/null differ diff --git a/web/public/images/icons/delete.png b/web/public/images/icons/delete.png deleted file mode 100644 index 965dd61..0000000 Binary files a/web/public/images/icons/delete.png and /dev/null differ diff --git a/web/public/images/icons/edit.png b/web/public/images/icons/edit.png deleted file mode 100644 index ffded07..0000000 Binary files a/web/public/images/icons/edit.png and /dev/null differ diff --git a/web/public/images/icons/publication.png b/web/public/images/icons/publication.png deleted file mode 100644 index ac0372e..0000000 Binary files a/web/public/images/icons/publication.png and /dev/null differ diff --git a/web/public/images/icons/publisher.png b/web/public/images/icons/publisher.png deleted file mode 100644 index 18dbff7..0000000 Binary files a/web/public/images/icons/publisher.png and /dev/null differ diff --git a/web/public/images/icons/technique.png b/web/public/images/icons/technique.png deleted file mode 100644 index eccc423..0000000 Binary files a/web/public/images/icons/technique.png and /dev/null differ diff --git a/web/public/images/icons/tips.png b/web/public/images/icons/tips.png deleted file mode 100644 index 5cdb1cd..0000000 Binary files a/web/public/images/icons/tips.png and /dev/null differ diff --git a/web/public/images/info.png b/web/public/images/info.png deleted file mode 100644 index 5cdb1cd..0000000 Binary files a/web/public/images/info.png and /dev/null differ diff --git a/web/public/images/menu/article.png b/web/public/images/menu/article.png new file mode 100644 index 0000000..89ccbf0 Binary files /dev/null and b/web/public/images/menu/article.png differ diff --git a/web/public/images/menu/db-report.png b/web/public/images/menu/db-report.png new file mode 100644 index 0000000..6375940 Binary files /dev/null and b/web/public/images/menu/db-report.png differ diff --git a/web/public/images/menu/publication.png b/web/public/images/menu/publication.png new file mode 100644 index 0000000..d126741 Binary files /dev/null and b/web/public/images/menu/publication.png differ diff --git a/web/public/images/menu/publisher.png b/web/public/images/menu/publisher.png new file mode 100644 index 0000000..1d41064 Binary files /dev/null and b/web/public/images/menu/publisher.png differ diff --git a/web/public/images/menu/publishers.png b/web/public/images/menu/publishers.png new file mode 100644 index 0000000..bf955c1 Binary files /dev/null and b/web/public/images/menu/publishers.png differ diff --git a/web/public/images/menu/technique.png b/web/public/images/menu/technique.png new file mode 100644 index 0000000..3305d07 Binary files /dev/null and b/web/public/images/menu/technique.png differ diff --git a/web/public/images/menu/tips.png b/web/public/images/menu/tips.png new file mode 100644 index 0000000..cb7b733 Binary files /dev/null and b/web/public/images/menu/tips.png differ diff --git a/web/public/images/open-link.png b/web/public/images/open-link.png index c8aeb6a..3f53be5 100644 Binary files a/web/public/images/open-link.png and b/web/public/images/open-link.png differ diff --git a/web/src/App.css b/web/src/App.css index 50cf3e4..dd798e2 100644 --- a/web/src/App.css +++ b/web/src/App.css @@ -14,7 +14,7 @@ [data-reach-menu] { z-index: 999 ; } [data-reach-menu-list] { padding: 5px ; } [data-reach-menu-item] { display: flex ; height: 1.25em ; padding: 5px ; } -[data-reach-menu-item][data-selected] { background: #90caf9 ; color: black ; } +[data-reach-menu-item][data-selected] { background: #b0e0ff ; color: black ; } [data-reach-menu-list] .divider { height: 0 ; margin: 2px 0 ; border-top: 1px solid #aaa ; } [data-reach-menu-list] img { height: 100% ; margin-top: -0.1em ; margin-right: 0.5em ; } diff --git a/web/src/App.js b/web/src/App.js index 97a67a5..08f9c45 100644 --- a/web/src/App.js +++ b/web/src/App.js @@ -95,27 +95,27 @@ export class App extends React.Component this._showPublishers(true) } > - Show publishers. Show publishers + Show publishers. Show publishers this._showTechniqueArticles(true) } > - Show technique articles. Show technique + Show technique articles. Show technique this._showTipsArticles(true) } > - Show tip articles. Show tips + Show tip articles. Show tips
- New publisher. New publisher + New publisher. New publisher - New publication. New publication + New publication. New publication - New article. New article + New article. New article
this._showDbReport(true) } > - Database report. DB report + Database report. DB report ) ; diff --git a/web/src/ArticleSearchResult.js b/web/src/ArticleSearchResult.js index 2b6f80f..925b360 100644 --- a/web/src/ArticleSearchResult.js +++ b/web/src/ArticleSearchResult.js @@ -91,10 +91,10 @@ export class ArticleSearchResult extends React.Component this.onEditArticle() } > - Edit. Edit + Edit. Edit this.onDeleteArticle() } > - Delete. Delete + Delete. Delete ) ; diff --git a/web/src/ArticleSearchResult2.js b/web/src/ArticleSearchResult2.js index d8f132b..567aa00 100644 --- a/web/src/ArticleSearchResult2.js +++ b/web/src/ArticleSearchResult2.js @@ -327,7 +327,7 @@ export class ArticleSearchResult2 // show the form const title = (
- Dialog icon. + Dialog icon. {isNew ? "New article" : "Edit article"}
) ; gAppRef.showModalForm( "article-form", diff --git a/web/src/DbReport.js b/web/src/DbReport.js index 294928f..5cd1a7d 100644 --- a/web/src/DbReport.js +++ b/web/src/DbReport.js @@ -151,13 +151,13 @@ class DbLinks extends React.Component // render the component const nLinksToCheck = this.state.linksToCheck ? this.state.linksToCheck.length - this.state.currLinkToCheck : null ; - const imageUrl = this.state.checkLinksInProgress ? "/images/loading.gif" : "/images/icons/check-db-links.png" ; + const imageUrl = this.state.checkLinksInProgress ? "/images/loading.gif" : "/images/check-db-links.png" ; return (

Links { !dbLinks && Loading... }

{ this.state.linksToCheck && this.state.linksToCheck.length > 0 && (
{this.state.checkLinksStatusMsg}
diff --git a/web/src/PublicationSearchResult.js b/web/src/PublicationSearchResult.js index ac7f46b..8e0bda1 100644 --- a/web/src/PublicationSearchResult.js +++ b/web/src/PublicationSearchResult.js @@ -81,10 +81,10 @@ export class PublicationSearchResult extends React.Component this.onEditPublication() } > - Edit. Edit + Edit. Edit this.onDeletePublication() } > - Delete. Delete + Delete. Delete ) ; diff --git a/web/src/PublicationSearchResult2.js b/web/src/PublicationSearchResult2.js index 79fe195..0495340 100644 --- a/web/src/PublicationSearchResult2.js +++ b/web/src/PublicationSearchResult2.js @@ -279,7 +279,7 @@ export class PublicationSearchResult2 // show the form const isNew = Object.keys( vals ).length === 0 ; const title = (
- Dialog icon. + Dialog icon. {isNew ? "New publication" : "Edit publication"}
) ; gAppRef.showModalForm( "publication-form", diff --git a/web/src/PublisherSearchResult.js b/web/src/PublisherSearchResult.js index a3220d1..0a490af 100644 --- a/web/src/PublisherSearchResult.js +++ b/web/src/PublisherSearchResult.js @@ -62,10 +62,10 @@ export class PublisherSearchResult extends React.Component this.onEditPublisher() } > - Edit. Edit + Edit. Edit this.onDeletePublisher() } > - Delete. Delete + Delete. Delete ) ; diff --git a/web/src/PublisherSearchResult2.js b/web/src/PublisherSearchResult2.js index 5b485d5..f5b352e 100644 --- a/web/src/PublisherSearchResult2.js +++ b/web/src/PublisherSearchResult2.js @@ -136,7 +136,7 @@ export class PublisherSearchResult2 // show the form const isNew = Object.keys( vals ).length === 0 ; const title = (
- Dialog icon. + Dialog icon. {isNew ? "New publisher" : "Edit publisher"}
) ; gAppRef.showModalForm( "publisher-form", diff --git a/web/src/SearchResults.css b/web/src/SearchResults.css index 9c1c38c..384bad8 100644 --- a/web/src/SearchResults.css +++ b/web/src/SearchResults.css @@ -13,7 +13,7 @@ .search-result .header { padding: 2px 5px ; border-top-right-radius: 5px ; } .search-result .header a { text-decoration: none ; } .search-result .header a.open-link { margin-left: 0.5em ; } -.search-result .header a.open-link img { height: 1.2em ; margin-bottom: -0.2em ; } +.search-result .header a.open-link img { height: 1em ; margin-bottom: -0.15em ; } .search-result.publisher .header { border: 1px solid #c0c0c0 ; background: #eabe51 ; } .search-result.publisher .header a.name { color: inherit ; text-decoration: none ; } @@ -32,7 +32,8 @@ .search-result .content p:not(:first-child) { margin-top: 0.25em ; } .search-result .content ul p, .search-result .content ol p { margin-top: 0.1em ; } .search-result .content i i { color: #666 ; } -.search-result .content a.aslrb { color: #804040 ; text-decoration: none ; border-bottom: 1px dotted #804040 ; } +.search-result .content a.aslrb { color: red ; text-decoration: none ; } +.search-result .content a.aslrb:hover { background: #ffffcc ; } .search-result .content .image { float: left ; margin: 0.25em 0.5em 0.5em 0 ; max-height: 8em ; max-width: 6em ; } .search-result .content .collapsible { margin-top: 0.5em ; font-size: 90% ; color: #333 ; } .search-result .content .collapsible a { color: #333 ; text-decoration: none ; } diff --git a/web/src/index.css b/web/src/index.css index c796abb..16c7ed1 100644 --- a/web/src/index.css +++ b/web/src/index.css @@ -2,7 +2,7 @@ body { padding: 5px ; - font-size: 16px ; + font-family: Arial, Helvetica, sans-serif ; font-size: 16px ; -webkit-font-smoothing: antialiased ; -moz-osx-font-smoothing: grayscale ; }