| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | 
							- %connection-info {
 -     font-size: 12px;
 -     font-weight: 400;
 -     color: $modalTextColor;
 - 
 -     td {
 -         padding: 2px 0;
 -     }
 - }
 - 
 - .connection-info
 - {
 -     @extend %connection-info;
 - 
 -     /**
 -      * Apply negative margin to reduce the appearance of padding in AtlasKit
 -      * InlineDialog.
 -      */
 -     margin: -15px;
 - 
 -     > table {
 -         white-space: nowrap;
 -         @extend %connection-info;
 -     }
 - 
 -     td:nth-child(n-1) {
 -         padding-left: 5px;
 -     }
 - 
 -     &__icon {
 -         margin-right: 2px;
 -     }
 - 
 -     &__download
 -     {
 -         @extend .connection-info__icon;
 -         color: $downloadConnectionIconColor;
 -     }
 - 
 -     &__status
 -     {
 -         font-weight: bold;
 -     }
 - 
 -     &__upload
 -     {
 -         @extend .connection-info__icon;
 -         color: $uploadConnectionIconColor;
 -     }
 - 
 -     .showmore {
 -         display: block;
 -         margin: 10px auto;
 -         text-align: center;
 -         width: 90px;
 -     }
 - }
 
 
  |