Geen omschrijving

import.css 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .import-preview .errors {
  2. position: relative;
  3. }
  4. .validation-error-count {
  5. display: inline-block;
  6. background-color: #e40000;
  7. border-radius: 6px;
  8. color: white;
  9. font-size: 0.9em;
  10. position: relative;
  11. font-weight: bold;
  12. margin-top: -2px;
  13. padding: 0.2em 0.4em;
  14. }
  15. .validation-error-container {
  16. position: absolute;
  17. opacity: 0;
  18. pointer-events: none;
  19. background-color: #ffc1c1;
  20. padding: 14px 15px 10px;
  21. top: 25px;
  22. margin: 0 0 20px 0;
  23. width: 200px;
  24. z-index: 2;
  25. }
  26. table.import-preview tr.skip {
  27. background-color: #d2d2d2;
  28. }
  29. table.import-preview tr.new {
  30. background-color: #bdd8b2;
  31. }
  32. table.import-preview tr.delete {
  33. background-color: #f9bebf;
  34. }
  35. table.import-preview tr.update {
  36. background-color: #fdfdcf;
  37. }
  38. .import-preview td:hover .validation-error-count {
  39. z-index: 3;
  40. }
  41. .import-preview td:hover .validation-error-container {
  42. opacity: 1;
  43. pointer-events: auto;
  44. }
  45. .validation-error-list {
  46. margin: 0;
  47. padding: 0;
  48. }
  49. .validation-error-list li {
  50. list-style: none;
  51. margin: 0;
  52. }
  53. .validation-error-list > li > ul {
  54. margin: 8px 0;
  55. padding: 0;
  56. }
  57. .validation-error-list > li > ul > li {
  58. padding: 0;
  59. margin: 0 0 10px;
  60. line-height: 1.28em;
  61. }
  62. .validation-error-field-label {
  63. display: block;
  64. border-bottom: 1px solid #e40000;
  65. color: #e40000;
  66. text-transform: uppercase;
  67. font-weight: bold;
  68. font-size: 0.85em;
  69. }