mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-27 17:42:59 +08:00
fix(less): Lint errors preventing successful build
This commit is contained in:
parent
d8dbe90c97
commit
d04951dd61
9 changed files with 20 additions and 8 deletions
|
@ -248,6 +248,8 @@ module.exports = (grunt) ->
|
|||
src: [
|
||||
'static/**/*.less'
|
||||
]
|
||||
options:
|
||||
imports: ['variables/*.less']
|
||||
|
||||
'download-atom-shell':
|
||||
version: packageJson.atomShellVersion
|
||||
|
|
|
@ -20,7 +20,6 @@ class EdgehillAPI
|
|||
@APIRoot = "https://edgehill-staging.nilas.com"
|
||||
else
|
||||
@APIRoot = "https://edgehill.nilas.com"
|
||||
@APIRoot = "http://localhost:5009"
|
||||
|
||||
request: (options={}) ->
|
||||
return if atom.getLoadSettings().isSpec
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
@import "ui-variables";
|
||||
@import "ui-mixins";
|
||||
|
||||
// .btn-background (@color, @hover-color, @selected-color, @border-color, @text-color, @text-color-hover) {
|
||||
// @border-shadow: inset 0 0 0 1px @border-color;
|
||||
// @active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
@import "ui-variables";
|
||||
@import "ui-mixins";
|
||||
|
||||
input[type="text"],
|
||||
input[type="email"] {
|
||||
width: 100%;
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
@import "ui-variables";
|
||||
|
||||
// A Mixin holding common UI elements.
|
||||
|
||||
// A box to hold counts of things (like number of items in a tag, or
|
||||
|
|
6
static/normalize.less
vendored
6
static/normalize.less
vendored
|
@ -94,12 +94,6 @@ audio:not([controls]) {
|
|||
height: 0;
|
||||
}
|
||||
|
||||
// * Address `[hidden]` styling not present in IE 8/9/10.
|
||||
// * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
|
||||
[hidden],
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
// Links ==========================================================================
|
||||
// * Remove the gray background color from active links in IE 10.
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
@import "ui-variables";
|
||||
@import "ui-mixins";
|
||||
|
||||
//
|
||||
// Typography
|
||||
// --------------------------------------------------
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
@import "ui-variables";
|
||||
@import "ui-mixins";
|
||||
|
||||
:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
@import "ui-variables";
|
||||
@import "ui-mixins";
|
||||
|
||||
html,
|
||||
body {
|
||||
width: 100%;
|
||||
|
@ -99,7 +102,7 @@ atom-workspace {
|
|||
padding-right:3px;
|
||||
}
|
||||
&.flexbox-handle-bottom {
|
||||
bottom: 0px;
|
||||
bottom: 0;
|
||||
padding-right:2px;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue