mirror of https://github.com/vtrois/kratos
parent
b0fd30c2d7
commit
0905b89f87
|
@ -2,105 +2,109 @@
|
||||||
* Kratos
|
* Kratos
|
||||||
* Seaton Jiang <hi@seatonjiang.com>
|
* Seaton Jiang <hi@seatonjiang.com>
|
||||||
*/
|
*/
|
||||||
; (function () {
|
(function () {
|
||||||
'use strict'
|
"use strict";
|
||||||
|
|
||||||
var KRATOS_VERSION = '4.1.5'
|
var KRATOS_VERSION = "4.1.6";
|
||||||
|
|
||||||
var navbarConfig = function () {
|
var navbarConfig = function () {
|
||||||
$('#navbutton').on('click', function () {
|
$("#navbutton").on("click", function () {
|
||||||
$('.navbar-toggler').toggleClass('nav-close')
|
$(".navbar-toggler").toggleClass("nav-close");
|
||||||
})
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
var tooltipConfig = function () {
|
var tooltipConfig = function () {
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
$('[data-toggle="tooltip"]').tooltip();
|
||||||
}
|
};
|
||||||
|
|
||||||
var gotopConfig = function () {
|
var gotopConfig = function () {
|
||||||
$(window).on('load', function () {
|
$(window).on("load", function () {
|
||||||
var $win = $(window)
|
var $win = $(window);
|
||||||
var setShowOrHide = function () {
|
var setShowOrHide = function () {
|
||||||
if ($win.scrollTop() > 200) {
|
if ($win.scrollTop() > 200) {
|
||||||
$('.gotop').addClass('active')
|
$(".gotop").addClass("active");
|
||||||
} else {
|
} else {
|
||||||
$('.gotop').removeClass('active')
|
$(".gotop").removeClass("active");
|
||||||
}
|
|
||||||
}
|
|
||||||
setShowOrHide()
|
|
||||||
$win.scroll(setShowOrHide)
|
|
||||||
})
|
|
||||||
$('.gotop').on('click', function (event) {
|
|
||||||
event.preventDefault()
|
|
||||||
$('html, body').animate({ scrollTop: $('html').offset().top }, 500)
|
|
||||||
return false
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
setShowOrHide();
|
||||||
|
$win.scroll(setShowOrHide);
|
||||||
|
});
|
||||||
|
$(".gotop").on("click", function (event) {
|
||||||
|
event.preventDefault();
|
||||||
|
$("html, body").animate({ scrollTop: $("html").offset().top }, 500);
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
var searchConfig = function () {
|
var searchConfig = function () {
|
||||||
$('.search').on('click', function (e) {
|
$(".search").on("click", function (e) {
|
||||||
$('.search-form').animate({ width: '200px' }, 200)
|
$(".search-form").animate({ width: "200px" }, 200);
|
||||||
$('.search-form input').css('display', 'block')
|
$(".search-form input").css("display", "block");
|
||||||
$(document).one('click', function () {
|
$(document).one("click", function () {
|
||||||
$('.search-form').animate({ width: '0' }, 100)
|
$(".search-form").animate({ width: "0" }, 100);
|
||||||
$('.search-form input').hide()
|
$(".search-form input").hide();
|
||||||
})
|
});
|
||||||
e.stopPropagation()
|
e.stopPropagation();
|
||||||
})
|
});
|
||||||
$('.search-form').on('click', function (e) {
|
$(".search-form").on("click", function (e) {
|
||||||
e.stopPropagation()
|
e.stopPropagation();
|
||||||
})
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
var wechatConfig = function () {
|
var wechatConfig = function () {
|
||||||
$('.wechat').mouseout(function () {
|
$(".wechat").mouseout(function () {
|
||||||
$('.wechat-pic')[0].style.display = 'none'
|
$(".wechat-pic")[0].style.display = "none";
|
||||||
})
|
});
|
||||||
$('.wechat').mouseover(function () {
|
$(".wechat").mouseover(function () {
|
||||||
$('.wechat-pic')[0].style.display = 'block'
|
$(".wechat-pic")[0].style.display = "block";
|
||||||
})
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
var smiliesConfig = function () {
|
var smiliesConfig = function () {
|
||||||
$('#addsmile').on('click', function (e) {
|
$("#addsmile").on("click", function (e) {
|
||||||
$('.smile').toggleClass('open')
|
$(".smile").toggleClass("open");
|
||||||
$(document).one('click', function () {
|
$(document).one("click", function () {
|
||||||
$('.smile').toggleClass('open')
|
$(".smile").toggleClass("open");
|
||||||
})
|
});
|
||||||
e.stopPropagation()
|
e.stopPropagation();
|
||||||
return false
|
return false;
|
||||||
})
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
var postlikeConfig = function () {
|
var postlikeConfig = function () {
|
||||||
$.fn.postLike = function () {
|
$.fn.postLike = function () {
|
||||||
if ($(this).hasClass('done')) {
|
if ($(this).hasClass("done")) {
|
||||||
layer.msg(kratos.repeat, function () {})
|
layer.msg(kratos.repeat, function () {});
|
||||||
return false
|
return false;
|
||||||
} else {
|
} else {
|
||||||
$(this).addClass('done')
|
$(this).addClass("done");
|
||||||
layer.msg(kratos.thanks)
|
layer.msg(kratos.thanks);
|
||||||
var id = $(this).data('id'),
|
var id = $(this).data("id"),
|
||||||
action = $(this).data('action')
|
action = $(this).data("action");
|
||||||
var ajax_data = {
|
var ajax_data = {
|
||||||
action: 'love',
|
action: "love",
|
||||||
um_id: id,
|
um_id: id,
|
||||||
um_action: action
|
um_action: action,
|
||||||
}
|
};
|
||||||
$.post(kratos.site + '/wp-admin/admin-ajax.php', ajax_data, function (data) { })
|
$.post(
|
||||||
return false
|
kratos.site + "/wp-admin/admin-ajax.php",
|
||||||
}
|
ajax_data,
|
||||||
}
|
function (data) {}
|
||||||
$(document).on('click', '.btn-thumbs', function () {
|
);
|
||||||
$(this).postLike()
|
return false;
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
$(document).on("click", ".btn-thumbs", function () {
|
||||||
|
$(this).postLike();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
var donateConfig = function () {
|
var donateConfig = function () {
|
||||||
$('#donate').on('click', function () {
|
$("#donate").on("click", function () {
|
||||||
layer.open({
|
layer.open({
|
||||||
type: 1,
|
type: 1,
|
||||||
area: ['300px', '370px'],
|
area: ["300px", "370px"],
|
||||||
title: kratos.donate,
|
title: kratos.donate,
|
||||||
resize: false,
|
resize: false,
|
||||||
scrollbar: false,
|
scrollbar: false,
|
||||||
|
@ -115,86 +119,97 @@
|
||||||
kratos.directory +
|
kratos.directory +
|
||||||
'/assets/img/payment/alipay.png"></label><input id="wechatpay" type="radio" name="pay-method"><label for="wechatpay" class="pay-button"><img src="' +
|
'/assets/img/payment/alipay.png"></label><input id="wechatpay" type="radio" name="pay-method"><label for="wechatpay" class="pay-button"><img src="' +
|
||||||
kratos.directory +
|
kratos.directory +
|
||||||
'/assets/img/payment/wechat.png"></label></div></div>'
|
'/assets/img/payment/wechat.png"></label></div></div>',
|
||||||
})
|
});
|
||||||
$('.choose-pay input[type="radio"]').click(function () {
|
$('.choose-pay input[type="radio"]').click(function () {
|
||||||
var id = $(this).attr('id')
|
var id = $(this).attr("id");
|
||||||
if (id == 'alipay') {
|
if (id == "alipay") {
|
||||||
$('.qr-pay #alipay_qr').removeClass('d-none')
|
$(".qr-pay #alipay_qr").removeClass("d-none");
|
||||||
$('.qr-pay #wechat_qr').addClass('d-none')
|
$(".qr-pay #wechat_qr").addClass("d-none");
|
||||||
}
|
}
|
||||||
if (id == 'wechatpay') {
|
if (id == "wechatpay") {
|
||||||
$('.qr-pay #alipay_qr').addClass('d-none')
|
$(".qr-pay #alipay_qr").addClass("d-none");
|
||||||
$('.qr-pay #wechat_qr').removeClass('d-none')
|
$(".qr-pay #wechat_qr").removeClass("d-none");
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
var accordionConfig = function () {
|
var accordionConfig = function () {
|
||||||
$(document).on('click', '.acheader', function (event) {
|
$(document).on("click", ".acheader", function (event) {
|
||||||
var $this = $(this)
|
var $this = $(this);
|
||||||
$this.closest('.accordion').find('.contents').slideToggle(300)
|
$this.closest(".accordion").find(".contents").slideToggle(300);
|
||||||
if ($this.closest('.accordion').hasClass('active')) {
|
if ($this.closest(".accordion").hasClass("active")) {
|
||||||
$this.closest('.accordion').removeClass('active')
|
$this.closest(".accordion").removeClass("active");
|
||||||
} else {
|
} else {
|
||||||
$this.closest('.accordion').addClass('active')
|
$this.closest(".accordion").addClass("active");
|
||||||
}
|
|
||||||
event.preventDefault()
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
event.preventDefault();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
var consoleConfig = function () {
|
var consoleConfig = function () {
|
||||||
console.log('\n Kratos v' + KRATOS_VERSION + '\n\n https://github.com/seatonjiang/kratos \n\n')
|
console.log(
|
||||||
}
|
"\n Kratos v" +
|
||||||
|
KRATOS_VERSION +
|
||||||
|
"\n\n https://github.com/seatonjiang/kratos \n\n"
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
var lightGalleryConfig = function () {
|
var lightGalleryConfig = function () {
|
||||||
if (kratos.lightgallery === '1' && window.lightGallery !== undefined) {
|
if (kratos.lightgallery === "1" && window.lightGallery !== undefined) {
|
||||||
lightGallery(document.getElementById('lightgallery'), {
|
lightGallery(document.getElementById("lightgallery"), {
|
||||||
selector: 'a[href$=".jpg"], a[href$=".jpeg"], a[href$=".png"], a[href$=".gif"], a[href$=".bmp"], a[href$=".webp"]'
|
selector:
|
||||||
})
|
'a[href$=".jpg"], a[href$=".jpeg"], a[href$=".png"], a[href$=".gif"], a[href$=".bmp"], a[href$=".webp"]',
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', function () {
|
|
||||||
accordionConfig()
|
|
||||||
navbarConfig()
|
|
||||||
tooltipConfig()
|
|
||||||
gotopConfig()
|
|
||||||
searchConfig()
|
|
||||||
wechatConfig()
|
|
||||||
smiliesConfig()
|
|
||||||
postlikeConfig()
|
|
||||||
donateConfig()
|
|
||||||
consoleConfig()
|
|
||||||
lightGalleryConfig()
|
|
||||||
});
|
});
|
||||||
})()
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
document.addEventListener("DOMContentLoaded", function () {
|
||||||
|
accordionConfig();
|
||||||
|
navbarConfig();
|
||||||
|
tooltipConfig();
|
||||||
|
gotopConfig();
|
||||||
|
searchConfig();
|
||||||
|
wechatConfig();
|
||||||
|
smiliesConfig();
|
||||||
|
postlikeConfig();
|
||||||
|
donateConfig();
|
||||||
|
consoleConfig();
|
||||||
|
lightGalleryConfig();
|
||||||
|
});
|
||||||
|
})();
|
||||||
|
|
||||||
function grin(tag) {
|
function grin(tag) {
|
||||||
var myField
|
var myField;
|
||||||
tag = ' ' + tag + ' '
|
tag = " " + tag + " ";
|
||||||
if (document.getElementById('comment') && document.getElementById('comment').type == 'textarea') {
|
if (
|
||||||
myField = document.getElementById('comment')
|
document.getElementById("comment") &&
|
||||||
|
document.getElementById("comment").type == "textarea"
|
||||||
|
) {
|
||||||
|
myField = document.getElementById("comment");
|
||||||
} else {
|
} else {
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (document.selection) {
|
if (document.selection) {
|
||||||
myField.focus()
|
myField.focus();
|
||||||
sel = document.selection.createRange()
|
sel = document.selection.createRange();
|
||||||
sel.text = tag
|
sel.text = tag;
|
||||||
myField.focus()
|
myField.focus();
|
||||||
} else if (myField.selectionStart || myField.selectionStart == '0') {
|
} else if (myField.selectionStart || myField.selectionStart == "0") {
|
||||||
var startPos = myField.selectionStart
|
var startPos = myField.selectionStart;
|
||||||
var endPos = myField.selectionEnd
|
var endPos = myField.selectionEnd;
|
||||||
var cursorPos = endPos
|
var cursorPos = endPos;
|
||||||
myField.value = myField.value.substring(0, startPos) + tag + myField.value.substring(endPos, myField.value.length)
|
myField.value =
|
||||||
cursorPos += tag.length
|
myField.value.substring(0, startPos) +
|
||||||
myField.focus()
|
tag +
|
||||||
myField.selectionStart = cursorPos
|
myField.value.substring(endPos, myField.value.length);
|
||||||
myField.selectionEnd = cursorPos
|
cursorPos += tag.length;
|
||||||
|
myField.focus();
|
||||||
|
myField.selectionStart = cursorPos;
|
||||||
|
myField.selectionEnd = cursorPos;
|
||||||
} else {
|
} else {
|
||||||
myField.value += tag
|
myField.value += tag;
|
||||||
myField.focus()
|
myField.focus();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@ if (defined('WP_USE_THEMES') && WP_USE_THEMES === false) {
|
||||||
* @version 2022.11.27
|
* @version 2022.11.27
|
||||||
*/
|
*/
|
||||||
|
|
||||||
define('THEME_VERSION', '4.1.5');
|
define('THEME_VERSION', '4.1.6');
|
||||||
|
|
||||||
// 主题配置
|
// 主题配置
|
||||||
require get_template_directory() . '/inc/codestar-framework/autoload.php';
|
require get_template_directory() . '/inc/codestar-framework/autoload.php';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "4.1.5",
|
"version": "4.1.6",
|
||||||
"details_url": "https://github.com/seatonjiang/kratos/releases/tag/v4.1.5",
|
"details_url": "https://github.com/seatonjiang/kratos/releases/tag/v4.1.6",
|
||||||
"download_url": "https://cdn.seatonjiang.com/kratos/v4.1.5.zip"
|
"download_url": "https://cdn.seatonjiang.com/kratos/v4.1.6.zip"
|
||||||
}
|
}
|
56
style.css
56
style.css
|
@ -2,7 +2,7 @@
|
||||||
/*
|
/*
|
||||||
Theme Name: Kratos
|
Theme Name: Kratos
|
||||||
Text Domain: kratos
|
Text Domain: kratos
|
||||||
Version: 4.1.5
|
Version: 4.1.6
|
||||||
Requires PHP: 7.4
|
Requires PHP: 7.4
|
||||||
Description: 主题提供了多种针对自媒体博客需求的侧栏工具,删繁就简专注于用户的阅读体验,优化的邮件中心为你的网站留存加分添彩。
|
Description: 主题提供了多种针对自媒体博客需求的侧栏工具,删繁就简专注于用户的阅读体验,优化的邮件中心为你的网站留存加分添彩。
|
||||||
Tags: 博客, 双栏, 响应式, 自定义背景, 自定义颜色, 自定义图标, 自定义菜单, 特色图像, 收录优化, 邮件中心, 主题选项, 小工具, 文章置顶, 无障碍友好
|
Tags: 博客, 双栏, 响应式, 自定义背景, 自定义颜色, 自定义图标, 自定义菜单, 特色图像, 收录优化, 邮件中心, 主题选项, 小工具, 文章置顶, 无障碍友好
|
||||||
|
@ -42,7 +42,8 @@ body {
|
||||||
background: #f5f5f5;
|
background: #f5f5f5;
|
||||||
font-weight: 350;
|
font-weight: 350;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, opensans, Optima, 'Microsoft Yahei', sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, opensans, Optima,
|
||||||
|
"Microsoft Yahei", sans-serif;
|
||||||
line-height: 1.8;
|
line-height: 1.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -322,7 +323,7 @@ button:focus {
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
border-left: 0;
|
border-left: 0;
|
||||||
content: '\e62e';
|
content: "\e62e";
|
||||||
vertical-align: unset;
|
vertical-align: unset;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-family: kicon;
|
font-family: kicon;
|
||||||
|
@ -402,7 +403,6 @@ button:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 992px) {
|
@media screen and (max-width: 992px) {
|
||||||
|
|
||||||
.navbar-light .navbar-nav .dropdown-menu,
|
.navbar-light .navbar-nav .dropdown-menu,
|
||||||
.navbar-light .navbar-nav .dropdown-item.active,
|
.navbar-light .navbar-nav .dropdown-item.active,
|
||||||
.navbar-light .navbar-nav .dropdown-item:active,
|
.navbar-light .navbar-nav .dropdown-item:active,
|
||||||
|
@ -717,7 +717,7 @@ ol {
|
||||||
border-top: 4px solid transparent;
|
border-top: 4px solid transparent;
|
||||||
border-bottom: 4px solid transparent;
|
border-bottom: 4px solid transparent;
|
||||||
border-left: 4px solid #00a2ff;
|
border-left: 4px solid #00a2ff;
|
||||||
content: '';
|
content: "";
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -939,7 +939,7 @@ ol {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
color: #71777c;
|
color: #71777c;
|
||||||
content: '\B7';
|
content: "\B7";
|
||||||
}
|
}
|
||||||
|
|
||||||
.k-main .details .article .content {
|
.k-main .details .article .content {
|
||||||
|
@ -957,7 +957,7 @@ ol {
|
||||||
.k-main .details .article .content p::after {
|
.k-main .details .article .content p::after {
|
||||||
clear: both;
|
clear: both;
|
||||||
display: block;
|
display: block;
|
||||||
content: '';
|
content: "";
|
||||||
}
|
}
|
||||||
|
|
||||||
.k-main .details .article .content h2,
|
.k-main .details .article .content h2,
|
||||||
|
@ -1127,7 +1127,7 @@ ol {
|
||||||
.k-main .details .article .content .alignright::after {
|
.k-main .details .article .content .alignright::after {
|
||||||
clear: both;
|
clear: both;
|
||||||
display: block;
|
display: block;
|
||||||
content: '';
|
content: "";
|
||||||
}
|
}
|
||||||
|
|
||||||
.k-main .details .article .content .alignleft {
|
.k-main .details .article .content .alignleft {
|
||||||
|
@ -1728,7 +1728,15 @@ ol {
|
||||||
padding-top: 4.8px;
|
padding-top: 4.8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.k-main .details .comments .comment-respond .comment-textarea .text-bar .tool a img {
|
.k-main
|
||||||
|
.details
|
||||||
|
.comments
|
||||||
|
.comment-respond
|
||||||
|
.comment-textarea
|
||||||
|
.text-bar
|
||||||
|
.tool
|
||||||
|
a
|
||||||
|
img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1749,7 +1757,12 @@ ol {
|
||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.k-main .details .comments .comment-respond .comment-textarea #cancel-comment-reply-link {
|
.k-main
|
||||||
|
.details
|
||||||
|
.comments
|
||||||
|
.comment-respond
|
||||||
|
.comment-textarea
|
||||||
|
#cancel-comment-reply-link {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 6px 12px;
|
padding: 6px 12px;
|
||||||
border: none;
|
border: none;
|
||||||
|
@ -1778,7 +1791,14 @@ ol {
|
||||||
transform-origin: 50% 0;
|
transform-origin: 50% 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.k-main .details .comments .comment-respond .comment-textarea .text-bar .smile a {
|
.k-main
|
||||||
|
.details
|
||||||
|
.comments
|
||||||
|
.comment-respond
|
||||||
|
.comment-textarea
|
||||||
|
.text-bar
|
||||||
|
.smile
|
||||||
|
a {
|
||||||
float: left;
|
float: left;
|
||||||
display: block;
|
display: block;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
|
@ -1959,7 +1979,7 @@ ol {
|
||||||
width: 72px;
|
width: 72px;
|
||||||
height: 2px;
|
height: 2px;
|
||||||
background-color: #00a2ff;
|
background-color: #00a2ff;
|
||||||
content: '';
|
content: "";
|
||||||
}
|
}
|
||||||
|
|
||||||
.k-main .sidebar .w-tags .item a {
|
.k-main .sidebar .w-tags .item a {
|
||||||
|
@ -2207,7 +2227,7 @@ ol {
|
||||||
border: 2px solid #00a2ff;
|
border: 2px solid #00a2ff;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
content: '';
|
content: "";
|
||||||
}
|
}
|
||||||
|
|
||||||
.k-main .sidebar .w-toc .item .ul-toc::before {
|
.k-main .sidebar .w-toc .item .ul-toc::before {
|
||||||
|
@ -2247,7 +2267,7 @@ ol {
|
||||||
border: 3px solid #fff;
|
border: 3px solid #fff;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
background: #a7a7a7;
|
background: #a7a7a7;
|
||||||
content: '';
|
content: "";
|
||||||
}
|
}
|
||||||
|
|
||||||
.k-main .sidebar .w-toc .item .li-1::before {
|
.k-main .sidebar .w-toc .item .li-1::before {
|
||||||
|
@ -2327,7 +2347,7 @@ ol {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
content: '';
|
content: "";
|
||||||
}
|
}
|
||||||
|
|
||||||
.k-main .page404 .overlay:before {
|
.k-main .page404 .overlay:before {
|
||||||
|
@ -2388,7 +2408,11 @@ ol {
|
||||||
}
|
}
|
||||||
|
|
||||||
.k-main .page404 .content .action .back-index:hover,
|
.k-main .page404 .content .action .back-index:hover,
|
||||||
.k-main .page404 .content .action .back-index:not(:disabled):not(.disabled):active {
|
.k-main
|
||||||
|
.page404
|
||||||
|
.content
|
||||||
|
.action
|
||||||
|
.back-index:not(:disabled):not(.disabled):active {
|
||||||
border-color: #d8dcdf;
|
border-color: #d8dcdf;
|
||||||
background-color: #f6f4f4;
|
background-color: #f6f4f4;
|
||||||
color: #666;
|
color: #666;
|
||||||
|
|
Loading…
Reference in New Issue