mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
8c0d87168e
* Most things are working * Cookies and lots of improvements * Hoist regex * Appveyor test * Fix appveyor file * Remove yarn * Test deps * Fix * Remove all git deps * fix * Fix * Add cash rm * Fix command * Fix * Production * try * fix * fix? * Done * Remove cache * tweak * Shortcut * Fix * Attempt * try * Try clone depth * Try again * back to shallow_clone * Some debugging * Another try * Try something else * Another * try curl only * Another * fix * Update node-gyp * Try again * Try * Again * Some pruning * Back to the start * Again * try config * Reorder test * Try without cache * Update dep * Try again * remove shallow_clone * don't run tests * Implement CA fetching * Fix * Use CAs * Fix? * test * Remove build dir * Fix dir path? * Try again * Aagain * Try * Change dep * Add comment * Invalidate cache * Remove yarn * Fix cookie expiry * fixed tests * Some modal fixes and unrelated stuff * Debounce autocomplete * Got client certificates working * Fixed binary files * Fixed cookies * Got proxy and debug info working * Got CA certs working * Update appveyor build * Fixed cookie date parsing and overlay z-index * Test updates * Autocomplete to bulk header editor * Small CSS tweak
54 lines
841 B
Plaintext
54 lines
841 B
Plaintext
@import '../constants/colors';
|
|
|
|
.response-pane {
|
|
position: relative;
|
|
|
|
.tag {
|
|
color: var(--color-font);
|
|
}
|
|
|
|
.overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 9;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
|
|
& > * {
|
|
max-width: 30rem;
|
|
}
|
|
|
|
.btn {
|
|
border-color: var(--hl-xl);
|
|
|
|
&:hover {
|
|
background: var(--hl-sm);
|
|
border-color: var(--hl);
|
|
}
|
|
}
|
|
|
|
i.fa {
|
|
font-size: 4rem;
|
|
}
|
|
}
|
|
|
|
.response-pane__notify {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
height: 100%;
|
|
max-width: 30rem;
|
|
margin: auto;
|
|
}
|
|
}
|