mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2026-04-23 04:02:31 +00:00
Compare commits
4 Commits
java-crede
...
add-feedba
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
caf45e5250 | ||
|
|
8302eaf162 | ||
|
|
bc8623ea97 | ||
|
|
a082ea0842 |
@@ -273,6 +273,8 @@ ul.nav.navbar-nav {
|
|||||||
--language-picker-background-color: var(--color-gray-8);
|
--language-picker-background-color: var(--color-gray-8);
|
||||||
--select-list-bg-color: var(--color-gray-8);
|
--select-list-bg-color: var(--color-gray-8);
|
||||||
|
|
||||||
|
--button-bg-color-secondary: var(--color-gray-8);
|
||||||
|
|
||||||
--footer-title-text-color: black;
|
--footer-title-text-color: black;
|
||||||
--bg-color: var(--color-gray-9);
|
--bg-color: var(--color-gray-9);
|
||||||
--bg-color-raised: var(--color-gray-8);
|
--bg-color-raised: var(--color-gray-8);
|
||||||
|
|||||||
@@ -133,6 +133,13 @@ analytics:
|
|||||||
defaultDataLayer:
|
defaultDataLayer:
|
||||||
platform: redocly
|
platform: redocly
|
||||||
enableWebVitalsTracking: true
|
enableWebVitalsTracking: true
|
||||||
|
feedback:
|
||||||
|
type: scale
|
||||||
|
settings:
|
||||||
|
label: How helpful was this page?
|
||||||
|
submitText: Thanks for your feedback!
|
||||||
|
leftScaleLabel: Not helpful
|
||||||
|
rightScaleLabel: Very helpful
|
||||||
scripts:
|
scripts:
|
||||||
head:
|
head:
|
||||||
- src: https://cmp.osano.com/AzyjT6TIZMlgyLyy8/f11f7772-8ed5-4b73-bd17-c0814edcc440/osano.js
|
- src: https://cmp.osano.com/AzyjT6TIZMlgyLyy8/f11f7772-8ed5-4b73-bd17-c0814edcc440/osano.js
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
[data-component-name="Markdown/Markdown"] article {
|
[data-component-name="Markdown/Markdown"] article {
|
||||||
padding-bottom: 50px;
|
padding-bottom: 50px;
|
||||||
|
border-bottom: 1px solid $gray-400;
|
||||||
|
|
||||||
p code,
|
p code,
|
||||||
table code,
|
table code,
|
||||||
|
|||||||
@@ -1,96 +1,3 @@
|
|||||||
// TEMPORARY: overriding the feedback widget styles here
|
[data-component-name="Feedback/Feedback"] {
|
||||||
#feedback-content {
|
margin: 0 auto !important;
|
||||||
.docked-widget {
|
|
||||||
border: none !important;
|
|
||||||
background-color: transparent !important;
|
|
||||||
position: static !important;
|
|
||||||
box-shadow: none !important;
|
|
||||||
width: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.widget-form-wrapper {
|
|
||||||
position: static !important;
|
|
||||||
box-shadow: none !important;
|
|
||||||
display: block;
|
|
||||||
background-color: $gray-800 !important;
|
|
||||||
border-width: 0 !important;
|
|
||||||
padding: 24px !important;
|
|
||||||
border-radius: 8px !important;
|
|
||||||
|
|
||||||
div {
|
|
||||||
background-color: $gray-800 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
textarea {
|
|
||||||
background-color: $white !important;
|
|
||||||
opacity: 1 !important;
|
|
||||||
border: none !important;
|
|
||||||
border-radius: 4px !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
width: 100% !important;
|
|
||||||
color: $black !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.widget-header-title {
|
|
||||||
background: none !important;
|
|
||||||
flex-grow: 0 !important;
|
|
||||||
padding-right: 1rem !important;
|
|
||||||
height: auto !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
margin-bottom: 10px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.widget-header-footer {
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.widget-form-footer {
|
|
||||||
padding-right: 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.submit {
|
|
||||||
background-color: $blue-purple-500 !important;
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: $white !important;
|
|
||||||
border: none !important;
|
|
||||||
border-color: transparent !important;
|
|
||||||
border-radius: 4px !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
margin-top: 8px !important;
|
|
||||||
&:hover {
|
|
||||||
background: $blue-purple-600 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.disabled,
|
|
||||||
&[disabled="disabled"] {
|
|
||||||
background-color: $blue-purple-700 !important;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: $blue-purple-700 !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.cancel {
|
|
||||||
margin: 0 !important;
|
|
||||||
margin-top: 8px !important;
|
|
||||||
color: $blue-purple-300 !important;
|
|
||||||
font-weight: 600 !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#closeFeedback {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.widget-helpful {
|
|
||||||
.widget-header {
|
|
||||||
background-color: $gray-800 !important;
|
|
||||||
border-radius: 8px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.widget-header-title {
|
|
||||||
color: $white !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1120,6 +1120,10 @@ main article .card-grid {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[data-component-name="Markdown/Markdown"] article {
|
||||||
|
border-bottom-color: $gray-500;
|
||||||
|
}
|
||||||
|
|
||||||
.dev-blog {
|
.dev-blog {
|
||||||
.text-bg {
|
.text-bg {
|
||||||
background-color: $white;
|
background-color: $white;
|
||||||
|
|||||||
Reference in New Issue
Block a user