You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2011/06/27 22:20:09 UTC

svn commit: r1140297 - in /myfaces/tobago/trunk/tobago-theme: tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/ tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/rend...

Author: lofwyr
Date: Mon Jun 27 20:20:09 2011
New Revision: 1140297

URL: http://svn.apache.org/viewvc?rev=1140297&view=rev
Log:
TOBAGO-606: Layout
 - using box-sizing: content-box for buttons (it seems for me, that it must be set explicitly, but I don't really know why.

Modified:
    myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-theme-config.properties
    myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/style.css
    myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/src/main/resources/org/apache/myfaces/tobago/renderkit/html/speyside/standard/style/style.css

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-theme-config.properties
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-theme-config.properties?rev=1140297&r1=1140296&r2=1140297&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-theme-config.properties (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-theme-config.properties Mon Jun 27 20:20:09 2011
@@ -45,6 +45,14 @@ Button.paddingWidth=10
 Button.preferredHeight=25
 Button.minimumHeight=25
 Button.minimumWidth=10
+Button.css.border-left-width=1
+Button.css.border-top-width=1
+Button.css.border-right-width=1
+Button.css.border-bottom-width=1
+Button.css.padding-left=2
+Button.css.padding-top=2
+Button.css.padding-right=2
+Button.css.padding-bottom=2
 
 Cell.headerHeight=0
 Cell.minimumWidth=0

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/style.css
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/style.css?rev=1140297&r1=1140296&r2=1140297&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/style.css (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/style.css Mon Jun 27 20:20:09 2011
@@ -143,11 +143,15 @@ fieldset.tobago-box {
   border-right: 1px solid #6688aa;
   border-top: 1px solid #ddeeff;
   border-bottom: 1px solid #6688aa;
-  padding-left: 0.2em;
-  padding-right: 0.2em;
+  padding: 2px;
   background: #bbccdd;
   font-weight: normal;
   cursor: pointer;
+  height: 19px;
+  box-sizing: content-box;
+  -moz-box-sizing: content-box;
+  -webkit-box-sizing: content-box;
+  -ms-box-sizing: content-box;
 }
 
 .tobago-button-markup-disabled {

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/src/main/resources/org/apache/myfaces/tobago/renderkit/html/speyside/standard/style/style.css
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/src/main/resources/org/apache/myfaces/tobago/renderkit/html/speyside/standard/style/style.css?rev=1140297&r1=1140296&r2=1140297&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/src/main/resources/org/apache/myfaces/tobago/renderkit/html/speyside/standard/style/style.css (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/src/main/resources/org/apache/myfaces/tobago/renderkit/html/speyside/standard/style/style.css Mon Jun 27 20:20:09 2011
@@ -114,7 +114,7 @@
   background: #ffffff;
   font: bold 12px arial, helvetica, sans-serif;
   color: #660000;
-  height: 20px;
+  height: 14px;
 }
 
 .tobago-button-markup-disabled {