From 0fc47fefcb72592bd34e238949db9e98a84b8a63 Mon Sep 17 00:00:00 2001 From: geireann Date: Mon, 5 Jun 2023 19:42:06 -0400 Subject: topbar, buttons etc --- src/client/views/topbar/TopBar.tsx | 1 + 1 file changed, 1 insertion(+) (limited to 'src/client/views/topbar') diff --git a/src/client/views/topbar/TopBar.tsx b/src/client/views/topbar/TopBar.tsx index 9bd2ba5ce..32b56b202 100644 --- a/src/client/views/topbar/TopBar.tsx +++ b/src/client/views/topbar/TopBar.tsx @@ -86,6 +86,7 @@ export class TopBar extends React.Component { tooltip="Browsing mode for directly navigating to documents" size={Size.SMALL} color={'white'} + style={{fontWeight: 700, fontSize: '1rem'}} onClick={(e: React.MouseEvent) => { const dashView = Doc.ActiveDashboard && DocumentManager.Instance.getDocumentView(Doc.ActiveDashboard); ContextMenu.Instance.addItem({ description: 'Open Dashboard View', event: this.navigateToHome, icon: 'edit' }); -- cgit v1.2.3-70-g09d2 From cb4fbf58fb30b3ea863f5107674dd366566e39a7 Mon Sep 17 00:00:00 2001 From: geireann Date: Tue, 6 Jun 2023 17:04:01 -0400 Subject: updated share button on topbar --- package-lock.json | 6 +++--- package.json | 2 +- src/client/views/topbar/TopBar.tsx | 17 +++++++++-------- 3 files changed, 13 insertions(+), 12 deletions(-) (limited to 'src/client/views/topbar') diff --git a/package-lock.json b/package-lock.json index 052a9fa14..50b0ae024 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4497,9 +4497,9 @@ } }, "browndash-components": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/browndash-components/-/browndash-components-0.0.33.tgz", - "integrity": "sha512-GvapLe8z61FLVru7rosxTT9mgqbhci2frAXkp7xzzgq6KubQZK56oNUygsq5Vk9SKRYdf82ovazI/MOXLcXV7A==", + "version": "0.0.34", + "resolved": "https://registry.npmjs.org/browndash-components/-/browndash-components-0.0.34.tgz", + "integrity": "sha512-wlvNL41FWSvkhDtWWOd6mPZcT+qS6R0eLJ2IrFMk0WG9ejEoURVy8URy566ZLCUKQkkZ3VKISVeidX/pdSRmAg==", "requires": { "color": "^4.2.3", "react-color": "^2.19.3", diff --git a/package.json b/package.json index 965439600..f8392171f 100644 --- a/package.json +++ b/package.json @@ -177,7 +177,7 @@ "body-parser": "^1.19.2", "bootstrap": "^4.6.1", "brotli": "^1.3.3", - "browndash-components": "0.0.33", + "browndash-components": "0.0.34", "browser-assert": "^1.2.1", "bson": "^4.6.1", "canvas": "^2.9.3", diff --git a/src/client/views/topbar/TopBar.tsx b/src/client/views/topbar/TopBar.tsx index 32b56b202..b591e0250 100644 --- a/src/client/views/topbar/TopBar.tsx +++ b/src/client/views/topbar/TopBar.tsx @@ -1,5 +1,5 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { Button, IconButton, Size } from 'browndash-components'; +import { Button, IconButton, Size, Type } from 'browndash-components'; import { action, computed, observable } from 'mobx'; import { observer } from 'mobx-react'; import * as React from 'react'; @@ -102,13 +102,6 @@ export class TopBar extends React.Component { dashView?.showContextMenu(e.clientX + 20, e.clientY + 30); }} /> -