cyp/app/css/mixins.less

46 lines
679 B
Plaintext
Raw Normal View History

2019-04-03 01:19:46 +08:00
.flex-row {
2020-03-09 05:11:46 +08:00
&:not([hidden]) { display: flex; }
2019-04-03 01:19:46 +08:00
flex-direction: row;
align-items: center;
}
.flex-column {
2020-03-09 05:11:46 +08:00
&:not([hidden]) { display: flex; }
2019-04-03 01:19:46 +08:00
flex-direction: column;
}
2020-03-10 22:25:43 +08:00
.ellipsis {
2019-04-03 01:19:46 +08:00
overflow: hidden;
text-overflow: ellipsis;
}
2020-03-10 17:07:30 +08:00
/*
2019-04-03 01:19:46 +08:00
.multiline {
.flex-row;
h2 { font-weight: normal; }
}
2020-03-10 17:07:30 +08:00
*/
2020-03-09 21:26:39 +08:00
.selectable {
2020-03-10 22:25:43 +08:00
border-left: var(--border-width) solid transparent;
2020-03-10 21:08:18 +08:00
cursor: pointer;
2020-03-09 21:26:39 +08:00
&.selected {
border-left-color: var(--primary);
}
}
2020-03-10 17:07:30 +08:00
.item {
.flex-row;
.selectable;
2020-03-10 22:25:43 +08:00
padding: 8px;
padding-left: calc(8px - var(--border-width));
2020-03-10 17:07:30 +08:00
2020-03-10 21:08:18 +08:00
&:nth-child(odd) { // FIXME nutno poresit lepe s ohledem na search
2020-03-10 17:07:30 +08:00
background-color: var(--bg-alt);
}
2020-03-10 22:25:43 +08:00
button .icon { width: 32px; }
}