Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
### Maintenance
- Use the pre-built database images for MySQL and PostgreSQL tests
[#1204](https://github.com/nextcloud/cookbook/pull/1204) @christianlupus
- Update stylelint-config-idiomatic and fix code styling
[#1224](https://github.com/nextcloud/cookbook/pull/1224) @christianlupus

### Removed
- Remove the deprecated endpoints from version 0.9.15
Expand Down
155 changes: 32 additions & 123 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"prettier": "^2.2.1",
"prettier-package-json": "^2.6.3",
"stylelint": "^14.5.3",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-idiomatic-order": "^9.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-scss": "^4.1.0",
"svg-inline-loader": "^0.8.2",
Expand Down
2 changes: 1 addition & 1 deletion src/components/EditInputField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,9 @@ See: https://github.com/nextcloud/cookbook/issues/908
min-height: revert;
padding: revert;
border: revert;
border-radius: revert;
margin: revert;
background-color: revert;
border-radius: revert;
color: revert;
font-size: revert;
outline: revert;
Expand Down
4 changes: 2 additions & 2 deletions src/components/EditInputGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -466,10 +466,10 @@ li .controls > button {
width: 34px;
height: 34px;
padding: 0;
border-radius: 0;
border-right-color: transparent;
border-left-color: transparent;
margin: 0;
border-radius: 0;
}

li .controls > button:last-child {
Expand Down Expand Up @@ -510,10 +510,10 @@ li .controls > button:last-child:not(:hover):not(:focus) {
width: 36px;
height: 36px;
border: 1px solid var(--color-border-dark);
border-radius: 50%;
background-color: var(--color-background-dark);
background-position: center;
background-repeat: no-repeat;
border-radius: 50%;
line-height: 36px;
outline: none;
text-align: center;
Expand Down
2 changes: 1 addition & 1 deletion src/components/RecipeCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ export default {
overflow: hidden;
width: 105px;
height: 105px;
background-color: #bebdbd;
border-radius: 3px 0 0 3px;
background-color: #bebdbd;
float: left;
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/RecipeInstruction.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ li::before {
width: 36px;
height: 36px;
border: 1px solid var(--color-border-dark);
border-radius: 50%;
background-color: var(--color-background-dark);
background-position: center;
background-repeat: no-repeat;
border-radius: 50%;
content: counter(instruction-counter);
line-height: 36px;
outline: none;
Expand Down
2 changes: 1 addition & 1 deletion src/components/RecipeKeyword.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ li {
display: inline-block;
padding: 0 0.5em;
border: 1px solid var(--color-border-dark);
border-radius: var(--border-radius-pill);
margin-right: 0.3em;
margin-bottom: 0.3em;
border-radius: var(--border-radius-pill);

/* prevent text selection - doesn't look good */
user-select: none; /* Standard */
Expand Down
2 changes: 1 addition & 1 deletion src/components/RecipeTimer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ export default {
position: relative;
flex-grow: 1;
border: 1px solid var(--color-border-dark);
margin: 1rem 2rem;
border-radius: 3px;
margin: 1rem 2rem;
font-size: 1.2rem;
text-align: center;
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/RecipeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -703,8 +703,8 @@ export default {
position: relative;
flex-grow: 1;
border: 1px solid var(--color-border-dark);
margin: 1rem 2rem;
border-radius: 3px;
margin: 1rem 2rem;
font-size: 1.2rem;
text-align: center;
}
Expand Down Expand Up @@ -836,11 +836,11 @@ main {
width: 36px;
height: 36px;
border: 1px solid var(--color-border-dark);
border-radius: 50%;
margin: -6px 1rem 1rem 0;
background-color: var(--color-background-dark);
background-position: center;
background-repeat: no-repeat;
border-radius: 50%;
content: counter(instruction-counter);
float: left;
line-height: 36px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/SuggestionsPopup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -383,8 +383,8 @@ export default {
z-index: 2;
overflow: hidden;
border: 1px solid var(--color-background-darker);
background-color: var(--color-main-background);
border-radius: 5px;
background-color: var(--color-main-background);
}

.scroller {
Expand Down