18 lines
242 B
CSS
18 lines
242 B
CSS
.read_only_cipf {
|
|
.acf-input {
|
|
position: relative;
|
|
* {
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
> * {
|
|
color: #666;
|
|
background-color: #f0f0f1;
|
|
filter: grayscale(100%);
|
|
}
|
|
textarea {
|
|
pointer-events: auto;
|
|
}
|
|
}
|
|
}
|