1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-09-11 19:32:24 +02:00

Merge pull request #296 from GilbN/develop

1.6.7
This commit is contained in:
GilbN 2021-11-30 20:55:54 +01:00 committed by GitHub
commit c4cb9d2e02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 1 deletions

View File

@ -236,7 +236,8 @@ html body,
/* ACCENTS */
[class*="Badge-primary-"] {
[class*="Badge-primary-"],
.nav-header>li>a.selected .badge {
background-color: rgb(var(--accent-color));
color: var(--label-text-color);
}

View File

@ -12,6 +12,11 @@
@import url("https://theme-park.dev/css/defaults/placeholders.css");
:root {
--text-json-tree-branch-preview-color: #eee;
--text-json-tree-leaf-color: #eee;
}
/* Scrollbar */
@media only screen and (min-width: 768px) {
html {

View File

@ -1135,4 +1135,26 @@ input[type=password] {
canvas {
filter: invert(1)
}
/* QUERY OPTIONS */
[class*="QueryParameterOption-option-"] {
border: 1px solid transparent;
}
[class*="QueryParameterOption-token-"] {
background-color: rgba(255, 255, 255, 0.15);
}
[class*="QueryParameterOption-example-"] {
background-color: rgba(255, 255, 255, 0.25);
}
[class*="QueryParameterOption-option-"]:hover [class*="QueryParameterOption-token-"] {
background-color: rgba(255, 255, 2550, 0.25);
}
[class*="QueryParameterOption-option-"]:hover [class*="QueryParameterOption-example-"] {
background-color: rgba(255, 255, 2550, 0.35);
}