Bug #61377
closedEpic #58282: Workspaces Workpackage #2
Story #60008: Visual enhancements
Workspace Preview slider does not scale properly
0%
Description
- Select a workspace to preview.
- Scale the window, notice the slider does not scale.
I am using Mozilla Firefox Web Browser ESR, Version 24 on openSuSE 13.1.
See the attached screenshot.
Files
Updated by Lorenz Ulrich over 10 years ago
In my case the problem is that 'document.domain' in the iFrames is empty (not in the parent frame). This makes the browser fail.
In PreviewController->indexAction the "backendDomain" is evaluated like this:
$this->view->assign('backendDomain', GeneralUtility::getIndpEnv('TYPO3_HOST_ONLY'));
In TypoScriptFrontendControllerHook->hook_eofe it is done like this:
'backendDomain.' => array('value' => $GLOBALS['BE_USER']->getSessionData('workspaces.backend_domain'))
In my case, the backend_domain from the session data is empty. When I change it to
'backendDomain.' => array('value' => \TYPO3\CMS\Core\Utility\GeneralUtility::getIndpEnv('TYPO3_HOST_ONLY'))
it works. I don't understand why in the latter case sessionData is used and in the first case the environment variables.
Updated by Oliver Hader over 10 years ago
- Status changed from New to Accepted
- Parent task set to #60008
I agree, the visual components look "ugly" and do not respond to changed screen sizes..
Updated by David Benjamin over 10 years ago
- File WorkspaceError5.jpg WorkspaceError5.jpg added
Updated by Oliver Hader over 9 years ago
- Target version changed from 7.5 to 7 LTS
- Complexity set to hard
Updated by Riccardo De Contardi over 8 years ago
the problem is still present on TYPO3 7.6.10 but is absent on 8.3-dev (latest master);
The only problem I see so far in master is that the label "live" goes under the tabs (see attached screenshot Schermata 2016-07-30 alle 19.44.46.png)
Updated by Christian Kuhn almost 8 years ago
- Status changed from Accepted to Rejected
i guess we will not solve that in v7 anymore.