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

152 lines
2.4 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
html {
font-size: 15px; // Increasing overall font-size on mobile by 1px
}
2013-09-06 03:37:07 +08:00
body {
background-color: $secondary;
2013-09-06 03:37:07 +08:00
}
textarea {
background-color: $secondary;
}
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
.wrap {
padding: 0 10px;
}
.boxed {
.contents {
padding: 10px 0 0 0;
}
2013-09-06 03:37:07 +08:00
}
.control-group {
margin-bottom: 9px;
}
2013-09-06 03:37:07 +08:00
.topic-statuses {
display: inline-block;
2013-09-06 03:37:07 +08:00
.topic-status {
Upgrade to FontAwesome 5 (take two) (#6673) * Add missing icons to set * Revert FA5 revert This reverts commit 42572ff * use new SVG syntax in locales * Noscript page changes (remove login button, center "powered by" footer text) * Cast wider net for SVG icons in settings - include any _icon setting for SVG registry (offers better support for plugin settings) - let themes store multiple pipe-delimited icons in a setting - also replaces broken onebox image icon with SVG reference in cooked post processor * interpolate icons in locales * Fix composer whisper icon alignment * Add support for stacked icons * SECURITY: enforce hostname to match discourse hostname This ensures that the hostname rails uses for various helpers always matches the Discourse hostname * load SVG sprite with pre-initializers * FIX: enable caching on SVG sprites * PERF: use JSONP for SVG sprites so they are served from CDN This avoids needing to deal with CORS for loading of the SVG Note, added the svg- prefix to the filename so we can quickly tell in dev tools what the file is * Add missing SVG sprite JSONP script to CSP * Upgrade to FA 5.5.0 * Add support for all FA4.7 icons - adds complete frontend and backend for renamed FA4.7 icons - improves performance of SvgSprite.bundle and SvgSprite.all_icons * Fix group avatar flair preview - adds an endpoint at /svg-sprites/search/:keyword - adds frontend ajax call that pulls icon in avatar flair preview even when it is not in subset * Remove FA 4.7 font files
2018-11-27 05:49:57 +08:00
.d-icon {
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
&:empty {
display: none;
}
}
// categories should not be bold on mobile; they fight with the topic title too much
.badge-wrapper {
font-weight: normal;
}
.mobile-view .mobile-nav {
margin: 0;
padding: 0;
background: $primary-low;
list-style: none;
overflow: visible;
position: relative;
width: 45%;
&.messages-nav,
&.notifications-nav,
&.activity-nav,
&.preferences-nav {
position: absolute;
right: 0;
2018-01-13 06:27:38 +08:00
top: -57px;
}
a {
color: $primary;
.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;
}
}
> li > a {
padding: 8px 10px;
height: 100%;
width: 100%;
box-sizing: border-box;
display: block;
}
.d-icon-caret-down {
position: absolute;
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 #eaeaea;
box-sizing: border-box;
li {
margin: 5px 0;
padding: 0;
a {
height: 100%;
display: block;
padding: 5px 8px;
}
}
}
}
}
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 {
position: relative;
2016-02-25 16:20:44 +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
}