Don't allow text selection in header or nav

This commit is contained in:
Vincent Fiduccia 2015-03-26 13:36:41 -07:00
parent 993cb36b87
commit dd757abf04
3 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,7 @@ export default Ember.Component.extend({
hasAside: null,
tagName: 'header',
classNames: ['clearfix'],
classNames: ['clearfix','no-select'],
classNameBindings: ['hasAside'],
defaultProject: null,

View File

@ -2,6 +2,7 @@ import Ember from "ember";
export default Ember.Component.extend({
activeTab: null,
classNames: ['no-select'],
tagName: 'nav',
hasRegistries: function() {

View File

@ -4,6 +4,7 @@ a:focus {
H1, H2, H3, H4, H5, H6 {
margin: 0;
cursor: normal;
}
.btn-disabled {