]> source.dussan.org Git - nextcloud-server.git/commitdiff
remove superfluous enabled-app class again
authorJan-Christoph Borchardt <hey@jancborchardt.net>
Tue, 5 Feb 2013 10:30:18 +0000 (11:30 +0100)
committerJan-Christoph Borchardt <hey@jancborchardt.net>
Tue, 5 Feb 2013 10:30:18 +0000 (11:30 +0100)
core/css/styles.css
settings/js/apps.js

index 19cfad762686df6b771abbe1fc2a0a3f6068ffa9..a467857a21a2cb7dd4f4c55078dd6e6e3894ff21 100644 (file)
@@ -228,11 +228,6 @@ fieldset.warning legend { color:#b94a48 !important; }
        #navigation a:hover, #navigation a:focus { opacity:.8; }
        #navigation a.active { opacity:1; }
        #navigation .icon { display:block; width:32px; height:32px; margin:0 16px 0; }
-       #navigation .enabled-app:hover, #navigation .enabled-app:focus { opacity:1; }
-       #navigation .enabled-app img { opacity:0.3; cursor:pointer;}
-       #navigation .enabled-app a {padding:4px 0 4px; }
-       #navigation .enabled-app:hover a, #navigation .enabled-app:focus a {opacity:0.8; }
-       #navigation .enabled-app:hover img, #navigation .enabled-app:focus img {opacity:0.8; }
        #navigation li:first-child a { padding-top:16px; }
 #settings { float:right; margin-top:7px; color:#bbb; text-shadow:0 -1px 0 #000; }
 #expand { padding:15px; cursor:pointer; font-weight:bold; }
index 912ae99016d3d0d6a220be04cfaaf7efa3dc8feb..467d5312696ed02de9ca6633f8cfb0bdbe7080ca 100644 (file)
@@ -132,7 +132,7 @@ OC.Settings.Apps = OC.Settings.Apps || {
                                        var container = $('#apps');
 
                                        if(container.children('li[data-id="'+entry.id+'"]').length === 0){
-                                               var li=$('<li></li>').attr({class: 'enabled-app'});
+                                               var li=$('<li></li>');
                                                li.attr('data-id', entry.id);
                                                var img= $('<img></img>').attr({ src: entry.icon, class:'icon'});
                                                li.append(img);