mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:19:05 +08:00
31d1468922
- bookmark modal menu - topic-footer-mobile-dropdown - post-admin-menu - topic-admin-menu - quick-access menus - toolbar-popup-menu
41 lines
680 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|