| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- .plugin-header {
- @include clearfix();
- padding: $spacer 0 $spacer/2 0;
- margin-bottom: 2rem;
- }
- .plugin-header-logo {
- float: left;
- width: 7rem;
- img {
- width: 7rem;
- }
- margin-right: $spacer;
- }
- .plugin-header-info-block {
- float: left;
- }
- .plugin-header-author {
- }
- .plugin-header-stamps-type {
- color: $link-color-disabled;
- text-transform: uppercase;
- }
- .plugin-info-list-item {
- img {
- width: 16px;
- }
- white-space: nowrap;
- max-width: $page-sidebar-width;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .get-more-plugins-link {
- color: $gray-3;
- font-size: $font-size-sm;
- position: relative;
- top: 1.2rem;
- &:hover {
- color: $link-hover-color;
- }
- img {
- vertical-align: top;
- }
- }
- @include media-breakpoint-down(sm) {
- .get-more-plugins-link {
- display: none;
- }
- }
|