Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolaswise committed Jul 27, 2016
1 parent ad4dff8 commit cceebad
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 15 deletions.
15 changes: 10 additions & 5 deletions dist/css/calcite-web-no-fonts.css
Original file line number Diff line number Diff line change
Expand Up @@ -2416,7 +2416,7 @@ img {
margin-right: 0.75rem;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
flex-grow: 0;
-ms-flex-negative: 1;
flex-shrink: 1; }

Expand Down Expand Up @@ -2824,8 +2824,11 @@ li {
list-style-position: outside;
margin: 0.3875rem 0 0.3875rem 1.5rem; }

ul li {
list-style-type: disc; }
ul ul,
ul ol,
ol ul,
ol ol {
margin-bottom: 0; }

li ul, li ol {
margin-bottom: 0; }
Expand Down Expand Up @@ -5287,7 +5290,7 @@ input.input-group-input,
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0.51667rem 1.55rem 0.51667rem 0.51667rem;
padding: 0.51667rem;
font-size: 0.875rem;
line-height: 1.55rem;
color: #595959;
Expand All @@ -5307,6 +5310,9 @@ input.input-group-input,
.side-nav-link.is-active {
text-indent: -3px;
border-left: 3px solid #0079c1; }
html[dir="rtl"] .side-nav-link.is-active {
border-left: none;
border-right: 3px solid #0079c1; }

body {
display: flex;
Expand Down Expand Up @@ -5876,7 +5882,6 @@ input.filter-dropdown-input {

.filter-dropdown-remove {
float: right;
position: absolute;
right: 0;
top: 1.3rem; }
html[dir="rtl"] .filter-dropdown-remove {
Expand Down
15 changes: 10 additions & 5 deletions dist/css/calcite-web.css
Original file line number Diff line number Diff line change
Expand Up @@ -2417,7 +2417,7 @@ img {
margin-right: 0.75rem;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
flex-grow: 0;
-ms-flex-negative: 1;
flex-shrink: 1; }

Expand Down Expand Up @@ -2946,8 +2946,11 @@ li {
list-style-position: outside;
margin: 0.3875rem 0 0.3875rem 1.5rem; }

ul li {
list-style-type: disc; }
ul ul,
ul ol,
ol ul,
ol ol {
margin-bottom: 0; }

li ul, li ol {
margin-bottom: 0; }
Expand Down Expand Up @@ -5409,7 +5412,7 @@ input.input-group-input,
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0.51667rem 1.55rem 0.51667rem 0.51667rem;
padding: 0.51667rem;
font-size: 0.875rem;
line-height: 1.55rem;
color: #595959;
Expand All @@ -5429,6 +5432,9 @@ input.input-group-input,
.side-nav-link.is-active {
text-indent: -3px;
border-left: 3px solid #0079c1; }
html[dir="rtl"] .side-nav-link.is-active {
border-left: none;
border-right: 3px solid #0079c1; }

body {
display: flex;
Expand Down Expand Up @@ -5998,7 +6004,6 @@ input.filter-dropdown-input {

.filter-dropdown-remove {
float: right;
position: absolute;
right: 0;
top: 1.3rem; }
html[dir="rtl"] .filter-dropdown-remove {
Expand Down
2 changes: 1 addition & 1 deletion dist/sass/calcite-web/grid/_block-groups.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $full-gutter: $half-gutter * 2;
margin-right: $half-gutter;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
flex-grow: 0;
-ms-flex-negative: 1;
flex-shrink: 1;
}
Expand Down
1 change: 0 additions & 1 deletion dist/sass/calcite-web/patterns/_filter-dropdown.scss
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@
@mixin filter-dropdown-remove() {
@include right();
// ie 11 fix;
position: absolute;
right: 0;
top: 1.3rem;
&:after {
Expand Down
8 changes: 7 additions & 1 deletion dist/sass/calcite-web/patterns/_side-nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
position: relative;
display: block;
@include box-sizing(border-box);
padding: $baseline/3 $baseline $baseline/3 $baseline/3;
padding: $baseline/3;
@include font-size(-2);
color: $darkest-gray;
background-color: $white;
Expand All @@ -40,6 +40,12 @@
&.is-active {
text-indent: -3px;
border-left: 3px solid $blue;
@if ($include-right-to-left) {
html[dir="rtl"] & {
border-left: none;
border-right: 3px solid $blue;
}
}
}
}

Expand Down
7 changes: 5 additions & 2 deletions dist/sass/calcite-web/type/_styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,11 @@
margin: $baseline/4 0 $baseline/4 1.5rem;
}

ul li {
list-style-type: disc;
ul ul,
ul ol,
ol ul,
ol ol {
margin-bottom: 0;
}

li ul, li ol {
Expand Down

0 comments on commit cceebad

Please sign in to comment.