I was wondering if anybody thought that the implementation of round or
diagonal corners could be made easier to implement.

Currently we have, to create an image


background-image:
url(images/rc-b-r-5-1header-2tab-selected-3tab-selected.png);

Would it be more beneficial to create a section (in skinconf.xml ?)

<image-corners>
  <style name = "type" value = "rc" />
  <style name = "orientation" value = "br" />
  <style name = "backgroundColor" value = "header" />
  <style name = "strokeColor" value = "tab-selected" />
  <style name = "foregroundColor" value = "tab-selected" />
</image-corners>

Then apply it with just

background-image: url(images/image-corners.png);

Looks much better but Would this work, would it help clarify or a waste of
time ?


Gav...