Merhabalar arkadaşlar. Şu kodu kullanarak sitemde metin seçimini devre dışı bıraktım:
* { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
Ancak bu kodu wp-block-table class'ı bulunan pre (pre.wp-block-table) ve code elementinde devre bışı bırakmak istiyorum. Şunu denedim olmadı:
*:not(pre.wp-block-code, code)
Ayrıdan şunu oluşturup denedim, yine olmadı:
pre.wp-block-code, code { -webkit-touch-callout: auto !important; -webkit-user-select: auto !important; -khtml-user-select: auto !important; -moz-user-select: auto !important; -ms-user-select: auto !important; user-select: auto !important; }
Bunun çözümü nedir acaba? Nasıl bir yol izlemeliyim ki kod blokları hariç her yerde etkin olsun?