stronk7

Untitled

Mar 13th, 2019
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.29 KB | None | 0 0
  1. /** Modifications to the "MDL: Integration ends (accepted)" screen:
  2.  *    - Hide all the field help texts to save space.
  3.  *    - Hide all log work fields, but the "Time Spent" one.
  4.  * Applied to 4 transitions:
  5.  *     - Mark as integrated.
  6.  *     - Mark as security integrated.
  7.  *     - Send back to testing.
  8.  *     - Send back to security testing.
  9.  */
  10. div#workflow-transition-841-dialog div.description,
  11. div#workflow-transition-1001-dialog div.description,
  12. div#workflow-transition-1371-dialog div.description,
  13. div#workflow-transition-1471-dialog div.description {
  14.   display: none;
  15. }
  16. div#workflow-transition-841-dialog div#worklog-logworkcontainer > :not(:first-child),
  17. div#workflow-transition-1001-dialog div#worklog-logworkcontainer > :not(:first-child),
  18. div#workflow-transition-1371-dialog div#worklog-logworkcontainer > :not(:first-child),
  19. div#workflow-transition-1471-dialog div#worklog-logworkcontainer > :not(:first-child) {
  20.   display: none;
  21. }
  22.  
  23. /** Modifications to the "MDL: Integration ends (rejected)" screen:
  24.  *    - Hide all the field help texts to save space.
  25.  *    - Hide all log work fields, but the "Time Spent" one.
  26.  * Applied to 4 transitions:
  27.  *     - Fail review.
  28.  *     - Reopen issue.
  29.  *     - Fail integration review.
  30.  *     - Fail security integration review.
  31.  */
  32. div#workflow-transition-831-dialog div.description,
  33. div#workflow-transition-871-dialog div.description,
  34. div#workflow-transition-901-dialog div.description,
  35. div#workflow-transition-1481-dialog div.description {
  36.   display: none;
  37. }
  38. div#workflow-transition-831-dialog div#worklog-logworkcontainer > :not(:first-child),
  39. div#workflow-transition-871-dialog div#worklog-logworkcontainer > :not(:first-child),
  40. div#workflow-transition-901-dialog div#worklog-logworkcontainer > :not(:first-child),
  41. div#workflow-transition-1481-dialog div#worklog-logworkcontainer > :not(:first-child) {
  42.   display: none;
  43. }
  44.  
  45. /** Modifications to the "MDL: Integration ends (stopped)" screen:
  46.  *    - Hide all the field help texts to save space.
  47.  *    - Hide all log work fields, but the "Time Spent" one.
  48.  * Applied to 1 transition:
  49.  *     - Stop review
  50.  */
  51. div#workflow-transition-721-dialog div.description {
  52.   display: none;
  53. }
  54. div#workflow-transition-721-dialog div#worklog-logworkcontainer > :not(:first-child) {
  55.   display: none;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment