Compact view of articles list. Descriptions and images of articles are hidden and shown on hover.
habr.com compact arcitles list by rekcufniarb
Details
Authorrekcufniarb
LicenseCC BY-SA
Categoryhabr.com
Created
Updated
Size1.1 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name habr.com compact arcitles list
@version 20220103.17.24
@namespace userstyles.world/user/rekcufniarb
@description Compact view of articles list. Article description and picture made hidden and are shown on hover.
@author rekcufniarb
@license CC BY-SA
==/UserStyle== */
@-moz-document domain("habr.com") {
.tm-articles-list__item:not(:hover) .tm-article-snippet__lead,
.tm-articles-list__item:not(:hover) .tm-megapost-snippet__body,
.tm-sandbox-articles-list__item:not(:hover) .tm-article-snippet__lead,
.tm-sandbox-articles-list__item:not(:hover) .tm-megapost-snippet__body,
.tm-sandbox-articles-list__item:not(:hover) .tm-article-snippet__label {
display: none;
}
.tm-articles-list__item:not(:hover) .tm-megapost-snippet__card {
height: auto;
}
.tm-articles-list__item:not(:hover) .tm-megapost-snippet__wrapper
/*,.tm-articles-list__item:not(:hover) .tm-megapost-snippet__tint*/ {
background: none !important;
}
.tm-articles-list__after-article:not(:hover) {
max-height: 50px;
overflow: hidden;
}
.tm-article-snippet__title {
overflow: hidden;
}
}