Automatically expands the game description text. Removes the need to click on "read more".
Steam Store - Auto-expand game descriptions by denilsonsa
Details
Authordenilsonsa
LicensePublic Domain
Categorysteampowered
Created
Updated
Size863 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Steam Store - Auto-expand game descriptions
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Automatically expands the game description text. Removes the need to click on "read more".
@author Denilson Sá
==/UserStyle== */
@-moz-document domain("store.steampowered.com") {
html .game_page_autocollapse_ctn .game_page_autocollapse {
max-height: none !important;
}
html .game_page_autocollapse_ctn .game_page_autocollapse_fade {
display: none !important;
}
/* Also expand the "more like this" carousel. */
html .store_horizontal_autoslider_ctn {
height: auto !important;
}
html .block_responsive_horizontal_scroll.block_content {
white-space: normal;
overflow: normal;
overflow-x: visible !important;
}
}