1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

kintone ナビゲーションに開発環境を表示

Posted at

kintone の本番環境と開発環境の識別のため、ナビゲーションに"開発環境"を表示してみます。

概要

kintone の本番環境と開発環境の識別のため、ナビゲーションに"開発環境"を表示
画面をスクロールしても、表示が残ります。
ただし管理画面には、"開発環境"が表示されません。
kintone 全体のカスタマイズで、css を指定します。

ヘッダーの色を本番環境と開発環境で、変えることも有効です。

  • ポータル
    2024-05-15_12h50_24.png

  • アプリ画面
    2024-05-15_12h50_06.png

  • アプリ管理画面には、"開発環境"が表示されない
    2024-05-15_12h54_03.png

kintone 全体のカスタマイズ

kintone システム管理からJavaScript / CSSでカスタマイズを指定します。
文字・サイズ・色などをカスタマイズしてください。

2024-05-15_12h55_38.png

.css
#header-global-navigation-root nav>div:first-child>ul::after {
    content: "開発環境";
    color: #c97171;
    font-size: 28px;
    font-weight: bold;
    margin-left: 6px;
}

ヘッダーの色

kintone システム管理からヘッダーの色を指定します。

2024-05-15_13h00_22.png

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?