{
"info": {
"author": "Plone Foundation",
"author_email": "plone-developers@lists.sourceforge.net",
"bugtrack_url": null,
"classifiers": [
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 5.0",
"Framework :: Plone :: 5.1",
"Framework :: Zope2",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7"
],
"description": "Sunburst, a theme for Plone 4\n=============================\n\nSunburst is a modern, minimalist, grid-based theme for Plone 4.\n\n.. contents:: Table of contents\n\nGoals\n-----\n\n- Keep the theme color-neutral (black, white, grays), so it meshes with any\n company logo and doesn't feel like it requires color adjustment for doing the\n 10-minute-show-it-to-the-boss exercise.\n\n- The theme does not use any tables for layout, and is based on the Deco grid\n approach which is currently in use on plone.org. It works perfectly in all\n browsers, including IE6.\n\n- The grid works in both fixed-width and flexible-width modes, there's a\n commented-out section in the top of the CSS file you can enable if you want\n fixed-width layout.\n\n- No substantial markup changes outside of the table removal - class and ID\n names are kept.\n\n- The theme uses some CSS3 features, but degrades gracefully.\n\n- The theme does not use any DTML.\n\n- When viewed on a device with less than 640px width, the portlets neatly tuck\n under the main content area. This means that the site works well with\n CSS-enabled devices like tablets and phones that may have limited resolution.\n\n\nHow to depend on Sunburst for your custom theme\n-----------------------------------------------\n\nSince Sunburst 1.4, Plone-UI generic styles are seperated from public.css,\nwhere only Sunburst-design specific styles were left. This reduces the need to\noverride style definitions to match your custom theme.\n\nHere is a way to only include specific stylesheets in your custom theme. This\nexample is based on Products.ResourceRegistries with the \"bundles\" concept,\nwhich is available from version 2.1a1.\n\nIn the cssregistry.xml profile, configure bundles for your styles:\n\n.. code-block:: xml\n\n \n \n\n\nIn registry.xml, configure the resource-bundles you want to include in your\ncustom theme. The \"sunburst\" bundle isn't inlcuded.\n\n.. code-block:: xml\n\n \n \n \n \n \n jquery\n default\n mycustombundle\n \n \n \n \n\nOf course, the mycustom_skin needs to be registered in skins.xml too.\n\nDetailed documentation\n======================\n\nSet up and log in\n-----------------\n\n >>> from plone.testing import z2\n >>> browser = z2.Browser(layer['app'])\n >>> browser.handleErrors = False\n >>> portal = layer['portal']\n >>> portal_url = portal.absolute_url()\n >>> portal.error_log._ignored_exceptions = ()\n >>> from plone.app.testing import SITE_OWNER_NAME\n >>> z2.login(layer['app']['acl_users'], SITE_OWNER_NAME)\n\nExample portlet\n >>> from zope.component import getUtility\n >>> from plone.portlets.interfaces import IPortletType\n >>> portlet = getUtility(IPortletType, name='portlets.Search')\n\nSunburst view\n-------------\n\nSunburst ships with a special main view similar to ploneview. It contains\nhelping methods relevant to the Sunburst theme only so it doesn't make sense\nto put these into global ploneview.\n\nFirst let's check that the view exists\n\n >>> from plonetheme.sunburst.browser.sunburstview import SunburstView\n >>> view = SunburstView(portal, layer['request'])\n\n\ngetColumnsClass()\n*****************\n\nThe getColumnsClass() method of SunburstView class returns CSS class based on\nexistence of the columns. This class is applied to\n
.\n\nNo columns\n~~~~~~~~~~\n\nOriginally on a fresh site we don't have portlets on the top level\n(login portlet has been disabled in Plone 4) and thus we should not\nhave any columns.\n\n >>> browser.open('http://nohost/plone/front-page')\n >>> 'id=\"portal-column-one\"' not in browser.contents\n True\n >>> 'id=\"portal-column-two\"' not in browser.contents\n True\n\nIn this case content column should take the whole width of the site\n\n >>> '
>> mapping = portal.restrictedTraverse('++contextportlets++plone.leftcolumn')\n >>> addview = mapping.restrictedTraverse('+/' + portlet.addview)\n >>> result = addview.createAndAdd({})\n >>> bool(result) # None or empty string\n False\n >>> import transaction\n >>> transaction.commit()\n >>> browser.reload()\n\nIn this case we should have the left column.\n\n >>> 'id=\"portal-column-one\"' in browser.contents\n True\n >>> 'id=\"portal-column-two\"' not in browser.contents\n True\n\nAnd the class on id=\"portal-column-content\" is changed\n\n >>> '
>> from Products.CMFCore.utils import getToolByName\n >>> tool = getToolByName(portal, \"portal_languages\")\n >>> tool.getDefaultLanguage()\n 'en'\n >>> tool.setDefaultLanguage('he')\n >>> transaction.commit()\n\nChanges aren't pick up immediately. We need to reload\n\n >>> 'dir=\"rtl\"' in browser.contents\n False\n >>> browser.reload()\n >>> 'dir=\"rtl\"' in browser.contents\n True\n\nAnd the class on id=\"portal-column-content\" should be changed as well\n\n >>> '
>> mapping = portal.restrictedTraverse('++contextportlets++plone.rightcolumn')\n >>> addview = mapping.restrictedTraverse('+/' + portlet.addview)\n >>> result = addview.createAndAdd({})\n >>> bool(result) # None or empty string\n False\n >>> transaction.commit()\n >>> browser.reload()\n\nIn this case we should have both columns visible.\n\n >>> 'id=\"portal-column-one\"' in browser.contents\n True\n >>> 'id=\"portal-column-two\"' in browser.contents\n True\n\nAnd the class on id=\"portal-column-content\" is changed\n\n >>> '
>> mapping = portal.restrictedTraverse('++contextportlets++plone.leftcolumn')\n >>> del mapping['search']\n >>> transaction.commit()\n\n >>> browser.reload()\n >>> 'id=\"portal-column-one\"' in browser.contents\n False\n >>> 'id=\"portal-column-two\"' in browser.contents\n True\n\nAnd now we check id=\"portal-column-content\". Since we are still in 'he'\nlanguage...\n\n >>> tool.getDefaultLanguage()\n 'he'\n\n... content column should start not from the left, but rather from\nposition-1:4 (1:4 on the left is taken by the right column in RTL)\n\n >>> '
>> tool.setDefaultLanguage('en')\n >>> transaction.commit()\n\nChanges aren't pick up immediately. We need to reload\n\n >>> 'dir=\"ltr\"' in browser.contents\n False\n >>> browser.reload()\n >>> 'dir=\"ltr\"' in browser.contents\n True\n\nAnd the class on id=\"portal-column-content\" should be changed as well\n\n >>> '
tag.\n [frapell]\n\n- Move logo.png to Products.CMFPlone\n [esteele]\n\n- Ported tests from PloneTestCase to plone.app.testing\n [tomgross]\n\n\n1.4.5 (2013-08-14)\n------------------\n\n- Fix tests to pass on Plone 4.4 (which currently has a Calendar\n portlet on the right by default) and keep them running on 4.3 too.\n [maurits]\n\n- Make portal messages display correctly (colors).\n https://dev.plone.org/ticket/13658\n [gbastien]\n\n\n1.4.4 (2013-06-13)\n------------------\n\n- fix green line showing under current select for green bar items in Firefox,\n Checked in Firefox, Chrome and IE8.\n [gbastien, vangheem]\n\n\n1.4.3 (2013-05-30)\n------------------\n\n- Revert dashboard permission change from 1.4.2. The dashboard works best when\n editable - linking to an uneditable dashboard should not be default.\n [danjacka]\n\n\n1.4.2 (2013-05-23)\n------------------\n\n- Remove font-weight bold for monthdays and font-weight normal for table header\n in portlet calendar. Set div.portletCalendar with to auto instead of\n unnecessary 100% + margin.\n [thet]\n\n- Users only require dashboard view - not edit - permission to get a 'Dashboard'\n link in the actions menu.\n [danjacka]\n\n\n1.4.1 (2013-03-05)\n------------------\n\n- fix navigation items having more height than bar in chrome\n [vangheem]\n\n- fix green line showing under current select for green bar items in chrome\n [vangheem]\n\n- change line height of listing table class to only apply to folder contents\n listing where it's affected instead of it applying to styles globally.\n fixes #13420\n [vangheem]\n\n- More cleanup. Move following remaining portlet styles out of public.css:\n - Dashboard styles to member.css,\n - Portlet management styles to controlpanel.css,\n - Other portlet styles to portlet.css.\n [thet]\n\n\n1.4 (2013-01-17)\n----------------\n\n- Move documentation from .txt to .rst files for ReST syntax highlighting.\n [thet]\n\n- Move workflow color definition for state \"published\" to public.css. The\n \"published\" color definition is propably something to be excluded with\n public.css in custom designs to avoid coloring of all normally visible links.\n [thet]\n\n- Seperate css rules based on @group hints to dedicated, already existing files\n and leave only Sunburst design-specific styles in public.css. This way, your\n own theme can depend on Sunburst but exclude the public.css file, which leads\n to way less style overrides while still having a Plone-like user interface\n (edit-bars, tables, forms, etc). Fixes pull-requests #1 and #2. Upgrade step\n included (upgrade_step_2_3).\n [thet, TH-code]\n\n\n1.3.1 (2013-01-01)\n------------------\n\n- Apply .portalMessage styling to reST admonitions\n https://github.com/plone/plonetheme.sunburst/pull/4\n [rpatterson]\n\n- style reset on th for table.plain and IE9, fixes #11589\n [maartenkling]\n\n- more specific Sunburst CSS on content-core dd, fixes #11840\n [maartenkling]\n\n\n1.3.0 (2012-10-16)\n------------------\n\n- Style #ajax-spinner rather than inserting #kss-spinner in main_template.\n [davisagli]\n\n- Style fixes for new style of portlet manager buttons.\n [vangheem]\n\n\n1.2.7 (2012-08-11)\n------------------\n- fixes: Display menu falls under footer (see Events page) (IE7)\n [maartenkling]\n\n- fixes: Live search appears under content action menu (IE7)\n [maartenkling]\n\n- style ol/li in statictext portlet having omit border true\n [maartenkling]\n\n- Fixes: in overlays, and especially in reference browser,\n label in an anchor link has a cursor pointer.\n Improves navigation experience in reference browser widget.\n [thomasdesvenain]\n\n- Fixes: compare previous link margin with history records\n is smaller.\n [thomasdesvenain]\n\n- Fixes and improvements on history popup with diff.\n [thomasdesvenain]\n\n- Move new CSS class generation into new function called ``getColumnClasses``\n to let the old and deprecated one return column content CSS class only. This\n is important to keep all previously customized main_templates working.\n [saily]\n\n\n1.2.6 (2012-06-29)\n------------------\n\n- Use sunburst_view to generate portal-column-one and portal-column-two\n classes as it is already done for portal-column-content.\n Fixes: https://dev.plone.org/ticket/12995\n [saily]\n\n\n1.2.5 (2012-05-25)\n------------------\n- For event view template, changed headerless table to headings and divs for better accessibility. See bug #13181\n [hmharter]\n\n- define class .breadcrumbSeparator, which is referred to in plone.app.layout\n and plone.app.search, but wasn't in Sunburst. Set a color on it, because\n the separator character was changed (see https://dev.plone.org/ticket/12904)\n The color chosen is WCAG2.0 compliant in contrast.\n [polyester]\n\n- Set \"display: block; font-weight:normal\" on .formHelp in forms.css.dtml to\n assure that field help displays well even if it is formatted as a span\n inside the label for accessibility.\n [smcmahon]\n\n- Change form tab style selectors from '#content' to '#content-core' so form\n tabs work in both content and overlays.\n [davidjb]\n\n- Fix vertical alignment of listing table cells when content type icons are\n enabled.\n [esteele]\n\n\n1.2.4 (2012-05-07)\n------------------\n\n- Add selector for AT required field icon\n [tom_gross]\n\n- Use CSS :content selector to inject required icon instead of image\n [tom_gross]\n\n1.2.3 (2012-04-15)\n------------------\n\n- Move .row and .cell styles from footer.pt to Sunburst main_template.\n Fixes https://dev.plone.org/ticket/12156\n [agnogueira]\n\n- fix 'device-width;\" for key \"width\" not recognized in chrome' in javascript console\n [eleddy]\n\n- Fix view windw error in chrome\n [plone konferenz coding dojo]\n\n\n1.2.2 (2012-02-07)\n------------------\n\n- Fix the styling of the standalone @@historyview view used when\n overlays are turned off.\n [rossp]\n\n\n1.2.1 (2011-08-25)\n------------------\n\n- Put #search-results-bar on a lower CSS layer to not overlap the livesearch\n [spliter]\n\n1.2 - 2011-07-19\n----------------\n\n- Switch to HTML5 doctype. References http://dev.plone.org/plone/ticket/11300\n [spliter]\n\n- Deprecated iefixes.js and IEFixes.css after we have introduced Modernizr.\n References http://dev.plone.org/plone/ticket/11300\n [spliter]\n\n- Merge PLIP 9352.\n [esteele]\n\n- Applied styles for search filter on search results page.\n References http://dev.plone.org/plone/ticket/9352\n [spliter]\n\n1.1.5 - 2011-07-04\n------------------\n\n- Fixed IE8 issue where a ghost top-margin would appear above the\n headline in the folder summary listing.\n [malthe]\n\n- Add shadow and border for iframe overlays to match images and ajax overlays.\n [smcmahon]\n\n- Fixed: portal footer is in a 'row' div.\n [thomasdesvenain]\n\n- Clean up HTML comments in main_template.\n [davisagli]\n\n- Add ids on content core viewlet managers.\n [thomasdesvenain]\n\n- Fixed: siteactions background-color was applied to whole page.\n Add a clear: left.\n [thomasdesvenain]\n\n- Add IEFixes.css to CSS registry in case plonetheme.classic is not installed.\n [elro]\n\n- Removed comment in IEFixes.css concerning the now removed IE8.js.\n [elro]\n\n- Fixed: spinner is back in main_template.\n [thomasdesvenain]\n\n1.1.4 - 2011-05-13\n------------------\n\n- Add styling for dragdropreorder.js.\n [elro]\n\n1.1.3 - 2011-05-12\n------------------\n\n- Add styling for z3cform multi-widget.\n [elro]\n\n- Optimize images and icon file sizes.\n [hannosch]\n\n- Updated base_properties values with new sunburst theme CSS values.\n [thomasdesvenain]\n\n- Removed `clear:both` on `.image-left` and `.image-right` rules.\n [vincentfretin]\n\n- Add MANIFEST.in.\n [WouterVH]\n\n\n1.1.2 - 2011-03-02\n------------------\n\n- Make text input fields have a default width of 20em when no size is set.\n [elro]\n\n- Hide plone.app.discussion comment viewlet from print.\n [timo]\n\n\n1.1.1 - 2011-02-10\n------------------\n\n- Renamed options box in IEFixes for keyword multiple select enhancement PLIP.\n Refs http://dev.plone.org/plone/ticket/11017.\n [rmattb]\n\n\n1.1 - 2011-02-04\n----------------\n\n- Merge PLIP 11017: Tags MultiSelectionWidget w/scrollbar & checkboxes.\n [esteele]\n\n\n1.0.6 - 2011-01-18\n------------------\n\n- Adjust the new setuphandler introduced in 1.0.5 to avoid using copy/paste,\n which introduced unwanted additional security checks.\n [hannosch]\n\n- Tightened selector for error fields to avoid z3cform inner div.error.\n [elro]\n\n- Added styling for z3cform title and description fields.\n [elro]\n\n\n1.0.5 - 2011-01-04\n------------------\n\n- Added iframe to style reset.\n [elro]\n\n- Added ajax_include_head request parameter for use with cross domain iframe.\n [elro]\n\n- Copy the plone_setup action to the user action category via a custom\n setuphandler rather than in actions.xml, so that we don't have to hardcode\n the various action settings here. This provides forward compatibility with\n Plone 4.1, where the URL and permission change.\n [davisagli]\n\n- Fixed content views list shift under ie6.\n This fixes http://dev.plone.org/plone/ticket/11280.\n [thomasdesvenain]\n\n\n1.0.4 - 2010-11-15\n------------------\n\n- Restore more of the table.listing (Fancy listing) CSS. Refs #10331.\n [rossp]\n\n\n1.0.3 - 2010-09-09\n------------------\n\n- Removed padding from navigation portlet header when it is hidden, so we won't\n see a small chunk of it. This fixes http://dev.plone.org/plone/ticket/10800.\n [cwainwright]\n\n- Worked on fixing up styles for IE8:\n\n * put previous logo settings back (float messes with rtl)\n * put in IE spacing fixes (logo, hiddenStructure)\n * removed float from div.cell, so livesearch and display menu don't fall\n behind other items in IE8.\n\n Closes http://dev.plone.org/plone/ticket/10872.\n [cwainwright]\n\n- Removed \"line-height: 2em;\" from \"table.listing a\" css rule so the vertical\n alignment of linked text and non linked text is the same.\n [vincentfretin]\n\n- Moved icons in drop down \"Add new...\" menu to right of text for RTL\n scripts. This fixes http://dev.plone.org/plone/ticket/10954.\n [emanlove]\n\n- Moved language selector to the left for RTL scripts. Also reversed margin\n of the actionMenu for RTL scripts. This fixes\n http://dev.plone.org/plone/ticket/10955.\n [emanlove]\n\n- Fixed state position in the state/transitions menu when it is no clickable.\n [vincentfretin]\n\n- Worked on fixing up styles for IE7:\n\n * removed padding on breadcrumb links, so all breadcrumb text\n displays on one level\n * put in hack to make links with content icons 'display: block' in IE.\n This fixes the Add New dropdown display, but breaks icon display on\n .navTreeCurrentItem, so I added zoom to the links.\n (fyi - the hack was the only way I could find to make this work to\n override the inline-block, did not work in IEFixes.css)\n * adjusted styles on logo so IE displays it in the correct place\n\n Refs http://dev.plone.org/plone/ticket/10872.\n [cwainwright]\n\n\n1.0.2 - 2010-07-18\n------------------\n\n- Fixed problems with content menus sticking out of the edit bar under various\n font sizes. This closes http://dev.plone.org/plone/ticket/10736.\n [hannosch]\n\n- Fixed anonymous personal bar spacing with multiple entries. This closes\n http://dev.plone.org/plone/ticket/10743.\n [hannosch]\n\n- Fixed bulleted / numbered lists out of text area in right to left. This\n closes http://dev.plone.org/plone/ticket/9658.\n [emanlove, hannosch]\n\n- Added back styles for grid listings. This refs\n http://dev.plone.org/plone/ticket/10331.\n [hannosch]\n\n- Add globe icon to external links when \"Mark External Links\" is checked.\n [cwainwright]\n\n- Update license to GPL version 2 only.\n [hannosch]\n\n\n1.0.1 - 2010-07-07\n------------------\n\n- Removed remaining references to empty ``sunburst_js`` folder.\n [hannosch]\n\n\n1.0 - 2010-07-07\n----------------\n\n- Removed IE9.js from Sunburst for now.\n [spliter]\n\n- Cleaned up the Dashboard CSS. This fixes\n http://dev.plone.org/plone/ticket/10516.\n [limi]\n\n- Adding max-width for the language selector, so it works even with\n a ridiculous amount of languages.\n This fixes http://dev.plone.org/plone/ticket/10452.\n [limi]\n\n- Improved default rendering for Python code listings when using the\n syntax coloring, and improved the overall typography for code.\n This fixes http://dev.plone.org/plone/ticket/10692.\n [limi]\n\n- Adding eventDetails styling and vertical table styles, this fixes\n http://dev.plone.org/plone/ticket/10540.\n [limi]\n\n- Lining up the edges of the main layout elements, this fixes\n http://dev.plone.org/plone/ticket/10465.\n [limi]\n\n- Increased space between icons in the sprite to 200px to make collisions\n unlikely. This fixes http://dev.plone.org/plone/ticket/10633.\n [limi]\n\n- Only add content type icons when they are enabled.\n Fixes http://dev.plone.org/plone/ticket/10541\n [davisagli]\n\n- Remove the sprited icons for the file and image content types, to avoid\n double icons. Fixes http://dev.plone.org/plone/ticket/10501.\n [davisagli]\n\n- Improved printing: hide some UI, better document and listing views\n [tdesvenain]\n\n- Restore some of the headline/description styling that was lost when\n Denys' branch was merged.\n [limi]\n\n- Adding a border to the dialog boxes, so it doesn't appear borderless on\n browsers that don't support box-shadow, like Internet Explorer.\n Fixes http://dev.plone.org/plone/ticket/10630.\n [limi]\n\n\n1.0b7 - 2010-05-31\n------------------\n\n- Improved typography and vertical rhythm of the theme to improve UX.\n [spliter]\n\n- Moved overlay close button to upper-left to get it off the vertical\n scrollbar when a an ajax overlay is longer than the viewport.\n [stevem]\n\n- Set overflow-y:auto on ajax overlays to support forms longer than the\n viewport.\n [stevem]\n\n\n1.0b6 - 2010-05-03\n------------------\n\n- Remove styling of path_bar. Breadcrumbs should now behave in a manner\n similar to that of Plone 3.\n [esteele]\n\n\n1.0b5 - 2010-05-03\n------------------\n\n- Show current page in breadcrumbs, give the surrounding div the same height\n as our portal-headers for consistency.\n [esteele]\n\n- Dtml vars removed.\n Fixes: http://dev.plone.org/plone/ticket/10492\n [pelle]\n\n- Improved :focus which is an accessibility requirement, a level 2 priority\n point/AA. This was removed entirely due to the reset css in use, so\n specifying :hover then remember :focus as well.\n Fixes: http://dev.plone.org/plone/ticket/10472\n [pelle]\n\n- Fix for global navigation colliding with portlets, bread crumb etc.\n http://dev.plone.org/plone/ticket/10491\n [pelle]\n\n\n1.0b4 - 2010-05-01\n------------------\n\n- Always enable breadcrumbs on all levels. ploneCustom contains an example on\n how to disable them on the first levels. This closes\n http://dev.plone.org/plone/ticket/9987 again.\n [elvix, hannosch]\n\n- Added tests for \"ajax_load\" query string in main_template. When found, skip\n anything expensive that isn't going to show in an ajax overlay.\n The plone.app.jquerytools overlay helper sets the ajax_load query string\n to prevent browser caching.\n [smcmahon]\n\n- Removed fixed vertical position for overlays. This needs to be computed on\n display so that overlays don't display out of the viewport on long pages.\n [smcmahon]\n\n- Remove display:none for navigation portlet header. This is now handled\n through the template.\n [esteele]\n\n- Improved style of blocked portlets.\n [igbun]\n\n- Be carefull with adding ie hacks to IEFixes.css since Sunburst Theme\n uses IE8.js.\n Fixes http://dev.plone.org/plone/ticket/10417.\n [pelle]\n\n- Improved overlay styling e.g. for openid overlay.\n Done when stepping trough #10035 and it's tried to make as general as possible.\n [pelle]\n\n\n1.0b3 - 2010-04-10\n------------------\n\n- Improved mobile styling.\n [limi]\n\n- Less disruptive styling for inline validation, it no longer shifts the form\n around in a significant way.\n [limi]\n\n- Remove unused personalize_form template and unneeded copies of the author\n template and prefs_main_template.\n [davisagli]\n\n- Updated styling for breadcrumbs, tags/keywords, and added styles for the\n currently selected nav tree item.\n [limi]\n\n- Adjusted viewlets so that Sunburst uses the viewlet configuration from\n plone.app.layout.viewlets.\n [davisagli]\n\n- Improved call-out and pull-quote styling.\n [limi]\n\n- Improved general overlay styling.\n [limi]\n\n- Improved history pop-up styling.\n [limi]\n\n- Fix columns in prefs_main_template.\n [davisagli]\n\n- Pass the current view to getColumnsClass. This is needed if the view is not\n the @@plone view and it has different portlets (such as on the portlet\n management views). This closes http://dev.plone.org/plone/ticket/10320.\n [davisagli]\n\n- Repositioned the searchbox for RTL scripts.\n Fixes http://dev.plone.org/plone/ticket/10367.\n [emanlove]\n\n- Stop hiding the (now) non-existing sendto action.\n Refs http://dev.plone.org/plone/ticket/8800.\n [dukebody]\n\n- Fixed help_biography message.\n [vincentfretin]\n\n\n1.0b2 - 2010-03-05\n------------------\n\n- Established Sunburst-specific browser view similar to ploneview and moved\n out the logic of applying special width/position CSS class on\n #portal-column-content from main_template.pt to that view.\n Closes http://dev.plone.org/plone/ticket/10292\n [spliter]\n\n- Set up testing environment for the package\n [spliter]\n\n- Inline images should not have borders (makes it hard to insert graphics that\n are part of a sentence, or similar), and we don't have any other round\n elements in the basic design (the edit bar is special, and is round to\n differentiate itself from the \"stable elements\"), so removed the rounded\n corners for image frames.\n [limi]\n\n- Added some padding to a