Minor layout and style adjustments.
This commit is contained in:
parent
6ae9a5ddeb
commit
72417a9abb
@ -4,7 +4,7 @@ export class Posts extends NodesBase {
|
|||||||
static create$item(post) {
|
static create$item(post) {
|
||||||
let content = [];
|
let content = [];
|
||||||
let $title = $('<div>')
|
let $title = $('<div>')
|
||||||
.addClass('display-4 text-uppercase font-weight-bold')
|
.addClass('h2 text-uppercase font-weight-bold mt-4 mb-3')
|
||||||
.text(post.name);
|
.text(post.name);
|
||||||
content.push($title);
|
content.push($title);
|
||||||
let $post = $('<div>')
|
let $post = $('<div>')
|
||||||
|
@ -112,7 +112,7 @@ export class Timeline {
|
|||||||
.addClass('btn btn-outline-primary btn-block js-load-next mb-3')
|
.addClass('btn btn-outline-primary btn-block js-load-next mb-3')
|
||||||
.attr('href', 'javascript:void(0);')
|
.attr('href', 'javascript:void(0);')
|
||||||
.click(this._loadMore.bind(this))
|
.click(this._loadMore.bind(this))
|
||||||
.text('Load More Weeks');
|
.text('Show More Weeks');
|
||||||
}
|
}
|
||||||
|
|
||||||
_workStart() {
|
_workStart() {
|
||||||
@ -163,7 +163,7 @@ class GroupBuilder {
|
|||||||
if (secondaryNodes) {
|
if (secondaryNodes) {
|
||||||
content.push(
|
content.push(
|
||||||
$('<div>')
|
$('<div>')
|
||||||
.addClass('card-deck card-padless card-deck-responsive js-asset-list py-3')
|
.addClass('card-deck card-padless card-deck-responsive js-asset-list border-bottom p-3 pb-5 mb-5')
|
||||||
.append(pillar.templates.Nodes.createListOf$nodeItems(secondaryNodes))
|
.append(pillar.templates.Nodes.createListOf$nodeItems(secondaryNodes))
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -296,7 +296,7 @@ body.has-overlay
|
|||||||
nav.navbar
|
nav.navbar
|
||||||
background-color: $white !important
|
background-color: $white !important
|
||||||
box-shadow: none !important
|
box-shadow: none !important
|
||||||
padding: 5px
|
padding: 10px
|
||||||
transition: padding-top $short-transition ease-in-out, padding-bottom $short-transition ease-in-out
|
transition: padding-top $short-transition ease-in-out, padding-bottom $short-transition ease-in-out
|
||||||
|
|
||||||
.nav-secondary
|
.nav-secondary
|
||||||
|
@ -34,12 +34,15 @@
|
|||||||
visibility: visible
|
visibility: visible
|
||||||
|
|
||||||
.qs-input
|
.qs-input
|
||||||
|
&.show input
|
||||||
|
width: 50vw
|
||||||
|
|
||||||
input
|
input
|
||||||
border-style: solid
|
border-style: solid
|
||||||
border-radius: $border-radius
|
border-radius: $border-radius
|
||||||
height: $input-height-inner
|
height: $input-height-inner
|
||||||
padding: $input-padding-y 25px $input-padding-y $input-padding-x
|
padding: $input-padding-y 25px $input-padding-y $input-padding-x
|
||||||
width: 30vw
|
width: auto
|
||||||
|
|
||||||
&:focus
|
&:focus
|
||||||
&+i+select
|
&+i+select
|
||||||
|
Loading…
x
Reference in New Issue
Block a user