This commit is contained in:
Federico Ricchiuto 2022-05-02 13:32:56 +03:00 committed by GitHub
commit 8e61563c44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 31087 additions and 2082 deletions

View file

@ -1,74 +1,92 @@
{ {
"rules": { "extends": "stylelint-config-standard-scss",
"color-hex-case": "lower", "rules": {
"color-no-invalid-hex": true, "alpha-value-notation": "number",
"at-rule-empty-line-before": null,
"function-calc-no-unspaced-operator": true, "color-hex-case": "lower",
"function-comma-space-after": "always-single-line", "color-no-invalid-hex": true,
"function-comma-space-before": "never", "declaration-block-no-redundant-longhand-properties": null,
"function-name-case": "lower", "declaration-empty-line-before": null,
"function-url-quotes": "always", "no-duplicate-selectors": null,
"function-whitespace-after": "always", "function-calc-no-unspaced-operator": true,
"function-comma-newline-after": null,
"number-leading-zero": "always", "function-comma-space-after": "always-single-line",
"number-no-trailing-zeros": true, "function-comma-space-before": "never",
"length-zero-no-unit": true, "function-max-empty-lines": 1,
"function-name-case": "lower",
"string-no-newline": true, "function-parentheses-newline-inside": null,
"string-quotes": "single", "function-url-quotes": "always",
"function-whitespace-after": "always",
"unit-case": "lower", "indentation": [
"unit-no-unknown": true, 2,
"unit-whitelist": ["px", "%", "deg", "ms", "em", "vh", "vw", "s", "rem"], { "indentInsideParens": "once-at-root-twice-in-block" }
],
"value-list-comma-space-after": "always-single-line", "max-empty-lines": 2,
"value-list-comma-space-before": "never", "no-empty-source": null,
"number-leading-zero": null,
"shorthand-property-no-redundant-values": true, "number-no-trailing-zeros": null,
"length-zero-no-unit": true,
"property-case": "lower", "property-no-vendor-prefix": null,
"rule-empty-line-before": null,
"declaration-block-no-duplicate-properties": [ true, { "scss/at-mixin-argumentless-call-parentheses": null,
"ignore": ["consecutive-duplicates-with-different-values"] "scss/at-import-partial-extension": null,
}], "scss/dollar-variable-empty-line-before": null,
"declaration-block-trailing-semicolon": "always", "scss/double-slash-comment-empty-line-before": null,
"declaration-block-single-line-max-declarations": 1, "selector-attribute-quotes": "always",
"declaration-block-semicolon-space-before": "never", "selector-class-pattern": null,
"declaration-block-semicolon-space-after": "always-single-line", "selector-list-comma-newline-after": null,
"declaration-block-semicolon-newline-before": "never-multi-line", "selector-type-no-unknown": [
"declaration-block-semicolon-newline-after": "always-multi-line", true,
"declaration-property-value-blacklist": [ { "ignoreTypes": ["/^nb-/", "/^ngx-/", "router-outlet", "chart", "agm-map", "search-input" ]}
{ "/.*/": ["initial"] },
{ "message": "The `initial` value is not supported in IE."}
], ],
"string-no-newline": true,
"block-closing-brace-newline-after": [ "string-quotes": "single",
"always", "unit-case": "lower",
{ "unit-no-unknown": true,
"ignoreAtRules": ["if", "else"] "unit-allowed-list": [ "px", "%", "deg", "ms", "em", "vh", "vw", "s", "rem" ],
} "value-list-comma-space-after": "always-single-line",
], "value-list-comma-space-before": "never",
"block-closing-brace-newline-before": "always-multi-line", "value-list-max-empty-lines": 1,
"block-opening-brace-newline-after": "always-multi-line", "shorthand-property-no-redundant-values": true,
"block-opening-brace-space-before": "always-multi-line", "property-case": "lower",
"declaration-block-no-duplicate-properties": [
"selector-attribute-brackets-space-inside": "never", true,
"selector-attribute-operator-space-after": "never", { "ignore": [ "consecutive-duplicates-with-different-values" ] }
"selector-attribute-operator-space-before": "never", ],
"selector-combinator-space-after": "always", "declaration-block-trailing-semicolon": "always",
"selector-combinator-space-before": "always", "declaration-block-single-line-max-declarations": 1,
"selector-pseudo-class-case": "lower", "declaration-block-semicolon-space-before": "never",
"selector-pseudo-class-parentheses-space-inside": "never", "declaration-block-semicolon-space-after": "always-single-line",
"selector-pseudo-element-case": "lower", "declaration-block-semicolon-newline-before": "never-multi-line",
"selector-pseudo-element-colon-notation": "double", "declaration-block-semicolon-newline-after": "always-multi-line",
"selector-pseudo-element-no-unknown": [true, { "declaration-property-value-disallowed-list": [
"ignorePseudoElements": ["ng-deep"] { "/.*/": [ "initial" ] },
}], { "message": "The `initial` value is not supported in IE." }
"selector-type-case": "lower", ],
"selector-max-id": 0, "block-closing-brace-newline-after": [
"always",
"no-missing-end-of-source-newline": true, { "ignoreAtRules": [ "if", "else" ] }
],
"max-line-length": 120 "block-closing-brace-newline-before": "always-multi-line",
} "block-opening-brace-newline-after": "always-multi-line",
"block-opening-brace-space-before": "always-multi-line",
"selector-attribute-brackets-space-inside": "never",
"selector-attribute-operator-space-after": "never",
"selector-attribute-operator-space-before": "never",
"selector-combinator-space-after": "always",
"selector-combinator-space-before": "always",
"selector-pseudo-class-case": "lower",
"selector-pseudo-class-parentheses-space-inside": "never",
"selector-pseudo-element-case": "lower",
"selector-pseudo-element-colon-notation": "double",
"selector-pseudo-element-no-unknown": [
true,
{ "ignorePseudoElements": [ "ng-deep" ] }
],
"selector-type-case": "lower",
"selector-max-id": 0,
"no-missing-end-of-source-newline": true,
"no-eol-whitespace": null,
"max-line-length": 120
}
} }

