[JIRA] (JENKINS-62001) Autocompletion dropdown UI looks broken

2020-04-27 Thread [email protected] (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated  JENKINS-62001  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62001  
 
 
  Autocompletion dropdown UI looks broken   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Status: 
 In Review Resolved  
 
 
Resolution: 
 Fixed  
 
 
Released As: 
 Jenkins 2.234  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205893.1587500364000.18673.1588032361193%40Atlassian.JIRA.


[JIRA] (JENKINS-62001) Autocompletion dropdown UI looks broken

2020-04-22 Thread [email protected] (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Félix Queiruga Balado updated  JENKINS-62001  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62001  
 
 
  Autocompletion dropdown UI looks broken   
 

  
 
 
 
 

 
Change By: 
 Félix Queiruga Balado  
 
 
Status: 
 In  Progress  Review  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205893.1587500364000.15678.1587554460229%40Atlassian.JIRA.


[JIRA] (JENKINS-62001) Autocompletion dropdown UI looks broken

2020-04-22 Thread [email protected] (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Tim Jacomb assigned an issue to Félix Queiruga Balado  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62001  
 
 
  Autocompletion dropdown UI looks broken   
 

  
 
 
 
 

 
Change By: 
 Tim Jacomb  
 
 
Assignee: 
 Félix Queiruga Balado  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205893.1587500364000.15643.1587547020393%40Atlassian.JIRA.


[JIRA] (JENKINS-62001) Autocompletion dropdown UI looks broken

2020-04-22 Thread [email protected] (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Tim Jacomb started work on  JENKINS-62001  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Tim Jacomb  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205893.1587500364000.15646.1587547020535%40Atlassian.JIRA.


[JIRA] (JENKINS-62001) Autocompletion dropdown UI looks broken

2020-04-22 Thread [email protected] (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Félix Queiruga Balado commented on  JENKINS-62001  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Autocompletion dropdown UI looks broken   
 

  
 
 
 
 

 
 This was caused because the YUI skin.css file is no longer used: https://github.com/jenkinsci/jenkins/commit/d1cd03f48103f5624790b15335eaf6ac04fdb6ad#diff-d00c6bc3369be9674b400c1a8163acb6 I wouldn't want to restore the whole file because it will mess up the button styles a lot. Also, restoring just the following code fixes the issue: 

 

.yui-skin-sam .yui-ac {
  position: relative;
  font-family: arial;
  font-size: 100%;
}
.yui-skin-sam .yui-ac-input {
  position: absolute;
  width: 100%;
}
.yui-skin-sam .yui-ac-container {
  position: absolute;
  top: 1.6em;
  width: 100%;
}
.yui-skin-sam .yui-ac-content {
  position: absolute;
  width: 100%;
  border: 1px solid #808080;
  background: #fff;
  overflow: hidden;
  z-index: 9050;
}
.yui-skin-sam .yui-ac-shadow {
  position: absolute;
  margin: 0.3em;
  width: 100%;
  background: #000;
  -moz-opacity: 0.1;
  opacity: 0.1;
  filter: alpha(opacity=10);
  z-index: 9049;
}
.yui-skin-sam .yui-ac iframe {
  opacity: 0;
  filter: alpha(opacity=0);
  padding-right: 0.3em;
  padding-bottom: 0.3em;
}
.yui-skin-sam .yui-ac-content ul {
  margin: 0;
  padding: 0;
  width: 100%;
}
.yui-skin-sam .yui-ac-content li {
  margin: 0;
  padding: 2px 5px;
  cursor: default;
  white-space: nowrap;
  list-style: none;
  zoom: 1;
}
.yui-skin-sam .yui-ac-content li.yui-ac-prehighlight {
  background: #b3d4ff;
}
.yui-skin-sam .yui-ac-content li.yui-ac-highlight {
  background: #426fd9;
  color: #fff;
}
 

 I'll be creating a patch.   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
 

[JIRA] (JENKINS-62001) Autocompletion dropdown UI looks broken

2020-04-22 Thread [email protected] (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-62001  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Autocompletion dropdown UI looks broken   
 

  
 
 
 
 

 
 https://jenkins.io/doc/book/system-administration/viewing-logs/?src="">  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205893.1587500364000.15601.1587543360145%40Atlassian.JIRA.


[JIRA] (JENKINS-62001) Autocompletion dropdown UI looks broken

2020-04-21 Thread [email protected] (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Félix Queiruga Balado edited a comment on  JENKINS-62001  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Autocompletion dropdown UI looks broken   
 

  
 
 
 
 

 
 In which screen does this manifest?  Do I need a plugin to see it?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205893.1587500364000.15511.1587537480118%40Atlassian.JIRA.


[JIRA] (JENKINS-62001) Autocompletion dropdown UI looks broken

2020-04-21 Thread [email protected] (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Félix Queiruga Balado commented on  JENKINS-62001  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Autocompletion dropdown UI looks broken   
 

  
 
 
 
 

 
 In which screen does this manifest?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205893.1587500364000.15509.1587537420294%40Atlassian.JIRA.


[JIRA] (JENKINS-62001) Autocompletion dropdown UI looks broken

2020-04-21 Thread [email protected] (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Félix Queiruga Balado commented on  JENKINS-62001  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Autocompletion dropdown UI looks broken   
 

  
 
 
 
 

 
 If this is in Core I'll take a look Today  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205893.1587500364000.15506.1587537360193%40Atlassian.JIRA.


[JIRA] (JENKINS-62001) Autocompletion dropdown UI looks broken

2020-04-21 Thread [email protected] (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62001  
 
 
  Autocompletion dropdown UI looks broken   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Environment: 
 Jenkins 2.233  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205893.1587500364000.15216.1587501000186%40Atlassian.JIRA.


[JIRA] (JENKINS-62001) Autocompletion dropdown UI looks broken

2020-04-21 Thread [email protected] (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-62001  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Autocompletion dropdown UI looks broken   
 

  
 
 
 
 

 
 Looks correctin 2.232, so this is a regression in 2.233 specifically.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205893.1587500364000.15214.1587500700152%40Atlassian.JIRA.


[JIRA] (JENKINS-62001) Autocompletion dropdown UI looks broken

2020-04-21 Thread [email protected] (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62001  
 
 
  Autocompletion dropdown UI looks broken   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Attachments: 
 2.222.1.png, 2.233.png  
 
 
Components: 
 core  
 
 
Created: 
 2020-04-21 20:19  
 
 
Labels: 
 regression ui ux  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Daniel Beck  
 

  
 
 
 
 

 
 Attached screenshots of the "Logger" configuration autocompletion UI in 2.222.1 and 2.233. It looks like one of the recent redesign PRs messed this up.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment