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

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

137 lines
2.2 KiB
SCSS
Raw Normal View History

// 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
// Base Elements
2018-01-13 06:27:38 +08:00
2013-09-06 03:37:07 +08:00
body {
background-color: var(--secondary);
2013-09-06 03:37:07 +08:00
}
.ios-device {
textarea {
background-color: var(--secondary);
font-size: var(--font-size-ios-input);
-webkit-tap-highlight-color: transparent;
}
input#reply-title {
-webkit-tap-highlight-color: transparent;
}
}
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
p {
margin: 0 0 10px 0;
&:last-of-type {
margin-bottom: 0;
2013-09-06 03:37:07 +08:00
}
}
}
// Common classes
.boxed {
.contents {
padding: 10px 0 0 0;
}
2013-09-06 03:37:07 +08:00
}
.control-group {
margin-bottom: 9px;
}
.mobile-nav {
margin: 0;
padding: 0;
list-style: none;
position: relative;
a {
color: var(--primary);
.d-icon {
2019-03-26 02:47:56 +08:00
margin-right: 0.25em;
color: var(--primary-medium);
}
}
2021-09-11 03:13:26 +08:00
> li > a.expander {
display: flex;
align-items: center;
2021-09-11 03:13:26 +08:00
@include form-item-sizing;
border-color: var(--primary-medium);
max-width: 100%;
.selection {
@include ellipsis;
max-width: 120px;
}
2021-09-11 03:13:26 +08:00
> .d-icon {
&:last-of-type {
margin-left: auto;
margin-right: 0;
}
}
}
.drop {
display: none;
&.expanded {
left: 0;
display: block;
position: absolute;
z-index: z("dropdown");
background-color: var(--secondary);
width: 100%;
list-style: none;
margin: 0;
padding: 5px;
border: 1px solid var(--primary-low);
box-sizing: border-box;
li {
margin: 5px 0;
padding: 0;
a {
height: 100%;
display: block;
padding: 5px 8px;
@include ellipsis;
}
}
}
}
}
2016-02-25 16:20:44 +08:00
.form-vertical {
.control-group {
margin-bottom: 12px;
}
2016-02-25 16:20:44 +08:00
}
// Special elements
#main-outlet-wrapper {
margin-left: unset;
margin-right: unset;
}
#main-outlet {
padding-top: 1.25em;
&:after {
// setup overlay for sidebar
content: "";
opacity: 0;
transition: opacity 0.2s;
}
}
#main {
position: relative;
2016-02-25 16:20:44 +08:00
}