Manual stylelint fixes

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-07-31 21:35:58 +02:00
parent d6b03cd69c
commit a5a86c156d
5 changed files with 19 additions and 56 deletions

View File

@@ -291,6 +291,8 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.controls { .controls {
display: flex;
.board-title { .board-title {
display: flex; display: flex;
align-items: center; align-items: center;
@@ -318,20 +320,12 @@ export default {
} }
#app-navigation-toggle-custom { #app-navigation-toggle-custom {
position: static;
width: 44px; width: 44px;
height: 44px; height: 44px;
cursor: pointer; cursor: pointer;
opacity: 1; opacity: 1;
display: inline-block !important; display: inline-block !important;
position: fixed;
}
.controls {
display: flex;
}
#app-navigation-toggle-custom {
position: static;
} }
.board-actions { .board-actions {

View File

@@ -1,35 +0,0 @@
<!--
- @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>
-
- @author Julius Härtl <jus@bitgrid.net>
-
- @license GNU AGPL version 3 or any later version
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-->
<template>
<div />
</template>
<script>
export default {
name: 'List',
}
</script>
<style scoped>
</style>

View File

@@ -89,6 +89,12 @@ export default {
li { li {
display: flex; display: flex;
height: 44px; height: 44px;
&:hover, &:active, &.focus {
button {
opacity: 1;
}
}
} }
span { span {
@@ -119,12 +125,5 @@ export default {
background-color: transparent; background-color: transparent;
opacity: 0.5; opacity: 0.5;
} }
li {
&:hover, &:active, &.focus {
button {
opacity: 1;
}
}
}
} }
</style> </style>

View File

@@ -154,6 +154,9 @@ export default {
width: 36px; width: 36px;
height: 36px; height: 36px;
box-sizing: content-box !important; box-sizing: content-box !important;
margin-right: -12px;
transition: margin-right 0.2s ease-in-out;
&.icon-more { &.icon-more {
width: 32px; width: 32px;
height: 32px; height: 32px;
@@ -161,10 +164,6 @@ export default {
background-color: var(--color-background-dark) !important; background-color: var(--color-background-dark) !important;
cursor: pointer; cursor: pointer;
} }
& {
margin-right: -12px;
transition: margin-right 0.2s ease-in-out;
}
} }
&:hover div:nth-child(n+2) /deep/ .avatardiv { &:hover div:nth-child(n+2) /deep/ .avatardiv {
margin-right: 1px; margin-right: 1px;

View File

@@ -20,7 +20,13 @@ module.exports = {
'selector-type-case': null, 'selector-type-case': null,
'selector-list-comma-newline-after': null, 'selector-list-comma-newline-after': null,
'no-descending-specificity': null, 'no-descending-specificity': null,
'string-quotes': 'single' 'string-quotes': 'single',
'selector-pseudo-element-no-unknown': [
true,
{
ignorePseudoElements: ['v-deep']
}
]
}, },
plugins: ['stylelint-scss'] plugins: ['stylelint-scss']
} }