mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
Fixed response pane loading background for themes
This commit is contained in:
parent
3ced73f903
commit
00f1d9b4fa
@ -9,7 +9,7 @@
|
||||
right: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
background: rgba(30, 30, 30, 0.8);
|
||||
background-color: @bg-super-dark-overlay;
|
||||
z-index: 100;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@ -17,6 +17,7 @@
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
color: @font-super-dark-bg;
|
||||
|
||||
&.response-pane__overlay--under {
|
||||
background: none;
|
||||
@ -27,17 +28,16 @@
|
||||
max-width: 30rem;
|
||||
}
|
||||
|
||||
.btn--outlined {
|
||||
background: @bg-super-dark;
|
||||
.btn {
|
||||
background: @bg-super-dark-overlay;
|
||||
|
||||
&:hover {
|
||||
background: @bg-dark;
|
||||
background: @bg-super-dark;
|
||||
}
|
||||
}
|
||||
|
||||
i.fa {
|
||||
color: @font-dark-bg;
|
||||
font-size: 6rem;
|
||||
font-size: 4rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -13,6 +13,7 @@ body[theme="default"] {
|
||||
--bg-super-light: #fff;
|
||||
--bg-dark: #2c2d29;
|
||||
--bg-super-dark: #252622;
|
||||
--bg-super-dark-overlay: rgba(37, 38, 34, 0.8);
|
||||
|
||||
--font-light-bg: #444;
|
||||
--font-super-light-bg: #666;
|
||||
@ -34,6 +35,7 @@ body[theme="dark"] {
|
||||
--bg-super-light: #2a2b27;
|
||||
--bg-super-dark: #252622;
|
||||
--bg-dark: #252622;
|
||||
--bg-super-dark-overlay: rgba(37, 38, 34, 0.8);
|
||||
|
||||
--font-light-bg: #ccc;
|
||||
--font-super-light-bg: #ccc;
|
||||
@ -55,6 +57,7 @@ body[theme="light"] {
|
||||
--bg-super-light: #f9f9f9;
|
||||
--bg-dark: #fff;
|
||||
--bg-super-dark: #fff;
|
||||
--bg-super-dark-overlay: rgba(255, 255, 255, 0.7);
|
||||
|
||||
--font-light-bg: #333;
|
||||
--font-super-light-bg: #333;
|
||||
@ -71,6 +74,7 @@ body[theme="light"] {
|
||||
@bg-super-light: var(--bg-super-light);
|
||||
@bg-dark: var(--bg-dark);
|
||||
@bg-super-dark: var(--bg-super-dark);
|
||||
@bg-super-dark-overlay: var(--bg-super-dark-overlay);
|
||||
@bg-brand: var(--bg-brand);
|
||||
|
||||
@opacity-subtle: 0.7;
|
||||
|
Loading…
Reference in New Issue
Block a user