1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00

Remove unrelated CSS changes from PR

This commit is contained in:
symonbaikov 2025-06-07 13:16:16 +03:00
parent e04be9b10e
commit b037ca156c
4 changed files with 14 additions and 32 deletions

View file

@ -89,19 +89,15 @@ const EditStep = React.memo(({ labelId, onBack }) => {
})}
</Popup.Header>
<Popup.Content>
<div className={styles.content}>
<Form onSubmit={handleSubmit}>
<Editor data={data} onFieldChange={handleFieldChange} />
<div className={styles.actions}>
<Button positive content={t('action.save')} className={styles.submitButton} />
<Button
content={t('action.delete')}
className={styles.deleteButton}
onClick={handleDeleteClick}
/>
</div>
</Form>
</div>
<Form onSubmit={handleSubmit}>
<Editor data={data} onFieldChange={handleFieldChange} />
<Button positive content={t('action.save')} className={styles.submitButton} />
</Form>
<Button
content={t('action.delete')}
className={styles.deleteButton}
onClick={handleDeleteClick}
/>
</Popup.Content>
</>
);

View file

@ -5,14 +5,13 @@
:global(#app) {
.deleteButton {
bottom: 12px;
box-shadow: 0 1px 0 #cbcccc;
position: absolute;
right: 9px;
}
.actions {
display: flex;
justify-content: space-between;
align-items: center;
.submitButton {
margin-top: 12px;
gap: 12px;
}
}

View file

@ -3,7 +3,7 @@
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
*/
.closeButton {
.closeButton {
background: transparent !important;
box-shadow: none !important;
margin: 0 !important;
@ -16,8 +16,6 @@
}
.wrapper {
display: flex;
flex-direction: column;
border-radius: 3px !important;
border-width: 0 !important;
box-shadow: 0 8px 16px -4px rgba(9, 45, 66, 0.25),
@ -26,13 +24,4 @@
max-height: calc(100% - 70px);
padding: 0 12px 12px !important;
width: 304px;
overflow: auto;
}
@media (max-width: 900px) {
.wrapper {
width: 95vw;
max-width: 100vw;
max-height: 90vh;
}
}

View file

@ -227,8 +227,6 @@ module.exports.routes = {
skipAssets: false,
},
'GET /api/cards/assigned': 'cards/assigned',
'GET /*': {
view: 'index',
skipAssets: true,