default-dark-native.css 839 B

123456789101112131415161718192021222324252627282930313233
  1. /* drop zone */
  2. .theme-dark.skin-aria-ng .dropzone {
  3. background: rgba(0, 0, 0, 0.85);
  4. }
  5. .theme-dark.skin-aria-ng .dropzone .dropzone-tip-container .dropzone-tip-wrapper {
  6. border: 6px dashed #444;
  7. }
  8. /* native-info-table */
  9. .theme-dark.skin-aria-ng .native-info-table {
  10. background-color: #1a1a1a;
  11. }
  12. .theme-dark.skin-aria-ng .native-info-table.table-bordered {
  13. border: 1px solid #333;
  14. }
  15. .theme-dark.skin-aria-ng .native-info-table > div.row {
  16. border-color: #333;
  17. }
  18. .theme-dark.skin-aria-ng .native-info-table.striped > div.row:nth-of-type(odd) {
  19. background-color: #202020;
  20. }
  21. .theme-dark.skin-aria-ng .native-info-table.hoverable > div.row:hover {
  22. background-color: #242424;
  23. }
  24. .theme-dark.skin-aria-ng .native-info-table.hoverable > div.row:nth-of-type(odd).no-hover:hover {
  25. background-color: #202020;
  26. }