Remove superfluous element names where ID is specified

This commit is contained in:
Amir E. Aharoni
2012-11-16 19:10:42 +02:00
parent e9081f014b
commit 025e452560
2 changed files with 3 additions and 2 deletions

View File

@@ -138,7 +138,8 @@ div.uls-region {
transition: opacity 0.15s linear; transition: opacity 0.15s linear;
} }
.map-block:hover, .map-block:hover a { .map-block:hover,
.map-block:hover a {
opacity: 1; opacity: 1;
color: #333; color: #333;
} }

View File

@@ -95,7 +95,7 @@
this.top = this.options.top; this.top = this.options.top;
this.shown = false; this.shown = false;
this.initialized = false; this.initialized = false;
this.$languageFilter = this.$menu.find( 'input#languagefilter' ); this.$languageFilter = this.$menu.find( '#languagefilter' );
this.$regionFilters = this.$menu.find( '.uls-region' ); this.$regionFilters = this.$menu.find( '.uls-region' );
this.$resultsView = this.$menu.find( 'div.uls-language-list' ); this.$resultsView = this.$menu.find( 'div.uls-language-list' );
this.render(); this.render();