mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
e2c72987e8
* Fixed duplication kve bug * Autocomplete sort of works now * Even better * Styled autocomplete dropdown * Minor tweaks * Autocomplete looking pretty spiffy * Bug fixes * Apply dropdown to all editors * Fixed key propagation when autocomplete open * Fixed some modals * Split up editor less * Some css improvements * Move filter help out of editor * Fixed drag-n-drop * Perfected autocomplete theme * "fixed" one-line-editor hint click bug * Better autocomplete and switch single line input on drag enter * Don't autocomplete on Tab * Better tag dnd * Add constants completion API * Autocomplete headers * Fixed tests
490 lines
6.0 KiB
Plaintext
490 lines
6.0 KiB
Plaintext
@import '../constants/colors';
|
|
@import '../constants/dimensions';
|
|
@import '../constants/fonts';
|
|
|
|
html {
|
|
font-size: @font-size;
|
|
}
|
|
|
|
html, body, #root {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
html, h1, h2, h3, h4, h5, h6, input {
|
|
font-weight: 400;
|
|
font-family: @font-default;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
h1 {
|
|
font-size: @font-size-xxl;
|
|
}
|
|
|
|
h2 {
|
|
font-size: @font-size-xl;
|
|
}
|
|
|
|
h3 {
|
|
font-size: @font-size-lg;
|
|
}
|
|
|
|
p, h1, h2, h3 {
|
|
margin-bottom: @padding-sm;
|
|
margin-top: @padding-md;
|
|
}
|
|
|
|
hr {
|
|
width: 100%;
|
|
height: 0;
|
|
border: 0;
|
|
border-bottom: 1px solid @hl-md;
|
|
margin: @padding-md 0;
|
|
}
|
|
|
|
hr.hr--spaced {
|
|
margin: @padding-lg 0;
|
|
}
|
|
|
|
em {
|
|
font-style: italic;
|
|
}
|
|
|
|
label {
|
|
display: inline-block;
|
|
padding-top: @padding-xs;
|
|
}
|
|
|
|
p {
|
|
line-height: 1.7em;
|
|
}
|
|
|
|
small {
|
|
font-size: 0.85em;
|
|
}
|
|
|
|
label.label--small,
|
|
table th {
|
|
color: @hl;
|
|
text-transform: uppercase;
|
|
font-size: 0.8em;
|
|
padding-bottom: @padding-xxs;
|
|
}
|
|
|
|
webview {
|
|
height: 100%;
|
|
width: 100%;
|
|
background-color: #fff;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
|
|
td, th {
|
|
padding: @padding-sm;
|
|
}
|
|
|
|
th {
|
|
text-align: left;
|
|
padding-bottom: @padding-sm;
|
|
}
|
|
|
|
&.table--striped tbody tr:nth-child(odd) {
|
|
background: @hl-xs;
|
|
}
|
|
}
|
|
|
|
code {
|
|
display: inline-block;
|
|
background: @hl-xs;
|
|
padding: @padding-xs @padding-sm;
|
|
color: var(--color-font);
|
|
border: 1px solid @hl-sm;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
code, pre, .monospace {
|
|
font-family: @font-monospace;
|
|
}
|
|
|
|
.notice {
|
|
text-align: center;
|
|
color: var(--color-font) !important;
|
|
padding: @padding-sm * 1.5;
|
|
border: 1px solid;
|
|
border-radius: @radius-md;
|
|
}
|
|
|
|
.notice.warning {
|
|
border-color: var(--color-warning);
|
|
}
|
|
|
|
.notice.info {
|
|
border-color: var(--color-info);
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.text-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.text-left {
|
|
text-align: left !important;
|
|
}
|
|
|
|
.pull-right {
|
|
float: right;
|
|
}
|
|
|
|
.img--circle {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.tall {
|
|
height: 100% !important;
|
|
}
|
|
|
|
.faint {
|
|
opacity: @opacity-subtle;
|
|
}
|
|
|
|
.super-faint {
|
|
opacity: @opacity-subtle * 0.8;
|
|
}
|
|
|
|
.faded {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.muted {
|
|
color: var(--hl);
|
|
}
|
|
|
|
.auto-margin {
|
|
margin: auto;
|
|
}
|
|
|
|
.outlined {
|
|
border: 1px solid @hl-md;
|
|
}
|
|
|
|
.valign-bottom {
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
.row-fill {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
align-content: stretch;
|
|
width: 100%;
|
|
|
|
& > * {
|
|
width: 100%;
|
|
}
|
|
|
|
& > *:not(:first-child) {
|
|
padding-left: @padding-xs;
|
|
}
|
|
|
|
& > *:not(:last-child) {
|
|
padding-right: @padding-xs;
|
|
}
|
|
}
|
|
|
|
.row-spaced {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between !important;
|
|
width: 100%;
|
|
}
|
|
|
|
.row-stretch {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
width: 100%;
|
|
}
|
|
|
|
.valign-center {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
align-content: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.wide {
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.width-auto {
|
|
width: auto !important;
|
|
}
|
|
|
|
.hide {
|
|
display: none;
|
|
}
|
|
|
|
.relative {
|
|
position: relative;
|
|
}
|
|
|
|
/* Make all font awesome icons the same width */
|
|
i.fa {
|
|
min-width: 1.1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.force-wrap {
|
|
word-break: break-all;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.force-word-wrap {
|
|
white-space: normal;
|
|
}
|
|
|
|
.no-wrap {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.overflow-hidden {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.wrap {
|
|
white-space: normal;
|
|
}
|
|
|
|
.border-top {
|
|
border-top: 1px solid @hl-md;
|
|
}
|
|
|
|
.pad {
|
|
box-sizing: border-box;
|
|
padding: @padding-md;
|
|
}
|
|
|
|
.pad-sm {
|
|
box-sizing: border-box;
|
|
padding: @padding-sm;
|
|
}
|
|
|
|
.pad-left {
|
|
box-sizing: border-box;
|
|
padding-left: @padding-md;
|
|
}
|
|
|
|
.pad-right {
|
|
box-sizing: border-box;
|
|
padding-right: @padding-md;
|
|
}
|
|
|
|
.pad-top {
|
|
box-sizing: border-box;
|
|
padding-top: @padding-md;
|
|
}
|
|
|
|
.pad-top-sm {
|
|
box-sizing: border-box;
|
|
padding-top: @padding-sm;
|
|
}
|
|
|
|
.margin-top-sm {
|
|
margin-top: @padding-sm;
|
|
}
|
|
|
|
.margin-left {
|
|
margin-left: @padding-md;
|
|
}
|
|
|
|
.margin-right-sm {
|
|
margin-right: @padding-sm;
|
|
}
|
|
|
|
.margin-bottom-sm {
|
|
margin-bottom: @padding-sm;
|
|
}
|
|
|
|
.margin-top-sm {
|
|
margin-top: @padding-sm;
|
|
}
|
|
|
|
.pad-bottom {
|
|
box-sizing: border-box;
|
|
padding-bottom: @padding-md;
|
|
}
|
|
|
|
.pad-bottom-sm {
|
|
box-sizing: border-box;
|
|
padding-bottom: @padding-sm;
|
|
}
|
|
|
|
.no-pad-bottom {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.no-pad-left {
|
|
padding-left: 0;
|
|
}
|
|
|
|
.no-pad-top {
|
|
padding-top: 0 !important;
|
|
}
|
|
|
|
.no-margin {
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.no-margin-top {
|
|
margin-top: 0 !important;
|
|
}
|
|
|
|
.pad-left-sm {
|
|
padding-left: @padding-md / 2;
|
|
}
|
|
|
|
.pad-right-sm {
|
|
padding-right: @padding-md / 2;
|
|
}
|
|
|
|
.no-pad {
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.no-margin-left {
|
|
margin-left: 0 !important;
|
|
}
|
|
|
|
.block {
|
|
display: block !important;
|
|
}
|
|
|
|
.grid {
|
|
display: grid !important;
|
|
}
|
|
|
|
.inline-block {
|
|
display: inline-block !important;
|
|
}
|
|
|
|
.ellipsis {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.selectable {
|
|
-webkit-user-select: text;
|
|
cursor: text;
|
|
}
|
|
|
|
::selection {
|
|
background-color: var(--hl-md);
|
|
}
|
|
|
|
.hide-scrollbars {
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.scrollable {
|
|
overflow: auto;
|
|
position: relative;
|
|
|
|
&.scrollable--no-bars::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.scrollable-container {
|
|
position: relative;
|
|
|
|
& > .scrollable {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
}
|
|
|
|
.hover-scrollbars {
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
&:hover::-webkit-scrollbar {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.section.section--bordered {
|
|
.section__header {
|
|
border-right: 1px solid #eee;
|
|
}
|
|
|
|
.section__body {
|
|
border-right: 1px solid @hl-sm;
|
|
}
|
|
}
|
|
|
|
.bold,
|
|
strong {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.hide-above-lg {
|
|
display: none;
|
|
}
|
|
|
|
.hide-above-md {
|
|
display: none;
|
|
}
|
|
|
|
@media (max-width: @breakpoint-lg) {
|
|
.hide-below-lg {
|
|
display: none;
|
|
}
|
|
|
|
.hide-above-lg {
|
|
display: initial;
|
|
}
|
|
}
|
|
|
|
@media (max-width: @breakpoint-md) {
|
|
html {
|
|
font-size: @font-size * 0.95;
|
|
}
|
|
|
|
.hide-below-md {
|
|
display: none;
|
|
}
|
|
|
|
.hide-above-md {
|
|
display: initial;
|
|
}
|
|
}
|