Skip to content

Commit

Permalink
Manual stylelint fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <jus@bitgrid.net>
  • Loading branch information
juliushaertl committed Jul 31, 2020
1 parent d6b03cd commit a5a86c1
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 56 deletions.
12 changes: 3 additions & 9 deletions src/components/Controls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,8 @@ export default {

<style lang="scss" scoped>
.controls {
display: flex;
.board-title {
display: flex;
align-items: center;
Expand Down Expand Up @@ -318,20 +320,12 @@ export default {
}
#app-navigation-toggle-custom {
position: static;
width: 44px;
height: 44px;
cursor: pointer;
opacity: 1;
display: inline-block !important;
position: fixed;
}
.controls {
display: flex;
}
#app-navigation-toggle-custom {
position: static;
}
.board-actions {
Expand Down
35 changes: 0 additions & 35 deletions src/components/List.vue

This file was deleted.

13 changes: 6 additions & 7 deletions src/components/board/DeletedTabSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ export default {
li {
display: flex;
height: 44px;
&:hover, &:active, &.focus {
button {
opacity: 1;
}
}
}
span {
Expand Down Expand Up @@ -119,12 +125,5 @@ export default {
background-color: transparent;
opacity: 0.5;
}
li {
&:hover, &:active, &.focus {
button {
opacity: 1;
}
}
}
}
</style>
7 changes: 3 additions & 4 deletions src/components/cards/AvatarList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -154,17 +154,16 @@ export default {
width: 36px;
height: 36px;
box-sizing: content-box !important;
margin-right: -12px;
transition: margin-right 0.2s ease-in-out;
&.icon-more {
width: 32px;
height: 32px;
opacity: .5;
background-color: var(--color-background-dark) !important;
cursor: pointer;
}
& {
margin-right: -12px;
transition: margin-right 0.2s ease-in-out;
}
}
&:hover div:nth-child(n+2) /deep/ .avatardiv {
margin-right: 1px;
Expand Down
8 changes: 7 additions & 1 deletion stylelint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ module.exports = {
'selector-type-case': null,
'selector-list-comma-newline-after': null,
'no-descending-specificity': null,
'string-quotes': 'single'
'string-quotes': 'single',
'selector-pseudo-element-no-unknown': [
true,
{
ignorePseudoElements: ['v-deep']
}
]
},
plugins: ['stylelint-scss']
}

0 comments on commit a5a86c1

Please sign in to comment.