Skip to content
This repository has been archived by the owner on Feb 24, 2021. It is now read-only.

Commit

Permalink
Added pap3rw8's image bundle for icons.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Perrett committed Apr 2, 2008
1 parent 966abe6 commit f983c51
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 53 deletions.
Binary file added web/images/buttons/icons.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 1 addition & 29 deletions web/javascript/transmission.js
Expand Up @@ -1347,34 +1347,7 @@ Transmission.prototype = {
*/
preloadImages: function() {
$.preloadImages(
'images/buttons/filter.png',
'images/buttons/filter_on.png',
'images/buttons/footer_action_button.png',
'images/buttons/info.png',
'images/buttons/info_off.png',
'images/buttons/info_on.png',
'images/buttons/info_toolbar_on.png',
'images/buttons/open.png',
'images/buttons/open_on.png',
'images/buttons/pause_all.png',
'images/buttons/pause_all_disabled.png',
'images/buttons/pause_all_on.png',
'images/buttons/pause_selected.png',
'images/buttons/pause_selected_disabled.png',
'images/buttons/pause_selected_on.png',
'images/buttons/pause_resume_buttons.png',
'images/buttons/remove.png',
'images/buttons/remove_disabled.png',
'images/buttons/remove_on.png',
'images/buttons/resume_all.png',
'images/buttons/resume_all_disabled.png',
'images/buttons/resume_all_on.png',
'images/buttons/resume_selected.png',
'images/buttons/resume_selected_disabled.png',
'images/buttons/resume_selected_on.png',
'images/graphics/browser_firefox.gif',
'images/graphics/browser_opera.gif',
'images/graphics/browser_safari.gif',
'images/buttons/icons.png',
'images/graphics/dialog_top.png',
'images/graphics/filter_bar_bg.png',
'images/graphics/filter_hover_left.png',
Expand All @@ -1385,7 +1358,6 @@ Transmission.prototype = {
'images/graphics/logo.png',
'images/graphics/menu_bg.gif',
'images/graphics/menu_divider.png',
'images/graphics/pause_all_disabled.png',
'images/graphics/status_bar_background.png',
'images/graphics/status_bar_divider.png',
'images/progress/complete.png',
Expand Down
49 changes: 25 additions & 24 deletions web/stylesheets/common.css
Expand Up @@ -94,92 +94,93 @@ div.torrent_global_menu ul li a.disabled {
}

div.torrent_global_menu ul li#open a {
background: transparent url('../images/buttons/open.png') no-repeat 10px 0px ;
background: transparent url('../images/buttons/icons.png') no-repeat 10px 0px;
}

div.torrent_global_menu ul li#open a:active {
background: transparent url('../images/buttons/open_on.png') no-repeat 10px 0px;
background: transparent url('../images/buttons/icons.png') no-repeat -50px 0px;
}

div.torrent_global_menu ul li#remove a {
background: transparent url('../images/buttons/remove.png') no-repeat 16px 0px ;
background: transparent url('../images/buttons/icons.png') no-repeat -102px 2px;
}


div.torrent_global_menu ul li#remove a:active {
background: transparent url('../images/buttons/remove_on.png') no-repeat 16px 0px;
background: transparent url('../images/buttons/icons.png') no-repeat -222px 2px;
}

div.torrent_global_menu ul li#remove a.disabled,
div.torrent_global_menu ul li#remove a.disabled:active {
background: transparent url('../images/buttons/remove_disabled.png') no-repeat 16px 0px ;
background: transparent url('../images/buttons/icons.png') no-repeat -162px 2px;
}

div.torrent_global_menu ul li#resume_selected a{
background: transparent url('../images/buttons/resume_selected.png') no-repeat 19px 0px ;
div.torrent_global_menu ul li#resume_selected a {
background: transparent url('../images/buttons/icons.png') no-repeat 19px -115px;
}

div.torrent_global_menu ul li#resume_selected a:active {
background: transparent url('../images/buttons/resume_selected_on.png') no-repeat 19px 0px;
background: transparent url('../images/buttons/icons.png') no-repeat -101px -115px;
}

