Skip to content

Commit

Permalink
ran prettier v3 on these files to resolve warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
megahirt committed Sep 22, 2023
1 parent 2533fba commit 213f218
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ jobs:
name: Run prettier check
run: |
npx prettier -v
npx prettier --list-different --check .
npx prettier --check .
13 changes: 10 additions & 3 deletions src/angular-app/languageforge/lexicon/editor/_editor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,9 @@ dc-entry .card {
}
.right-panel-list {
width: 0;
transition: width 0.5s ease-in-out, margin-left 0.5s ease-in-out;
transition:
width 0.5s ease-in-out,
margin-left 0.5s ease-in-out;
margin-left: 0;
position: relative;
.right-panel {
Expand All @@ -479,7 +481,10 @@ dc-entry .card {
top: 0;
width: 100%;
&.panel-closing {
transition: width 0.5s ease-in-out 0.5s, margin-left 0.5s ease-in-out 0.5s, opacity 0.5s;
transition:
width 0.5s ease-in-out 0.5s,
margin-left 0.5s ease-in-out 0.5s,
opacity 0.5s;
overflow: visible !important;
height: auto !important;
}
Expand Down Expand Up @@ -507,7 +512,9 @@ dc-entry .card {
}
&.panel-closing {
.right-panel-list {
transition: width 0.5s ease-in-out 0.5s, margin-left 0.5s ease-in-out 0.5s;
transition:
width 0.5s ease-in-out 0.5s,
margin-left 0.5s ease-in-out 0.5s;
overflow: visible !important;
height: auto !important;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ form.dc-multiparagraph textarea {
form.dc-multiparagraph textarea:focus {
border-color: rgba(82, 168, 236, 0.8);
outline: 0;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
box-shadow:
inset 0 1px 1px rgba(0, 0, 0, 0.075),
0 0 8px rgba(82, 168, 236, 0.6);
}

/* input prepend sized to input and textarea */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ form.dc-multitext .uneditable-input:hover {
form.dc-multitext textarea:focus {
border-color: rgba(82, 168, 236, 0.8);
outline: 0;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
box-shadow:
inset 0 1px 1px rgba(0, 0, 0, 0.075),
0 0 8px rgba(82, 168, 236, 0.6);
}

form.dc-multitext .wsid {
Expand Down

0 comments on commit 213f218

Please sign in to comment.