discourse/app/assets/stylesheets/common/components/tap-tile.scss
Joffrey JAFFEUX 31d1468922
UX: reworks various menus to homogenize them (#9905)
- bookmark modal menu
- topic-footer-mobile-dropdown
- post-admin-menu
- topic-admin-menu
- quick-access menus
- toolbar-popup-menu
2020-05-29 08:05:21 +02:00

41 lines
680 B
SCSS

.tap-tile-grid {
justify-content: space-between;
margin: 0.5em 0 1em 0;
.tap-tile {
color: $primary-high;
padding: 0.75em 0.25em;
display: flex;
flex-wrap: wrap;
align-items: center;
border-bottom: 1px solid $primary-low;
cursor: pointer;
&:first-child {
border-top: 1px solid $primary-low;
}
&:hover {
background-color: $tertiary-low;
}
&.active {
background-color: $highlight-medium;
}
.d-icon {
color: $primary-high;
margin: 0 0.5em 0 0;
}
.tap-tile-title {
color: $primary;
margin-right: auto;
}
.tap-tile-date {
margin-left: 1em;
}
}
}