mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
9e84bc4387
* Start on workspace dropdown and upgrade fontawesome * WorkspaceDropdown start and Elm components! * Lots of CSS shit * Refactor some db stuff and move filter out of sidebar * Adjust dropdown css * Handle duplicate header names, and stuff * Shitty cookies tab * fixed cookie table a bit * Modal refactor * Starteed cookie modal design * Better cookie storage and filter cookie modal * Cookie editor round 1 * Fix kve cursor jumping and form encoding templating * New cookies now show up in filter * Checkpoint * Stuff and fix environments css * Added manage cookies button to cookie pane * Fix accidental sidebar item drag on sidebar resize * Environments modal is looking pretty good now * Pretty much done environments nad cookies * Some changes * Fixed codemirror in modals * Fixed some things * Add basic proxy support * Updated shortcuts * Code snippet generation * Some style * bug fix * Code export now gets cookies for correct domain
123 lines
1.9 KiB
SCSS
123 lines
1.9 KiB
SCSS
@import '../constants/dimensions';
|
|
@import '../constants/colors';
|
|
|
|
.form-control {
|
|
outline: none;
|
|
border: 0;
|
|
height: $line-height-md;
|
|
|
|
textarea,
|
|
input {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
&.form-control--error {
|
|
input {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
&.form-control--outlined,
|
|
&.form-control--underlined {
|
|
height: auto;
|
|
margin: $padding-sm;
|
|
|
|
textarea,
|
|
input {
|
|
border: 1px solid $hl-md;
|
|
padding: $padding-sm;
|
|
border-radius: $radius-md;
|
|
}
|
|
|
|
textarea,
|
|
input:focus {
|
|
border-color: $hl-xl;
|
|
}
|
|
}
|
|
|
|
&.form-control--underlined {
|
|
textarea,
|
|
input {
|
|
border-radius: 0;
|
|
border-top: 0;
|
|
border-right: 0;
|
|
border-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Push form all the way to the sides if inside label
|
|
label > .form-control,
|
|
.form-control--wide {
|
|
margin-left: 0 !important;
|
|
margin-right: 0 !important;
|
|
}
|
|
|
|
.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--outlined {
|
|
border: 1px solid $hl-lg;
|
|
border-radius: $radius-md;
|
|
}
|
|
}
|
|
|
|
.btn:disabled {
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.btn:focus:not(:disabled),
|
|
.btn.focus:not(:disabled),
|
|
.btn:hover:not(:disabled) {
|
|
background: $hl-xs;
|
|
}
|
|
|
|
.btn:active {
|
|
background: $hl-md;
|
|
}
|
|
|
|
textarea, input, button {
|
|
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-xl;
|
|
}
|
|
}
|
|
|
|
input.input--error {
|
|
border-color: $danger !important;
|
|
}
|
|
|
|
button {
|
|
width: auto;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
textarea.no-resize {
|
|
resize: none;
|
|
}
|