XF 1.3 Which style property is this form?

ThEDoZEr

Member
Hi guys, trying to edit this style property (see attached screenshot). I can't seem to find which one it is.

Any help is appreciated?

Thanks
D
 

Attachments

  • media-form-style.webp
    media-form-style.webp
    19.9 KB · Views: 18
Hi guys, trying to edit this style property (see attached screenshot). I can't seem to find which one it is.

Any help is appreciated?

Thanks
D
Are you talking about what I have highlighted red?

Screen Shot 2014-05-20 at 6.02.40 AM.webp

EDIT:

If so, try (in your EXTRA.css)
Code:
#redactor_media_link  {
background-color:blue;
color:white;
}
where the background color is what you want. You may need to use an !important declaration after the color.

Default mine looks like this
Screen Shot 2014-05-20 at 6.14.47 AM.webp

Now it looks like this
Screen Shot 2014-05-20 at 6.14.24 AM.webp
 
Last edited:
Are you talking about what I have highlighted red?

View attachment 74062

EDIT:

If so, try (in your EXTRA.css)
Code:
#redactor_media_link  {
background-color:blue;
color:white;
}
where the background color is what you want. You may need to use an !important declaration after the color.

Default mine looks like this
View attachment 74063

Now it looks like this
View attachment 74064


That will only change it in that overlay. There is a style property for that.

Style properties -> form type overlays -> text control

Will likely have to do focused state as well
 
That will only change it in that overlay. There is a style property for that.

Style properties -> form type overlays -> text control

Will likely have to do focused state as well
Yes, but I assumed a literal request to style that specific property shown - not the general Overlay TextControl. :D
Since he specifically used that overlay I was under the assumption he wanted just that one done in specificity. To do all of them across the board then yes, the ACP style properties will work.
 
Top Bottom