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.css);
|
||||
@import url(uikit/uikit.min.css);
|
||||
html[data-theme="dark"] .uk-offcanvas .uk-nav > li > a.active {
|
||||
color: #16171a; }
|
||||
html[data-theme="dark"] .uk-logo img {
|
||||
|
@ -29,6 +28,8 @@ html[data-theme="dark"] .uk-card {
|
|||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap; }
|
||||
html[data-theme="dark"] .uk-card-secondary {
|
||||
background: #23272A; }
|
||||
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); }
|
||||
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;
|
||||
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 */
|
||||
|
|
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 {
|
||||
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 */
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
|
||||
@import "uikit/uikit.css";
|
||||
@import "variables";
|
||||
@import "uikit_fix";
|
||||
|
|
|
@ -49,6 +49,9 @@
|
|||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
.uk-card-secondary {
|
||||
background: #23272A;
|
||||
}
|
||||
|
||||
.uk-border-circle {
|
||||
box-shadow: map_get(map_get($themes, $theme), 'shadow');
|
||||
|
@ -151,4 +154,12 @@ html[data-theme="dark"] {
|
|||
|
||||
html[data-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