fix(aio): api search input fix and style

This commit is contained in:
Stefanie Fluin 2017-04-01 00:22:02 -07:00 committed by Pete Bacon Darwin
parent bde9771991
commit 4c566dbfbb
6 changed files with 63 additions and 38 deletions

View File

@ -23,8 +23,8 @@
</div>
<div class="form-search">
<i class="material-icons">search</i>
<input #filter placeholder="Filter" (input)="setQuery($event.target.value)">
<i class="material-icons">search</i>
</div>
</div>

View File

@ -57,7 +57,7 @@ $lightgrey: #F5F6F7;
}
.l-content-small {
padding: $unit * 6;
padding: 16px;
max-width: 1100px;
margin: 0;
@ -69,40 +69,6 @@ $lightgrey: #F5F6F7;
}
}
.l-flex-wrap {
display: flex;
flex-wrap: wrap;
}
/*
* Banner
*/
.banner {
background: rgba($blue-grey-50, .24);
border-bottom: 1px solid $blue-grey-50;
box-sizing: border-box;
font-size: 18px;
font-weight: 200;
padding: ($unit * 4) ($unit * 6);
min-height: 97px;
include respond-to('mobile') {
padding: ($unit * 2);
}
&.is-plain {
background: $white;
height: auto;
overflow: visible;
}
p, .text-body {
color: $blue-grey-500;
font-size: 18px;
line-height: 32px;
margin: 0;
}
}
/*
* SEARCH BAR
*/
@ -164,7 +130,6 @@ $form-select-width: 200px;
.form-select-menu {
position: relative;
width: $form-select-width;
}
.form-select-button {

View File

@ -16,4 +16,9 @@ l-relative {
.is-visible {
display: block!important;
}
.l-flex-wrap {
display: flex;
flex-wrap: wrap;
}

View File

@ -0,0 +1,23 @@
aio-api-list {
div.form-search i.material-icons {
width: 20px;
pointer-events: none;
}
.form-search input {
width: 182px;
}
}
aio-api-list > div {
display: flex;
margin: 32px auto;
@media (max-width: 600px) {
flex-direction: column;
}
> div {
margin: 8px;
}
}

View File

@ -0,0 +1,30 @@
/* Banner */
.banner {
justify-content: center;
background: $white;
box-sizing: border-box;
font-size: 18px;
font-weight: 200;
padding: 16px;
min-height: 97px;
@media (max-width: 480px) {
padding: 16px;
}
&.is-plain {
background: $white;
height: auto;
overflow: visible;
}
p, .text-body {
color: $darkgray;
font-size: 18px;
line-height: 32px;
margin: 0;
}
}

View File

@ -15,4 +15,6 @@
@import 'subsection';
@import 'buttons';
@import 'hero';
@import 'announcement-bar';
@import 'announcement-bar';
@import 'banner';
@import 'api-list';