From 9431da532152136a51feaafc2ff71ec0a3a6314f Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Tue, 14 Jul 2015 16:08:23 -0700 Subject: [PATCH] fix(T2118): Center popout titles on windows/linux Fixes T2118 --- static/workspace.less | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/static/workspace.less b/static/workspace.less index 942acd376..6a34dd4ae 100644 --- a/static/workspace.less +++ b/static/workspace.less @@ -168,11 +168,12 @@ body.is-blurred { .item-container { .window-title { - flex: 2; + position: absolute; text-align: center; - margin-top: 6px; - margin-left: -80px; /* width of ToolbarWindowControls */ + left: 50%; + transform: translateX(-50%); -webkit-app-region: drag; + line-height: 36px; &:hover { cursor: default; }