-
Notifications
You must be signed in to change notification settings - Fork 655
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dependabot/npm_and_yarn/web/elliptic-6.6.0
- Loading branch information
Showing
12 changed files
with
1,310 additions
and
1,436 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
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 |
---|---|---|
@@ -1,44 +1,118 @@ | ||
@import "../../node_modules/bootstrap/dist/css/bootstrap.css"; | ||
body { | ||
font-family: system-ui; | ||
height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
margin: 0; | ||
font-size: 0.9em; | ||
background-color:var(--background-color); | ||
color: var(--color); | ||
|
||
.card { | ||
margin: 0.25rem !important; | ||
--color: #222; | ||
--background-color: #fff; | ||
--border-color: #bac1cd; | ||
--primary-color: #326690; | ||
} | ||
|
||
.content { | ||
min-height: 0; | ||
display: flex; | ||
flex-direction: column; | ||
flex-grow: 1; | ||
padding: 8px; | ||
} | ||
|
||
#status-text { | ||
font-size: medium; | ||
align-self: center; | ||
.footer { | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
border-top: 1px solid var(--border-color); | ||
padding: 8px; | ||
} | ||
|
||
#server_log_label { | ||
.card { | ||
margin: 4px 0px; | ||
} | ||
|
||
.card .card-header { | ||
padding: 8px 4px; | ||
font-weight: 500; | ||
} | ||
|
||
.card .card-body { | ||
border: 1px solid var(--border-color); | ||
border-radius: 4px; | ||
padding: 12px; | ||
} | ||
|
||
.form-inline { | ||
display: flex; | ||
padding: 16px 0px; | ||
} | ||
|
||
.form-group { | ||
display: flex; | ||
align-items: center; | ||
gap: 4px; | ||
} | ||
|
||
.form-check-input { | ||
height: 16px; | ||
width: 16px; | ||
accent-color: var(--primary-color); | ||
} | ||
.form-check-input:focus { | ||
outline-color: var(--primary-color); | ||
} | ||
|
||
.form-input { | ||
padding: 4px 6px; | ||
background-color: var(--background-color); | ||
border-style: none; | ||
border: 1px solid var(--border-color); | ||
color: var(--color); | ||
border-radius: 4px; | ||
} | ||
.form-input:disabled { | ||
opacity: 0.7; | ||
} | ||
.form-input:focus { | ||
outline-color: var(--primary-color); | ||
} | ||
|
||
.mt-4 { | ||
margin-top: 16px; | ||
} | ||
.mr-2 { | ||
margin-right: 8px; | ||
} | ||
.mr-3 { | ||
margin-right: 12px; | ||
} | ||
|
||
.btn { | ||
padding: 6px 12px; | ||
border-radius: 4px; | ||
box-shadow: none; | ||
border-style: none; | ||
cursor: pointer; | ||
} | ||
|
||
.btn-primary { | ||
color: #fff; | ||
background-color: #326690; | ||
border-color: #326690; | ||
} | ||
.btn-primary:hover { | ||
color: #fff; | ||
background-color: #285274; | ||
border-color: #254b6a; | ||
} | ||
.btn-primary:focus, .btn-primary.focus { | ||
color: #fff; | ||
background-color: #285274; | ||
border-color: #254b6a; | ||
box-shadow: 0 0 0 0 rgba(81, 125, 161, 0.5); | ||
} | ||
.btn-primary.disabled, .btn-primary:disabled { | ||
color: #fff; | ||
background-color: #326690; | ||
border-color: #326690; | ||
} | ||
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle { | ||
color: #fff; | ||
background-color: #254b6a; | ||
border-color: #224461; | ||
} | ||
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus { | ||
box-shadow: 0 0 0 0 rgba(81, 125, 161, 0.5); | ||
color: #fff; | ||
background-color: var(--primary-color); | ||
border-color: var(--primary-color); | ||
} | ||
.btn-primary:disabled { | ||
opacity: 0.75; | ||
cursor: unset; | ||
} | ||
|
||
@media (prefers-color-scheme: dark) { | ||
body { | ||
--color: #d4d4d4; | ||
--background-color: #212121; | ||
--border-color: #4a4a4a; | ||
--primary-color: #234d6e; | ||
} | ||
} |
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
Oops, something went wrong.