diff options
author | lpsolit%gmail.com <> | 2008-09-11 02:07:01 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-09-11 02:07:01 +0200 |
commit | 4fdb67308b0e095aa76e36581cc4e94357d61f6a (patch) | |
tree | 929dd29f66aa2aac4d312c589771ee8c13699349 /skins | |
parent | 93e808dbc5e703df7318e18f048710f19fc8e92c (diff) | |
download | bugzilla-4fdb67308b0e095aa76e36581cc4e94357d61f6a.tar.gz bugzilla-4fdb67308b0e095aa76e36581cc4e94357d61f6a.tar.xz |
Bug 216557: Be able to specify the order of the columns in a bug list - Patch by Pascal Held <paheld+bugzilla@gmail.com> r=LpSolit r=pyrzak a=LpSolit
Diffstat (limited to 'skins')
-rw-r--r-- | skins/standard/global.css | 26 | ||||
-rw-r--r-- | skins/standard/global/down.png | bin | 0 -> 335 bytes | |||
-rw-r--r-- | skins/standard/global/left.png | bin | 0 -> 339 bytes | |||
-rw-r--r-- | skins/standard/global/right.png | bin | 0 -> 339 bytes | |||
-rw-r--r-- | skins/standard/global/up.png | bin | 0 -> 318 bytes | |||
-rw-r--r-- | skins/standard/show_bug.css | 4 |
6 files changed, 26 insertions, 4 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css index 938575eb5..f3dd2ffbe 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -20,6 +20,7 @@ * Vitaly Harisov <vitaly@rathedg.com> * Svetlana Harisova <light@rathedg.com> * Marc Schumann <wurblzap@gmail.com> + * Pascal Held <paheld@gmail.com> */ /* global (begin) */ @@ -271,6 +272,10 @@ div#docslinks { padding: 1em 0; } +.bz_default_hidden { + display: none; +} + span.quote { color: #65379c; /* Make quoted text not wrap. */ @@ -439,4 +444,25 @@ form#Create .comment { background: white; } +.image_button { + background-repeat: no-repeat; + background-position: center center; + width: 30px; + display: none; +} + +#select_button { + background-image: url(global/right.png); +} + +#deselect_button { + background-image: url(global/left.png); +} + +#up_button { + background-image: url(global/up.png); +} +#down_button { + background-image: url(global/down.png); +}
\ No newline at end of file diff --git a/skins/standard/global/down.png b/skins/standard/global/down.png Binary files differnew file mode 100644 index 000000000..78a9e631a --- /dev/null +++ b/skins/standard/global/down.png diff --git a/skins/standard/global/left.png b/skins/standard/global/left.png Binary files differnew file mode 100644 index 000000000..f8cb2b2dd --- /dev/null +++ b/skins/standard/global/left.png diff --git a/skins/standard/global/right.png b/skins/standard/global/right.png Binary files differnew file mode 100644 index 000000000..d02b707a6 --- /dev/null +++ b/skins/standard/global/right.png diff --git a/skins/standard/global/up.png b/skins/standard/global/up.png Binary files differnew file mode 100644 index 000000000..240d483df --- /dev/null +++ b/skins/standard/global/up.png diff --git a/skins/standard/show_bug.css b/skins/standard/show_bug.css index 3851315da..80c4513d6 100644 --- a/skins/standard/show_bug.css +++ b/skins/standard/show_bug.css @@ -11,10 +11,6 @@ width: 2em; } -.bz_default_hidden { - display: none; -} - .related_actions { font-size: 0.85em; float: right; |