0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

rex0220 印刷屋プラグイン 見積書のCSSカスタマイズ

Last updated at Posted at 2025-02-26

rex0220 印刷屋プラグイン 見積書のCSSカスタマイズを行ってみます。

概要

サンプルの見積書は、シンプルなデザインですので少し CSS で装飾をしてみます。

  • 見積明細部分のヘッダー部の色
  • 明細部について偶数・奇数行で背景色を交互にして視認性アップ

2025-02-27_00h23_20.png

  • CSS カスタマイズ前後の比較

2025-02-27_00h10_20.png

CSS カスタマイズ

共通CSSは、そのままで個別CSSに CSSを設定します。
帳票には、共通CSS+個別CSSが適用されますが、個別CSSの効果が優先されます。

2025-02-27_00h13_37.png

2025-02-27_00h29_06.png

見積明細部へのCSS適用内容

.pcraft-inv-item-table thead {
    background-color: #2c3e50;
    color: white;
}

.pcraft-inv-item-table th,
.pcraft-inv-item-table td {
    border: 1px solid #ddd;
}

.pcraft-inv-item-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?