Compare commits
2 Commits
cb1d4cdb7f
...
4a166496a2
| Author | SHA1 | Date |
|---|---|---|
|
|
4a166496a2 | |
|
|
5eaa1286e9 |
|
|
@ -33,7 +33,7 @@ blockquote, button, fieldset, iframe {border: 0;}
|
||||||
cite, em, u, address, i {font-style: normal;}
|
cite, em, u, address, i {font-style: normal;}
|
||||||
img {border: 0; vertical-align: top;}
|
img {border: 0; vertical-align: top;}
|
||||||
hr, legend {position: absolute; left: -9999px; top: -9999px;}
|
hr, legend {position: absolute; left: -9999px; top: -9999px;}
|
||||||
caption {text-indent: -9999px; font-size: 0;}
|
/*caption {text-indent: -9999px; font-size: 0;}*/
|
||||||
li {list-style: none;}
|
li {list-style: none;}
|
||||||
table {width: 100%; table-layout: fixed; border-collapse: collapse;}
|
table {width: 100%; table-layout: fixed; border-collapse: collapse;}
|
||||||
a:link, a:visited, a:hover, a:active {text-decoration: none;}
|
a:link, a:visited, a:hover, a:active {text-decoration: none;}
|
||||||
|
|
|
||||||
|
|
@ -141,7 +141,7 @@ function CodeViewer(props) {
|
||||||
item.full_content = item.full_content.replace('<table ', '<table class="table table-bordered "')
|
item.full_content = item.full_content.replace('<table ', '<table class="table table-bordered "')
|
||||||
}
|
}
|
||||||
if(item.error_cd !== null){
|
if(item.error_cd !== null){
|
||||||
item.full_content += "<div class='errorText'>"+item.error_cd+"</div>";
|
item.full_content = "<div class='errorText'>"+item.error_cd+"</div>"+item.full_content;
|
||||||
}
|
}
|
||||||
detailTag.push(
|
detailTag.push(
|
||||||
<VwDiv depth={item.cont_level} isTitle={isTitle} id={item.cont_type_cd} dangerouslySetInnerHTML={ {__html: item.full_content} }></VwDiv>
|
<VwDiv depth={item.cont_level} isTitle={isTitle} id={item.cont_type_cd} dangerouslySetInnerHTML={ {__html: item.full_content} }></VwDiv>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue