You are here

mongodb_watchdog.theme.css in MongoDB 8.2

/**
 * Used for shortened code paths to hint a title attribute exists for hovering.
 * - text-decoration-style support is still too low in 2016
 *
 * @see \Drupal\mongodb_watchdog\Controller\OverviewController::getEventSource()
 */
.mongodb-watchdog__code-path {
  background-clip: padding-box;
  border-bottom: 1px dotted;
  border-color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.mongodb-watchdog__message {
  font-style: italic;
}

.mongodb-watchdog__severity--emergency {
  background: #ff2020;
}

.mongodb-watchdog__severity--alert {
  background: #ff80ff;
}
.mongodb-watchdog__severity--critical {
  background: #c0a0ff;
}

.mongodb-watchdog__severity--error {
  background: #ffb00d;
}

.mongodb-watchdog__severity--warning {
  background: #ffe080;
}

.mongodb-watchdog__severity--notice {
  background: #40a000;
}

.mongodb-watchdog__severity--info {
  background: #a0e0a0;
}

.mongodb-watchdog__severity--debug {
  background: #b0e0ff;
}

File

modules/mongodb_watchdog/css/mongodb_watchdog.theme.css
View source
  1. /**
  2. * Used for shortened code paths to hint a title attribute exists for hovering.
  3. * - text-decoration-style support is still too low in 2016
  4. *
  5. * @see \Drupal\mongodb_watchdog\Controller\OverviewController::getEventSource()
  6. */
  7. .mongodb-watchdog__code-path {
  8. background-clip: padding-box;
  9. border-bottom: 1px dotted;
  10. border-color: rgba(0, 0, 0, 0.3);
  11. text-decoration: none;
  12. }
  13. .mongodb-watchdog__message {
  14. font-style: italic;
  15. }
  16. .mongodb-watchdog__severity--emergency {
  17. background: #ff2020;
  18. }
  19. .mongodb-watchdog__severity--alert {
  20. background: #ff80ff;
  21. }
  22. .mongodb-watchdog__severity--critical {
  23. background: #c0a0ff;
  24. }
  25. .mongodb-watchdog__severity--error {
  26. background: #ffb00d;
  27. }
  28. .mongodb-watchdog__severity--warning {
  29. background: #ffe080;
  30. }
  31. .mongodb-watchdog__severity--notice {
  32. background: #40a000;
  33. }
  34. .mongodb-watchdog__severity--info {
  35. background: #a0e0a0;
  36. }
  37. .mongodb-watchdog__severity--debug {
  38. background: #b0e0ff;
  39. }