Merge branch 'master' into newFilterIcon

This commit is contained in:
Jakob
2020-05-14 09:57:04 +02:00
committed by GitHub
4 changed files with 10 additions and 1 deletions

View File

@@ -23,7 +23,7 @@
"classmap-authoritative": true
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;",
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix"
}

View File

@@ -101,6 +101,7 @@ OC.L10N.register(
"Do you want to overwrite it?" : "Vil du overskrive?",
"Archived cards" : "Arkiver tavle",
"Filter by tag" : "Filtrer på knagg",
"Overdue" : "Utløpt",
"Show archived cards" : "Vis arkiverkte kort",
"Toggle compact mode" : "Endre kompakt modus",
"Details" : "Detaljer",
@@ -114,6 +115,7 @@ OC.L10N.register(
"Can share" : "Kan dele",
"Delete" : "Slett",
"Add a new stack" : "Legg til en ny stabel",
"Delete list" : "Slett listen",
"Add card" : "Legg til kort",
"Edit" : "Rediger",
"Due date" : "Forfallsdato",

View File

@@ -99,6 +99,7 @@
"Do you want to overwrite it?" : "Vil du overskrive?",
"Archived cards" : "Arkiver tavle",
"Filter by tag" : "Filtrer på knagg",
"Overdue" : "Utløpt",
"Show archived cards" : "Vis arkiverkte kort",
"Toggle compact mode" : "Endre kompakt modus",
"Details" : "Detaljer",
@@ -112,6 +113,7 @@
"Can share" : "Kan dele",
"Delete" : "Slett",
"Add a new stack" : "Legg til en ny stabel",
"Delete list" : "Slett listen",
"Add card" : "Legg til kort",
"Edit" : "Rediger",
"Due date" : "Forfallsdato",

View File

@@ -83,6 +83,11 @@ export default {
display: flex;
}
.board-list-row:not(.board-list-header-row):hover {
transition: background-color 0.3s ease;
background-color: var(--color-background-dark);
}
.board-list-header-row {
color: var(--color-text-lighter);
}