2017-09-02 06:59:50 +08:00
|
|
|
// Mobile
|
2013-09-06 03:37:07 +08:00
|
|
|
// global styles that apply to the Discourse application specifically
|
|
|
|
// BEWARE: changing these styles implies they take effect anywhere they are seen
|
|
|
|
// throughout the Discourse application
|
|
|
|
|
2017-09-02 06:59:50 +08:00
|
|
|
// Base Elements
|
2018-01-13 06:27:38 +08:00
|
|
|
html {
|
|
|
|
font-size: 15px; // Increasing overall font-size on mobile by 1px
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
body {
|
2014-05-06 13:50:51 +08:00
|
|
|
background-color: $secondary;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
2017-09-02 06:59:50 +08:00
|
|
|
textarea {
|
|
|
|
background-color:$secondary;
|
2015-07-22 09:46:15 +08:00
|
|
|
}
|
|
|
|
|
2017-09-02 06:59:50 +08:00
|
|
|
blockquote {
|
|
|
|
/* 13px left is intentional here to properly align with post quotes */
|
|
|
|
padding: 10px 8px 10px 13px;
|
2013-09-06 03:37:07 +08:00
|
|
|
|
2017-09-02 06:59:50 +08:00
|
|
|
p {
|
|
|
|
margin: 0 0 10px 0;
|
|
|
|
|
|
|
|
&:last-of-type {
|
|
|
|
margin-bottom:0;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
}
|
2017-09-02 06:59:50 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Common classes
|
|
|
|
.wrap {
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.boxed {
|
|
|
|
.contents {
|
|
|
|
padding: 10px 0 0 0;
|
2014-05-13 14:37:19 +08:00
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
2017-09-02 06:59:50 +08:00
|
|
|
.control-group {
|
|
|
|
margin-bottom: 9px;
|
|
|
|
}
|
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
.topic-statuses {
|
2015-11-04 06:59:42 +08:00
|
|
|
display: inline-block;
|
2017-09-02 06:59:50 +08:00
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
.topic-status {
|
|
|
|
i {
|
2017-10-11 04:07:46 +08:00
|
|
|
color: $secondary-high;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
}
|
2014-06-29 18:26:48 +08:00
|
|
|
|
2017-09-02 06:59:50 +08:00
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2014-10-11 06:43:01 +08:00
|
|
|
}
|
2015-03-15 17:23:18 +08:00
|
|
|
|
|
|
|
// categories should not be bold on mobile; they fight with the topic title too much
|
|
|
|
.badge-wrapper {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2016-02-12 14:51:08 +08:00
|
|
|
|
|
|
|
.mobile-view .mobile-nav {
|
2017-09-02 06:59:50 +08:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background: $primary-low;
|
|
|
|
list-style: none;
|
|
|
|
overflow: visible;
|
|
|
|
position: relative;
|
|
|
|
width: 45%;
|
|
|
|
|
|
|
|
&.messages-nav,
|
|
|
|
&.notifications-nav,
|
|
|
|
&.activity-nav,
|
|
|
|
&.preferences-nav {
|
2016-02-12 14:51:08 +08:00
|
|
|
position: absolute;
|
|
|
|
right: 0px;
|
2018-01-13 06:27:38 +08:00
|
|
|
top: -57px;
|
2016-02-12 14:51:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $primary;
|
2017-09-02 06:59:50 +08:00
|
|
|
|
|
|
|
.fa {
|
|
|
|
margin-right: 8px;
|
2017-10-11 04:07:46 +08:00
|
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
2018-01-13 06:27:38 +08:00
|
|
|
line-height: $line-height-medium;
|
2017-09-02 06:59:50 +08:00
|
|
|
}
|
2016-02-12 14:51:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
> li > a {
|
|
|
|
padding: 8px 10px;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2016-02-13 00:02:23 +08:00
|
|
|
box-sizing: border-box;
|
2016-02-12 14:51:08 +08:00
|
|
|
display: block;
|
|
|
|
}
|
2017-09-02 06:59:50 +08:00
|
|
|
|
2017-11-24 00:14:51 +08:00
|
|
|
.d-icon-caret-down {
|
2016-02-12 14:51:08 +08:00
|
|
|
position: absolute;
|
|
|
|
right: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.drop {
|
|
|
|
display: none;
|
2017-09-02 06:59:50 +08:00
|
|
|
&.expanded {
|
|
|
|
left: 0;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10000000;
|
|
|
|
background-color: $secondary;
|
|
|
|
width: 100%;
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px;
|
|
|
|
border: 1px solid #eaeaea;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
li {
|
|
|
|
margin: 5px 0;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
a {
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
padding: 5px 8px;
|
|
|
|
}
|
2016-02-12 14:51:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-25 16:20:44 +08:00
|
|
|
|
2017-09-02 06:59:50 +08:00
|
|
|
.form-vertical {
|
|
|
|
.control-group {
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
2016-02-25 16:20:44 +08:00
|
|
|
}
|
|
|
|
|
2017-09-02 06:59:50 +08:00
|
|
|
// Special elements
|
|
|
|
#main {
|
|
|
|
position: relative;
|
2016-02-25 16:20:44 +08:00
|
|
|
}
|
|
|
|
|
2017-09-02 06:59:50 +08:00
|
|
|
// Styles used before the user is logged into discourse. For example, activating
|
|
|
|
// their account or changing their email.
|
|
|
|
#simple-container {
|
|
|
|
width: 90%;
|
2016-02-25 16:20:44 +08:00
|
|
|
}
|
2017-04-27 04:18:16 +08:00
|
|
|
|
2017-09-02 06:59:50 +08:00
|
|
|
// somehow the image logo assumption inherits margins from earlier in the CSS
|
|
|
|
// stack we must remove margins for text site titles
|
|
|
|
h2#site-text-logo {
|
|
|
|
margin: 0 0 0 10px;
|
2017-04-27 04:18:16 +08:00
|
|
|
}
|