microsoft / azure-devops-extension-sample

Sample web extension for Azure DevOps
MIT License
242 stars 161 forks source link

css not being applied to azure-devops ui extension controls #109

Open raisingcode opened 2 years ago

raisingcode commented 2 years ago

Using the sample changes and makeing very minimal changes below

  1. Pulling this repo
  2. Changing my publisher id in .\azure-devops-extension.json
  3. running 'npm run build' and 'npm run publish-extension'

I'm NOT seeing an formatting of azure-devops controls see attachment. I suspect webpack; because I tried another test with react-bootstrap and the css formating was not visiable on the controls until added <link rel=> to cdn of bootstrap.css

Has anyone seen this. Theres no cdn link the to azure-devops-ui I could use is there?

azure_devops_ui_no_formatting
marcveens commented 2 years ago

I ran into the same issue, #111 fixed it for me, hopefully it gets merged in soon!

raisingcode commented 2 years ago

Thanks @marcveens. I merged in the file changes mentioned and its working in my local branch

jonvest commented 2 years ago

I was having same issue, thanks @marcveens for the solution.

I created a simple dropdown control to use on a work item form but when the list is dropped down, the value list does not cover the content below it. Do you know what may be causing this?

image

pheeblyboos commented 2 years ago

I ran into the same issue, #111 fixed it for me, hopefully it gets merged in soon!

Your fix solved the issue indeed, thanks a lot :) seems like an acceptable workaround for now.