diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-04-17 18:00:10 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-04-17 18:00:10 +0200 |
commit | 8dcfd0ee8abc72d5446fb9520c52328ba6cb663a (patch) | |
tree | 86266974cfff0983475fd4ff1f0d6836e4d17cd1 /js/js.js | |
parent | 023c1b2f19ecb3fe1f7ccbda57e73dd476c249e2 (diff) | |
download | nextcloud-server-8dcfd0ee8abc72d5446fb9520c52328ba6cb663a.tar.gz nextcloud-server-8dcfd0ee8abc72d5446fb9520c52328ba6cb663a.zip |
CSS width bugfix & beautiful radio buttons for installation
Diffstat (limited to 'js/js.js')
-rw-r--r-- | js/js.js | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -2,6 +2,8 @@ $(document).ready(function() { //hide the advanced config $('#advanced_options').hide(); $('#use_mysql').hide(); + $('label.sqlite').css('background-color', '#ddd'); + $('label.mysql').css('background-color', '#fff'); // Sets advanced_options link behaviour : $('#advanced_options_link').click(function() { @@ -12,8 +14,12 @@ $(document).ready(function() { $('#mysql').click(function() { $('#use_mysql').slideDown(250); + $('label.sqlite').css('background-color', '#fff'); + $('label.mysql').css('background-color', '#ddd'); }); $('#sqlite').click(function() { $('#use_mysql').slideUp(250); + $('label.sqlite').css('background-color', '#ddd'); + $('label.mysql').css('background-color', '#fff'); }); }); |