Skip to content

Commit

Permalink
publish: Add Ubuntu 24.04 cozy-stack packages
Browse files Browse the repository at this point in the history
generated from commit b2d4b2f
  • Loading branch information
Travis CI User committed Jul 16, 2024
1 parent 8622c77 commit 70395e0
Show file tree
Hide file tree
Showing 9 changed files with 470 additions and 460 deletions.
1 change: 1 addition & 0 deletions en/cozy-home/src/assets/icons/drawing-arrow-up.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion en/cozy-home/src/assets/images/drawing-arrow-up.svg

This file was deleted.

5 changes: 5 additions & 0 deletions en/cozy-home/src/components/BackgroundContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import cx from 'classnames'
import { useWallpaperContext } from 'hooks/useWallpaperContext'
import { useCozyTheme } from 'cozy-ui/transpiled/react/providers/CozyTheme'

import DefaultWallpaper from 'assets/images/default-wallpaper.svg'

export const BackgroundContainer = (): JSX.Element => {
const {
data: { binaryCustomWallpaper, isCustomWallpaper }
Expand All @@ -26,6 +28,9 @@ export const BackgroundContainer = (): JSX.Element => {
: undefined
}
>
{!isCustomWallpaper && (
<img className="home-default-background--img" src={DefaultWallpaper} />
)}
<div></div>
<div></div>
<div></div>
Expand Down
16 changes: 10 additions & 6 deletions en/cozy-home/src/components/EmptyServicesListTip.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import React from 'react'

import { Media, Img, Bd } from 'cozy-ui/transpiled/react/deprecated/Media'
import ArrowIllustration from 'assets/images/drawing-arrow-up.svg'
import ArrowIllustration from 'assets/icons/drawing-arrow-up.svg'
import Icon from 'cozy-ui/transpiled/react/Icon'
import { useI18n } from 'cozy-ui/transpiled/react/providers/I18n'
import Typography from 'cozy-ui/transpiled/react/Typography'

Expand All @@ -11,13 +12,16 @@ export const EmptyServicesListTip = () => {
return (
<Media align="top" className="EmptyServicesListTip">
<Img>
<img src={ArrowIllustration} color="white" />
<Icon
icon={ArrowIllustration}
width={40}
height={36}
color="var(--iconTextColor)"
/>
</Img>
<Bd className="EmptyServicesListTip-text">
<Typography className="u-white" variant="h4">
{t('connector.empty.title')}
</Typography>
<Typography tag="p" className="u-mv-half u-white" variant="body1">
<Typography variant="h4">{t('connector.empty.title')}</Typography>
<Typography tag="p" className="u-mv-half" variant="body1">
{t('connector.empty.text')}
</Typography>
</Bd>
Expand Down
2 changes: 1 addition & 1 deletion en/cozy-home/src/components/Sections/SectionAppGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const SectionAppTile = ({ item }: SectionAppTileProps): JSX.Element => {
style={{ backgroundColor: typedNameToColor(item.name) }}
className="section-app-group-tile"
>
<Typography variant="subtitle2" align="center" className="u-white">
<Typography variant="subtitle2" align="center">
{item.name?.[0].toUpperCase()}
</Typography>
</div>
Expand Down
4 changes: 4 additions & 0 deletions en/cozy-home/src/global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@ declare module 'cozy-ui/transpiled/react/providers/Breakpoints' {
}
declare module 'cozy-ui/transpiled/react/Spinner'
declare module 'cozy-ui/transpiled/react/SquareAppIcon'
declare module 'assets/*' {
const assets: string
export default assets
}
5 changes: 1 addition & 4 deletions en/cozy-home/src/styles/backgroundContainer.styl
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,10 @@
background-color #142536

.home-default-background
&::before
content ''
&--img
position fixed
height 100%
width 100%
background-size 100% 100%
background-image url('../assets/images/default-wallpaper.svg')
opacity .24

.home-custom-background
Expand Down
Loading

0 comments on commit 70395e0

Please sign in to comment.