Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_checkbox-list.scss « components « sass « stylesheets « sass - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48daf701afe3278e10aca624404fb845c082422f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.checkbox-list {
	display: grid;
	grid-column-gap: 10px;
	grid-template-columns: repeat(var(--columns), minmax(max-content, 1fr));

	&.vertical {
		grid-template-rows: repeat(var(--rows), 1fr);
		grid-auto-flow: column;
	}

	li {
		overflow: hidden;
		text-overflow: ellipsis;
		line-height: 24px;
	}
}