模板:Gallery/styles.css:修订间差异

来自决策链云智库
(创建页面,内容为“table.gallerytable { display: block; border-radius: var( --border-radius--small ); border-spacing: 0; } .gallerytable a.mw-file-description { display: block; margin-right: var( --space-xxs ); border-radius: var( --border-radius--small ); overflow: hidden; } .gallerytable a.mw-file-description:hover img { transform: scale(1.1); }”)
 
无编辑摘要
第1行: 第1行:
table.gallerytable {
.template-gallery {
display: block;
margin-top: var( --space-md );
border-radius: var( --border-radius--small );
display: flex;
border-spacing: 0;
overflow: auto;
gap: var( --space-xs );
}
}


.gallerytable a.mw-file-description {
.template-gallery a.mw-file-description {
display: block;
display: block;
margin-right: var( --space-xxs );
     border-radius: var( --border-radius--small );
     border-radius: var( --border-radius--small );
     overflow: hidden;
     overflow: hidden;
}
}


.gallerytable a.mw-file-description:hover img {
.template-gallery a.mw-file-description img {
    transition: transform 250ms ease;
}
 
.template-gallery a.mw-file-description:hover img {
     transform: scale(1.1);
     transform: scale(1.1);
}
.template-gallery video {
max-width: none !important;
max-height: 120px !important;
    width: auto !important;
    overflow: hidden;
    border-radius: var( --border-radius--small );
}
}

2024年1月24日 (三) 23:52的版本

.template-gallery {
	margin-top: var( --space-md );
	display: flex;
	overflow: auto;
	gap: var( --space-xs );
}

.template-gallery a.mw-file-description {
	display: block;
    border-radius: var( --border-radius--small );
    overflow: hidden;
}

.template-gallery a.mw-file-description img {
    transition: transform 250ms ease;
}

.template-gallery a.mw-file-description:hover img {
    transform: scale(1.1);
}

.template-gallery video {
	max-width: none !important;
	max-height: 120px !important;
    width: auto !important;
    overflow: hidden;
    border-radius: var( --border-radius--small );
}