MDL-36960 - fix broken horizontal positioning of titles for docked blocks

This commit is contained in:
Amy Groshek
2012-12-04 18:07:25 -06:00
parent 47dfbd9eb3
commit 90d740364b
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -516,7 +516,7 @@ M.core_dock.fixTitleOrientation = function(item, title, text) {
// We need to fix a font-size - sorry theme designers.
var fontsize = '11px';
var transform = (clockwise) ? 'rotate(90deg)' : 'rotate(270deg)';
var test = Y.Node.create('<h2><span style="font-size:'+fontsize+';position:absolute;">'+text+'</span></h2>');
var test = Y.Node.create('<h2><span class="transform-test-node" style="font-size:'+fontsize+';">'+text+'</span></h2>');
this.nodes.body.insert(test, 0);
var width = test.one('span').get('offsetWidth') * 1.2;
var height = test.one('span').get('offsetHeight');
+3
View File
@@ -42,3 +42,6 @@ body.has_dock {margin-left:30px;}
.dir-rtl #dock {left:auto;right: 0%; border-left: 1px solid #DDD;}
.dir-rtl #dock .dockedtitle { border-bottom: 1px solid #DDD;border-top: 1px solid #EEE; cursor: pointer;}
body.dir-rtl.has_dock {margin-left: 0px; margin-right: 30px}
/* Test span used to calculate positioning of docked item labels */
.transform-test-node { position:absolute;line-height:normal; }