You've already forked Ghost-Theme-Source
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
62cb3da424 | ||
|
|
f749b4bed0 | ||
|
|
daf120397f | ||
|
|
539464ac9b | ||
|
|
2cfe4e2016 | ||
|
|
3b99c9e881 | ||
|
|
0beef28a44 |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -238,7 +238,6 @@ a:hover {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
max-width: 560px;
|
||||
width: 100%;
|
||||
height: 56px;
|
||||
@@ -365,6 +364,15 @@ button.gh-form-input {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.gh-form [data-members-error] {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
margin-top: 10px;
|
||||
width: 100%;
|
||||
font-size: 1.4rem;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
.gh-form {
|
||||
font-size: 1.6rem;
|
||||
@@ -518,6 +526,10 @@ button.gh-form-input {
|
||||
background-color: var(--background-color);
|
||||
}
|
||||
|
||||
.gh-navigation.has-accent-color .gh-navigation-actions {
|
||||
background-color: var(--ghost-accent-color);
|
||||
}
|
||||
|
||||
.gh-navigation-members {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
@@ -1385,6 +1397,7 @@ Search LOGO Login Subscribe
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 48px;
|
||||
overflow: unset;
|
||||
margin: auto;
|
||||
max-width: 1020px;
|
||||
text-align: center;
|
||||
@@ -2374,7 +2387,11 @@ blockquote.kg-blockquote-alt {
|
||||
/* Button */
|
||||
|
||||
.kg-card.kg-button-card .kg-btn {
|
||||
height: unset;
|
||||
padding: .6em 1.2em;
|
||||
text-align: center;
|
||||
font-size: 1em;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
|
||||
@@ -50,10 +50,10 @@
|
||||
/* Responsive HTML table */
|
||||
(function () {
|
||||
const tables = document.querySelectorAll('.gh-content > table:not(.gist table)');
|
||||
const wrapper = document.createElement('div');
|
||||
wrapper.className = 'gh-table';
|
||||
|
||||
|
||||
tables.forEach(function (table) {
|
||||
const wrapper = document.createElement('div');
|
||||
wrapper.className = 'gh-table';
|
||||
table.parentNode.insertBefore(wrapper, table);
|
||||
wrapper.appendChild(table);
|
||||
});
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "source",
|
||||
"description": "A default theme for the Ghost publishing platform",
|
||||
"demo": "https://source.ghost.io",
|
||||
"version": "1.2.0",
|
||||
"version": "1.2.2",
|
||||
"engines": {
|
||||
"ghost": ">=5.0.0"
|
||||
},
|
||||
|
||||
@@ -5,4 +5,5 @@
|
||||
{{> "icons/loader"}}
|
||||
{{> "icons/checkmark"}}
|
||||
</button>
|
||||
<p data-members-error></p>
|
||||
</form>
|
||||
Reference in New Issue
Block a user