mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-13 18:17:02 +02:00
* staying with jsondiff * routing setup * send compare against data to component after using new adapater method to return the version data. * functionality * fix issue on route transition not calling model hook * formatting * update version * changelog * glimmerize the json-editor component * catch up * passing tracked property from child to parent * pull out of jsonEditor * fix issue with message * icon * fix some issues with right selection * changes and convert to component * integration test * tests * fixes * cleanup * cleanup 2 * fixes * fix test by spread attributes * remove log * remove
25 lines
550 B
SCSS
25 lines
550 B
SCSS
.visual-diff {
|
|
background-color: black;
|
|
|
|
pre {
|
|
color: $ui-gray-010;
|
|
}
|
|
}
|
|
|
|
.jsondiffpatch-deleted .jsondiffpatch-property-name,
|
|
.jsondiffpatch-deleted pre,
|
|
.jsondiffpatch-modified .jsondiffpatch-left-value pre,
|
|
.jsondiffpatch-textdiff-deleted {
|
|
background: $red-500;
|
|
}
|
|
.jsondiffpatch-added .jsondiffpatch-property-name,
|
|
.jsondiffpatch-added .jsondiffpatch-value pre,
|
|
.jsondiffpatch-modified .jsondiffpatch-right-value pre,
|
|
.jsondiffpatch-textdiff-added {
|
|
background: $green-500;
|
|
}
|
|
|
|
.jsondiffpatch-property-name {
|
|
color: $ui-gray-300;
|
|
}
|