parent
c4a54b5c8f
commit
8d2853c53e
@ -7,27 +7,9 @@
|
||||
body {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: #FF4081;
|
||||
a {
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #FF4081;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #FF4081;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:active {
|
||||
color: #FF4081;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
@ -37,10 +19,16 @@
|
||||
document.getElementById("build_time").innerHTML = "Build time: " + time;
|
||||
document.getElementById("git_commit").innerHTML = "Git commit: " + gitCommit;
|
||||
}
|
||||
function changeColor(color){
|
||||
var aList = document.getElementsByTagName("a");
|
||||
for(var i = 0; i < aList.length;i++){
|
||||
aList[i].style.color = color;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<body>
|
||||
<br>
|
||||
<div style="padding:40px 0;">
|
||||
<img width="100" height="100" src="itxtech.png"/><br>
|
||||
<div style="font-size:25px"><a href="https://itxtech.org">iTX Technologies</a></div>
|
||||
<br>
|
||||
@ -86,5 +74,6 @@
|
||||
<a href="https://github.com/shadowsocks/shadowsocks-android">Shadowsocks</a>: <a
|
||||
href="https://github.com/shadowsocks/shadowsocks-android/blob/master/LICENSE">GPLv3</a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -7,27 +7,9 @@
|
||||
body {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: #FF4081;
|
||||
a {
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #FF4081;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #FF4081;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:active {
|
||||
color: #FF4081;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
@ -37,10 +19,17 @@
|
||||
document.getElementById("build_time").innerHTML = "构建时间:" + time;
|
||||
document.getElementById("git_commit").innerHTML = "Git commit:" + gitCommit;
|
||||
}
|
||||
function changeColor(color){
|
||||
var aList = document.getElementsByTagName("a");
|
||||
for(var i = 0; i < aList.length;i++){
|
||||
aList[i].style.color = color;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<body>
|
||||
<br>
|
||||
|
||||
<div style="padding: 40px 0;">
|
||||
<img width="100" height="100" src="itxtech.png"/><br>
|
||||
<div style="font-size:25px"><a href="https://itxtech.org">iTX Technologies</a></div>
|
||||
<br>
|
||||
@ -86,5 +75,6 @@
|
||||
<a href="https://github.com/shadowsocks/shadowsocks-android">Shadowsocks</a>: <a
|
||||
href="https://github.com/shadowsocks/shadowsocks-android/blob/master/LICENSE">GPLv3</a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -61,6 +61,7 @@ public class AboutFragment extends ToolbarFragment {
|
||||
public void onPageFinished(WebView view, String url) {
|
||||
super.onPageFinished(view, url);
|
||||
try {
|
||||
mWebView.loadUrl("javascript:changeColor('"+(Daedalus.isDarkTheme() ? "#FFFFFF" : "#000000")+"')");
|
||||
mWebView.loadUrl("javascript:changeVersionInfo('" + Daedalus.getInstance().getPackageManager().getPackageInfo(Daedalus.getInstance().getPackageName(), 0).versionName + "', '" + BuildConfig.BUILD_TIME + "', '" + BuildConfig.GIT_COMMIT + "')");
|
||||
} catch (Exception e) {
|
||||
Log.e("DAboutActivity", e.toString());
|
||||
|
@ -1,6 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="colorPrimary">#3F51B5</color>
|
||||
<color name="colorPrimaryDark">#303F9F</color>
|
||||
<color name="colorAccent">#FF4081</color>
|
||||
<color name="colorPrimaryDark">#2f42b5</color>
|
||||
<color name="colorPrimaryLight">#3F81f1</color>
|
||||
<color name="colorAccent">#3F51B5</color>
|
||||
<color name="colorAccentMark">#f2f2f2</color>
|
||||
</resources>
|
||||
|
@ -8,9 +8,9 @@
|
||||
<item name="colorAccent">@color/colorAccent</item>
|
||||
</style>
|
||||
<style name="AppTheme.Dark" parent="Theme.AppCompat.NoActionBar">
|
||||
<item name="colorPrimary">@color/colorPrimary</item>
|
||||
<item name="colorPrimary">@color/colorPrimaryLight</item>
|
||||
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
||||
<item name="colorAccent">@color/colorAccent</item>
|
||||
<item name="colorAccent">@color/colorPrimaryLight</item>
|
||||
</style>
|
||||
<style name="AppTheme.NoActionBar">
|
||||
<item name="windowActionBar">false</item>
|
||||
|
Loading…
Reference in New Issue
Block a user