mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
Run prettier on all files
Since prettier updated, some files have out of date formatting.
This commit is contained in:
@@ -10,7 +10,8 @@ $lost: $dark;
|
||||
fill: $queued;
|
||||
}
|
||||
|
||||
.starting, .pending {
|
||||
.starting,
|
||||
.pending {
|
||||
.layer-0 {
|
||||
fill: $starting;
|
||||
}
|
||||
@@ -58,7 +59,8 @@ $lost: $dark;
|
||||
background: $queued;
|
||||
}
|
||||
|
||||
&.starting, &.pending {
|
||||
&.starting,
|
||||
&.pending {
|
||||
background: repeating-linear-gradient(
|
||||
-45deg,
|
||||
$starting,
|
||||
|
||||
@@ -21,8 +21,7 @@
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
$color-sequence: $orange, $yellow, $green, $turquoise, $blue, $purple,
|
||||
$red;
|
||||
$color-sequence: $orange, $yellow, $green, $turquoise, $blue, $purple, $red;
|
||||
|
||||
@for $i from 1 through length($color-sequence) {
|
||||
.slice-#{$i - 1} {
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
&::before {
|
||||
pointer-events: none;
|
||||
display: inline-block;
|
||||
content: "";
|
||||
content: '';
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-top: 7px solid $grey;
|
||||
@@ -34,7 +34,7 @@
|
||||
&::after {
|
||||
pointer-events: none;
|
||||
display: inline-block;
|
||||
content: "";
|
||||
content: '';
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-top: 6px solid $white;
|
||||
|
||||
@@ -13,7 +13,9 @@
|
||||
$url-color: blue
|
||||
) {
|
||||
font-family: monospace;
|
||||
&, a, a:hover {
|
||||
&,
|
||||
a,
|
||||
a:hover {
|
||||
color: $default-color;
|
||||
text-decoration: none;
|
||||
}
|
||||
@@ -31,10 +33,10 @@
|
||||
display: none;
|
||||
}
|
||||
&.json-formatter-object:after {
|
||||
content: "No properties";
|
||||
content: 'No properties';
|
||||
}
|
||||
&.json-formatter-array:after {
|
||||
content: "[]";
|
||||
content: '[]';
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -100,7 +102,7 @@
|
||||
// Inline preview on hover (optional)
|
||||
> a > .json-formatter-preview-text {
|
||||
opacity: 0;
|
||||
transition: opacity .15s ease-in;
|
||||
transition: opacity 0.15s ease-in;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
z-index: $z-base;
|
||||
|
||||
&::before {
|
||||
content: " ";
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
display: block;
|
||||
top: 0;
|
||||
@@ -32,7 +32,7 @@
|
||||
}
|
||||
|
||||
&::before {
|
||||
content: " ";
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
display: block;
|
||||
width: 10px;
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
pointer-events: none;
|
||||
display: block;
|
||||
opacity: 0;
|
||||
content: "";
|
||||
content: '';
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-top: 6px solid $black;
|
||||
|
||||
@@ -4,7 +4,12 @@
|
||||
border-color: $grey-blue;
|
||||
color: $text;
|
||||
|
||||
&:hover, &.is-hovered, &:active, &.is-active, &:focus, &.is-focused {
|
||||
&:hover,
|
||||
&.is-hovered,
|
||||
&:active,
|
||||
&.is-active,
|
||||
&:focus,
|
||||
&.is-focused {
|
||||
border-color: darken($grey-blue, 5%);
|
||||
}
|
||||
|
||||
@@ -14,7 +19,8 @@
|
||||
}
|
||||
}
|
||||
|
||||
.input, .textarea {
|
||||
.input,
|
||||
.textarea {
|
||||
@include input;
|
||||
box-shadow: none;
|
||||
padding: 0.75em 1.5em;
|
||||
|
||||
@@ -1,10 +1,6 @@
|
||||
.navbar {
|
||||
&.is-primary {
|
||||
background: linear-gradient(
|
||||
to right,
|
||||
$nomad-green-darker,
|
||||
$nomad-green-dark
|
||||
);
|
||||
background: linear-gradient(to right, $nomad-green-darker, $nomad-green-dark);
|
||||
height: 3.5rem;
|
||||
color: $primary-invert;
|
||||
padding-left: 20px;
|
||||
@@ -32,7 +28,7 @@
|
||||
width: 1px;
|
||||
height: 1em;
|
||||
background: rgba($primary-invert, 0.5);
|
||||
content: " ";
|
||||
content: ' ';
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
|
||||
@@ -147,7 +147,7 @@
|
||||
position: relative;
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
content: '';
|
||||
width: 10px;
|
||||
right: 1.5em;
|
||||
top: 0.75em;
|
||||
@@ -157,11 +157,11 @@
|
||||
}
|
||||
|
||||
&.asc::after {
|
||||
content: "⬇";
|
||||
content: '⬇';
|
||||
}
|
||||
|
||||
&.desc::after {
|
||||
content: "⬆";
|
||||
content: '⬆';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -186,7 +186,7 @@
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
content: "";
|
||||
content: '';
|
||||
width: 3px;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
|
||||
@@ -22,8 +22,8 @@ $size-7: 0.85rem;
|
||||
|
||||
$title-weight: $weight-semibold;
|
||||
|
||||
$family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
||||
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
$family-sans-serif: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu,
|
||||
Cantarell, 'Helvetica Neue', sans-serif;
|
||||
|
||||
$text: $black;
|
||||
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
$consul-pink: #FF0087;
|
||||
$consul-pink-dark: #C62A71;
|
||||
$consul-pink: #ff0087;
|
||||
$consul-pink-dark: #c62a71;
|
||||
|
||||
$packer-blue: #1DAEFF;
|
||||
$packer-blue-dark: #1D94DD;
|
||||
$packer-blue: #1daeff;
|
||||
$packer-blue-dark: #1d94dd;
|
||||
|
||||
$terraform-purple: #5C4EE5;
|
||||
$terraform-purple-dark: #4040B2;
|
||||
$terraform-purple: #5c4ee5;
|
||||
$terraform-purple-dark: #4040b2;
|
||||
|
||||
$vagrant-blue: #1563FF;
|
||||
$vagrant-blue-dark: #104EB2;
|
||||
$vagrant-blue: #1563ff;
|
||||
$vagrant-blue-dark: #104eb2;
|
||||
|
||||
$nomad-green: #25BA81;
|
||||
$nomad-green: #25ba81;
|
||||
$nomad-green-dark: #1d9467;
|
||||
$nomad-green-darker: #16704D;
|
||||
$nomad-green-darker: #16704d;
|
||||
|
||||
@@ -1,10 +1,5 @@
|
||||
/* eslint-env node */
|
||||
|
||||
module.exports = {
|
||||
browsers: [
|
||||
'ie 9',
|
||||
'last 1 Chrome versions',
|
||||
'last 1 Firefox versions',
|
||||
'last 1 Safari versions'
|
||||
]
|
||||
browsers: ['ie 9', 'last 1 Chrome versions', 'last 1 Firefox versions', 'last 1 Safari versions'],
|
||||
};
|
||||
|
||||
@@ -12,27 +12,31 @@ export default Factory.extend({
|
||||
}),
|
||||
|
||||
CPU: () => [
|
||||
Array(faker.list.random(1, 2, 4, 6, 8, 12, 16, 24, 32)).fill(0).map((cpu, index) => ({
|
||||
CPU: `cpu${index}`,
|
||||
Idle: 20,
|
||||
System: 40,
|
||||
Total: 80,
|
||||
User: 40,
|
||||
})),
|
||||
Array(faker.list.random(1, 2, 4, 6, 8, 12, 16, 24, 32))
|
||||
.fill(0)
|
||||
.map((cpu, index) => ({
|
||||
CPU: `cpu${index}`,
|
||||
Idle: 20,
|
||||
System: 40,
|
||||
Total: 80,
|
||||
User: 40,
|
||||
})),
|
||||
],
|
||||
|
||||
CPUTicksConsumed: 1000000,
|
||||
|
||||
diskStats: () => [
|
||||
Array(faker.random.number({ min: 1, max: 5 })).fill(0).map((disk, index) => ({
|
||||
Available: 100000000000,
|
||||
Device: `/dev/disk${index}`,
|
||||
InodesUsedPercent: 0.10000000001,
|
||||
Mountpoint: '/',
|
||||
Size: 2000000000000,
|
||||
Used: 1000000000000,
|
||||
UsedPercent: 50.0,
|
||||
})),
|
||||
Array(faker.random.number({ min: 1, max: 5 }))
|
||||
.fill(0)
|
||||
.map((disk, index) => ({
|
||||
Available: 100000000000,
|
||||
Device: `/dev/disk${index}`,
|
||||
InodesUsedPercent: 0.10000000001,
|
||||
Mountpoint: '/',
|
||||
Size: 2000000000000,
|
||||
Used: 1000000000000,
|
||||
UsedPercent: 50.0,
|
||||
})),
|
||||
],
|
||||
|
||||
memory: () => ({
|
||||
|
||||
@@ -1,6 +1,12 @@
|
||||
import { RestSerializer } from 'ember-cli-mirage';
|
||||
|
||||
const keyCase = str => (str === 'id' ? 'ID' : str.camelize().capitalize().replace(/Id/g, 'ID'));
|
||||
const keyCase = str =>
|
||||
str === 'id'
|
||||
? 'ID'
|
||||
: str
|
||||
.camelize()
|
||||
.capitalize()
|
||||
.replace(/Id/g, 'ID');
|
||||
|
||||
export default RestSerializer.extend({
|
||||
serialize() {
|
||||
|
||||
Reference in New Issue
Block a user