The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Need Help W/CSS Code in Additional template
I'm trying to edit the editor on a skin that I plan on putting in my skin shop. Its a dark skin so the white or light borders and backgrounds inside the drop down is not suitable for what I'm doing.
I'm able to edit the editor.css file and change the CSS I want to change to make the borders/backgrounds dark, but when I add the code into the additional.css template and even include !important in the code it will not show properly on the skin. For obvious reasons its not optimal to have this code in the editor.css file since this skin will be redistributed. The css code that does change the borders is... Code:
.cke_panel_listItem a { padding:2px; display:block; border:1px solid #000000!important; color:inherit!important; text-decoration:none; overflow:hidden; text-overflow:ellipsis; }* Code:
.cke_panel_listItem a { border:1px solid #000000!important; }* |
#2
|
|||
|
|||
I don't think there's any alternative to editing editor.css. The CK Editor imports or pulls in (if that's the right term) the editor.css template. If you want another css file to override it it would take a plugin to concatenate it into the list. I don't know if you want a plugin in a style package but I think I can get it going if you want to add another css file as a template.
See line 122 vb/ckeditor.php. I've added more css by concatenation in the editor_construct hook. I think I can get it working. But the bottom line is nothing in additional.css will affect the editor |
#3
|
||||
|
||||
the ckeditor loads in an iframe of sorts, you cant edit it via additional.css
|
#4
|
||||
|
||||
You did not read my post. I DID make edits and add the css to additional.css and it does not work. The code posted above IS in my additional.css template.
|
#5
|
||||
|
||||
Please re-read the my statement.
You cannot make changes to the additional.css that will effect ckeditor templates/areas because they're loaded in an iframe. |
#6
|
||||
|
||||
Quote:
|
#7
|
||||
|
||||
Ok in that case how can I make it do as I want?
|
#8
|
|||
|
|||
You can try this plugin.
hook location "editor_construct" Code:
$this->config['contentsCss'] .= $css_path . ',editor_additional.css'; The editor does not import additional.css you have to extend the list of templates with one of your own |
#9
|
||||
|
||||
Quote:
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|