Mooff |
08-01-2011 06:59 PM |
Quote:
Originally Posted by MARCO1
(Post 2227793)
UPDATE : Working on a full editor graphics customizing modification ... No ETA for it but I'll keep you up to date :)
Thanks Everyone.
|
If that helps, these are the stylevars i changed on our testboard via !important - setting it to something what should look similar to the old one in all our 9 styles:
additional.css
Code:
// CKE UF HAcKS
.cke_skin_kama *, .cke_skin_kama a:hover, .cke_skin_kama a:link, .cke_skin_kama a:visited, .cke_skin_kama a:active {
color: {vb:stylevar postbit_border} !important;
}
span.cke_skin_kama {
border: {vb:stylevar postbit_border} !important;
padding: 0px !important;
}
.cke_skin_kama .cke_wrapper {
//background-color: #D3D3D3;
//background-image: url("images/sprites.png");
background:{vb:stylevar postbit_userinfo_background} !important;
}
.cke_skin_kama .cke_toolgroup {
background: {vb:stylevar postbit_userinfo_background} !important;
}
.cke_skin_kama *, .cke_skin_kama a:hover, .cke_skin_kama a:link, .cke_skin_kama a:visited, .cke_skin_kama a:active {
color:{vb:stylevar body_color} !important;
}
.cke_skin_kama textarea.cke_source {
background:{vb:stylevar input_background} !important;
}
.cke_skin_kama .cke_contents {
border:solid 1px {vb:stylevar mid_border.borderColor} !important;
}
.cke_skin_kama .cke_button a:hover, .cke_skin_kama .cke_button a:focus, .cke_skin_kama .cke_button a:active
{
border:solid 1px {vb:stylevar mid_border.borderColor} !important;
background:{vb:stylevar postbit_background} !important;
}
.cke_skin_kama .cke_button a
{
border:solid 1px transparent !important;
}
.cke_skin_kama .cke_rcombo a, .cke_skin_kama .cke_rcombo a:active, .cke_skin_kama .cke_rcombo a:hover {
background: {vb:stylevar input_background} !important;
border-bottom: 1px solid {vb:stylevar mid_border.borderColor} !important;
border-radius: 5px 5px 5px 5px;
border-right: 1px solid {vb:stylevar mid_border.borderColor} !important;
}
.cke_skin_kama .cke_rcombo .cke_off a:hover .cke_openbutton,
.cke_skin_kama .cke_rcombo .cke_off a:focus .cke_openbutton,
.cke_skin_kama .cke_rcombo .cke_off a:active .cke_openbutton,
.cke_skin_kama .cke_rcombo .cke_on .cke_openbutton {
background: {vb:stylevar input_background} !important;
border: 0px solid transparent !important;
}
.cke_skin_kama .cke_dialog_body, .cke_skin_kama .cke_dialog_footer{
background: {vb:stylevar postbit_userinfo_background} !important;
border: 1px solid {vb:stylevar mid_border.borderColor} !important;
}
.cke_skin_kama .cke_dialog_contents {
background: {vb:stylevar postbit_background} !important;
border-color: {vb:stylevar mid_border.borderColor} {vb:stylevar mid_border.borderColor} -moz-use-text-color;
}
.cke_skin_kama a.cke_dialog_tab, .cke_skin_kama a.cke_dialog_tab:link, .cke_skin_kama a.cke_dialog_tab:active, .cke_skin_kama a.cke_dialog_tab:hover, .cke_skin_kama a.cke_dialog_tab:visited {
background-color: {vb:stylevar postbit_userinfo_background.backgroundColor} !important;
background-image: url("images/sprites.png");
}
.cke_skin_kama input.cke_dialog_ui_input_text, .cke_skin_kama input.cke_dialog_ui_input_password {
background:{vb:stylevar input_background} !important;
}
editor_contents.css
added some on top - can't put them in the additional.css cause they won't load in that iframe then.
Code:
.cke_panel_grouptitle {
background: {vb:stylevar postbit_userinfo_background}; !important;
color: {vb:stylevar body_color} !important;
}
.cke_panel_listItem a:hover,
.cke_panel_listItem a:focus,
.cke_panel_listItem a:active {
border: 1px solid {vb:stylevar postbit_border.Color} !important;
background: {vb:stylevar control_content_hover_background} !important;
color: {vb:stylevar control_content_hover_color} !important;
}
.cke_panel_listItem a
{
border: 1px solid {vb:stylevar postbit_border.Color} !important;
}
//body is modified
body,
body.content {
font: {vb:stylevar content_msg_font};
color: {vb:stylevar body_color};
/* Remove the background color to make it transparent */
//background-color: #fff;
background-color:{vb:stylevar wysiwyg_textbox_background.backgroundColor};
margin:0px;
padding:8px;
}
In addition we are using a "white" sprite for our dark skins.
Can't give you guys a live demo - still a long way to go for us updating to 4.1.5. (need to bugcheck ame, table, ckm, ..... ).
Anyway, the above might help you in that full edit. Cheers.
|