diff options
author | Daniel Napora <napcok@gmail.com> | 2015-05-17 19:01:05 +0200 |
---|---|---|
committer | Daniel Napora <napcok@gmail.com> | 2015-05-17 19:01:05 +0200 |
commit | 56c7a03e1b5a1fedeab6773c8526d29ac59920a1 (patch) | |
tree | 1a40ecacdbe4c2f862ab4c77eec3bcce544eeadb /usr | |
parent | c90dbbe7b67b024adf605b6592b950c3cf54f4bb (diff) | |
download | mageiawelcome-56c7a03e1b5a1fedeab6773c8526d29ac59920a1.tar mageiawelcome-56c7a03e1b5a1fedeab6773c8526d29ac59920a1.tar.gz mageiawelcome-56c7a03e1b5a1fedeab6773c8526d29ac59920a1.tar.bz2 mageiawelcome-56c7a03e1b5a1fedeab6773c8526d29ac59920a1.tar.xz mageiawelcome-56c7a03e1b5a1fedeab6773c8526d29ac59920a1.zip |
fix mga #13647, checkboxes in applist, small css fixes
Diffstat (limited to 'usr')
-rw-r--r-- | usr/share/mageiawelcome/css/style.css | 4 | ||||
-rw-r--r-- | usr/share/mageiawelcome/index.html | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/usr/share/mageiawelcome/css/style.css b/usr/share/mageiawelcome/css/style.css index 8dc0ba4..bfadabf 100644 --- a/usr/share/mageiawelcome/css/style.css +++ b/usr/share/mageiawelcome/css/style.css @@ -85,7 +85,7 @@ ul.list li:hover {background:rgba(0, 0, 0, 0.2); } ul.list li h6 {margin:0;margin-top:6px;} ul.list li p.description {margin-top:0;} -ul.list li button {position:absolute; left:500px; top:28px;float:right;}*/ +ul.list li button {position:absolute; left:480px; top:28px;float:right;}*/ ul.list li.urpme {background:rgba(0, 0, 0, 0.4); background-image:url('../img/ok.png'); @@ -93,7 +93,7 @@ ul.list li.urpme {background:rgba(0, 0, 0, 0.4); background-position:48px 14px; } ul.list li.urpme:hover {background-color:rgba(0, 0, 0, 0.3);} -ul.list li span.label{position:absolute; top:2px; right:56px;} +ul.list li span.label{position:absolute; top:2px; right:36px;} .chkbox {float:left;width:30px;height:54px;} .chkbox input[type='checkbox']{margin-top: 14px;} #selectedRPMS{position:absolute;bottom:25px;left:0;background:rgba(0, 0, 0, 0.6); padding:2px;border-radius:0 2px 0 0;font-size:10px; z-index:200;width:217px;} diff --git a/usr/share/mageiawelcome/index.html b/usr/share/mageiawelcome/index.html index c7629f9..8a00efd 100644 --- a/usr/share/mageiawelcome/index.html +++ b/usr/share/mageiawelcome/index.html @@ -123,6 +123,7 @@ PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" var rpms = selected.join(' '); send('"install_selected ' + cat +' '+ rpms + '"'); selected = []; + $('#lista_applikacji').find('input[type=checkbox]:checked').removeAttr('checked'); $('span#count_rpms').text(selected.length); $('div#selectedPKGS').html(' '); }); |