-
Notifications
You must be signed in to change notification settings - Fork 823
test: fix more validation issues #3975
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
rjsparks
merged 5 commits into
ietf-tools:main
from
larseggert:fix-more-vaildation-issues
May 18, 2022
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
7dd067a
fix: Avoid numeric IDs on NomCom pages
larseggert 8da6b87
fix: Correctly group last names with lowercase/i18n parts
larseggert 57aa60f
Remove some unneeded CSS
larseggert d7bc9cb
Merge branch 'ietf-tools:main' into fix-more-vaildation-issues
larseggert 7f27871
fix: Remove extra div closing tag
larseggert File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,67 +1,4 @@ | ||
| .baseform { | ||
| font-size: 12px; | ||
| } | ||
|
|
||
| .baseform .fieldset { | ||
| margin: 1em 0px; | ||
| border: none; | ||
| border: 1px solid #8899dd; | ||
| background-color: #edf5ff; | ||
| } | ||
|
|
||
| .baseform .fieldset h2 { | ||
| background-color: #2647a0; | ||
| color: white; | ||
| font-size: 14px; | ||
| padding: 5px 10px; | ||
| margin: 0px; | ||
| } | ||
|
|
||
| .baseform .field { | ||
| padding: 0.5em 10px; | ||
| } | ||
|
|
||
| .baseform .field label { | ||
| display: block; | ||
| width: 150px; | ||
| float: left; | ||
| clear: left; | ||
| } | ||
|
|
||
| .baseform .field .endfield { | ||
| clear: left; | ||
| } | ||
|
|
||
| .baseform .fieldWidget { | ||
| margin-left: 150px; | ||
| } | ||
|
|
||
| .baseform #baseform-fieldname-purpose_text, | ||
| .baseform #baseform-fieldname-deadline_date { | ||
| display: none; | ||
| } | ||
|
|
||
| .baseform select, | ||
| .baseform textarea, | ||
| .baseform input { | ||
| border: 1px solid #cccccc; | ||
| } | ||
|
|
||
| .baseform input { | ||
| font-size: 12px; | ||
| } | ||
|
|
||
| #id_title, | ||
| .baseformedit #id_from_field, | ||
| .baseform #id_organization, | ||
| .baseform #id_to_poc, | ||
| .baseform #id_response_contacts, | ||
| .baseform #id_technical_contact, | ||
| .baseform #id_cc1, | ||
| .attach_titleField input, | ||
| .baseform textarea { | ||
| width: 80%; | ||
| } | ||
| /* TODO: this should use bs5 styling and ideally be integrated into the code */ | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What tooling are you using that shows the removed styling was not used?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I grepped for "baseform" in the repo :-) |
||
|
|
||
| #id_purpose_text { | ||
| height: 100px; | ||
|
|
@@ -71,49 +8,12 @@ | |
| height: 300px; | ||
| } | ||
|
|
||
| .baseform input.disabledAddAttachment { | ||
| border: none; | ||
| padding: none; | ||
| background: none; | ||
| padding: 0px; | ||
| margin: 0px; | ||
| color: black; | ||
| font-weight: bold; | ||
| } | ||
|
|
||
| span.fieldRequired { | ||
| color: red; | ||
| } | ||
|
|
||
| .fieldError { | ||
| background-color: #ffcc66; | ||
| } | ||
|
|
||
| th.sort { | ||
| /*background-image: url(/images/sort-header-clear.png);*/ | ||
| background-repeat: no-repeat; | ||
| background-position: right center; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| th.headerSortUp { | ||
| /*background-image: url(/images/sort-header-up-filled.png);*/ | ||
| } | ||
|
|
||
| th.headerSortDown { | ||
| /*background-image: url(/images/sort-header-filled.png);*/ | ||
| } | ||
|
|
||
| td span.awaiting { | ||
| background-color: #ffcc33; | ||
| border-radius: 3px; | ||
| float: right; | ||
| width: 35px; | ||
| padding: 4px 8px; | ||
| text-align: center; | ||
| font-size: 10px; | ||
| } | ||
|
|
||
| .noActionTaken, .actionTaken { padding: 2px 5px; } | ||
| .actionTaken { border: 1px solid green; background-color: #ccffbb; } | ||
| .noActionTaken { border: 1px solid red; background-color: #ffccbb; } | ||
|
|
@@ -122,14 +22,6 @@ input[id$='DELETE'] { | |
| display: none; | ||
| } | ||
|
|
||
| /*#id_from_groups + span { | ||
| display: none; | ||
| } | ||
|
|
||
| #id_to_groups + span { | ||
| display: none; | ||
| } | ||
| */ | ||
| .liaison-group-col { | ||
| min-width: 10em; | ||
| } | ||
| } | ||
This file contains hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We'll go with this for now, but consider dropping the hyphen since nomcom2021 is a group.