2013-10-24 05:00:02 +08:00
|
|
|
.post-actions {
|
2013-11-04 19:51:39 +08:00
|
|
|
@include unselectable;
|
2013-10-24 12:30:41 +08:00
|
|
|
clear: both;
|
2013-10-23 03:37:44 +08:00
|
|
|
text-align: right;
|
2018-01-23 10:26:07 +08:00
|
|
|
margin-bottom: 10px;
|
2013-11-04 19:51:39 +08:00
|
|
|
.post-action {
|
2013-10-31 00:40:16 +08:00
|
|
|
display: inline-block;
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-top: 10px;
|
2013-11-04 19:51:39 +08:00
|
|
|
}
|
2013-10-31 00:40:16 +08:00
|
|
|
}
|
2016-05-17 02:31:52 +08:00
|
|
|
|
2013-10-31 00:40:16 +08:00
|
|
|
.post-menu-area {
|
2018-01-17 04:48:47 +08:00
|
|
|
margin: 20px 0;
|
2013-10-23 03:37:44 +08:00
|
|
|
}
|
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
#topic-title {
|
2018-01-17 08:05:12 +08:00
|
|
|
z-index: z("base");
|
2021-05-26 17:12:32 +08:00
|
|
|
margin-bottom: 1em;
|
2017-08-31 17:16:08 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
#edit-title,
|
|
|
|
.category-chooser,
|
|
|
|
.edit-controls {
|
2017-08-31 21:08:09 +08:00
|
|
|
width: 500px;
|
|
|
|
}
|
2013-10-31 00:40:16 +08:00
|
|
|
h1 {
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-up-4;
|
|
|
|
line-height: $line-height-medium;
|
2020-07-28 05:26:48 +08:00
|
|
|
overflow-wrap: break-word;
|
2018-02-26 18:42:57 +08:00
|
|
|
width: 100%;
|
2018-06-08 17:49:31 +08:00
|
|
|
a {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary);
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
2014-10-02 10:54:03 +08:00
|
|
|
}
|
2020-01-18 01:20:23 +08:00
|
|
|
|
2017-11-23 03:53:35 +08:00
|
|
|
.remove-featured-link {
|
|
|
|
float: right;
|
|
|
|
text-transform: lowercase;
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-med-or-secondary-med);
|
2017-12-21 04:56:53 +08:00
|
|
|
font-size: 0.857rem;
|
2017-11-23 03:53:35 +08:00
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
2020-08-25 07:29:18 +08:00
|
|
|
.topic-error {
|
2014-06-17 02:25:33 +08:00
|
|
|
padding: 18px;
|
|
|
|
width: 60%;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-up-4;
|
2014-06-17 02:25:33 +08:00
|
|
|
text-align: center;
|
2018-01-13 06:27:38 +08:00
|
|
|
line-height: $line-height-medium;
|
2014-06-17 02:25:33 +08:00
|
|
|
|
2020-08-25 07:29:18 +08:00
|
|
|
.topic-retry {
|
2014-06-17 02:25:33 +08:00
|
|
|
display: block;
|
|
|
|
margin-top: 28px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-04 19:03:14 +08:00
|
|
|
#topic-progress-wrapper {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
2020-09-11 01:29:14 +08:00
|
|
|
left: 0;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: $reply-area-max-width;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
2018-01-17 08:05:12 +08:00
|
|
|
z-index: z("timeline");
|
2020-09-15 21:38:06 +08:00
|
|
|
// 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;
|
|
|
|
}
|
2014-06-04 19:03:14 +08:00
|
|
|
&.docked {
|
|
|
|
position: absolute;
|
|
|
|
bottom: -70px;
|
|
|
|
}
|
2020-09-11 01:29:14 +08:00
|
|
|
html.rtl & {
|
|
|
|
justify-content: flex-start;
|
|
|
|
right: 0;
|
|
|
|
left: 2em;
|
|
|
|
}
|
2014-06-04 19:03:14 +08:00
|
|
|
}
|
|
|
|
|
2014-06-13 04:49:13 +08:00
|
|
|
#topic-progress-expanded {
|
2020-08-04 10:57:10 +08:00
|
|
|
border: 1px solid var(--primary-low);
|
2014-06-13 04:49:13 +08:00
|
|
|
padding: 5px;
|
2020-08-04 10:57:10 +08:00
|
|
|
background: var(--secondary);
|
2014-06-13 04:49:13 +08:00
|
|
|
|
|
|
|
position: relative;
|
2015-10-02 17:41:37 +08:00
|
|
|
left: 340px;
|
2015-09-23 07:36:15 +08:00
|
|
|
width: 135px;
|
2014-06-13 04:49:13 +08:00
|
|
|
|
|
|
|
button.full {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 5px;
|
2018-11-27 05:49:57 +08:00
|
|
|
.d-icon {
|
2014-06-13 05:24:11 +08:00
|
|
|
display: block;
|
|
|
|
margin-top: 2px;
|
|
|
|
margin-bottom: 2px;
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-up-2;
|
2014-06-13 05:24:11 +08:00
|
|
|
}
|
2014-06-13 04:49:13 +08:00
|
|
|
}
|
|
|
|
.jump-form {
|
|
|
|
input[type="text"] {
|
|
|
|
float: left;
|
|
|
|
width: 45px;
|
|
|
|
height: 20px;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 0;
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-up-1;
|
2014-06-13 04:49:13 +08:00
|
|
|
}
|
|
|
|
button.btn {
|
|
|
|
float: right;
|
|
|
|
width: 55px;
|
|
|
|
}
|
|
|
|
}
|
2016-07-27 03:08:04 +08:00
|
|
|
button.btn.jump-prompt {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2014-06-13 04:49:13 +08:00
|
|
|
button.btn.jump-bottom {
|
|
|
|
margin: 5px 0 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
#topic-progress {
|
|
|
|
position: relative;
|
2015-08-27 17:53:47 +08:00
|
|
|
left: 340px;
|
2013-09-06 03:37:07 +08:00
|
|
|
&.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-08-04 10:57:10 +08:00
|
|
|
background-color: var(--secondary);
|
|
|
|
color: var(--tertiary);
|
|
|
|
border: 1px solid var(--tertiary-low);
|
2015-05-20 09:10:40 +08:00
|
|
|
border-bottom: none;
|
2014-08-01 16:41:06 +08:00
|
|
|
width: 145px;
|
2013-09-06 03:37:07 +08:00
|
|
|
height: 34px;
|
2013-11-07 04:33:17 +08:00
|
|
|
|
2014-06-28 06:28:16 +08:00
|
|
|
/* as a big ol' click target, don't let text inside be selected */
|
2014-06-28 07:54:30 +08:00
|
|
|
@include unselectable;
|
2014-06-28 06:28:16 +08:00
|
|
|
|
2014-06-13 04:49:13 +08:00
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
.nums {
|
|
|
|
position: relative;
|
|
|
|
top: 9px;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2018-01-17 08:05:12 +08:00
|
|
|
z-index: z("base");
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
2017-07-28 03:03:41 +08:00
|
|
|
.d-icon {
|
2013-09-06 03:37:07 +08:00
|
|
|
position: absolute;
|
2014-06-13 04:49:13 +08:00
|
|
|
right: 8px;
|
|
|
|
bottom: 9px;
|
2018-01-17 08:05:12 +08:00
|
|
|
z-index: z("base");
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
display: inline;
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-up-2;
|
|
|
|
line-height: $line-height-small;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
.bg {
|
|
|
|
position: absolute;
|
2014-03-06 14:14:51 +08:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 0;
|
2018-04-19 11:23:41 +08:00
|
|
|
max-width: 145px;
|
2020-08-04 10:57:10 +08:00
|
|
|
border-right: 1px solid var(--tertiary-low);
|
|
|
|
background-color: var(--tertiary-low);
|
2018-06-08 17:49:31 +08:00
|
|
|
transition: width 0.75s;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-22 22:41:09 +08:00
|
|
|
#topic-filter {
|
2020-08-04 10:57:10 +08:00
|
|
|
background-color: var(--highlight-medium);
|
2013-10-22 22:41:09 +08:00
|
|
|
padding: 8px;
|
|
|
|
bottom: 0;
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-0;
|
2018-01-17 08:05:12 +08:00
|
|
|
z-index: z("dropdown");
|
2013-10-23 03:37:44 +08:00
|
|
|
}
|
2013-10-24 05:00:02 +08:00
|
|
|
|
2020-10-20 05:26:38 +08:00
|
|
|
#topic-progress,
|
|
|
|
#topic-progress-expanded {
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
2014-12-04 09:20:19 +08:00
|
|
|
|
2020-10-20 05:26:38 +08:00
|
|
|
@media all and (min-width: 400px) {
|
2015-09-15 13:35:58 +08:00
|
|
|
#topic-footer-main-buttons {
|
|
|
|
max-width: 70%;
|
|
|
|
}
|
2014-12-04 09:20:19 +08:00
|
|
|
}
|
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
@media all and (max-width: 485px) {
|
2014-12-04 09:20:19 +08:00
|
|
|
#topic-progress-wrapper.docked {
|
|
|
|
display: none;
|
2015-09-15 13:35:58 +08:00
|
|
|
}
|
2014-12-04 09:20:19 +08:00
|
|
|
|
2015-09-15 13:35:58 +08:00
|
|
|
#topic-footer-main-buttons {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2014-12-04 09:20:19 +08:00
|
|
|
}
|