div.torrent_global_menu ul li#resume_selected a.disabled,
div.torrent_global_menu ul li#resume_selected a.disabled:active {
background: transparent url('../images/buttons/resume_selected_disabled.png') no-repeat 19px 0px ;
background: transparent url('../images/buttons/icons.png') no-repeat -41px -115px;
}

div.torrent_global_menu ul li#pause_selected a {
background: transparent url('../images/buttons/pause_selected.png') no-repeat 10px 0px ;
background: transparent url('../images/buttons/icons.png') no-repeat 14px -55px;
}

div.torrent_global_menu ul li#pause_selected a:active {
background: transparent url('../images/buttons/pause_selected_on.png') no-repeat 10px 0px;
background: transparent url('../images/buttons/icons.png') no-repeat -108px -55px;
}

div.torrent_global_menu ul li#pause_selected a.disabled,
div.torrent_global_menu ul li#pause_selected a.disabled:active {
background: transparent url('../images/buttons/pause_selected_disabled.png') no-repeat 10px 0px ;
background: transparent url('../images/buttons/icons.png') no-repeat -48px -55px;
}

div.torrent_global_menu ul li#pause_all a {
background: transparent url('../images/buttons/pause_all.png') no-repeat 19px 0px ;
background: transparent url('../images/buttons/icons.png') no-repeat -160px -55px;
}

div.torrent_global_menu ul li#pause_all a:active {
background: transparent url('../images/buttons/pause_all_on.png') no-repeat 19px 0px;
background: transparent url('../images/buttons/icons.png') no-repeat -279px -55px;
}

div.torrent_global_menu ul li#pause_all a.disabled,
div.torrent_global_menu ul li#pause_all a.disabled:active {
background: transparent url('../images/buttons/pause_all_disabled.png') no-repeat 19px 0px ;
background: transparent url('../images/buttons/icons.png') no-repeat -220px -55px;
}

div.torrent_global_menu ul li#resume_all a {
background: transparent url('../images/buttons/resume_all.png') no-repeat 25px 0px ;
background: transparent url('../images/buttons/icons.png') no-repeat -155px -116px;
}

div.torrent_global_menu ul li#resume_all a:active {
background: transparent url('../images/buttons/resume_all_on.png') no-repeat 25px 0px;
background: transparent url('../images/buttons/icons.png') no-repeat -275px -116px;
}

div.torrent_global_menu ul li#resume_all a.disabled,
div.torrent_global_menu ul li#resume_all a.disabled:active {
background: transparent url('../images/buttons/resume_all_disabled.png') no-repeat 25px 0px ;
background: transparent url('../images/buttons/icons.png') no-repeat -215px -116px;
}

div.torrent_global_menu ul li#filter a {
background: transparent url('../images/buttons/filter.png') no-repeat 8px 0px ;
background: transparent url('../images/buttons/icons.png') no-repeat -351px -55px;
}

div.torrent_global_menu ul li#filter a:active {
background: transparent url('../images/buttons/filter_on.png') no-repeat 8px 0px;
background: transparent url('../images/buttons/icons.png') no-repeat -352px -116px;
}

div.torrent_global_menu ul li#inspector a {
background: transparent url('../images/buttons/info.png') no-repeat 18px 0px ;
background: transparent url('../images/buttons/icons.png') no-repeat -280px 2px;
}

div.torrent_global_menu ul li#inspector a:active {
background: transparent url('../images/buttons/info_toolbar_on.png') no-repeat 18px 0px;
background: transparent url('../images/buttons/icons.png') no-repeat -340px 2px;
}

div.torrent_global_menu ul li.divider {
Expand Down Expand Up @@ -324,14 +325,14 @@ div#torrent_container {
padding:0px;
margin: 0px;
overflow: auto;
}
}

ul.torrent_list {
width: 100%;
margin: 0;
padding: 0;
text-align: left;
}
}

ul.torrent_list li {
list-style-type: none;
Expand Down

0 comments on commit f983c51

Please sign in to comment.