heliumスキンでのNP_AccessAnalyzeデザイン調整
- 投稿日 : 2012-02-21, 10:45
- 最終更新日時 : 2012-02-21 10:56:29(履歴)
- タグ(NucleusPlugin)
- カテゴリ(Weblog)
- 記し人(luvsic)[PDF]
- 閲覧数(2678)
NP_AccessAnalyze(ver1.3)をNP_znCustomAdminのheliumスキンで利用している際に、デザインが見づらくなるのを調整するCSSコード。
accessanalyze/NP_AccessAnalyze_MngPage.php の550行目付近
オリジナルのCSS
<style type="text/css">
<!--
.showtable {
margin-top: 0;
border: solid 1px Silver;
}
.showtable caption {
text-align: left;
font-weight: bold;
}
.showtable th {
padding: 0px;
line-height: 18px;
border: solid 1px Silver;
background-color: gainsboro;
}
.showtable td {
padding: 0px;
line-height: 16px;
border-top: dashed 1px Silver;
border-bottom: none;
}
.showtable img {
vertical-align: top;
padding-top: 3px;
height: 10px;
}
//-->
</style>
調整後のCSS
<style type="text/css">
<!--
h3 {
margin: 15px;
}
.showtable {
margin-top: 15px;
}
.showtable caption {
text-align: left;
padding: 3px 5px 1px;
}
.showtable th {
padding: 0px;
}
.showtable td {
padding: 0px;
}
.showtable img {
vertical-align: top;
padding-top: 3px;
height: 10px;
}
//-->
</style>
No comments yet