diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-03-24 18:47:07 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-03-24 18:47:07 -0700 |
commit | 83f70978574fef3401020cb11cf651d12c139b3b (patch) | |
tree | 327059675499bfa2be0ccbfd8918b37a29312b5e /httemplate/elements/freeside.css | |
parent | 798cf217a0d14520c5648560ef8a3095ffcfad27 (diff) |
better display/edit of contacts on customer view, RT#16819
Diffstat (limited to 'httemplate/elements/freeside.css')
-rw-r--r-- | httemplate/elements/freeside.css | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/httemplate/elements/freeside.css b/httemplate/elements/freeside.css index 79c98cdd9..44a4a3ca2 100644 --- a/httemplate/elements/freeside.css +++ b/httemplate/elements/freeside.css @@ -115,7 +115,7 @@ a.fstab { padding-right:12px;*/ padding-left:4px; padding-right:4px; - font-size:16px; + font-size:18px; font-weight:bold; text-decoration:none; overflow:visible; @@ -148,7 +148,7 @@ a.fstabselected { padding-right:12px;*/ padding-left:4px; padding-right:4px; - font-size:16px; + font-size:18px; font-weight:bold; text-decoration:none; overflow:visible; @@ -220,6 +220,32 @@ div.fstabcontainer { font-weight:bold; } +.fsinnerbox { + background-color:#cccccc; + padding:2px; + -moz-box-shadow: 1px 1px 2px #666666; + -webkit-box-shadow: 1px 1px 2px #666666; + box-shadow: 1px 1px 2px #666666; + filter: progid:DXImageTransform.Microsoft.Shadow(color='#666666', Direction=135, Strength=2); +} + +.fsinnerbox-title { + font-size:110%; + font-weight:bold; + background-color:#cccccc; + padding:2px; + -moz-border-radius-topleft:8px; + -moz-border-radius-topright:8px; + -webkit-border-radius-topleft:8px; + -webkit-border-radius-topright:8px; + border-radius-topleft:8px; + border-radius-topright:8px; + -moz-box-shadow: 1px 0px 1px #999999; + -webkit-box-shadow: 1px 0px 1px #999999; + box-shadow: 1px 0px 1px #999999; + filter: progid:DXImageTransform.Microsoft.Shadow(color='#999999', Direction=90, Strength=1); +} + .background { background-color:#f8f8f8; } |