Results 1 to 14 of 14

Thread: CSS editor 2.8

  1. #1
    User
    Join Date
    07-20-09.
    Location
    Middlesbrough - United Kingdom
    Posts
    95

    Default CSS editor 2.8

    since i updated to version 2.8 - 2.8.2 of typolight when i use the css editor i have to save and close when i have finsihed making changes then re-open the style sheet for the changes to be applied to the front end, i have tried this on 4 different websites and i have the same problem. is this something i am doing or is it a problem with the module?

    thanks,
    Ste

  2. #2
    Official Contao Team
    Join Date
    06-10-09.
    Location
    Stuttgart, Germany
    Posts
    68

    Default Re: CSS editor 2.8

    Hi Ste,

    i know about this issue since 2.8 - at the moment you need to save css file twice to get it working well.
    ---------------------------------------------------
    kind regards planepix

    Official Contao team member - Official Contao partner
    workshop contao conference site 2011
    workshop contao conference site 2012

  3. #3
    User
    Join Date
    07-20-09.
    Location
    Middlesbrough - United Kingdom
    Posts
    95

    Default Re: CSS editor 2.8

    great its not just me then, lol.

    any news on a fix?

  4. #4
    Official Contao Team
    Join Date
    06-10-09.
    Location
    Stuttgart, Germany
    Posts
    68

    Default Re: CSS editor 2.8

    guess we send cyril, the autor of this extension a memo and ask...

    Edit: I dropped him a note.
    ---------------------------------------------------
    kind regards planepix

    Official Contao team member - Official Contao partner
    workshop contao conference site 2011
    workshop contao conference site 2012

  5. #5
    User
    Join Date
    07-20-09.
    Location
    Middlesbrough - United Kingdom
    Posts
    95

    Default Re: CSS editor 2.8

    great thanks

  6. #6
    New user
    Join Date
    06-11-09.
    Location
    Valence, France
    Posts
    21

    Default Re: CSS editor 2.8

    Hi matchboxhero an planepix,

    I just correct it. It is caused by the new TYPOlight's database cache, appeared in 2.8
    You can now re-install CssEditor from Extension repository.

    Thanks for your interest for CSS Editor

  7. #7
    Official Contao Team
    Join Date
    06-10-09.
    Location
    Stuttgart, Germany
    Posts
    68

    Default Re: CSS editor 2.8

    Thank you Cyril for your time to fix it!!

    Your extension is mentioned in my TYPOlight book too, with credits too. Unfortunatly published in german language...

    Update: Missing the sourceeditors functions, there is just a blank editing window after update. In settings CSSEditor is activated, but the RTE isn't loaded as in versions before. Something missing...?

    I think i found it:

    in "CssEditor.php, line 49:
    Code:
    		$GLOBALS['TL_JAVASCRIPT'][] = 'system/modules/css_editor/editarea/edit_area_full.js';
    should be

    Code:
    		$GLOBALS['TL_JAVASCRIPT'][] = 'system/modules/css_editor/editarea/edit_area_full_with_plugins.js';
    then it works.
    ---------------------------------------------------
    kind regards planepix

    Official Contao team member - Official Contao partner
    workshop contao conference site 2011
    workshop contao conference site 2012

  8. #8
    New user
    Join Date
    06-11-09.
    Location
    Valence, France
    Posts
    21

    Default Re: CSS editor 2.8

    Hi Thomasn

    Thanks for your fast feedback
    Sorry for this new issue, on my computer I test with the last editarea which have a different filename (I put it in a future release of CSS editor )
    I've corrected the version 2.5.0, you can do a repair.

  9. #9
    User
    Join Date
    07-20-09.
    Location
    Middlesbrough - United Kingdom
    Posts
    95

    Default Re: CSS editor 2.8

    hey,

    thanks for fixing this so quickly. i cant get away with using the normal editor for css it just takes too long for my liking, lol.

    i shall install the update now. .

  10. #10
    Official Contao Team
    Join Date
    06-10-09.
    Location
    Stuttgart, Germany
    Posts
    68

    Default Re: CSS editor 2.8

    Salut Cyril,

    do you plan to update the CSSEditor extension for 2.9?

    Merci et a bientôt
    Thomas
    ---------------------------------------------------
    kind regards planepix

    Official Contao team member - Official Contao partner
    workshop contao conference site 2011
    workshop contao conference site 2012

  11. #11
    New user
    Join Date
    02-15-11.
    Posts
    14

    Default csseditor-bug

    Hi,
    I found a little bug in the csseditor-extension.

    1) Create a new stylesheet and open the source code.
    Paste the following css-code in the editor:
    .foo {
    border-width: 0 0 1px 0;
    border-color: #ffffff #eeeeee #dddddd #cccccc;
    }

    2) Pressing: Save+Close
    3) Opening again the css-code returns this:
    .foo
    {
    border-top:0 #ffffff;
    border-right:0 #ffffff;
    border-bottom:1 #ffffff;
    border-left:0 #ffffff;
    }
    -> there is no 'px' after the 1, it should be:
    border-bottom:1px #ffffff;

    Contao: 2.9.3
    csseditor 2.5.5 stable

    Greetings
    Siegi

  12. #12
    Official Contao Team
    Join Date
    06-10-09.
    Location
    Stuttgart, Germany
    Posts
    68

    Default Contao 2.9.3 & csseditor 2.5.5 stable

    Hi all,
    salut Cyril,

    some of us found some small bugs too:

    1. When using this:
    Code:
    a[href^="http://"]
    and save it you get:
    Code:
    "]
    Does the csseditor support at the moment css3 definitions?

    2. When using the Cufón Extension and click the csseditor icon the cufon selection is deleted.
    So at the moment you ned to use a workaround therefor:
    Make a separate cufon.sss file and edit these only with the internal css editor.

    May be you can fix this in a next release?

    Merci bien.

    Thomas
    ---------------------------------------------------
    kind regards planepix

    Official Contao team member - Official Contao partner
    workshop contao conference site 2011
    workshop contao conference site 2012

  13. #13
    Official Contao Team
    Join Date
    06-10-09.
    Location
    Stuttgart, Germany
    Posts
    68

    Default csseditor using under Contao 2.9.4

    Hi all,

    using the latest version of csseditor and Contao 2.9.4.

    Didn't found it why all settings get converted when using zero as a value like

    Code:
    #id{margin:0 0 10px 0;}
    After copy paste from Firebug live editing window and save the css file the values goes to:

    Code:
    #id{margin:0pt 0pt 10px 0pt;}
    Any one else can report this?
    ---------------------------------------------------
    kind regards planepix

    Official Contao team member - Official Contao partner
    workshop contao conference site 2011
    workshop contao conference site 2012

  14. #14
    Community-Moderator xchs's Avatar
    Join Date
    06-19-09.
    Posts
    1,287

    Default Re: CSS editor 2.8

    Hi planepix,
    Quote Originally Posted by planepix
    Any one else can report this?
    No, nothing so far. If I C&P this format definition
    Code:
    #id{margin:0 0 10px 0;}
    into the code editor I get this:
    Code:
    #id
    {
    	margin:0 0 10px;
    }
    Contao Community Moderator
    → Support options

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •