* Move core implementations to a standalone crate * Set up integration test skeleton in `core` * Demonstrate mock testing with query * Move Rocket api code to a standalone crate * Add mock execution * Add MyDataMyConsent in COMMUNITY.md (#889) * Add MyDataMyConsent in COMMUNITY.md * Update MyDataMyConsent description in COMMUNITY.md * Update COMMUNITY.md Chronological order * [cli] bump sea-schema to 0.9.3 (SeaQL/sea-orm#876) * Update CHNAGELOG PR links * 0.9.1 CHANGELOG * Auto discover and run all issues & examples CI (#903) * Auto discover and run all [issues] CI * Auto discover and run all examples CI * Fixup * Testing * Test [issues] * Compile prepare_mock_db() conditionally based on "mock" feature * Update workflow job to run mock test if `core` folder exists * Update Actix3 example * Fix merge conflict human error * Update usize used in paginate to u64 (PR#789) * Update sea-orm version in the Rocket example to 0.10.0 * Fix GitHub workflow to run mock test for core crates * Increase the robustness of core crate check by verifying that the `core` folder is a crate * Update Actix(4) example * Update Axum example * Update GraphQL example * Update Jsonrpsee example * Update Poem example * Update Tonic example * Cargo fmt * Update Salvo example * Update path of core/Cargo.toml in README.md * Add mock test instruction in README.md * Refactoring * Fix Rocket examples Co-authored-by: Amit Goyani <63532626+itsAmitGoyani@users.noreply.github.com> Co-authored-by: Billy Chan <ccw.billy.123@gmail.com>
74 lines
1.0 KiB
CSS
74 lines
1.0 KiB
CSS
.field-error {
|
|
border: 1px solid #ff0000 !important;
|
|
}
|
|
|
|
.field-error-flash {
|
|
color: #ff0000;
|
|
display: block;
|
|
margin: -10px 0 10px 0;
|
|
}
|
|
|
|
.field-success {
|
|
border: 1px solid #5ab953 !important;
|
|
}
|
|
|
|
.field-success-flash {
|
|
color: #5ab953;
|
|
display: block;
|
|
margin: -10px 0 10px 0;
|
|
}
|
|
|
|
span.completed {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
form.inline {
|
|
display: inline;
|
|
}
|
|
|
|
form.link,
|
|
button.link {
|
|
display: inline;
|
|
color: #1eaedb;
|
|
border: none;
|
|
outline: none;
|
|
background: none;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
margin: 0 0 0 0;
|
|
height: inherit;
|
|
text-decoration: underline;
|
|
font-size: inherit;
|
|
text-transform: none;
|
|
font-weight: normal;
|
|
line-height: inherit;
|
|
letter-spacing: inherit;
|
|
}
|
|
|
|
form.link:hover,
|
|
button.link:hover {
|
|
color: #0fa0ce;
|
|
}
|
|
|
|
button.small {
|
|
height: 20px;
|
|
padding: 0 10px;
|
|
font-size: 10px;
|
|
line-height: 20px;
|
|
margin: 0 2.5px;
|
|
}
|
|
|
|
.post:hover {
|
|
background-color: #bce2ee;
|
|
}
|
|
|
|
.post td {
|
|
padding: 5px;
|
|
width: 150px;
|
|
}
|
|
|
|
#delete-button {
|
|
color: red;
|
|
border-color: red;
|
|
}
|