1. 01 10月, 2013 1 次提交
    • K
      Add classes and ID's for common elements · 9e7b0717
      Kevin Burke 提交于
      This should aid theme developers in developing plugins for Jenkins by adding
      CSS classes and ID's to the dom. Developers can then use these to more
      specifically target elements that they want.
      
      For example, the "Console Output" was a raw <pre> tag embedded in a <table>.
      Styling it required CSS like so:
      
          #main-panel > pre {
      
      Sadly this will apply to any <pre> elements nested directly under the
      "#main-panel" ID; there's no way to get more specific to the console output.
      
      With this change you can style the console output by writing:
      
          .console-output {
      
      Which is much more direct (and more efficient for browsers to render).
      
      A similar treatment is applied to a number of elements in the jenkins UI.
      9e7b0717
  2. 30 9月, 2013 8 次提交
  3. 28 9月, 2013 2 次提交
  4. 27 9月, 2013 12 次提交
  5. 26 9月, 2013 5 次提交
  6. 25 9月, 2013 6 次提交
  7. 24 9月, 2013 6 次提交