Authored by yyq

style

require('3party/question-detail.page.css');
let $ = require('yoho-jquery');
let $ = require('yoho-jquery'),
tipDg = require('plugin/tip');
let question = {
$base: $('#qs-wrap'),
... ... @@ -166,6 +167,8 @@ let question = {
}).then(function(data) {
if (data.code === 200) {
window.history.go(-1);
} else {
tipDg.show(data.message || '网络出了点问题~');
}
});
}
... ...
... ... @@ -50,6 +50,7 @@ body {
> dd {
border-top: 1px solid $borderColor;
color: #b4b4b4;
input {
width: calc(100% - 60px);
... ... @@ -66,6 +67,7 @@ body {
resize: none;
border: 1px solid #ddd;
display: block;
color: #555;
}
.iconfont {
... ... @@ -73,7 +75,7 @@ body {
width: 34px;
height: 34px;
line-height: 34px;
border: 1px solid #444;
border: 1px solid #b4b4b4;
vertical-align: middle;
font-size: 18px;
text-align: center;
... ... @@ -97,6 +99,7 @@ body {
}
.on .iconfont {
border-color: #444;
background-color: #444;
}
}
... ...