-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(clearinghouse self-description): add admin UI to retrigger docum…
…ent creation (#1141)
- Loading branch information
1 parent
774827d
commit 2a3ae9b
Showing
12 changed files
with
641 additions
and
14 deletions.
There are no files selected for viewing
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
107 changes: 107 additions & 0 deletions
107
src/components/pages/AdminClearingHouseSD/AdminClearingHouseSD.scss
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,107 @@ | ||
/******************************************************************************** | ||
* Copyright (c) 2024 Contributors to the Eclipse Foundation | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Apache License, Version 2.0 which is available at | ||
* https://www.apache.org/licenses/LICENSE-2.0. | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations | ||
* under the License. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
********************************************************************************/ | ||
|
||
.admin-container { | ||
padding: 50px 15px; | ||
|
||
.loading-progress { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 50vh; | ||
} | ||
|
||
.heading { | ||
text-align: center; | ||
} | ||
|
||
.description { | ||
text-align: center; | ||
margin: 34px auto 64px; | ||
width: 70%; | ||
} | ||
|
||
.company-list-container { | ||
max-height: 350px; | ||
overflow-y: auto; | ||
scrollbar-width: none; | ||
-ms-overflow-style: none; | ||
} | ||
|
||
.section { | ||
margin-bottom: 20px; | ||
|
||
ul { | ||
margin-top: 24px; | ||
list-style-type: none; | ||
padding-left: 0; | ||
|
||
li { | ||
margin-bottom: 5px; | ||
} | ||
} | ||
|
||
.connectors-list { | ||
gap: 10px; | ||
margin-top: 24px; | ||
max-height: 350px; | ||
overflow-y: auto; | ||
scrollbar-width: none; | ||
-ms-overflow-style: none; | ||
|
||
.connector { | ||
display: flex; | ||
gap: 80px; | ||
padding: 5px; | ||
border-radius: 5px; | ||
} | ||
} | ||
|
||
.btn-container { | ||
display: flex; | ||
margin-top: 20px; | ||
align-items: flex-end; | ||
justify-content: flex-end; | ||
} | ||
} | ||
|
||
.compliance-status { | ||
display: flex; | ||
align-items: center; | ||
margin-bottom: 40px; | ||
margin-top: 50px; | ||
|
||
label { | ||
margin-right: 10px; | ||
font-weight: bold; | ||
} | ||
|
||
.switch-container { | ||
display: flex; | ||
align-items: center; | ||
margin-left: 5px; | ||
} | ||
} | ||
|
||
.no-data-msg { | ||
text-align: center; | ||
margin-top: 24px; | ||
margin-bottom: 24px; | ||
} | ||
} |
Oops, something went wrong.