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 855B

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