Commit 173dc938 by lmf

优化底部点击隐藏

优化五星好评样式
parent ddc4d0c8
...@@ -64,4 +64,22 @@ $logoHeight = $logoSizeResolver !== null && $logoSizeResolver->getHeight() ...@@ -64,4 +64,22 @@ $logoHeight = $logoSizeResolver !== null && $logoSizeResolver->getHeight()
</span> </span>
</div> </div>
</div> </div>
\ No newline at end of file
<script>
require([
'jquery'
], function ($) {
//footer
$("h4").click(function () {
var dis = $(this).siblings("ul").css("display");
if (dis == "none"){
$(this).siblings("ul").css("display","block");
$(this).children("span").html('^')
}else{
$(this).siblings("ul").css("display","none");
$(this).children("span").html('>')
}
})
});
</script>
\ No newline at end of file
...@@ -1824,8 +1824,11 @@ button.action.submit.primary { ...@@ -1824,8 +1824,11 @@ button.action.submit.primary {
float: right; float: right;
} }
} }
.amreview-submit-form .review-control-vote.control label:before{ .amreview-submit-form .review-control-vote.control:before{
position: absolute; position: absolute !important;
}
.amreview-add-new .amreview-button.action{
background-color: #000;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment