Skip to content

Commit 072c4cd

Browse files
committed
Support Ghost 5.x.
1 parent 994d90a commit 072c4cd

26 files changed

+70
-117
lines changed

assets/css/style-min-rtl.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/style-min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/app.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/sass/components/_bookmark-card.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ a.kg-bookmark-container {
1111
min-height: 144px;
1212
border-radius: $global-border-radius;
1313
background-color: var(--bg-white);
14-
color: var(--color-text);
14+
color: $color-text;
1515
text-decoration: none;
1616

1717
@include attention() {

assets/sass/components/_buttons.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.btn {
66
display: inline-block;
77
padding: $space-16 $space-32;
8-
color: var(--color-white);
8+
color: white;
99
background-color: var(--color-dark);
1010
font-size: $type-xs;
1111
line-height: $type-xs-lh;
@@ -44,27 +44,27 @@
4444

4545
&--outline {
4646
color: var(--color-brand);
47-
background-color: var(--bg-white);
47+
background-color: white;
4848
box-shadow: inset 0 0 0 1px var(--color-brand);
4949

5050
@include attention() {
51-
color: var(--color-white);
51+
color: white;
5252
background-color: var(--color-brand);
5353
}
5454
}
5555

5656
&--action {
57-
color: var(--color-white);
57+
color: white;
5858
background-color: var(--color-brand);
5959
}
6060

6161
&--danger {
62-
color: var(--color-white);
62+
color: white;
6363
background-color: var(--color-error);
6464
}
6565

6666
&--dark {
67-
color: var(--color-white);
67+
color: white;
6868
background-color: var(--bg-dark);
6969
}
7070

assets/sass/components/_card-author.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
}
4848

4949
.icon {
50-
fill: var(--color-text);
50+
fill: $color-text;
5151
vertical-align: sub;
5252
transition: $global-transition;
5353

assets/sass/components/_content.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919

2020
a {
21-
color: var(--color-text);
21+
color: $color-text;
2222
text-decoration: underline;
2323

2424
@include attention() {
@@ -51,7 +51,7 @@
5151

5252
&:before {
5353
content: '. . .';
54-
color: var(--color-text);
54+
color: $color-text;
5555
}
5656
}
5757

assets/sass/components/_footer.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
border-top: 0.5px solid var(--color-border);
99
background-color: white;
1010
margin: $space-40 auto 0;
11-
@media (max-width: 800px) {
11+
@media (max-width: 1000px) {
1212
padding: $space-40;
1313
}
1414

assets/sass/components/_member-plan.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
&__title {
4646
margin-bottom: $space-16;
47-
color: var(--color-text);
47+
color: $color-text;
4848
font-size: $type--h-xxs;
4949
line-height: $type--h-xxs-lh;
5050
font-weight: $type-700;

assets/sass/components/_nav.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,15 @@
9898
}
9999

100100
&--current {
101-
color: var(--color-text);
101+
color: $color-text;
102102

103103
.home-template & {
104104
color: var(--color-gray);
105105
}
106106
}
107107

108108
@include attention() {
109-
color: var(--color-text);
109+
color: $color-text;
110110
}
111111
}
112112

@@ -137,7 +137,7 @@
137137
left: 0;
138138
width: $space-24;
139139
height: 1px;
140-
background: var(--color-text);
140+
background: $color-text;
141141
cursor: pointer;
142142

143143
&:before,
@@ -159,7 +159,7 @@
159159
&:after {
160160
visibility: visible;
161161
position: relative;
162-
background: var(--color-text);
162+
background: $color-text;
163163
}
164164

165165
&:before {

0 commit comments

Comments
 (0)