pig.css 418 B

12345678910111213141516171819202122232425
  1. .running {
  2. background-color: #faa732;
  3. border-left: 2px solid #faa732;
  4. }
  5. .succeeded {
  6. background-color: #5eb95e;
  7. border-left: 2px solid #5eb95e;
  8. }
  9. .failed {
  10. background-color: #dd514c;
  11. border-left: 2px solid #dd514c;
  12. }
  13. .sidebar-nav {
  14. padding: 9px 0;
  15. }
  16. .CodeMirror {border: 1px solid #eee;}
  17. .bottomAlert {
  18. position: fixed; bottom: 0; left: 0;margin: 0;width: 100%;text-align: center;display:none;
  19. }