Skip to content

Commit

Permalink
[FEATURE] updated dropdown menu color (#92)
Browse files Browse the repository at this point in the history
OVERVIEW

This PR changes the border color of the dropdown menu to match Vimeo colors.

SOLUTION

change $gray-3 to $porcelain in dropdowns.scss
ran build.
  • Loading branch information
ninjaofawesome authored Oct 12, 2017
1 parent 93406ff commit 01078b8
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.6.2
**2017-10-12**
* Updated dropdown border color.

### 1.6.1
**2017-10-11**
* Updated tooltip color.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.1
1.6.2
4 changes: 2 additions & 2 deletions app/public/quartz.css
Original file line number Diff line number Diff line change
Expand Up @@ -3179,7 +3179,7 @@ hr.column {
display: none;
background: #fff;
z-index: 2147483600;
border: 1px solid #D7DDE1;
border: 1px solid #e3e8e9;
border-radius: 5px;
position: absolute;
top: 50px;
Expand Down Expand Up @@ -3215,7 +3215,7 @@ hr.column {
margin-right: -7px; }
.dropdown .dropdown-list:before {
border-color: rgba(255, 255, 255, 0);
border-bottom-color: #D7DDE1;
border-bottom-color: #e3e8e9;
border-width: 6px;
margin-right: -8px; }
.dropdown.dropdown--xsmall .dropdown-list {
Expand Down
4 changes: 2 additions & 2 deletions dist/dropdowns.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
display: none;
background: #fff;
z-index: 2147483600;
border: 1px solid #D7DDE1;
border: 1px solid #e3e8e9;
border-radius: 5px;
position: absolute;
top: 50px;
Expand Down Expand Up @@ -88,7 +88,7 @@
margin-right: -7px; }
.dropdown .dropdown-list:before {
border-color: rgba(255, 255, 255, 0);
border-bottom-color: #D7DDE1;
border-bottom-color: #e3e8e9;
border-width: 6px;
margin-right: -8px; }
.dropdown.dropdown--xsmall .dropdown-list {
Expand Down
4 changes: 2 additions & 2 deletions dist/quartz.css
Original file line number Diff line number Diff line change
Expand Up @@ -3231,7 +3231,7 @@ hr.column {
display: none;
background: #fff;
z-index: 2147483600;
border: 1px solid #D7DDE1;
border: 1px solid #e3e8e9;
border-radius: 5px;
position: absolute;
top: 50px;
Expand Down Expand Up @@ -3267,7 +3267,7 @@ hr.column {
margin-right: -7px; }
.dropdown .dropdown-list:before {
border-color: rgba(255, 255, 255, 0);
border-bottom-color: #D7DDE1;
border-bottom-color: #e3e8e9;
border-width: 6px;
margin-right: -8px; }
.dropdown.dropdown--xsmall .dropdown-list {
Expand Down
2 changes: 1 addition & 1 deletion dist/quartz.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vhx/quartz",
"version": "1.6.1",
"version": "1.6.2",
"description": "VHX Style Guide and JS Components.",
"homepage": "https://github.com/vhx/quartz",
"author": "VHX",
Expand Down
4 changes: 2 additions & 2 deletions quartz-css/dropdowns/styles/dropdowns.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
display: none;
background: $white;
z-index: 2147483600;
border: 1px solid $gray-3;
border: 1px solid $porcelain;
border-radius: 5px;
position: absolute;
top: 50px;
Expand Down Expand Up @@ -73,7 +73,7 @@
}
&:before {
border-color: rgba(255, 255, 255, 0);
border-bottom-color: $gray-3;
border-bottom-color: $porcelain;
border-width: 6px;
margin-right: -8px;
}
Expand Down

0 comments on commit 01078b8

Please sign in to comment.