Workflow updating files of ribc
This commit is contained in:
parent
257a5493ec
commit
1b17d4756d
@ -52,6 +52,7 @@ body[data-theme=dark] {
|
|||||||
--danger-color: rgb(255, 106, 106);
|
--danger-color: rgb(255, 106, 106);
|
||||||
--green: #00e676;
|
--green: #00e676;
|
||||||
--yellow: rgb(255, 213, 5);
|
--yellow: rgb(255, 213, 5);
|
||||||
|
color-scheme: dark;
|
||||||
--dark-red: #ff5e7e;
|
--dark-red: #ff5e7e;
|
||||||
--red: #ff6098;
|
--red: #ff6098;
|
||||||
--kinda-pink: #c44ae6;
|
--kinda-pink: #c44ae6;
|
||||||
@ -68,9 +69,6 @@ body[data-theme=dark] {
|
|||||||
--orange: #ffbe68;
|
--orange: #ffbe68;
|
||||||
--redish-orange: #ff8560;
|
--redish-orange: #ff8560;
|
||||||
}
|
}
|
||||||
body[data-theme=dark] ::-webkit-calendar-picker-indicator {
|
|
||||||
filter: invert(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
@ -258,7 +256,7 @@ sm-textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
sm-spinner {
|
sm-spinner {
|
||||||
--size: 1.5rem;
|
--size: 1.2rem;
|
||||||
--stroke-width: 0.1rem;
|
--stroke-width: 0.1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -434,6 +432,10 @@ ul {
|
|||||||
justify-items: start;
|
justify-items: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.justify-items-center {
|
||||||
|
justify-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
.justify-content-start {
|
.justify-content-start {
|
||||||
justify-content: start;
|
justify-content: start;
|
||||||
}
|
}
|
||||||
@ -550,6 +552,10 @@ ul {
|
|||||||
margin-inline: 1.5rem;
|
margin-inline: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.margin-auto {
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.hidden {
|
.hidden {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
@ -1129,6 +1135,7 @@ ul {
|
|||||||
grid-template-columns: minmax(0, 1fr);
|
grid-template-columns: minmax(0, 1fr);
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
|
align-content: flex-start;
|
||||||
padding: 0 1rem 1rem 1rem;
|
padding: 0 1rem 1rem 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2132,6 +2139,70 @@ input[type=date]:focus {
|
|||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#certificates_container {
|
||||||
|
padding: 0 1rem;
|
||||||
|
overflow-y: auto;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#certificates_list {
|
||||||
|
display: grid;
|
||||||
|
}
|
||||||
|
#certificates_list .intern-card {
|
||||||
|
background-color: rgba(var(--text-color), 0.03);
|
||||||
|
}
|
||||||
|
#certificates_list .intern-card span:last-of-type {
|
||||||
|
margin-left: auto;
|
||||||
|
text-align: end;
|
||||||
|
}
|
||||||
|
|
||||||
|
#certificates_view {
|
||||||
|
align-self: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.certificate-card {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.certificate-card:not(:last-of-type) {
|
||||||
|
padding-bottom: 1rem;
|
||||||
|
}
|
||||||
|
.certificate-card:not(:last-of-type)::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
left: 3.5rem;
|
||||||
|
right: 0;
|
||||||
|
height: 1px;
|
||||||
|
background-color: rgba(var(--text-color), 0.2);
|
||||||
|
}
|
||||||
|
.certificate-card > .icon {
|
||||||
|
height: 3rem;
|
||||||
|
width: 3rem;
|
||||||
|
padding: 0.8rem;
|
||||||
|
background-color: rgba(var(--text-color), 0.06);
|
||||||
|
border-radius: 5rem;
|
||||||
|
fill: var(--accent-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
#issue_certificate_popup {
|
||||||
|
--min-height: 90vh;
|
||||||
|
}
|
||||||
|
#issue_certificate_popup #issue_certificate_popup__content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
#issue_certificate_popup sm-form {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
#issue_certificate_popup sm-form::part(form) {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
#issue_certificate_popup sm-form .multi-state-button {
|
||||||
|
margin-top: auto;
|
||||||
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 640px) {
|
@media only screen and (max-width: 640px) {
|
||||||
.list-container {
|
.list-container {
|
||||||
padding-bottom: 5rem;
|
padding-bottom: 5rem;
|
||||||
@ -2362,6 +2433,9 @@ input[type=date]:focus {
|
|||||||
align-self: flex-start;
|
align-self: flex-start;
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
}
|
}
|
||||||
|
#issue_certificate_popup {
|
||||||
|
--width: 32rem;
|
||||||
|
}
|
||||||
#profile_popup {
|
#profile_popup {
|
||||||
--width: 32rem;
|
--width: 32rem;
|
||||||
}
|
}
|
||||||
|
|||||||
2
ribc/css/main.min.css
vendored
2
ribc/css/main.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
443
ribc/index.html
443
ribc/index.html
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
ribc/scripts/components.min.js
vendored
Normal file
1
ribc/scripts/components.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
|||||||
(function (EXPORTS) { //floBlockchainAPI v3.1.2
|
(function (EXPORTS) { //floBlockchainAPI v3.1.3
|
||||||
/* FLO Blockchain Operator to send/receive data from blockchain using API calls via FLO Blockbook*/
|
/* FLO Blockchain Operator to send/receive data from blockchain using API calls via FLO Blockbook*/
|
||||||
'use strict';
|
'use strict';
|
||||||
const floBlockchainAPI = EXPORTS;
|
const floBlockchainAPI = EXPORTS;
|
||||||
@ -32,8 +32,8 @@
|
|||||||
checkIfTor().then(result => {
|
checkIfTor().then(result => {
|
||||||
isTor = result
|
isTor = result
|
||||||
if (isTor) {
|
if (isTor) {
|
||||||
DEFAULT.apiURL.FLO.push('http://vl7ni6byqx7rbub5hypxtod5dbfeuhoj5r5exuyl44pspqh2gasjj4qd.onion:9166/')
|
DEFAULT.apiURL.FLO.push('http://kvrddx6heo47rbbt77etxg6litckacbgos3nv5z7vc23ol2kjjeq72id.onion/')
|
||||||
DEFAULT.apiURL.FLO_TEST.push('http://omwkzk6bd6zuragdqsrhdyzgxzre7yx4vzrou4vzftintzc2dmagp6qd.onion:15017/')
|
// DEFAULT.apiURL.FLO_TEST.push('http://omwkzk6bd6zuragdqsrhdyzgxzre7yx4vzrou4vzftintzc2dmagp6qd.onion:15017/')
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
2
ribc/scripts/floBlockchainAPI.min.js
vendored
2
ribc/scripts/floBlockchainAPI.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
ribc/scripts/floTokenAPI.min.js
vendored
Normal file
1
ribc/scripts/floTokenAPI.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user