mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-25 08:53:50 +00:00
migrate: sub task toggle btn
This commit is contained in:
parent
354e36eebd
commit
fcc6865340
4 changed files with 7 additions and 8 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -105,8 +105,6 @@ export const selectTrackableTasksForActiveContext = createSelector(
|
|||
export const selectStartableTasksForActiveContext = createSelector(
|
||||
selectTrackableTasksForActiveContext,
|
||||
(trackableTasks): Task[] => {
|
||||
console.log(trackableTasks);
|
||||
|
||||
return trackableTasks.filter((task) => !task.isDone);
|
||||
},
|
||||
);
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
:root {
|
||||
--mdc-icon-button-state-layer-size: 40px;
|
||||
//--mdc-fab-small-container-elevation-shadow: $whiteframe-shadow-4dp;
|
||||
}
|
||||
|
||||
// DIALOGS
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue