mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
chore: make the overlay darker in displaying request timings (#7691)
This commit is contained in:
parent
8bf08a3674
commit
2d98338047
@ -29,7 +29,7 @@ const MillisecondTimer = () => {
|
||||
};
|
||||
export const ResponseTimer: FunctionComponent<Props> = ({ handleCancel, activeRequestId, steps }) => {
|
||||
return (
|
||||
<div className="overlay theme--transparent-overlay">
|
||||
<div className="overlay theme--transparent-overlay-darker">
|
||||
<div className="timer-list w-full">
|
||||
{steps.map((record: TimingStep) => (
|
||||
<div
|
||||
|
@ -1162,6 +1162,11 @@ button {
|
||||
--color-bg: rgba(5, 5, 5, 0.7);
|
||||
--color-font: #ddd;
|
||||
}
|
||||
*[theme] .theme--transparent-overlay-darker,
|
||||
*[subtheme] .theme--transparent-overlay-darker {
|
||||
--color-bg: rgba(5, 5, 5, 0.8);
|
||||
--color-font: #ddd;
|
||||
}
|
||||
[class^='http-method-'],
|
||||
[class*=' http-method-'] {
|
||||
color: var(--color-font);
|
||||
|
Loading…
Reference in New Issue
Block a user