discourse/app/assets/stylesheets/mobile/topic.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

172 lines
2.8 KiB
SCSS
Raw Normal View History

.post-info a {
color: var(--primary-medium);
}
2013-09-05 15:37:07 -04:00
.topic-meta-data-inside {
float: right;
margin-top: -38px;
margin-right: 5px;
2013-09-05 15:37:07 -04:00
}
.post-info {
display: inline-block;
2013-09-05 15:37:07 -04:00
}
#topic-title {
h1 {
font-size: var(--font-up-3);
line-height: var(--line-height-medium);
2014-07-01 04:15:16 -04:00
a {
color: var(--primary);
2014-07-01 04:15:16 -04:00
vertical-align: middle;
2016-01-13 01:40:36 -05:00
word-wrap: break-word;
2014-07-01 04:15:16 -04:00
}
}
.title-category-wrapper {
margin-top: 5px;
}
}
2013-09-05 15:37:07 -04:00
.progress-back-container {
top: -100%; // above parent container + some extra space
}
#topic-progress-expanded {
border: 1px solid var(--primary-low);
padding: 5px;
background: var(--secondary);
position: absolute;
bottom: 34px;
2015-09-22 19:36:15 -04:00
width: 135px;
button.full {
width: 100%;
margin-bottom: 5px;
Upgrade to FontAwesome 5 (take two) (#6673) * Add missing icons to set * Revert FA5 revert This reverts commit 42572ff * use new SVG syntax in locales * Noscript page changes (remove login button, center "powered by" footer text) * Cast wider net for SVG icons in settings - include any _icon setting for SVG registry (offers better support for plugin settings) - let themes store multiple pipe-delimited icons in a setting - also replaces broken onebox image icon with SVG reference in cooked post processor * interpolate icons in locales * Fix composer whisper icon alignment * Add support for stacked icons * SECURITY: enforce hostname to match discourse hostname This ensures that the hostname rails uses for various helpers always matches the Discourse hostname * load SVG sprite with pre-initializers * FIX: enable caching on SVG sprites * PERF: use JSONP for SVG sprites so they are served from CDN This avoids needing to deal with CORS for loading of the SVG Note, added the svg- prefix to the filename so we can quickly tell in dev tools what the file is * Add missing SVG sprite JSONP script to CSP * Upgrade to FA 5.5.0 * Add support for all FA4.7 icons - adds complete frontend and backend for renamed FA4.7 icons - improves performance of SvgSprite.bundle and SvgSprite.all_icons * Fix group avatar flair preview - adds an endpoint at /svg-sprites/search/:keyword - adds frontend ajax call that pulls icon in avatar flair preview even when it is not in subset * Remove FA 4.7 font files
2018-11-26 16:49:57 -05:00
.d-icon {
2014-06-12 17:24:11 -04:00
display: block;
margin-top: 2px;
margin-bottom: 2px;
font-size: var(--font-up-2);
2014-06-12 17:24:11 -04:00
}
}
.jump-form {
input[type="text"] {
float: left;
width: 45px;
height: 20px;
text-align: center;
font-size: var(--font-up-1);
}
button.btn {
float: right !important;
width: 55px;
}
}
2016-07-26 15:10:14 -04:00
button.btn.jump-prompt {
margin: 0;
}
button.btn.jump-bottom {
margin-top: 5px;
margin-bottom: 0;
}
}
.topic-error {
2014-06-16 14:25:33 -04:00
padding: 18px;
width: 90%;
margin-left: auto;
margin-right: auto;
font-size: var(--font-up-4);
line-height: var(--line-height-medium);
2014-06-16 14:25:33 -04:00
.topic-retry {
2014-06-16 14:25:33 -04:00
display: block;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
}
sup sup,
sub sup,
sup sub,
sub sub {
top: 0;
}
// inline editing of title on mobile
#topic-title .title-wrapper {
position: relative;
float: none;
width: 100%;
input#edit-title {
width: 100%;
}
.select-kit.combo-box.category-chooser {
width: 100%;
margin-top: 0;
}
}
// make mobile timeline top and bottom dates easier to select
.topic-timeline {
.start-date,
.now-date {
padding: 0.5em 0;
}
.timeline-scrollarea-wrapper .timeline-date-wrapper {
@include ellipsis;
}
.topic-category {
margin-bottom: 0.5rem;
}
}
.topic-footer-main-buttons {
display: flex;
align-items: center;
flex-wrap: wrap;
}
@media screen and (max-height: 600px) {
.topic-admin-popup-menu {
box-sizing: border-box;
padding: 0.25em;
width: unset;
ul {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
@media screen and (max-width: 550px) {
grid-template-columns: 1fr 1fr;
}
ul {
display: contents;
}
.d-button-label {
@include ellipsis;
}
.popup-menu-btn {
@include ellipsis;
}
li {
border: 0;
min-width: 0;
}
}
}
}
.container.posts .topic-navigation {
// better positioning for the docked progress bar on large screens using mobile view
grid-area: posts;
grid-row: 2;
}