Skip to content

Commit ba4c380

Browse files
committed
Update Changelog
1 parent f69c294 commit ba4c380

File tree

5 files changed

+36
-15
lines changed

5 files changed

+36
-15
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
#### Spectre.css Changelog
22

3+
##### [v0.5.6](https://github.com/picturepan2/spectre/releases/tag/v0.5.6)
4+
5+
- Add Docs Search #509 #291
6+
- Add Copy icon
7+
- Add Hero layout #380
8+
- Add multiline Tooltips #500
9+
- Replace transition: all; #526
10+
- Fix #511 issue
11+
- Fix sidebar background height for short docs pages
12+
13+
314
##### [v0.5.5](https://github.com/picturepan2/spectre/releases/tag/v0.5.5)
415

516
- IMPORTANT: New Docs

docs/dist/docs.css

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@
824824
}
825825

826826
.algolia-autocomplete .algolia-docsearch-suggestion--content:before {
827-
background: #ddd;
827+
background: #f7f8f9;
828828
content: "";
829829
display: block;
830830
height: 100%;
@@ -835,8 +835,8 @@
835835
}
836836

837837
.algolia-autocomplete .algolia-docsearch-suggestion--category-header {
838-
border-bottom: 1px solid #ddd;
839-
color: #33363d;
838+
border-bottom: 1px solid #f7f8f9;
839+
color: #303742;
840840
display: none;
841841
font-size: 1em;
842842
margin-top: 8px;
@@ -851,7 +851,7 @@
851851
}
852852

853853
.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column {
854-
color: #a4a7ae;
854+
color: #bcc3ce;
855855
float: left;
856856
font-size: .9em;
857857
padding: 5.33333px 10.66667px;
@@ -862,7 +862,7 @@
862862
}
863863

864864
.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column:before {
865-
background: #ddd;
865+
background: #f7f8f9;
866866
content: "";
867867
display: block;
868868
height: 100%;
@@ -877,13 +877,13 @@
877877
}
878878

879879
.algolia-autocomplete .algolia-docsearch-suggestion--title {
880-
color: #02060c;
880+
color: #303742;
881881
font-size: .9em;
882882
font-weight: 700;
883883
}
884884

885885
.algolia-autocomplete .algolia-docsearch-suggestion--text {
886-
color: #63676d;
886+
color: #66758c;
887887
display: block;
888888
font-size: .85em;
889889
line-height: 1.2em;

docs/dist/docs.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.

docs/getting-started/whatsnew.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,16 @@ <h3 class="s-title">What's new<a class="anchor" href="#whatsnew" aria-hidden="tr
203203
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
204204
</div>
205205
</div><h4>Spectre.css Changelog</h4>
206+
<h5><a href="https://github.com/picturepan2/spectre/releases/tag/v0.5.6">v0.5.6</a></h5>
207+
<ul>
208+
<li>Add Docs Search #509 #291</li>
209+
<li>Add Copy icon</li>
210+
<li>Add Hero layout #380</li>
211+
<li>Add multiline Tooltips #500</li>
212+
<li>Replace transition: all; #526</li>
213+
<li>Fix #511 issue</li>
214+
<li>Fix sidebar background height for short docs pages</li>
215+
</ul>
206216
<h5><a href="https://github.com/picturepan2/spectre/releases/tag/v0.5.5">v0.5.5</a></h5>
207217
<ul>
208218
<li>IMPORTANT: New Docs</li>

docs/src/scss/docs.scss

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -848,19 +848,19 @@
848848
top: 0;
849849
height: 100%;
850850
width: 1px;
851-
background: #ddd;
851+
background: $gray-color-light;
852852
left: -1px;
853853
}
854854
}
855855

856856
.algolia-docsearch-suggestion--category-header {
857857
position: relative;
858-
border-bottom: 1px solid #ddd;
858+
border-bottom: 1px solid $gray-color-light;
859859
display: none;
860860
margin-top: 8px;
861861
padding: 4px 0;
862862
font-size: 1em;
863-
color: #33363d;
863+
color: $dark-color;
864864
}
865865

866866
.algolia-docsearch-suggestion--wrapper {
@@ -875,7 +875,7 @@
875875
text-align: right;
876876
position: relative;
877877
padding: 5.33333px 10.66667px;
878-
color: #a4a7ae;
878+
color: $gray-color;
879879
font-size: .9em;
880880
word-wrap: break-word;
881881
&:before {
@@ -885,7 +885,7 @@
885885
top: 0;
886886
height: 100%;
887887
width: 1px;
888-
background: #ddd;
888+
background: $gray-color-light;
889889
right: 0;
890890
}
891891
}
@@ -895,7 +895,7 @@
895895
}
896896

897897
.algolia-docsearch-suggestion--title {
898-
color: #02060c;
898+
color: $dark-color;
899899
font-size: .9em;
900900
font-weight: 700;
901901
}
@@ -904,7 +904,7 @@
904904
display: block;
905905
line-height: 1.2em;
906906
font-size: .85em;
907-
color: #63676d;
907+
color: $gray-color-dark;
908908
}
909909

910910
.algolia-docsearch-suggestion--no-results {

0 commit comments

Comments
 (0)