Skip to content

Commit

Permalink
MDL-36960 - fix broken horizontal positioning of titles for docked bl…
Browse files Browse the repository at this point in the history
…ocks
  • Loading branch information
amygroshek authored and danpoltawski committed Dec 6, 2012
1 parent 8663b09 commit 62434c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion blocks/dock.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
3 changes: 3 additions & 0 deletions theme/base/style/dock.css
Original file line number Diff line number Diff line change
Expand Up @@ -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; }

0 comments on commit 62434c8

Please sign in to comment.