2017-09-01 18:59:50 -04:00
|
|
|
// Mobile
|
2013-09-05 15:37:07 -04: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-01 18:59:50 -04:00
|
|
|
// Base Elements
|
2018-01-12 17:27:38 -05:00
|
|
|
|
2013-09-05 15:37:07 -04:00
|
|
|
body {
|
2020-08-03 22:57:10 -04:00
|
|
|
background-color: var(--secondary);
|
2013-09-05 15:37:07 -04:00
|
|
|
}
|
|
|
|
|
2019-05-07 10:44:43 -04:00
|
|
|
.ios-device {
|
|
|
|
textarea {
|
2020-08-03 22:57:10 -04:00
|
|
|
background-color: var(--secondary);
|
2021-09-09 11:01:56 -04:00
|
|
|
font-size: var(--font-size-ios-input);
|
2020-08-03 10:01:04 -04:00
|
|
|
-webkit-tap-highlight-color: transparent;
|
2019-05-07 10:44:43 -04:00
|
|
|
}
|
2015-07-21 21:46:15 -04:00
|
|
|
|
2020-08-03 10:01:04 -04:00
|
|
|
input#reply-title {
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
}
|
2019-04-11 00:03:29 -04:00
|
|
|
}
|
|
|
|
|
2017-09-01 18:59:50 -04:00
|
|
|
blockquote {
|
|
|
|
/* 13px left is intentional here to properly align with post quotes */
|
|
|
|
padding: 10px 8px 10px 13px;
|
2013-09-05 15:37:07 -04:00
|
|
|
|
2017-09-01 18:59:50 -04:00
|
|
|
p {
|
|
|
|
margin: 0 0 10px 0;
|
|
|
|
|
|
|
|
&:last-of-type {
|
2018-06-08 05:49:31 -04:00
|
|
|
margin-bottom: 0;
|
2013-09-05 15:37:07 -04:00
|
|
|
}
|
|
|
|
}
|
2017-09-01 18:59:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Common classes
|
|
|
|
.boxed {
|
|
|
|
.contents {
|
|
|
|
padding: 10px 0 0 0;
|
2014-05-13 02:37:19 -04:00
|
|
|
}
|
2013-09-05 15:37:07 -04:00
|
|
|
}
|
|
|
|
|
2017-09-01 18:59:50 -04:00
|
|
|
.control-group {
|
|
|
|
margin-bottom: 9px;
|
|
|
|
}
|
|
|
|
|
2019-03-25 14:38:38 -04:00
|
|
|
.mobile-nav {
|
2017-09-01 18:59:50 -04:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
position: relative;
|
2016-02-12 01:51:08 -05:00
|
|
|
|
|
|
|
a {
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--primary);
|
2019-03-25 14:38:38 -04:00
|
|
|
.d-icon {
|
2019-03-25 14:47:56 -04:00
|
|
|
margin-right: 0.25em;
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--primary-medium);
|
2017-09-01 18:59:50 -04:00
|
|
|
}
|
2016-02-12 01:51:08 -05:00
|
|
|
}
|
|
|
|
|
2021-09-10 15:13:26 -04:00
|
|
|
> li > a.expander {
|
2018-12-07 12:34:37 -05:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-09-10 15:13:26 -04:00
|
|
|
@include form-item-sizing;
|
|
|
|
border-color: var(--primary-medium);
|
|
|
|
max-width: 100%;
|
|
|
|
.selection {
|
|
|
|
@include ellipsis;
|
|
|
|
max-width: 120px;
|
|
|
|
}
|
2020-12-30 15:34:27 -05:00
|
|
|
|
2021-09-10 15:13:26 -04:00
|
|
|
> .d-icon {
|
|
|
|
&:last-of-type {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2019-03-25 14:38:38 -04:00
|
|
|
}
|
2016-02-12 01:51:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.drop {
|
|
|
|
display: none;
|
2017-09-01 18:59:50 -04:00
|
|
|
&.expanded {
|
|
|
|
left: 0;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2018-01-16 19:05:12 -05:00
|
|
|
z-index: z("dropdown");
|
2020-08-03 22:57:10 -04:00
|
|
|
background-color: var(--secondary);
|
2017-09-01 18:59:50 -04:00
|
|
|
width: 100%;
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px;
|
2020-08-03 22:57:10 -04:00
|
|
|
border: 1px solid var(--primary-low);
|
2017-09-01 18:59:50 -04:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
li {
|
|
|
|
margin: 5px 0;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
a {
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
padding: 5px 8px;
|
2020-11-09 00:02:40 -05:00
|
|
|
@include ellipsis;
|
2017-09-01 18:59:50 -04:00
|
|
|
}
|
2016-02-12 01:51:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-25 03:20:44 -05:00
|
|
|
|
2017-09-01 18:59:50 -04:00
|
|
|
.form-vertical {
|
|
|
|
.control-group {
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
2016-02-25 03:20:44 -05:00
|
|
|
}
|
|
|
|
|
2017-09-01 18:59:50 -04:00
|
|
|
// Special elements
|
2020-10-21 02:52:35 -04:00
|
|
|
|
2022-05-11 20:13:53 -04:00
|
|
|
#main-outlet-wrapper {
|
|
|
|
margin-left: unset;
|
|
|
|
margin-right: unset;
|
|
|
|
}
|
|
|
|
|
2020-10-21 02:52:35 -04:00
|
|
|
#main-outlet {
|
2021-06-07 13:22:28 -04:00
|
|
|
padding-top: 1.25em;
|
2022-07-05 22:36:44 -04:00
|
|
|
&:after {
|
|
|
|
// setup overlay for sidebar
|
|
|
|
content: "";
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.2s;
|
|
|
|
}
|
2020-10-21 02:52:35 -04:00
|
|
|
}
|
|
|
|
|
2017-09-01 18:59:50 -04:00
|
|
|
#main {
|
|
|
|
position: relative;
|
2016-02-25 03:20:44 -05:00
|
|
|
}
|
|
|
|
|
2017-09-01 18:59:50 -04: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 03:20:44 -05:00
|
|
|
}
|