Skip to content

Commit

Permalink
Merge pull request #104 from GSA/filter-styles
Browse files Browse the repository at this point in the history
Filter styles
  • Loading branch information
carlosvalle committed Oct 11, 2018
2 parents e30ea16 + 123935b commit 17a5bf4
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@gsa-sam/sam-ui-elements",
"version": "0.3.2",
"version": "0.3.3",
"description": "SAM UI library",
"keywords": [
"angular2",
Expand Down
4 changes: 4 additions & 0 deletions sam-styles/core/typography/_theme.scss
Expand Up @@ -6,6 +6,10 @@
color: sam-color($foreground, text);
}

a{
color: #0071bc;
}

h1.sam.heading,
h2.sam.heading,
h3.sam.heading,
Expand Down
2 changes: 2 additions & 0 deletions sam-styles/core/typography/_typography.scss
Expand Up @@ -118,6 +118,8 @@

a{
font-weight: 400;
text-decoration: none;
cursor: pointer;
}

a:hover{
Expand Down
27 changes: 27 additions & 0 deletions sam-styles/filters/sam-filter-drawer.scss
@@ -0,0 +1,27 @@
sam-filter-drawer {
.sam {
display:inline-flex;

ul{
margin:0px 10px 20px 0;
padding:0px;

li{
display:inline-block;
width: auto;
padding: 3px 10px 5px;
margin-right:5px;
border-radius:3px;
font-size:1.4rem;
}
li i{
margin-left:5px;
cursor: pointer;
}
}

.options{
margin-top: 15px;
}
}
}
1 change: 1 addition & 0 deletions sam-styles/themes/sam-gov.scss
Expand Up @@ -9,6 +9,7 @@
@import '../expansion/expansion-panel';
@import '../expansion/expansion-panel-header';
@import '../grid/grid';
@import '../filters/sam-filter-drawer';

// Include theme
@import '../core/theming/all-theme';
Expand Down

0 comments on commit 17a5bf4

Please sign in to comment.