Skip to content

Commit b5e60e2

Browse files
committed
Fix layout background color for dark mode
1 parent 394fb15 commit b5e60e2

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@
6262
"interactive": "browser-sync . --startPath website-target/1-dev --files website-target"
6363
},
6464
"devDependencies": {
65-
"@fortawesome/fontawesome-free": "~6.7",
65+
"@fortawesome/fontawesome-free": "~7.0",
6666
"add-dist-header": "~1.5",
6767
"browser-sync": "~3.0",
6868
"copy-file-util": "~1.3",
6969
"copy-folder-util": "~1.1",
70-
"dna-engine": "~3.2",
70+
"dna-engine": "~3.3",
7171
"hamburger-menu": "~0.6",
7272
"jshint": "~2.13",
73-
"less": "~4.3",
73+
"less": "~4.4",
7474
"replacer-util": "~1.4",
7575
"rev-web-assets": "~1.4",
7676
"rimraf": "~6.0",

src/resources/graphics/application/splash.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!doctype html>
2+
<html lang=en>
23
<!-- - - - - - - - -->
34
<!-- Snap Backup -->
45
<!-- Splash Screen -->
56
<!-- - - - - - - - -->
6-
<html lang=en>
77
<head>
88
<meta charset=utf-8>
99
<title>Snap Backup &bull; Splash Screen</title>

src/resources/snap-backup-user-guide.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!doctype html>
2+
<html lang=en>
23
<!-- - - - - - - - - - - - - -->
34
<!-- Snap Backup User Guide -->
45
<!-- - - - - - - - - - - - - -->
5-
<html lang=en>
66
<head>
77
<meta charset=utf-8>
88
<meta name=viewport content="width=device-width, initial-scale=1">

website/snap-backup.less

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/* Live in Style -- Snap Backup */
22
/* Colors: teal, darkcyan, palegreen, yellow */
33

4+
@import "node_modules/web-ignition/dist/utility-box";
5+
46
// Layout
57
body {
68
margin: 0px;
@@ -27,7 +29,7 @@ body >header .arch {
2729
}
2830
body >header .arch >div {
2931
height: 200px;
30-
background-color: white;
32+
background-color: white; .DarkMode({ background-color: @colorCharcoal; });
3133
border: 4px solid teal;
3234
border-right: none;
3335
border-bottom: none;
@@ -69,7 +71,6 @@ main >section >nav a:not(:last-child)::after {
6971
content: "|";
7072
font-size: 1.0rem;
7173
color: silver;
72-
background-color: white;
7374
padding: 0px 5px 0px 8px;
7475
}
7576
main >section .language-flags img {

website/templates/page-begin.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!doctype html>
2+
<html lang=en>
23
<!-- - - - - - - - - -->
34
<!-- Snap Backup -->
45
<!-- snapbackup.org -->
56
<!-- - - - - - - - - -->
6-
<html lang=en>
77
<head>
88
<meta charset=utf-8>
99
<meta name=viewport content="width=device-width, initial-scale=1">
@@ -39,6 +39,7 @@
3939
<nav class=hamburger-menu>
4040
<a class=hamburger href=#>&#9776;</a>
4141
<aside>
42+
<!-- menu -->
4243
<ul>
4344
<li data-menu=gateway> <a href={{webRoot}}>Home</a></li>
4445
<li data-menu=preview> <a href={{webRoot}}/screen>Preview</a></li>

0 commit comments

Comments
 (0)