You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_connection-info.scss 793B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. %connection-info {
  2. font-size: 12px;
  3. font-weight: 400;
  4. td {
  5. padding: 2px 0;
  6. }
  7. }
  8. .connection-info
  9. {
  10. @extend %connection-info;
  11. /**
  12. * Apply negative margin to reduce the appearance of padding in AtlasKit
  13. * InlineDialog.
  14. */
  15. margin: -15px;
  16. > table {
  17. white-space: nowrap;
  18. @extend %connection-info;
  19. }
  20. td:nth-child(n-1) {
  21. padding-left: 5px;
  22. }
  23. &__icon {
  24. margin-right: 2px;
  25. }
  26. &__download
  27. {
  28. @extend .connection-info__icon;
  29. }
  30. &__status
  31. {
  32. font-weight: bold;
  33. }
  34. &__upload
  35. {
  36. @extend .connection-info__icon;
  37. }
  38. .showmore {
  39. display: block;
  40. margin: 10px auto;
  41. text-align: center;
  42. width: 90px;
  43. }
  44. }