diff --git a/src/main.tsx b/src/main.tsx index f587ae43..8cc59f2a 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -1091,6 +1091,14 @@ class ScreenWindowView extends React.Component<{screen : Screen}, {}> { }, 600) } + @boundMethod + openScreenSettings() : void { + let {screen} = this.props; + mobx.action(() => { + GlobalModel.screenSettingsModal.set({sessionId: screen.sessionId, screenId: screen.screenId}); + })(); + } + @boundMethod buildLineComponent(lineProps : LineFactoryProps) : JSX.Element { let {screen} = this.props; @@ -1141,7 +1149,7 @@ class ScreenWindowView extends React.Component<{screen : Screen}, {}> {
-
web shared
+
web shared
copy link @@ -1149,6 +1157,12 @@ class ScreenWindowView extends React.Component<{screen : Screen}, {}> {
+
+ open settings + + + +
diff --git a/src/sh2.less b/src/sh2.less index 0b5380a0..bc8f134d 100644 --- a/src/sh2.less +++ b/src/sh2.less @@ -142,7 +142,7 @@ body::-webkit-scrollbar { padding: 2px 8px 2px 4px; z-index: 11; font-size: 12px; - border-radius: 0 0 5px 5px; + /* border-radius: 0 0 5px 5px; */ opacity: 0.8; display: flex; flex-direction: column; @@ -153,12 +153,21 @@ body::-webkit-scrollbar { } &:hover { + .share-tag-title { + font-size: 14px; + font-weight: bold; + } opacity: 1.0; padding: 20px; - width: 150px; + width: 250px; + border: 1px solid #ccc; + border-top: 0; .share-tag-link { - display: block; + display: flex; + flex-direction: row; + align-items: center; + gap: 10px; } } }