Skip to content

Commit 803c9b6

Browse files
resources fix
1 parent be4bcb6 commit 803c9b6

File tree

6 files changed

+12
-2
lines changed

6 files changed

+12
-2
lines changed

resources/data.zip

69.7 KB
Binary file not shown.

resources/html/.exclude.files

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/*.gz
2+
/.exclude.files

resources/html/css/style.css

+7-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,10 @@ label {white-space: nowrap;}
1010
.spacer {text-align: center; font-weight: 300; color: #ccc; padding-bottom: 10px; margin: 15px 0px 15px 0px; border-bottom: 1px solid #ccc;}
1111
.comment {margin: 1em 0;}
1212
.frame {width: 100%; height: 480px; min-height: 50px; resize: vertical;}
13-
.iframe {resize: vertical; width: 100%; height: 100%; frameborder: 0; scrolling:"yes";}
13+
.iframe {resize: vertical; width: 100%; height: 100%; frameborder: 0; scrolling:"yes";}
14+
body {
15+
background-image: url('wallpaper.jpg');
16+
background-repeat: no-repeat;
17+
background-attachment: fixed;
18+
background-size: cover;
19+
}

resources/html/css/wallpaper.jpg

73.9 KB
Loading

resources/html/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
7-
<meta name="theme-color" content="#1f8dd6">
7+
<meta name="theme-color" content="#2a3033">
88
<title>EmbUI</title>
99
<link rel="stylesheet" href="css/all.css">
1010
</head>

resources/respack.sh

+2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ echo "Preparing resources for EmbUI FS image"
44

55
mkdir -p ./data/css ./data/js ./data/login ./data/extras
66
cat html/css/*.css | gzip -9 > ./data/css/all.css.gz
7+
cat html/css/wallpaper.jpg | gzip -9 > ./data/css/wallpaper.jpg.gz
78
cat html/js/*.js | gzip -9 > ./data/js/all.js.gz
89
cat html/index.html | gzip -9 > ./data/index.html.gz
910
cat html/favicon.ico | gzip -9 > ./data/favicon.ico.gz
11+
cat html/.exclude.files > ./data/.exclude.files
1012

1113
cat html/login/index.htm | gzip -9 > ./data/login/index.htm.gz
1214
cat html/login/favicon.ico | gzip -9 > ./data/login/favicon.ico.gz

0 commit comments

Comments
 (0)