Skip to content

Commit

Permalink
docs(tabs): more contrasted active style on tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Shipow committed May 16, 2016
1 parent 4759a0e commit 6b8e34e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions docs/_assets/stylesheets/_documentation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -292,13 +292,14 @@ code {
background-color: #0A1724;
border: 0;
transition: color .2s, background-color .2s;
&:hover {
&:hover,
&:active,
&:focus {
color: #FFFFFF;
}
&:active, &:focus {
outline: 0;
}
&.active {
color: #FFFFFF;
background: #163350;
}
}
Expand Down
6 changes: 3 additions & 3 deletions docs/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -1159,17 +1159,17 @@ Theses options will be passed to the `Hogan.compile` calls when you pass a custo
var customWidget = {
getConfiguration: function(searchParams) {
return {
// see "All options" for more details on the API
// see "Usage" tab for more details on the API
};
},

init: function(options) {
// see "All options" for more details on the API
// see "Usage" tab for more details on the API
},

// Called every time there is new data
render: function(options) {
// see "All options" for more details on the API
// see "Usage" tab for more details on the API
}
};

Expand Down

0 comments on commit 6b8e34e

Please sign in to comment.