Skip to content

Commit b36f936

Browse files
committed
Themes update.
1 parent 989016b commit b36f936

File tree

4 files changed

+53
-2
lines changed

4 files changed

+53
-2
lines changed

Changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ __*Why "v3.0.0" instead of "v1.0.0?"*__ Prior to phpMussel v3, the "phpMussel Co
77
### v3.0.1
88

99
[2020.07.31; Maikuolan]: Improved the way that the (generated by ...) notice, displayed at the footer of HTML pages, is rendered.
10+
11+
[2020.10.09; Maikuolan]: Aesthetic patch + added a new theme.

assets/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# License: GNU/GPLv2
88
# @see LICENSE.txt
99
#
10-
# This file: Configuration defaults file (last modified: 2020.08.06).
10+
# This file: Configuration defaults file (last modified: 2020.10.08).
1111
##/
1212

1313
web:
@@ -33,6 +33,7 @@ web:
3333
bluemetal: "Blue Metal"
3434
moss: "Moss"
3535
primer: "Primer"
36+
primerdark: "Primer Dark"
3637
rbi: "Red-Blue Inverted"
3738
slate: "Slate"
3839
magnification:

assets/template_primerdark.html

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!doctype html>
2+
<html lang="{xmlLang}" xml:lang="{xmlLang}" dir="{Text Direction}">
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5+
<meta name="robots" content="noindex,nofollow" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<link rel="shortcut icon" type="image/png" href="data:image/png;base64,{favicon}" />
8+
<title>phpMussel</title>
9+
<style>
10+
body,#wrapper{text-align:center}
11+
body{font-family:BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";letter-spacing:1px;text-decoration:none;border-style:none;margin:0;padding:0;white-space:normal;background-color:#18191a;color:#e4e6eb;font-size:calc(12px * {magnification})}
12+
hr{box-sizing:content-box;height:0;overflow:visible;height:0;margin:15px 0;overflow:hidden;background:0 0;border:0;border-bottom:1px solid #3a3b3c}
13+
hr::after{display:table;clear:both;content:""}
14+
hr::before{display:table;content:""}
15+
#wrapper,#pp{font-weight:700}
16+
#wrapper{border-width:1px;background-color:#242526;width:98%;margin:auto;padding:2px}
17+
#wrapper_inner{width:96%;margin:auto;padding:2px}
18+
#results,#phpmusselversion{color:#955}
19+
#denied{font-size:calc(20px * {magnification})}
20+
#footer_inner{font-size:calc(12px * {magnification});letter-spacing:0px;white-space:nowrap;text-align:right}
21+
#generated_by{color:#fff}
22+
#generated_by,#phpmusselversion{display:inline}
23+
#wrapper{background-color:#242526;border:none;border-radius:6px}
24+
#results{margin:10px;padding:2px}
25+
</style>
26+
</head>
27+
28+
<body>
29+
<div id="wrapper">
30+
<div id="wrapper_inner">
31+
<hr />
32+
<div id="results">
33+
<div id="denied"{Attache}>{denied}</div>
34+
<div id="denied_reason"{Attache}>{denied_reason}</div>
35+
</div>
36+
<div id="detected">{detected}</div>
37+
<hr />
38+
<div id="footer">
39+
<div id="footer_inner">
40+
<div id="generated_by"{Attache}>{GeneratedBy}</div>
41+
</div>
42+
</div>
43+
</div>
44+
</div>
45+
<div id="pp">{pp}</div>
46+
</body>
47+
48+
</html>

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"require": {
1414
"php": ">=7.2.0",
1515
"maikuolan/common": "^2.3.2",
16-
"phpmussel/core": "^3.0",
16+
"phpmussel/core": "^3.0.1",
1717
"ext-pcre": "*"
1818
},
1919
"autoload": {

0 commit comments

Comments
 (0)