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

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

231 lines
4.1 KiB
SCSS
Raw Normal View History

2013-10-23 17:00:02 -04:00
.post-actions {
@include unselectable;
2013-10-24 00:30:41 -04:00
clear: both;
text-align: right;
2018-01-22 21:26:07 -05:00
margin-bottom: 10px;
.post-action {
display: inline-block;
margin-left: 10px;
margin-top: 10px;
}
}
.post-menu-area {
margin: 20px 0;
}
2013-09-05 15:37:07 -04:00
#topic-title {
z-index: z("base");
2014-10-02 15:26:57 -04:00
padding-top: 14px;
margin-bottom: 10px;
2017-08-31 05:16:08 -04:00
#edit-title,
.category-chooser,
.edit-controls {
width: 500px;
}
h1 {
2018-01-12 17:27:38 -05:00
font-size: $font-up-4;
line-height: $line-height-medium;
overflow-wrap: break-word;
width: 100%;
a {
color: var(--primary);
}
}
.remove-featured-link {
float: right;
text-transform: lowercase;
color: var(--primary-med-or-secondary-med);
font-size: 0.857rem;
}
2013-09-05 15:37:07 -04:00
}
.topic-error {
2014-06-16 14:25:33 -04:00
padding: 18px;
width: 60%;
margin-left: auto;
margin-right: auto;
2018-01-12 17:27:38 -05:00
font-size: $font-up-4;
2014-06-16 14:25:33 -04:00
text-align: center;
2018-01-12 17:27:38 -05:00
line-height: $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: 28px;
margin-left: auto;
margin-right: auto;
}
}
.topic-status-info {
border-top: 1px solid var(--primary-low);
padding: 10px 0;
max-width: 758px;
.topic-timer-heading,
.slow-mode-heading {
display: flex;
align-items: center;
margin: 0px;
}
.topic-timer-remove,
.slow-mode-remove {
font-size: $font-down-2;
background: transparent;
margin-left: auto;
}
}
#topic-progress-wrapper {
position: fixed;
right: 2em;
bottom: 0;
left: 0;
margin: 0 auto;
max-width: $reply-area-max-width;
display: flex;
justify-content: flex-end;
z-index: z("timeline");
// max-width + bottom + left/right makes this element take up the whole width
// albeit as a transparent row, but we disable pointer-events to allow user to
// interact with visible elements at bottom of viewport
pointer-events: none;
> * {
// and then we reset for its children
pointer-events: auto;
}
&.docked {
position: absolute;
bottom: -70px;
}
html.rtl & {
justify-content: flex-start;
right: 0;
left: 2em;
}
}
#topic-progress-expanded {
border: 1px solid var(--primary-low);
padding: 5px;
background: var(--secondary);
position: relative;
left: 340px;
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;
2018-01-12 17:27:38 -05:00
font-size: $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;
margin-bottom: 0;
2018-01-12 17:27:38 -05:00
font-size: $font-up-1;
}
button.btn {
float: right;
width: 55px;
}
}
button.btn.jump-prompt {
margin: 0;
}
button.btn.jump-bottom {
margin: 5px 0 0 0;
}
}
2013-09-05 15:37:07 -04:00
#topic-progress {
position: relative;
left: 340px;
2013-09-05 15:37:07 -04:00
&.hidden {
display: none;
}
background-color: var(--secondary);
color: var(--tertiary);
border: 1px solid var(--tertiary-low);
2015-05-19 21:10:40 -04:00
border-bottom: none;
width: 145px;
2013-09-05 15:37:07 -04:00
height: 34px;
2014-06-27 18:28:16 -04:00
/* as a big ol' click target, don't let text inside be selected */
@include unselectable;
2014-06-27 18:28:16 -04:00
&:hover {
cursor: pointer;
}
2013-09-05 15:37:07 -04:00
.nums {
position: relative;
top: 9px;
width: 100%;
text-align: center;
z-index: z("base");
2013-09-05 15:37:07 -04:00
}
.d-icon {
2013-09-05 15:37:07 -04:00
position: absolute;
right: 8px;
bottom: 9px;
z-index: z("base");
2013-09-05 15:37:07 -04:00
}
h4 {
display: inline;
2018-01-12 17:27:38 -05:00
font-size: $font-up-2;
line-height: $line-height-small;
2013-09-05 15:37:07 -04:00
}
.bg {
position: absolute;
top: 0;
bottom: 0;
width: 0;
max-width: 145px;
border-right: 1px solid var(--tertiary-low);
background-color: var(--tertiary-low);
transition: width 0.75s;
2013-09-05 15:37:07 -04:00
}
}
2013-10-22 10:41:09 -04:00
#topic-filter {
background-color: var(--highlight-medium);
2013-10-22 10:41:09 -04:00
padding: 8px;
bottom: 0;
position: fixed;
width: 100%;
2018-01-12 17:27:38 -05:00
font-size: $font-0;
z-index: z("dropdown");
}
2013-10-23 17:00:02 -04:00
@media all and (min-width: 400px) {
#topic-progress,
#topic-progress-expanded {
right: 0;
left: 0;
}
#topic-footer-main-buttons {
max-width: 70%;
}
}
@media all and (max-width: 485px) {
#topic-progress-wrapper.docked {
display: none;
}
#topic-footer-main-buttons {
max-width: 100%;
}
}