32979
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -102,7 +102,8 @@
"npm-run-all": "4.0.2", "npm-run-all": "4.0.2",
"protractor": "~7.0.0", "protractor": "~7.0.0",
"rimraf": "2.6.1", "rimraf": "2.6.1",
"stylelint": "7.13.0", "stylelint": "^14.5.0",
"stylelint-config-standard-scss": "^3.0.0",
"ts-node": "3.2.2", "ts-node": "3.2.2",
"tslint": "~6.1.0", "tslint": "~6.1.0",
"tslint-language-service": "^0.9.9", "tslint-language-service": "^0.9.9",

View file

@ -24,7 +24,7 @@
} }
::ng-deep nb-search button { ::ng-deep nb-search button {
padding: 0!important; padding: 0 !important;
} }
.header-container { .header-container {

View file

@ -4,7 +4,7 @@
* Licensed under the MIT License. See License.txt in the project root for license information. * Licensed under the MIT License. See License.txt in the project root for license information.
*/ */
@mixin ngx-pace-theme() { @mixin ngx-pace-theme() {
.pace .pace-progress { .pace .pace-progress {
background: nb-theme(color-primary-default); background: nb-theme(color-primary-default);

View file

@ -30,4 +30,4 @@
@include ngx-pace-theme(); @include ngx-pace-theme();
@include nb-overrides(); @include nb-overrides();
}; }

View file

@ -73,7 +73,7 @@
position: relative; position: relative;
&::before { &::before {
background-color: rgba(255, 255, 255, 0.1); background-color: rgb(255 255 255 / 0.1);
content: ''; content: '';
position: absolute; position: absolute;
width: 100%; width: 100%;

View file

@ -25,15 +25,6 @@
margin: 0 nb-theme(card-padding); margin: 0 nb-theme(card-padding);
} }
.delta {
&.up .direction {
color: nb-theme(color-success-default);
}
&.down .direction {
color: nb-theme(color-danger-default);
}
}
.delta { .delta {
position: absolute; position: absolute;
display: inline-block; display: inline-block;
@ -41,6 +32,13 @@
right: 0; right: 0;
@include nb-rtl(left, 0); @include nb-rtl(left, 0);
@include nb-rtl(right, auto); @include nb-rtl(right, auto);
&.up .direction {
color: nb-theme(color-success-default);
}
&.down .direction {
color: nb-theme(color-danger-default);
}
} }
ngx-earning-live-update-chart { ngx-earning-live-update-chart {

View file

@ -12,7 +12,6 @@
nb-chat { nb-chat {
margin: 3rem auto 0; margin: 3rem auto 0;
width: 500px; width: 500px;
} }
.chat-container { .chat-container {

View file

@ -6,7 +6,7 @@
margin: -0.5rem; margin: -0.5rem;
} }
div[class^=col-] { div[class^='col-'] {
padding: 0.5rem; padding: 0.5rem;
box-sizing: border-box; box-sizing: border-box;