更新
This commit is contained in:
parent
bbaa2acbb0
commit
d3b101d37e
2
assets/css/joe.census.min.css
vendored
2
assets/css/joe.census.min.css
vendored
File diff suppressed because one or more lines are too long
@ -202,7 +202,13 @@
|
||||
display: none;
|
||||
padding: 15px 15px 0 15px;
|
||||
li {
|
||||
line-height: 2.5;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
margin-bottom: 15px;
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
a {
|
||||
color: var(--routine);
|
||||
&:hover {
|
||||
|
@ -3,7 +3,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
/* 转换字节 */
|
||||
const bytesToSize = bytes => {
|
||||
if (!bytes) return '0 B';
|
||||
const k = 1024,
|
||||
const k = 1000,
|
||||
sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
|
||||
i = Math.floor(Math.log(bytes) / Math.log(k));
|
||||
return (bytes / Math.pow(k, i)).toPrecision(3) + ' ' + sizes[i];
|
||||
|
2
assets/js/joe.census.min.js
vendored
2
assets/js/joe.census.min.js
vendored
File diff suppressed because one or more lines are too long
@ -2,7 +2,7 @@
|
||||
/* 获取主题当前版本号 */
|
||||
function _getVersion()
|
||||
{
|
||||
return "7.1.0";
|
||||
return "7.1.1";
|
||||
};
|
||||
|
||||
/* 判断是否是手机 */
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "typecho-joe-next",
|
||||
"version": "7.1.0",
|
||||
"version": "7.1.1",
|
||||
"description": "A Theme Of Typecho",
|
||||
"main": "index.php",
|
||||
"keywords": [
|
||||
|
Loading…
Reference in New Issue
Block a user