| 12345678910111213141516171819202122232425 |
- .running {
- background-color: #faa732;
- border-left: 2px solid #faa732;
- }
- .succeeded {
- background-color: #5eb95e;
- border-left: 2px solid #5eb95e;
- }
- .failed {
- background-color: #dd514c;
- border-left: 2px solid #dd514c;
- }
- .sidebar-nav {
- padding: 9px 0;
- }
- .CodeMirror {border: 1px solid #eee;}
- .bottomAlert {
- position: fixed; bottom: 0; left: 0;margin: 0;width: 100%;text-align: center;display:none;
- }
|