/* * Citizen * * Module: mediawiki.skinning.content.media-screen * Version: REL1_39 * * Date: 2023-07-23 */ figure[ typeof~='mw:File' ], figure[ typeof~='mw:File/Frameless' ], figure[ typeof~='mw:File/Thumb' ], figure[ typeof~='mw:File/Frame' ] { > a:first-child { display: inline-block; overflow: hidden; > img { max-width: 100%; height: auto; contain: strict; transition: var( --transition-hover ); transition-property: transform; // Prevent constraining image width in tables table & { max-width: none; } } // Add affordance to replace magnify icon &:hover:not( .lazy ):not( .new ) { > img { transform: scale( 1.1 ); } } } } figure[ typeof~='mw:File/Thumb' ], figure[ typeof~='mw:File/Frame' ] { > a:first-child, > span:first-child { display: block; border-radius: var( --border-radius--small ); } // Broken file styles > a:first-child:not( .mw-file-description ) { padding: var( --space-sm ); border: 1px solid var( --border-color-base--darker ); &:hover { background-color: var( --color-primary--hover ); color: #fff; } &:active { background-color: var( --color-primary--active ); color: #fff; } &.new { border-style: dashed; &:hover { background-color: var( --color-destructive--hover ); } &:active { background-color: var( --color-destructive--active ); } } } }