-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enabled multiple qualifications for a woker's single unit
- Loading branch information
Showing
22 changed files
with
588 additions
and
147 deletions.
There are no files selected for viewing
Binary file modified
BIN
+110 KB
(470%)
...web/docs/guides/how_to_use/review_app/screenshots/submission_approve_dialog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 0 additions & 28 deletions
28
mephisto/review_app/client/src/pages/TaskPage/ModalForm/ModalForm.css
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
mephisto/review_app/client/src/pages/TaskPage/ReviewModalForm/ReviewModalForm.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* Copyright (c) Meta Platforms and its affiliates. | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
.review-form > * input, | ||
.review-form > * select, | ||
.review-form > * textarea { | ||
border: 1px solid black; | ||
} | ||
|
||
.review-form .second-line, | ||
.review-form .third-line, | ||
.review-form .assign-quallification, | ||
.review-form .explanation, | ||
.review-form .selected-qualification, | ||
.review-form .separator, | ||
.review-form .new-qualification { | ||
margin-top: 10px; | ||
box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
-webkit-box-sizing: border-box; | ||
padding-left: 25px; | ||
} | ||
|
||
.review-form .explanation { | ||
margin-top: 5px; | ||
font-size: 12px; | ||
font-style: italic; | ||
opacity: 0.5; | ||
} | ||
|
||
.review-form .selected-qualification { | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.review-form .selected-qualification .inline-column .selected-value { | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.review-form .separator { | ||
margin-top: 0; | ||
} | ||
|
||
.review-form .new-qualification { | ||
margin-top: 0; | ||
} | ||
|
||
.review-form .row .inline-column { | ||
display: flex; | ||
flex-direction: row; | ||
gap: 4px; | ||
justify-content: space-between; | ||
} | ||
|
||
.review-form .row .inline-column .select-qualification, | ||
.review-form .row .inline-column .remove-qualification { | ||
display: flex; | ||
padding: var(--bs-btn-padding-y) var(--bs-btn-padding-y); | ||
font-size: 20px; | ||
} | ||
|
||
.new-qualification-name-button { | ||
width: 100%; | ||
} |
Oops, something went wrong.