Skip to content

Commit b2a3efa

Browse files
committed
refactor(assets): updated version 3.0.0
1 parent d9beb43 commit b2a3efa

File tree

224 files changed

+60320
-50388
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

224 files changed

+60320
-50388
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,3 @@ gulpfile.tmp.*
5757
# HTML files
5858
/html-demo
5959
/html-starter-demo
60-
61-
# Package Lock files
62-
/package-lock.json
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
dist
22
node_modules
3-
build
3+
build
4+
_temp/

.stylelintrc.json

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
{
2+
"extends": [
3+
"stylelint-config-standard-scss",
4+
"stylelint-config-idiomatic-order",
5+
"@stylistic/stylelint-config"
6+
],
7+
"plugins": [
8+
"stylelint-use-logical-spec",
9+
"@stylistic/stylelint-plugin"
10+
],
11+
"rules": {
12+
"alpha-value-notation": null,
13+
"at-rule-empty-line-before": null,
14+
"block-no-empty": null,
15+
"color-function-notation": null,
16+
"color-named": "never",
17+
"custom-property-empty-line-before": null,
18+
"custom-property-pattern": null,
19+
"declaration-block-no-redundant-longhand-properties": null,
20+
"declaration-empty-line-before": null,
21+
"declaration-no-important": null,
22+
"font-family-no-missing-generic-family-keyword": [
23+
true,
24+
{
25+
"ignoreFontFamilies": [
26+
"boxicons",
27+
"tabler-icons",
28+
"remix-icons"
29+
]
30+
}
31+
],
32+
"font-weight-notation": [
33+
"numeric",
34+
{
35+
"ignore": [
36+
"relative"
37+
]
38+
}
39+
],
40+
"function-url-no-scheme-relative": true,
41+
"liberty/use-logical-spec": true,
42+
"media-feature-range-notation": null,
43+
"media-query-no-invalid": null,
44+
"no-descending-specificity": null,
45+
"no-invalid-double-slash-comments": true,
46+
"no-invalid-position-at-import-rule": null,
47+
"number-max-precision": null,
48+
"rule-empty-line-before": null,
49+
"selector-class-pattern": null,
50+
"selector-id-pattern": null,
51+
"selector-max-attribute": 2,
52+
"selector-max-id": 1,
53+
"selector-max-specificity": null,
54+
"selector-not-notation": null,
55+
"scss/at-extend-no-missing-placeholder": null,
56+
"scss/at-function-named-arguments": "never",
57+
"scss/at-if-closing-brace-newline-after": null,
58+
"scss/at-if-closing-brace-space-after": null,
59+
"scss/at-if-no-null": null,
60+
"scss/at-mixin-pattern": null,
61+
"scss/at-mixin-argumentless-call-parentheses": "always",
62+
"scss/at-rule-conditional-no-parentheses": null,
63+
"scss/comment-no-empty": null,
64+
"scss/dimension-no-non-numeric-values": true,
65+
"scss/dollar-variable-empty-line-before": null,
66+
"scss/dollar-variable-pattern": null,
67+
"scss/double-slash-comment-empty-line-before": null,
68+
"scss/double-slash-comment-whitespace-inside": null,
69+
"scss/function-quote-no-quoted-strings-inside": null,
70+
"scss/media-feature-value-dollar-variable": null,
71+
"scss/no-global-function-names": null,
72+
"@stylistic/at-rule-name-space-after": "always",
73+
"@stylistic/at-rule-semicolon-space-before": "never",
74+
"@stylistic/block-closing-brace-empty-line-before": null,
75+
"@stylistic/block-closing-brace-newline-after": [
76+
"always",
77+
{
78+
"ignoreAtRules": [
79+
"if",
80+
"else"
81+
]
82+
}
83+
],
84+
"@stylistic/block-opening-brace-space-before": null,
85+
"@stylistic/declaration-block-semicolon-newline-before": "never-multi-line",
86+
"@stylistic/indentation": 2,
87+
"@stylistic/max-empty-lines": 2,
88+
"@stylistic/max-line-length": [
89+
220,
90+
{
91+
"ignore": "comments"
92+
}
93+
],
94+
"@stylistic/no-eol-whitespace": true,
95+
"@stylistic/number-leading-zero": "never",
96+
"@stylistic/selector-list-comma-newline-before": "never-multi-line",
97+
"@stylistic/selector-list-comma-space-after": "always-single-line",
98+
"@stylistic/selector-list-comma-space-before": "never-single-line",
99+
"@stylistic/unicode-bom": "never"
100+
},
101+
"overrides": [
102+
{
103+
"files": [
104+
"**/_bootstrap-extended/**/*.scss"
105+
],
106+
"rules": {
107+
"declaration-property-value-disallowed-list": {
108+
"border": "none",
109+
"outline": "none"
110+
},
111+
"function-disallowed-list": [
112+
"lighten",
113+
"darken"
114+
],
115+
"property-disallowed-list": [
116+
"border-radius",
117+
"border-top-left-radius",
118+
"border-top-right-radius",
119+
"border-bottom-right-radius",
120+
"border-bottom-left-radius",
121+
"transition"
122+
],
123+
"scss/dollar-variable-default": [
124+
true,
125+
{
126+
"ignore": "local"
127+
}
128+
],
129+
"scss/selector-no-union-class-name": true
130+
}
131+
}
132+
]
133+
}

