mirror of
https://github.com/strapi/strapi.git
synced 2025-12-28 15:44:59 +00:00
updated branch + updated ApplicationInfosPage tests
This commit is contained in:
parent
fc0b6fdebb
commit
60b6a1c743
@ -8,8 +8,10 @@ import LogoAPI from '../../temp/LogoAPI';
|
||||
const API = new LogoAPI();
|
||||
|
||||
const Form = () => {
|
||||
const { defaultMenuLogo } = useConfigurations();
|
||||
const [customMenuLogo, setCustomMenuLogo] = useState({ url: null, name: null });
|
||||
const {
|
||||
logos: { menu },
|
||||
} = useConfigurations();
|
||||
const [customMenuLogo, setCustomMenuLogo] = useState(null);
|
||||
|
||||
// Temp class to mimic crud API
|
||||
// to remove once back routes are ready
|
||||
@ -33,7 +35,7 @@ const Form = () => {
|
||||
>
|
||||
<Grid gap={4}>
|
||||
<GridItem col={6} s={12}>
|
||||
<LogoInput customLogo={customMenuLogo} defaultLogo={defaultMenuLogo} />
|
||||
<LogoInput customLogo={customMenuLogo} defaultLogo={menu.default} />
|
||||
</GridItem>
|
||||
</Grid>
|
||||
</Box>
|
||||
|
||||
@ -35,11 +35,15 @@ const LogoInput = ({ customLogo, defaultLogo }) => {
|
||||
);
|
||||
};
|
||||
|
||||
LogoInput.defaultProps = {
|
||||
customLogo: null,
|
||||
};
|
||||
|
||||
LogoInput.propTypes = {
|
||||
customLogo: PropType.shape({
|
||||
url: PropType.string,
|
||||
name: PropType.string,
|
||||
}).isRequired,
|
||||
}),
|
||||
defaultLogo: PropType.string.isRequired,
|
||||
};
|
||||
|
||||
|
||||
@ -9,6 +9,7 @@ class LogoAPI {
|
||||
url: CatLogo,
|
||||
name: 'cat-logo.png',
|
||||
};
|
||||
// this.menuLogo = null
|
||||
}
|
||||
|
||||
getLogo = () => {
|
||||
|
||||
@ -7,8 +7,15 @@ import ApplicationInfosPage from '../index';
|
||||
|
||||
jest.mock('@strapi/helper-plugin', () => ({
|
||||
...jest.requireActual('@strapi/helper-plugin'),
|
||||
// eslint-disable-next-line
|
||||
CheckPermissions: ({ children }) => <div>{children}</div>,
|
||||
useAppInfos: jest.fn(),
|
||||
}));
|
||||
jest.mock('../../../../../hooks/useConfigurations', () => () => ({
|
||||
logos: {
|
||||
menu: { custom: 'customAuthLogo.png', default: 'defaultAuthLogo.png' },
|
||||
},
|
||||
}));
|
||||
|
||||
const App = (
|
||||
<ThemeProvider theme={lightTheme}>
|
||||
@ -33,7 +40,7 @@ describe('Application page', () => {
|
||||
} = render(App);
|
||||
|
||||
expect(firstChild).toMatchInlineSnapshot(`
|
||||
.c10 {
|
||||
.c11 {
|
||||
background: #ffffff;
|
||||
padding-top: 32px;
|
||||
padding-right: 24px;
|
||||
@ -43,11 +50,114 @@ describe('Application page', () => {
|
||||
box-shadow: 0px 1px 4px rgba(33,33,52,0.1);
|
||||
}
|
||||
|
||||
.c22 {
|
||||
.c23 {
|
||||
padding-top: 4px;
|
||||
}
|
||||
|
||||
.c11 {
|
||||
.c36 {
|
||||
max-width: 40%;
|
||||
max-height: 40%;
|
||||
}
|
||||
|
||||
.c39 {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
cursor: pointer;
|
||||
padding: 8px;
|
||||
border-radius: 4px;
|
||||
background: #ffffff;
|
||||
border: 1px solid #dcdce4;
|
||||
position: relative;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.c39 svg {
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
}
|
||||
|
||||
.c39 svg > g,
|
||||
.c39 svg path {
|
||||
fill: #ffffff;
|
||||
}
|
||||
|
||||
.c39[aria-disabled='true'] {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.c39:after {
|
||||
-webkit-transition-property: all;
|
||||
transition-property: all;
|
||||
-webkit-transition-duration: 0.2s;
|
||||
transition-duration: 0.2s;
|
||||
border-radius: 8px;
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -4px;
|
||||
bottom: -4px;
|
||||
left: -4px;
|
||||
right: -4px;
|
||||
border: 2px solid transparent;
|
||||
}
|
||||
|
||||
.c39:focus-visible {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.c39:focus-visible:after {
|
||||
border-radius: 8px;
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -5px;
|
||||
bottom: -5px;
|
||||
left: -5px;
|
||||
right: -5px;
|
||||
border: 2px solid #4945ff;
|
||||
}
|
||||
|
||||
.c40 {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-align-items: center;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
height: 2rem;
|
||||
width: 2rem;
|
||||
}
|
||||
|
||||
.c40 svg > g,
|
||||
.c40 svg path {
|
||||
fill: #8e8ea9;
|
||||
}
|
||||
|
||||
.c40:hover svg > g,
|
||||
.c40:hover svg path {
|
||||
fill: #666687;
|
||||
}
|
||||
|
||||
.c40:active svg > g,
|
||||
.c40:active svg path {
|
||||
fill: #a5a5ba;
|
||||
}
|
||||
|
||||
.c40[aria-disabled='true'] {
|
||||
background-color: #eaeaef;
|
||||
}
|
||||
|
||||
.c40[aria-disabled='true'] svg path {
|
||||
fill: #666687;
|
||||
}
|
||||
|
||||
.c10 {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
@ -57,23 +167,42 @@ describe('Application page', () => {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.c11 > * {
|
||||
.c10 > * {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.c11 > * + * {
|
||||
margin-top: 20px;
|
||||
.c10 > * + * {
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
||||
.c12 {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.c12 > * {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.c12 > * + * {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.c13 {
|
||||
color: #32324d;
|
||||
font-weight: 500;
|
||||
font-size: 1rem;
|
||||
line-height: 1.25;
|
||||
}
|
||||
|
||||
.c16 {
|
||||
.c17 {
|
||||
color: #666687;
|
||||
font-weight: 600;
|
||||
font-size: 0.6875rem;
|
||||
@ -81,7 +210,7 @@ describe('Application page', () => {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.c17 {
|
||||
.c18 {
|
||||
color: #32324d;
|
||||
font-size: 0.875rem;
|
||||
line-height: 1.43;
|
||||
@ -162,32 +291,38 @@ describe('Application page', () => {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.c13 {
|
||||
.c14 {
|
||||
padding-top: 4px;
|
||||
}
|
||||
|
||||
.c14 {
|
||||
.c15 {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(12,1fr);
|
||||
gap: 0px;
|
||||
}
|
||||
|
||||
.c15 {
|
||||
.c24 {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(12,1fr);
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.c16 {
|
||||
grid-column: span 6;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.c19 {
|
||||
.c20 {
|
||||
color: #4945ff;
|
||||
font-size: 0.75rem;
|
||||
line-height: 1.33;
|
||||
}
|
||||
|
||||
.c20 {
|
||||
.c21 {
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
.c18 {
|
||||
.c19 {
|
||||
display: -webkit-inline-box;
|
||||
display: -webkit-inline-flex;
|
||||
display: -ms-inline-flexbox;
|
||||
@ -202,15 +337,15 @@ describe('Application page', () => {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.c18 svg path {
|
||||
.c19 svg path {
|
||||
fill: #4945ff;
|
||||
}
|
||||
|
||||
.c18 svg {
|
||||
.c19 svg {
|
||||
font-size: 0.625rem;
|
||||
}
|
||||
|
||||
.c18:after {
|
||||
.c19:after {
|
||||
-webkit-transition-property: all;
|
||||
transition-property: all;
|
||||
-webkit-transition-duration: 0.2s;
|
||||
@ -225,11 +360,11 @@ describe('Application page', () => {
|
||||
border: 2px solid transparent;
|
||||
}
|
||||
|
||||
.c18:focus-visible {
|
||||
.c19:focus-visible {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.c18:focus-visible:after {
|
||||
.c19:focus-visible:after {
|
||||
border-radius: 8px;
|
||||
content: '';
|
||||
position: absolute;
|
||||
@ -240,7 +375,141 @@ describe('Application page', () => {
|
||||
border: 2px solid #4945ff;
|
||||
}
|
||||
|
||||
.c21 {
|
||||
.c22 {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.c28 {
|
||||
background: #f6f6f9;
|
||||
padding: 8px;
|
||||
border-radius: 4px;
|
||||
border-color: #dcdce4;
|
||||
border: 1px solid #dcdce4;
|
||||
}
|
||||
|
||||
.c29 {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.c31 {
|
||||
padding-right: 8px;
|
||||
padding-left: 8px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.c33 {
|
||||
height: 124px;
|
||||
}
|
||||
|
||||
.c37 {
|
||||
position: absolute;
|
||||
bottom: 4px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.c41 {
|
||||
padding-top: 8px;
|
||||
padding-right: 16px;
|
||||
padding-left: 16px;
|
||||
}
|
||||
|
||||
.c26 {
|
||||
font-weight: 600;
|
||||
color: #32324d;
|
||||
font-size: 0.75rem;
|
||||
line-height: 1.33;
|
||||
}
|
||||
|
||||
.c42 {
|
||||
color: #666687;
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
font-size: 0.75rem;
|
||||
line-height: 1.33;
|
||||
}
|
||||
|
||||
.c43 {
|
||||
color: #666687;
|
||||
font-size: 0.75rem;
|
||||
line-height: 1.33;
|
||||
}
|
||||
|
||||
.c27 {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-flex-direction: row;
|
||||
-ms-flex-direction: row;
|
||||
flex-direction: row;
|
||||
-webkit-align-items: center;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.c34 {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-flex-direction: row;
|
||||
-ms-flex-direction: row;
|
||||
flex-direction: row;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-align-items: center;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.c30 {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr auto;
|
||||
grid-template-areas: 'startAction slides endAction';
|
||||
}
|
||||
|
||||
.c32 {
|
||||
grid-area: slides;
|
||||
}
|
||||
|
||||
.c25 {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.c25 > * {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.c25 > * + * {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.c38 > * {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.c38 > * + * {
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
.c35 {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
@ -248,13 +517,13 @@ describe('Application page', () => {
|
||||
}
|
||||
|
||||
@media (max-width:68.75rem) {
|
||||
.c15 {
|
||||
.c16 {
|
||||
grid-column: span 12;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:34.375rem) {
|
||||
.c15 {
|
||||
.c16 {
|
||||
grid-column: span;
|
||||
}
|
||||
}
|
||||
@ -303,175 +572,300 @@ describe('Application page', () => {
|
||||
>
|
||||
<div
|
||||
class="c10"
|
||||
spacing="6"
|
||||
>
|
||||
<div
|
||||
class="c11"
|
||||
spacing="5"
|
||||
>
|
||||
<h3
|
||||
<div
|
||||
class="c12"
|
||||
spacing="5"
|
||||
>
|
||||
Details
|
||||
</h3>
|
||||
<div
|
||||
class="c13 c14"
|
||||
>
|
||||
<h3
|
||||
class="c13"
|
||||
>
|
||||
Details
|
||||
</h3>
|
||||
<div
|
||||
class="c15"
|
||||
class="c14 c15"
|
||||
>
|
||||
<div
|
||||
class=""
|
||||
class="c16"
|
||||
>
|
||||
<span
|
||||
class="c16"
|
||||
>
|
||||
strapi version
|
||||
</span>
|
||||
<p
|
||||
class="c17"
|
||||
>
|
||||
v
|
||||
4.0.0
|
||||
</p>
|
||||
<a
|
||||
class="c18"
|
||||
href="https://support.strapi.io/support/home"
|
||||
rel="noreferrer noopener"
|
||||
target="_blank"
|
||||
<div
|
||||
class=""
|
||||
>
|
||||
<span
|
||||
class="c17"
|
||||
>
|
||||
strapi version
|
||||
</span>
|
||||
<p
|
||||
class="c18"
|
||||
>
|
||||
v
|
||||
4.0.0
|
||||
</p>
|
||||
<a
|
||||
class="c19"
|
||||
href="https://support.strapi.io/support/home"
|
||||
rel="noreferrer noopener"
|
||||
target="_blank"
|
||||
>
|
||||
Get help
|
||||
</span>
|
||||
<span
|
||||
aria-hidden="true"
|
||||
class="c20 c21"
|
||||
>
|
||||
<svg
|
||||
fill="none"
|
||||
height="1em"
|
||||
viewBox="0 0 24 24"
|
||||
width="1em"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
<span
|
||||
class="c20"
|
||||
>
|
||||
<path
|
||||
d="M16.235 2.824a1.412 1.412 0 010-2.824h6.353C23.368 0 24 .633 24 1.412v6.353a1.412 1.412 0 01-2.823 0V4.82l-8.179 8.178a1.412 1.412 0 01-1.996-1.996l8.178-8.178h-2.945zm4.942 10.588a1.412 1.412 0 012.823 0v9.176c0 .78-.632 1.412-1.412 1.412H1.412C.632 24 0 23.368 0 22.588V1.412C0 .632.632 0 1.412 0h9.176a1.412 1.412 0 010 2.824H2.824v18.353h18.353v-7.765z"
|
||||
fill="#32324D"
|
||||
/>
|
||||
</svg>
|
||||
Get help
|
||||
</span>
|
||||
<span
|
||||
aria-hidden="true"
|
||||
class="c21 c22"
|
||||
>
|
||||
<svg
|
||||
fill="none"
|
||||
height="1em"
|
||||
viewBox="0 0 24 24"
|
||||
width="1em"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M16.235 2.824a1.412 1.412 0 010-2.824h6.353C23.368 0 24 .633 24 1.412v6.353a1.412 1.412 0 01-2.823 0V4.82l-8.179 8.178a1.412 1.412 0 01-1.996-1.996l8.178-8.178h-2.945zm4.942 10.588a1.412 1.412 0 012.823 0v9.176c0 .78-.632 1.412-1.412 1.412H1.412C.632 24 0 23.368 0 22.588V1.412C0 .632.632 0 1.412 0h9.176a1.412 1.412 0 010 2.824H2.824v18.353h18.353v-7.765z"
|
||||
fill="#32324D"
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="c16"
|
||||
>
|
||||
<div
|
||||
class=""
|
||||
>
|
||||
<span
|
||||
class="c17"
|
||||
>
|
||||
current plan
|
||||
</span>
|
||||
</a>
|
||||
<p
|
||||
class="c18"
|
||||
>
|
||||
Enterprise Edition
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="c15"
|
||||
class="c14 c15"
|
||||
>
|
||||
<div
|
||||
class=""
|
||||
class="c16"
|
||||
>
|
||||
<span
|
||||
class="c16"
|
||||
<div
|
||||
class=""
|
||||
>
|
||||
current plan
|
||||
</span>
|
||||
<p
|
||||
class="c17"
|
||||
>
|
||||
Enterprise Edition
|
||||
</p>
|
||||
<a
|
||||
class="c19"
|
||||
href="https://github.com/strapi/strapi/releases/tag/v3.6.8"
|
||||
rel="noreferrer noopener"
|
||||
target="_blank"
|
||||
>
|
||||
<span
|
||||
class="c20"
|
||||
>
|
||||
Upgrade your admin panel
|
||||
</span>
|
||||
<span
|
||||
aria-hidden="true"
|
||||
class="c21 c22"
|
||||
>
|
||||
<svg
|
||||
fill="none"
|
||||
height="1em"
|
||||
viewBox="0 0 24 24"
|
||||
width="1em"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M16.235 2.824a1.412 1.412 0 010-2.824h6.353C23.368 0 24 .633 24 1.412v6.353a1.412 1.412 0 01-2.823 0V4.82l-8.179 8.178a1.412 1.412 0 01-1.996-1.996l8.178-8.178h-2.945zm4.942 10.588a1.412 1.412 0 012.823 0v9.176c0 .78-.632 1.412-1.412 1.412H1.412C.632 24 0 23.368 0 22.588V1.412C0 .632.632 0 1.412 0h9.176a1.412 1.412 0 010 2.824H2.824v18.353h18.353v-7.765z"
|
||||
fill="#32324D"
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="c16"
|
||||
>
|
||||
<div
|
||||
class=""
|
||||
>
|
||||
<a
|
||||
class="c19"
|
||||
href="https://strapi.io/pricing-self-hosted"
|
||||
rel="noreferrer noopener"
|
||||
target="_blank"
|
||||
>
|
||||
<span
|
||||
class="c20"
|
||||
>
|
||||
See all pricing plans
|
||||
</span>
|
||||
<span
|
||||
aria-hidden="true"
|
||||
class="c21 c22"
|
||||
>
|
||||
<svg
|
||||
fill="none"
|
||||
height="1em"
|
||||
viewBox="0 0 24 24"
|
||||
width="1em"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M16.235 2.824a1.412 1.412 0 010-2.824h6.353C23.368 0 24 .633 24 1.412v6.353a1.412 1.412 0 01-2.823 0V4.82l-8.179 8.178a1.412 1.412 0 01-1.996-1.996l8.178-8.178h-2.945zm4.942 10.588a1.412 1.412 0 012.823 0v9.176c0 .78-.632 1.412-1.412 1.412H1.412C.632 24 0 23.368 0 22.588V1.412C0 .632.632 0 1.412 0h9.176a1.412 1.412 0 010 2.824H2.824v18.353h18.353v-7.765z"
|
||||
fill="#32324D"
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="c23"
|
||||
>
|
||||
<span
|
||||
class="c17"
|
||||
>
|
||||
node version
|
||||
</span>
|
||||
<p
|
||||
class="c18"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div
|
||||
class="c13 c14"
|
||||
class="c11"
|
||||
>
|
||||
<div
|
||||
class="c15"
|
||||
class="c24"
|
||||
>
|
||||
<div
|
||||
class=""
|
||||
class="c16"
|
||||
>
|
||||
<a
|
||||
class="c18"
|
||||
href="https://github.com/strapi/strapi/releases/tag/v3.6.8"
|
||||
rel="noreferrer noopener"
|
||||
target="_blank"
|
||||
<div
|
||||
class=""
|
||||
>
|
||||
<span
|
||||
class="c19"
|
||||
>
|
||||
Upgrade your admin panel
|
||||
</span>
|
||||
<span
|
||||
aria-hidden="true"
|
||||
class="c20 c21"
|
||||
>
|
||||
<svg
|
||||
fill="none"
|
||||
height="1em"
|
||||
viewBox="0 0 24 24"
|
||||
width="1em"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
<div>
|
||||
<div
|
||||
class="c25"
|
||||
spacing="1"
|
||||
>
|
||||
<path
|
||||
d="M16.235 2.824a1.412 1.412 0 010-2.824h6.353C23.368 0 24 .633 24 1.412v6.353a1.412 1.412 0 01-2.823 0V4.82l-8.179 8.178a1.412 1.412 0 01-1.996-1.996l8.178-8.178h-2.945zm4.942 10.588a1.412 1.412 0 012.823 0v9.176c0 .78-.632 1.412-1.412 1.412H1.412C.632 24 0 23.368 0 22.588V1.412C0 .632.632 0 1.412 0h9.176a1.412 1.412 0 010 2.824H2.824v18.353h18.353v-7.765z"
|
||||
fill="#32324D"
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
</a>
|
||||
<label
|
||||
class="c26"
|
||||
for="carouselinput-1"
|
||||
>
|
||||
<div
|
||||
class="c27"
|
||||
>
|
||||
Logo
|
||||
</div>
|
||||
</label>
|
||||
<div
|
||||
class=""
|
||||
id="carouselinput-1"
|
||||
>
|
||||
<div
|
||||
class="c28"
|
||||
>
|
||||
<section
|
||||
aria-label="Logo"
|
||||
aria-roledescription="carousel"
|
||||
class="c29 c30"
|
||||
>
|
||||
<div
|
||||
aria-live="polite"
|
||||
class="c31 c32"
|
||||
width="100%"
|
||||
>
|
||||
<div
|
||||
aria-label="logo slide"
|
||||
aria-roledescription="slide"
|
||||
class="c33 c34 c35"
|
||||
height="124px"
|
||||
role="group"
|
||||
>
|
||||
<img
|
||||
alt="First"
|
||||
class="c36"
|
||||
src="IMAGE_MOCK"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="c37 c34 c38"
|
||||
spacing="1"
|
||||
width="100%"
|
||||
>
|
||||
<span>
|
||||
<button
|
||||
aria-disabled="false"
|
||||
aria-labelledby="tooltip-1"
|
||||
class="c39 c40"
|
||||
tabindex="0"
|
||||
type="button"
|
||||
>
|
||||
<svg
|
||||
fill="none"
|
||||
height="1em"
|
||||
viewBox="0 0 24 24"
|
||||
width="1em"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M24 13.604a.3.3 0 01-.3.3h-9.795V23.7a.3.3 0 01-.3.3h-3.21a.3.3 0 01-.3-.3v-9.795H.3a.3.3 0 01-.3-.3v-3.21a.3.3 0 01.3-.3h9.795V.3a.3.3 0 01.3-.3h3.21a.3.3 0 01.3.3v9.795H23.7a.3.3 0 01.3.3v3.21z"
|
||||
fill="#212134"
|
||||
/>
|
||||
</svg>
|
||||
</button>
|
||||
</span>
|
||||
</div>
|
||||
</section>
|
||||
<div
|
||||
class="c41"
|
||||
>
|
||||
<span>
|
||||
<div
|
||||
aria-labelledby="tooltip-2"
|
||||
class="c34"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="c42"
|
||||
>
|
||||
cat-logo.png
|
||||
</span>
|
||||
</div>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p
|
||||
class="c43"
|
||||
id="carouselinput-1-hint"
|
||||
>
|
||||
Change the admin panel logo (Max dimension: 750*750, Max file size: TBC)
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="c15"
|
||||
>
|
||||
<div
|
||||
class=""
|
||||
>
|
||||
<a
|
||||
class="c18"
|
||||
href="https://strapi.io/pricing-self-hosted"
|
||||
rel="noreferrer noopener"
|
||||
target="_blank"
|
||||
>
|
||||
<span
|
||||
class="c19"
|
||||
>
|
||||
See all pricing plans
|
||||
</span>
|
||||
<span
|
||||
aria-hidden="true"
|
||||
class="c20 c21"
|
||||
>
|
||||
<svg
|
||||
fill="none"
|
||||
height="1em"
|
||||
viewBox="0 0 24 24"
|
||||
width="1em"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M16.235 2.824a1.412 1.412 0 010-2.824h6.353C23.368 0 24 .633 24 1.412v6.353a1.412 1.412 0 01-2.823 0V4.82l-8.179 8.178a1.412 1.412 0 01-1.996-1.996l8.178-8.178h-2.945zm4.942 10.588a1.412 1.412 0 012.823 0v9.176c0 .78-.632 1.412-1.412 1.412H1.412C.632 24 0 23.368 0 22.588V1.412C0 .632.632 0 1.412 0h9.176a1.412 1.412 0 010 2.824H2.824v18.353h18.353v-7.765z"
|
||||
fill="#32324D"
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="c22"
|
||||
>
|
||||
<span
|
||||
class="c16"
|
||||
>
|
||||
node version
|
||||
</span>
|
||||
<p
|
||||
class="c17"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user