File tree Expand file tree Collapse file tree 2 files changed +23
-3
lines changed
libs/remix-ui/panel/src/lib/plugins Expand file tree Collapse file tree 2 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -105,12 +105,14 @@ const RemixUIPanelHeader = (props: RemixPanelProps) => {
105105 < div className = "codicon codicon-layout-sidebar-left-dock ms-2 fs-6 fw-bold lh-1" style = { { marginTop : '2px' } } > </ div >
106106 </ CustomTooltip >
107107 </ div >
108- < CustomTooltip placement = "bottom-end" tooltipText = { props . isMaximized ? "Restore Panels " : "Maximize Panel" } >
108+ < CustomTooltip placement = "bottom-end" tooltipText = { props . isMaximized ? "Minimize Panel " : "Maximize Panel" } >
109109 < div
110- className = { ` codicon ${ props . isMaximized ? 'codicon -screen-normal' : 'codicon-screen-full' } ms-2 fs-5 fw-bold` }
110+ className = " codicon-screen-icon ms-2"
111111 onClick = { maximizePanelHandler }
112112 data-id = "maximizeRightSidePanel"
113- > </ div >
113+ >
114+ { props . isMaximized ? '\ueb4d' : '\ueb4c' /* Actual icons were not being rendered, so used unicode for codicon-screen-full & codicon-screen-normal icons*/ }
115+ </ div >
114116 </ CustomTooltip >
115117 < CustomTooltip placement = "bottom-end" tooltipText = "Hide Panel" >
116118 < div
Original file line number Diff line number Diff line change 66 flex : auto;
77}
88
9+ @font-face {
10+ font-family : 'codicon-vscode' ;
11+ font-display : block;
12+ src : url ('~@vscode/codicons/dist/codicon.ttf' ) format ('truetype' );
13+ }
14+
15+ .codicon-screen-icon {
16+ font : normal normal normal 20 px/1 'codicon-vscode' ;
17+ display : inline-block;
18+ text-decoration : none;
19+ text-rendering : auto;
20+ text-align : center;
21+ -webkit-font-smoothing : antialiased;
22+ -moz-osx-font-smoothing : grayscale;
23+ user-select : none;
24+ cursor : pointer;
25+ }
26+
927.swapitTitle {
1028 margin : 0 ;
1129 text-transform : uppercase;
You can’t perform that action at this time.
0 commit comments