.vscode/extensions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
"mrmlnc.vscode-scss",
1111
"gamunu.vscode-yarn",
1212
"zignd.html-css-class-completion",
13+
"stylelint.vscode-stylelint",
1314
]
1415
}

.vscode/settings.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
{
22
"editor.wordWrap": "off",
33
"editor.formatOnSave": true,
4+
"editor.codeActionsOnSave": {
5+
"source.fixAll": "explicit"
6+
},
47
"files.trimFinalNewlines": true,
5-
"diffEditor.ignoreTrimWhitespace": false,
8+
"diffEditor.ignoreTrimWhitespace": true,
69
"search.exclude": {
710
"**/node_modules": true,
811
"*.min.js": true,
@@ -30,9 +33,11 @@
3033
"[markdown]": {
3134
"editor.defaultFormatter": "esbenp.prettier-vscode"
3235
},
33-
"[scss]": {
34-
"editor.defaultFormatter": "esbenp.prettier-vscode"
35-
},
36+
// Extension: Stylelint
37+
"stylelint.packageManager": "pnpm",
38+
"stylelint.validate": [
39+
"scss"
40+
],
3641
"[css]": {
3742
"editor.defaultFormatter": "esbenp.prettier-vscode"
3843
},

assets/css/demo.css

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
height: 64px;
88
}
99

10-
.dark-style .menu .app-brand.demo {
11-
height: 64px;
12-
}
13-
1410
.app-brand-logo.demo svg {
1511
width: 30px;
1612
height: 24px;
@@ -24,7 +20,9 @@
2420
font-size: 1.5rem;
2521
text-transform: capitalize;
2622
}
27-
/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
23+
24+
/* ! For .layout-navbar-fixed added fix padding top to .layout-page */
25+
/* Default navbar */
2826
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
2927
padding-top: 64px !important;
3028
}
@@ -71,16 +69,6 @@
7169
margin-top: 0 !important;
7270
}
7371

74-
.rtl-only {
75-
display: none !important;
76-
text-align: left !important;
77-
direction: ltr !important;
78-
}
79-
80-
[dir='rtl'] .rtl-only {
81-
display: block !important;
82-
}
83-
8472
/* Dropdown buttons going out of small screens */
8573
@media (max-width: 576px) {
8674
#dropdown-variation-demo .btn-group .text-truncate {

assets/img/elements/1.jpg

-17.7 KB
Binary file not shown.

assets/img/elements/1.png

305 KB
Loading

assets/img/elements/10.png

442 KB
Loading

assets/img/elements/11.jpg

-18.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)