Skip to content

Commit

Permalink
Merge pull request #17 from cdevroe/9-search-results
Browse files Browse the repository at this point in the history
9 search results
  • Loading branch information
Colin Devroe authored Jan 6, 2022
2 parents abe53d8 + 6611c2c commit b36d63e
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 5 deletions.
2 changes: 1 addition & 1 deletion layouts/partials/head.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<meta content="{{ .Site.Author.name }}" name="author">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="microblog-theme" content="Cypress 2022.1.0">
<meta name="microblog-theme" content="Cypress 2022.1.1">
<meta name="designer" content="Kyle Ruane and Colin Devroe">

<title>
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2022.1.0",
"version": "2022.1.1",
"title": "Cypress theme",
"description": "Changes your Micro.blog powered site to use the Cypress theme."
}
8 changes: 7 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@ Cypress for Micro.blog is freely available to members of Micro.blog. Log into yo

## Version History

2021.3.0 - December 10, 2021
2022.1.1 - January 4, 2022

- Fix: Search results load much better on mobile (still more to do here)
- Adjustment: Profile photos now load at 50% of their size to make them sharper
- Fix: Margin added in between images in blog posts

2022.1.0 - January 4, 2022

- Fix: Archive page fix submitted by Manton PR #13.
- New: Added files to prepare Cypress to be a Micro.blog plugin submitted by Manton PR #14.
Expand Down
25 changes: 23 additions & 2 deletions static/assets/css/microblog.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
/* Micro.blog specific styles */
#list_results { margin-left: 350px; }

/*
Loads search results in a full-width pane on mobile
*/
@media all and (min-width:900px) {
#list_results { margin-left: 350px; }
}

#list_results p {
margin-bottom: 10px;
Expand All @@ -9,4 +15,19 @@
text-decoration: underline;
}

.dark header .main-nav ul li a { color: #fff; }
.dark header .main-nav ul li a { color: #fff; }

/*
Adds some margin to images in blog posts
*/
.h-entry .e-content p img {
margin-bottom: 0px;
}

/*
Load profile image at "half size"
*/
.logo img {
width: 100px;
height: 100px;
}

0 comments on commit b36d63e

Please sign in to comment.