mirror of
https://github.com/billsonnn/nitro-react.git
synced 2025-01-31 10:22:36 +01:00
Merge branch 'minor-fixes' into 'dev'
Minor fixes See merge request nitro/nitro-react!57
This commit is contained in:
commit
e7f46243a0
@ -52,7 +52,7 @@ $friends-list-width: 250px;
|
|||||||
$friends-list-height: 300px;
|
$friends-list-height: 300px;
|
||||||
|
|
||||||
$help-width: 450px;
|
$help-width: 450px;
|
||||||
$help-height: 250px;
|
$help-height: 290px;
|
||||||
|
|
||||||
$nitropedia-width: 400px;
|
$nitropedia-width: 400px;
|
||||||
$nitropedia-height: 400px;
|
$nitropedia-height: 400px;
|
||||||
|
@ -121,7 +121,7 @@ export const CameraWidgetCheckoutView: FC<CameraWidgetCheckoutViewProps> = props
|
|||||||
{ (picturesBought > 0) &&
|
{ (picturesBought > 0) &&
|
||||||
<Text>
|
<Text>
|
||||||
<Text bold>{ LocalizeText('camera.purchase.count.info') }</Text> { picturesBought }
|
<Text bold>{ LocalizeText('camera.purchase.count.info') }</Text> { picturesBought }
|
||||||
<u className="ms-1 cursor-pointer" onClick={ () => CreateLinkEvent('inventory/open') }>{ LocalizeText('camera.open.inventory') }</u>
|
<u className="ms-1 cursor-pointer" onClick={ () => CreateLinkEvent('inventory/toggle') }>{ LocalizeText('camera.open.inventory') }</u>
|
||||||
</Text> }
|
</Text> }
|
||||||
</Column>
|
</Column>
|
||||||
<Flex alignItems="center">
|
<Flex alignItems="center">
|
||||||
|
@ -43,7 +43,7 @@ export const NavigatorSearchResultItemInfoView: FC<NavigatorSearchResultItemInfo
|
|||||||
<Base pointer innerRef={ elementRef } className="icon icon-navigator-info" onMouseOver={ event => setIsVisible(true) } onMouseLeave={ event => setIsVisible(false) } />
|
<Base pointer innerRef={ elementRef } className="icon icon-navigator-info" onMouseOver={ event => setIsVisible(true) } onMouseLeave={ event => setIsVisible(false) } />
|
||||||
<Overlay show={ isVisible } target={ elementRef.current } placement="right">
|
<Overlay show={ isVisible } target={ elementRef.current } placement="right">
|
||||||
<Popover>
|
<Popover>
|
||||||
<NitroCardContentView overflow="hidden" className="room-info bg-transparent">
|
<NitroCardContentView overflow="hidden" className="room-info image-rendering-pixelated bg-transparent">
|
||||||
<Flex gap={ 2 } overflow="hidden">
|
<Flex gap={ 2 } overflow="hidden">
|
||||||
<LayoutRoomThumbnailView roomId={ roomData.roomId } customUrl={ roomData.officialRoomPicRef } className="d-flex flex-column align-items-center justify-content-end mb-1">
|
<LayoutRoomThumbnailView roomId={ roomData.roomId } customUrl={ roomData.officialRoomPicRef } className="d-flex flex-column align-items-center justify-content-end mb-1">
|
||||||
{ roomData.habboGroupId > 0 && (
|
{ roomData.habboGroupId > 0 && (
|
||||||
|
@ -46,7 +46,7 @@ export const ChatInputStyleSelectorView: FC<ChatInputStyleSelectorViewProps> = p
|
|||||||
<>
|
<>
|
||||||
<Base pointer className="icon chatstyles-icon" onClick={ toggleSelector } />
|
<Base pointer className="icon chatstyles-icon" onClick={ toggleSelector } />
|
||||||
<Overlay show={ selectorVisible } target={ target } placement="top">
|
<Overlay show={ selectorVisible } target={ target } placement="top">
|
||||||
<Popover className="nitro-chat-style-selector-container">
|
<Popover className="nitro-chat-style-selector-container image-rendering-pixelated">
|
||||||
<NitroCardContentView overflow="hidden" className="bg-transparent">
|
<NitroCardContentView overflow="hidden" className="bg-transparent">
|
||||||
<Grid columnCount={ 3 } overflow="auto">
|
<Grid columnCount={ 3 } overflow="auto">
|
||||||
{ chatStyleIds && (chatStyleIds.length > 0) && chatStyleIds.map((styleId) =>
|
{ chatStyleIds && (chatStyleIds.length > 0) && chatStyleIds.map((styleId) =>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user