You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@syncope.apache.org by "Massimiliano Perrone (JIRA)" <ji...@apache.org> on 2017/05/24 09:34:04 UTC

[jira] [Updated] (SYNCOPE-1092) System Information appears scrolling on the right

     [ https://issues.apache.org/jira/browse/SYNCOPE-1092?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Massimiliano Perrone updated SYNCOPE-1092:
------------------------------------------
    Description: 
Going on Syncope Console (I found it using the Apache demo) I found a strange behavior scrolling to the right (using the two fingers on a mousepad)...
The System Information table appears! When it should be invisible until someone use the up-right-corner botton.

To solve it we need to change the css file [1] at row 717 from 

{code}
.control-sidebar {
  position: absolute;
  padding-top: 50px;
  z-index: 1010;
}
{code}

to 

{code}
.control-sidebar {
  position: fixed;
  padding-top: 50px;
  z-index: 1010;
}
{code}

[1] http://syncope-vm.apache.org:9080/syncope-console/wicket/resource/org.apache.syncope.client.console.themes.AdminLTECssResourceReference/css/AdminLTE-ver-369B017375C8C4A0878CC3637CD022A5.css

  was:
Going on Syncope Console (I found it using the Apache demo) I found a strange behavior scrolling to the right (using the two fingers on a mousepad)...
The System Information table appears! When it should be invisible until someone use the up-right-corner botton.

To solve it we need to change the css file [1] at row 717 from 

<pre>
.control-sidebar {
  position: absolute;
  padding-top: 50px;
  z-index: 1010;
}
<pre>

to 

<pre>
.control-sidebar {
  position: fixed;
  padding-top: 50px;
  z-index: 1010;
}
<pre>

[1] http://syncope-vm.apache.org:9080/syncope-console/wicket/resource/org.apache.syncope.client.console.themes.AdminLTECssResourceReference/css/AdminLTE-ver-369B017375C8C4A0878CC3637CD022A5.css


> System Information appears scrolling on the right
> -------------------------------------------------
>
>                 Key: SYNCOPE-1092
>                 URL: https://issues.apache.org/jira/browse/SYNCOPE-1092
>             Project: Syncope
>          Issue Type: Bug
>          Components: console
>    Affects Versions: 2.0.3
>            Reporter: Massimiliano Perrone
>            Priority: Minor
>             Fix For: 2.0.4
>
>
> Going on Syncope Console (I found it using the Apache demo) I found a strange behavior scrolling to the right (using the two fingers on a mousepad)...
> The System Information table appears! When it should be invisible until someone use the up-right-corner botton.
> To solve it we need to change the css file [1] at row 717 from 
> {code}
> .control-sidebar {
>   position: absolute;
>   padding-top: 50px;
>   z-index: 1010;
> }
> {code}
> to 
> {code}
> .control-sidebar {
>   position: fixed;
>   padding-top: 50px;
>   z-index: 1010;
> }
> {code}
> [1] http://syncope-vm.apache.org:9080/syncope-console/wicket/resource/org.apache.syncope.client.console.themes.AdminLTECssResourceReference/css/AdminLTE-ver-369B017375C8C4A0878CC3637CD022A5.css



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)