Some tweaks

This commit is contained in:
Gregory Schier
2016-10-02 15:17:55 -07:00
parent eff5df9393
commit bd12d1ab91
3 changed files with 7 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
{
"private": true,
"name": "insomnia",
"version": "3.5.3",
"version": "3.5.6",
"productName": "Insomnia",
"longName": "Insomnia REST Client",
"description": "A simple and beautiful REST API client",

View File

@@ -87,8 +87,8 @@ class ResponseViewer extends Component {
return (
<div className="response-pane__overlay response-pane__overlay--under">
<p className="pad faint">
Warning! Previewing responses over {LARGE_RESPONSE_MB}MB may cause
slowdowns on some computers.
Previewing responses over {LARGE_RESPONSE_MB}MB may cause
slowdowns on some computers
</p>
<p>
<button onClick={e => this._handleDismissBlocker()}

View File

@@ -71,6 +71,10 @@
color: @hl-xl !important;
}
.CodeMirror-gutter {
background-color: @bg-super-dark;
}
.CodeMirror-scroll {
cursor: text; // Show text cursor everywhere (not just in .Codemirror-lines)
}