insomnia/app/ui/css/components/method-dropdown.less
Gregory Schier 8452e8b777 Some eslint refactoring (#109)
* Fixed duplication kve bug

* Some changes

* Add proptypes linting

* Fixed proptypes even more

* Filename linting
2017-03-07 21:52:17 -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;
}
}