Skip to content
This repository was archived by the owner on May 30, 2023. It is now read-only.

Commit f277e09

Browse files
committed
v1.0.1
1 parent fefdb11 commit f277e09

8 files changed

Lines changed: 689 additions & 654 deletions

File tree

CHANGELOG.md

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

3+
## v1.0.1
4+
5+
### Improvements
6+
* Add <code>$input-background-color</code> variable. Use this to override the default **$white** background color on form elements.
7+
* Add <code>$input-color</code> variable. Use this to override the default **inherit** text color on form elements.
8+
9+
### Bug fixes
10+
* Corrected **.top__links** li element not applying by removing rogue comma.
11+
* The <code>$top-link-hover-decoration</code> variable now applies to any nested link elements.
12+
* <code>.top__burger</code> now sits in the top right corner when the **.is-mobile-responsive** modifier is being used.
13+
314
## v1.0.0
415

516
### Core changes

css/orbit.css

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Orbit CSS v1.0 | MIT license | https://orbitcss.com */
1+
/*! Orbit CSS v1.0.1 | MIT license | https://orbitcss.com */
22
@import url("https://fonts.googleapis.com/css?family=Lato|Roboto");
33
.has-text-primary {
44
color: #6e45e2 !important;
@@ -1602,6 +1602,10 @@ label:not(:last-child) {
16021602
text-decoration: none;
16031603
}
16041604

1605+
.top__links ul li:not(.dropdown__link):hover a {
1606+
text-decoration: inherit;
1607+
}
1608+
16051609
.top__social {
16061610
padding: 0 0.65rem;
16071611
}
@@ -1655,21 +1659,21 @@ label:not(:last-child) {
16551659
padding-top: 4px;
16561660
}
16571661

1658-
.top__burger.has-animate.is-active {
1662+
.top__burger.has-animate.is-active, .is-mobile-responsive.is-open > .top__burger {
16591663
justify-content: center;
16601664
}
16611665

1662-
.top__burger.has-animate.is-active span:before, .top__burger.has-animate.is-active span:after {
1666+
.top__burger.has-animate.is-active span:before, .top__burger.has-animate.is-active span:after, .is-mobile-responsive.is-open > .top__burger span:before, .is-mobile-responsive.is-open > .top__burger span:after {
16631667
padding: 0;
16641668
position: absolute;
16651669
}
16661670

1667-
.top__burger.has-animate.is-active span:before {
1671+
.top__burger.has-animate.is-active span:before, .is-mobile-responsive.is-open > .top__burger span:before {
16681672
border-width: 2px 0 0;
16691673
transform: rotate(405deg);
16701674
}
16711675

1672-
.top__burger.has-animate.is-active span:after {
1676+
.top__burger.has-animate.is-active span:after, .is-mobile-responsive.is-open > .top__burger span:after {
16731677
transform: rotate(-405deg);
16741678
}
16751679

@@ -1727,6 +1731,12 @@ label:not(:last-child) {
17271731
.top.is-mobile-responsive .top__buttons {
17281732
padding: 0.5rem 0.9375rem;
17291733
}
1734+
.top.is-mobile-responsive .top__burger {
1735+
padding: 1rem 0.75rem;
1736+
position: absolute;
1737+
right: 0;
1738+
top: 0;
1739+
}
17301740
}
17311741

17321742
@media (min-width: 768px) {

css/orbit.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.

0 commit comments

Comments
 (0)