migrate: sub task toggle btn

This commit is contained in:
Johannes Millan 2024-06-17 19:36:07 +02:00
parent 354e36eebd
commit fcc6865340
4 changed files with 7 additions and 8 deletions

View file

@ -828,14 +828,15 @@ $this-play-size: 22px;
z-index: $z-toggle-sub-task-btn !important;
min-width: 0;
min-height: 0;
width: 32px;
height: 32px;
width: 32px !important;
height: 32px !important;
margin-top: -1px !important;
transform-origin: left top;
transition-property: all;
box-shadow: $whiteframe-shadow-1dp;
:host-context(.isNoTouchOnly) & {
opacity: 0;
//opacity: 0;
}
:host:hover & {
@ -844,7 +845,6 @@ $this-play-size: 22px;
mat-icon {
transition: $transition-standard;
margin-top: -4px;
opacity: $task-icon-default-opacity;
&.isHideDoneTasks {

View file

@ -105,8 +105,6 @@ export const selectTrackableTasksForActiveContext = createSelector(
export const selectStartableTasksForActiveContext = createSelector(
selectTrackableTasksForActiveContext,
(trackableTasks): Task[] => {
console.log(trackableTasks);
return trackableTasks.filter((task) => !task.isDone);
},
);

View file

@ -48,14 +48,14 @@ export const registerTranslateExtension = (
validationMessages: [
{ name: 'required', message: () => translate.stream(T.V.E_REQUIRED) },
{
name: 'minlength',
name: 'minLength',
message: (err, field: FormlyFieldConfig) =>
translate.stream(T.V.E_MIN_LENGTH, {
val: field.templateOptions ? field.templateOptions.minLength : null,
}),
},
{
name: 'maxlength',
name: 'maxLength',
message: (err, field: FormlyFieldConfig) =>
translate.stream(T.V.E_MAX_LENGTH, {
val: field.templateOptions ? field.templateOptions.maxLength : null,

View file

@ -1,5 +1,6 @@
:root {
--mdc-icon-button-state-layer-size: 40px;
//--mdc-fab-small-container-elevation-shadow: $whiteframe-shadow-4dp;
}
// DIALOGS