/*
Theme Name: Hestia Pro Child
Theme URI: https://www.themeisle.com/
Description: This is a custom child theme I have created.
Author: ThemeIsle
URI: https://www.themeisle.com/
Template: hestia-pro
Version: 0.1
*/



/**
 * WordPressブロックエディターのプレースホルダーをカスタマイズ（最終確定版）
 */

/* --------------------------------------------------- */
/* (A) クリック後の空の段落に表示されるプレースホルダー */
/* --------------------------------------------------- */

/* 元のテキストを持つspanタグを、フォントサイズ0にして見えなくする */
p.block-editor-rich-text__editable[data-empty="true"] > span[data-rich-text-placeholder] {
    font-size: 0 !important;
}

/* 疑似要素(::after)を使い、その上に新しい文章を表示する */
p.block-editor-rich-text__editable[data-empty="true"] > span[data-rich-text-placeholder]::after {
    /* ↓ ここに表示したい文章を記述 */
    content: "ここに文章を入力します。＋ボタンから画像などを追加できます。";

    /* ↓ エディターの文字サイズに合わせて調整してください */
    font-size: 16px;
    
    /* プレースホルダーの文字色。お好みで調整してください */
    color: #757575;
}

/* ------------------------------------------------------------- */
/* (B) 初期状態の「ブロックを選択するには「/」を入力」は非表示のまま */
/* ------------------------------------------------------------- */
.block-editor-default-block-appender__content {
    display: none !important;
}

/* TranslatePressの「Translate Page」ボタンを非表示にする */
#trp-link-id {
    display: none !important;
}

.editor-document-bar{
	display: none !important;
}

