fix(static): fix not loading statics files
This commit is contained in:
parent
d8895530d1
commit
277342140c
12 changed files with 31 additions and 3 deletions
BIN
static/images/gnous.png
Normal file
BIN
static/images/gnous.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
BIN
static/images/icons/tipeee-tip-btn.png
Normal file
BIN
static/images/icons/tipeee-tip-btn.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
|
@ -1,5 +1,4 @@
|
||||||
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
|
@import url(uikit/uikit.min.css);
|
||||||
@import url(uikit/uikit.css);
|
|
||||||
html[data-theme="dark"] .uk-offcanvas .uk-nav > li > a.active {
|
html[data-theme="dark"] .uk-offcanvas .uk-nav > li > a.active {
|
||||||
color: #16171a; }
|
color: #16171a; }
|
||||||
html[data-theme="dark"] .uk-logo img {
|
html[data-theme="dark"] .uk-logo img {
|
||||||
|
@ -29,6 +28,8 @@ html[data-theme="dark"] .uk-card {
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap; }
|
white-space: nowrap; }
|
||||||
|
html[data-theme="dark"] .uk-card-secondary {
|
||||||
|
background: #23272A; }
|
||||||
html[data-theme="dark"] .uk-border-circle {
|
html[data-theme="dark"] .uk-border-circle {
|
||||||
box-shadow: -5px -5px 12px 0 rgba(41, 41, 41, 0.6), 5px 5px 12px 0 rgba(0, 0, 0, 0.3); }
|
box-shadow: -5px -5px 12px 0 rgba(41, 41, 41, 0.6), 5px 5px 12px 0 rgba(0, 0, 0, 0.3); }
|
||||||
html[data-theme="dark"] .uk-h1, html[data-theme="dark"] h1 {
|
html[data-theme="dark"] .uk-h1, html[data-theme="dark"] h1 {
|
||||||
|
@ -386,4 +387,12 @@ html[data-theme="light"] .subtitle-text {
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
opacity: 0.7; }
|
opacity: 0.7; }
|
||||||
|
|
||||||
|
.uk-label-success {
|
||||||
|
background-color: rgb(22, 101, 72);
|
||||||
|
}
|
||||||
|
|
||||||
|
.uk-label-warning {
|
||||||
|
background-color: rgb(145, 66, 4);
|
||||||
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=index.css.map */
|
/*# sourceMappingURL=index.css.map */
|
||||||
|
|
1
static/stylesheets/css/index.min.css
vendored
Normal file
1
static/stylesheets/css/index.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -35,4 +35,12 @@
|
||||||
.uk-border-circle {
|
.uk-border-circle {
|
||||||
box-shadow: -5px -5px 12px 0 rgba(255, 255, 255, 0.5), 5px 5px 12px 0 rgba(0, 0, 0, 0.1); }
|
box-shadow: -5px -5px 12px 0 rgba(255, 255, 255, 0.5), 5px 5px 12px 0 rgba(0, 0, 0, 0.1); }
|
||||||
|
|
||||||
|
.uk-label-success {
|
||||||
|
background-color: rgb(22, 101, 72);
|
||||||
|
}
|
||||||
|
|
||||||
|
.uk-label-warning {
|
||||||
|
background-color: rgb(145, 66, 4);
|
||||||
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=uikit_fix.css.map */
|
/*# sourceMappingURL=uikit_fix.css.map */
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
|
|
||||||
@import "uikit/uikit.css";
|
@import "uikit/uikit.css";
|
||||||
@import "variables";
|
@import "variables";
|
||||||
@import "uikit_fix";
|
@import "uikit_fix";
|
||||||
|
|
|
@ -49,6 +49,9 @@
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.uk-card-secondary {
|
||||||
|
background: #23272A;
|
||||||
|
}
|
||||||
|
|
||||||
.uk-border-circle {
|
.uk-border-circle {
|
||||||
box-shadow: map_get(map_get($themes, $theme), 'shadow');
|
box-shadow: map_get(map_get($themes, $theme), 'shadow');
|
||||||
|
@ -151,4 +154,12 @@ html[data-theme="dark"] {
|
||||||
|
|
||||||
html[data-theme="light"] {
|
html[data-theme="light"] {
|
||||||
@include render_theme('light')
|
@include render_theme('light')
|
||||||
|
}
|
||||||
|
|
||||||
|
.uk-label-success {
|
||||||
|
background-color: rgb(22, 101, 72);
|
||||||
|
}
|
||||||
|
|
||||||
|
.uk-label-warning {
|
||||||
|
background-color: rgb(145, 66, 4);
|
||||||
}
|
}
|
Loading…
Reference in a new issue