Files
insomnia/app/ui/css/components/methoddropdown.less
Gregory Schier 4a3787fb58 Custom HTTP Methods (#107)
* Fixed duplication kve bug

* Custom HTTP Metehods

* Even better prompt
2017-03-07 16:45:18 -08:00

21 lines
398 B
Plaintext

@import '../constants/dimensions';
@import '../constants/colors';
.method-dropdown {
.dropdown__inner::before {
content: '\25cf';
opacity: @opacity-subtle;
-webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
}
.dropdown__text {
padding-left: @padding-md;
color: var(--color-font);
display: inline;
}
.dropdown__inner.http-method-custom::before {
opacity: 0;
}
}