aboutsummaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorAlex Legler <alex@a3li.li>2010-10-01 22:04:04 +0200
committerAlex Legler <alex@a3li.li>2010-10-01 22:04:04 +0200
commit1e4919d15f3869d9cf793c1db4f666d2c08d0e53 (patch)
treeac14258f91fb00a3b1f656c9d4a87c9b1103aef8 /public
parentComment out the bug numbers in the list view for now (diff)
downloadglsamaker-1e4919d15f3869d9cf793c1db4f666d2c08d0e53.tar.gz
glsamaker-1e4919d15f3869d9cf793c1db4f666d2c08d0e53.tar.bz2
glsamaker-1e4919d15f3869d9cf793c1db4f666d2c08d0e53.zip
Implement get-bugready-state-from-bugzilla
* Move status to secbug_status to avoid overriding the status property of the bug
Diffstat (limited to 'public')
-rw-r--r--public/images/icons/minus-small.pngbin176 -> 908 bytes
-rw-r--r--public/images/icons/plus-small.pngbin296 -> 992 bytes
-rwxr-xr-xpublic/images/icons/refresh.pngbin0 -> 835 bytes
-rw-r--r--public/javascripts/glsamaker.js3
-rw-r--r--public/stylesheets/screen.css14
5 files changed, 16 insertions, 1 deletions
diff --git a/public/images/icons/minus-small.png b/public/images/icons/minus-small.png
index d1430d5..46c4c0d 100644
--- a/public/images/icons/minus-small.png
+++ b/public/images/icons/minus-small.png
Binary files differ
diff --git a/public/images/icons/plus-small.png b/public/images/icons/plus-small.png
index 58219c3..33cf9af 100644
--- a/public/images/icons/plus-small.png
+++ b/public/images/icons/plus-small.png
Binary files differ
diff --git a/public/images/icons/refresh.png b/public/images/icons/refresh.png
new file mode 100755
index 0000000..6d68b75
--- /dev/null
+++ b/public/images/icons/refresh.png
Binary files differ
diff --git a/public/javascripts/glsamaker.js b/public/javascripts/glsamaker.js
index a183dd5..b315e1d 100644
--- a/public/javascripts/glsamaker.js
+++ b/public/javascripts/glsamaker.js
@@ -52,7 +52,8 @@ function markBugAsDeleted(bug) {
minus.src = '/images/icons/minus-small.png';
minus.alt = 'This bug will be removed when saving';
- $('bug-' + bug).getElementsByTagName('td')[0].appendChild(minus);
+ $('bug-' + bug).getElementsByTagName('td')[1].appendChild(document.createTextNode(" "));
+ $('bug-' + bug).getElementsByTagName('td')[1].appendChild(minus);
}
function markEntryAsDeleted(elem, type) {
diff --git a/public/stylesheets/screen.css b/public/stylesheets/screen.css
index 4316ac9..54aeda8 100644
--- a/public/stylesheets/screen.css
+++ b/public/stylesheets/screen.css
@@ -291,6 +291,15 @@ td {
padding: .2em;
}
+table#bugtable {
+ font-size: 80%;
+}
+
+table#bugtable td{
+ border-bottom: 1px solid #8875B0;
+ background-color: #DEDBEF;
+}
+
/** boxes **/
div.box, div.legend {
padding: .4em;
@@ -326,6 +335,11 @@ div.box span.toolbar {
div.box p {
margin: 0;
}
+
+.pmargin p {
+ margin-bottom: .5em !important;
+}
+
.w40em {
width: 40em;
}