mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:49:55 +08:00
164 lines
3.0 KiB
SCSS
164 lines
3.0 KiB
SCSS
// Mobile
|
|
// 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
|
|
|
|
body {
|
|
background-color: $secondary;
|
|
}
|
|
|
|
.ios-device {
|
|
textarea {
|
|
background-color: $secondary;
|
|
font-size: $font-size-ios-input;
|
|
}
|
|
|
|
input {
|
|
&[type="text"],
|
|
&[type="password"],
|
|
&[type="datetime"],
|
|
&[type="datetime-local"],
|
|
&[type="date"],
|
|
&[type="month"],
|
|
&[type="time"],
|
|
&[type="week"],
|
|
&[type="number"],
|
|
&[type="email"],
|
|
&[type="url"],
|
|
&[type="search"],
|
|
&[type="tel"],
|
|
&[type="color"] {
|
|
font-size: $font-size-ios-input;
|
|
}
|
|
}
|
|
}
|
|
|
|
blockquote {
|
|
/* 13px left is intentional here to properly align with post quotes */
|
|
padding: 10px 8px 10px 13px;
|
|
|
|
p {
|
|
margin: 0 0 10px 0;
|
|
|
|
&:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Common classes
|
|
.wrap {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.boxed {
|
|
.contents {
|
|
padding: 10px 0 0 0;
|
|
}
|
|
}
|
|
|
|
.control-group {
|
|
margin-bottom: 9px;
|
|
}
|
|
|
|
// categories should not be bold on mobile; they fight with the topic title too much
|
|
.badge-wrapper {
|
|
font-weight: normal;
|
|
}
|
|
|
|
.mobile-nav {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
overflow: visible;
|
|
position: relative;
|
|
border: 1px solid $primary-medium;
|
|
// Prevents the dropdowns from collapsing while content loads, so they look more like placeholders and less like dark 2px lines
|
|
min-height: 37px;
|
|
|
|
a {
|
|
color: $primary;
|
|
.d-icon {
|
|
margin-right: 0.25em;
|
|
color: $primary-medium;
|
|
}
|
|
}
|
|
|
|
> li > a {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 8px 10px;
|
|
height: 100%;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.expander .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: $secondary;
|
|
width: 100%;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 5px;
|
|
border: 1px solid $primary-low;
|
|
box-sizing: border-box;
|
|
|
|
li {
|
|
margin: 5px 0;
|
|
padding: 0;
|
|
|
|
a {
|
|
height: 100%;
|
|
display: block;
|
|
padding: 5px 8px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.form-vertical {
|
|
.control-group {
|
|
margin-bottom: 12px;
|
|
}
|
|
}
|
|
|
|
// Special elements
|
|
#main {
|
|
position: relative;
|
|
}
|
|
|
|
// Styles used before the user is logged into discourse. For example, activating
|
|
// their account or changing their email.
|
|
#simple-container {
|
|
width: 90%;
|
|
}
|
|
|
|
// this is used to provide visual feedback that indicates that the user / group
|
|
// cards are loading after the user clicks on an avatar. It's mostly for very slow
|
|
// connections. Users on good connections won't notice it.
|
|
[data-user-card]:focus {
|
|
.avatar,
|
|
+ .avatar-flair {
|
|
animation: wave 0.75s infinite;
|
|
animation-delay: 0.5s;
|
|
}
|
|
.avatar {
|
|
position: relative;
|
|
}
|
|
}
|