mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
b198e6170b
* Removed some unnecessary rendering * Only PureComponents and some other stuff * Removed all functional components * Only deal with nunjucks marks * Remove ref assign functions in modals * Lots of tweaks * A bit snappier * A bit snappier
241 lines
3.7 KiB
Plaintext
241 lines
3.7 KiB
Plaintext
@import '../constants/dimensions';
|
|
@import '../constants/colors';
|
|
|
|
.form-control {
|
|
outline: none;
|
|
border: 0;
|
|
margin-bottom: @padding-sm;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
|
|
.CodeMirror,
|
|
input,
|
|
textarea,
|
|
select,
|
|
button {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
margin-top: @padding-xs;
|
|
}
|
|
|
|
button,
|
|
input[type="radio"],
|
|
input[type="checkbox"] {
|
|
width: auto;
|
|
}
|
|
|
|
input[type="radio"],
|
|
input[type="checkbox"] {
|
|
height: 1rem;
|
|
float: left;
|
|
margin-top: @padding-xxs;
|
|
margin-right: @padding-xs;
|
|
}
|
|
|
|
& > button {
|
|
width: auto;
|
|
}
|
|
|
|
input:invalid {
|
|
border: 1px solid var(--color-warning) !important;
|
|
}
|
|
|
|
label {
|
|
font-size: @font-size-md;
|
|
font-weight: 600;
|
|
display: block;
|
|
}
|
|
|
|
&.form-control--thin {
|
|
label {
|
|
font-weight: normal;
|
|
}
|
|
|
|
margin-bottom: @padding-xxs;
|
|
}
|
|
|
|
&.form-control--padded,
|
|
&.form-control--outlined,
|
|
&.form-control--underlined {
|
|
textarea,
|
|
.CodeMirror,
|
|
input,
|
|
select {
|
|
border: 1px solid @hl-md;
|
|
padding: @padding-sm;
|
|
border-radius: @radius-md;
|
|
background-color: @hl-xxs;
|
|
}
|
|
|
|
.CodeMirror,
|
|
input,
|
|
select {
|
|
height: @line-height-xs;
|
|
}
|
|
|
|
.CodeMirror-focused,
|
|
textarea:focus,
|
|
select:focus,
|
|
input:focus {
|
|
background-color: transparent;
|
|
border-color: @hl-lg;
|
|
}
|
|
}
|
|
|
|
&.form-control--underlined .CodeMirror-focused,
|
|
&.form-control--underlined input:focus,
|
|
&.form-control--underlined textarea:focus {
|
|
border-color: @hl;
|
|
}
|
|
|
|
&.form-control--padded {
|
|
.CodeMirror,
|
|
textarea,
|
|
select,
|
|
input {
|
|
border: 0;
|
|
}
|
|
}
|
|
|
|
&.form-control--underlined {
|
|
textarea,
|
|
select,
|
|
.CodeMirror,
|
|
input {
|
|
border-radius: 0;
|
|
border-top: 0;
|
|
border-right: 0;
|
|
border-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.form-control--wide {
|
|
margin-left: 0 !important;
|
|
margin-right: 0 !important;
|
|
}
|
|
|
|
.form-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
align-content: center;
|
|
flex-direction: row;
|
|
|
|
& > * {
|
|
width: 100%;
|
|
margin-left: 0.5rem;
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
& > p {
|
|
margin: 0;
|
|
}
|
|
|
|
& > *:first-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
& > *:last-child {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
text-align: center;
|
|
padding: 0 (@padding-md * 1.5);
|
|
height: @line-height-md;
|
|
border: 1px solid transparent;
|
|
|
|
&.btn--compact {
|
|
padding: 0 @padding-md;
|
|
height: @line-height-sm;
|
|
}
|
|
|
|
&.btn--super-compact {
|
|
padding: 0 @padding-md;
|
|
height: @line-height-xs;
|
|
}
|
|
|
|
&.btn--super-duper-compact {
|
|
padding: 0 @padding-sm;
|
|
height: @line-height-xxs;
|
|
}
|
|
|
|
&.btn--outlined {
|
|
border: 1px solid @hl-lg;
|
|
border-radius: @radius-md;
|
|
}
|
|
|
|
&.btn--clicky {
|
|
.btn--super-compact;
|
|
.btn--outlined;
|
|
}
|
|
}
|
|
|
|
*:disabled {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.btn:focus:not(:disabled),
|
|
.btn.focus:not(:disabled),
|
|
.btn:hover:not(:disabled) {
|
|
background: @hl-xs;
|
|
}
|
|
|
|
.btn:active:not(:disabled) {
|
|
background: @hl-md;
|
|
}
|
|
|
|
.btn.btn--no-background {
|
|
opacity: 0.5;
|
|
background: transparent;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
background: transparent;
|
|
}
|
|
}
|
|
|
|
textarea, input, .CodeMirror ,button, select {
|
|
box-sizing: border-box;
|
|
text-align: left;
|
|
font-size: inherit;
|
|
text-decoration: inherit;
|
|
background: none;
|
|
border: 0;
|
|
outline: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: inherit;
|
|
|
|
&::-webkit-input-placeholder {
|
|
color: @hl-lg;
|
|
}
|
|
}
|
|
|
|
input[type=number]::-webkit-inner-spin-button {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
input.input--error {
|
|
border-color: var(--color-danger) !important;
|
|
}
|
|
|
|
button {
|
|
width: auto;
|
|
padding: 0;
|
|
margin: 0;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
textarea.no-resize {
|
|
resize: none;
|
|
}
|
|
|
|
input[type="color"] {
|
|
height: @line-height-xs !important;
|
|
padding: @padding-xxs !important;
|
|
}
|