Theme: SabNZBd plush (concept!)

Got a neat new template? Share it here!
rAf
Moderator
Moderator
Posts: 546
Joined: April 28th, 2008, 2:35 pm
Location: France
Contact:

Re: Theme: SabNZBd plush (concept!)

Post by rAf »

Is this one better ?
fusen
Newbie
Newbie
Posts: 41
Joined: February 11th, 2008, 12:14 am

Re: Theme: SabNZBd plush (concept!)

Post by fusen »

I moved the add box down so it's incorporated into the main design,

same click to expand and retract though
Last edited by fusen on June 22nd, 2008, 1:58 pm, edited 1 time in total.
fusen
Newbie
Newbie
Posts: 41
Joined: February 11th, 2008, 12:14 am

Re: Theme: SabNZBd plush (concept!)

Post by fusen »

I'm trying to get the final two category and options drop down boxes on the same line as the input fields, the problem is everytime I do this by setting the width of the div to 90%, the javascript toggle expands to 2 lines deep then moves back to 1 line and looks quite odd/ugly :/

can't figure out why it is doing it
fusen
Newbie
Newbie
Posts: 41
Joined: February 11th, 2008, 12:14 am

Re: Theme: SabNZBd plush (concept!)

Post by fusen »

well I redid bits of main obviously and currently have;

Code: Select all

	<div id="queue-wrap">
			

			<div id="add_nzb_menu" style="display:hidden">
					<form action="api" id="uploadNZBForm" method="post" enctype="multipart/form-data">
          <input type="hidden" name="mode" value="addfile" />
		
	
		<div id="add_nzb_box">
		
    <span class="add_nzb_item">
			<span class="add_nzb_item">
				<small>URL<!--#if $varExists('newzbinDetails') then "/Newzbin" else ""#--></small>
				<input type="text" id="addID_input" size="24" />
				<input type="submit" id="addID" value="Add NZB" />
			</span>
			
			  

			<span class="add_nzb_item">
				<small>File Upload</small>
				<input type="file" name="name" size="24" />
				<input type="submit" id="addNZBbyFile" value="Upload NZB" />
			</span>
				
		  
		
				<span class="add_nzb_item">
			<!--#if $cat_list#-->
			<select id="addID_cat" name="cat" title="Category" class="tip">
			<!--#for $ct in $cat_list#-->
				<option value="$ct">$ct</option>
			<!--#end for#-->
			</select>
			<!--#end if#-->
			<select id="addID_pp" name="pp" title="Post-Processing Option" class="tip">
				<option value="-1" <!--#if $cat_list then "selected" else ""#-->>(Default)</option>
				<option value="0">(Skip)</option>
				<option value="1">+Repair</option>
				<option value="2">+R+Unpack</option>
				<option value="3" <!--#if $cat_list then "" else "selected"#-->>+R+U+Delete</option>
			</select>
			<!--#if $script_list#-->
			<select id="addID_script" name="script" title="Script" class="tip">
			<!--#for $sc in $script_list#-->
				<option value="$sc">$sc</option>
			<!--#end for#-->
			</select>
			<!--#end if#-->
		</span>
		</span>
		
		</form>
		</div>
	</div>
			
		
			<!-- Queue ( queue.tmpl )-->
there isn't anything I can see that should make jquery do a two line jump and then back to just 1 line

#edit#

just tested and I don't get the same issue in IE7, seems to be a firefox3 issue
Last edited by fusen on June 22nd, 2008, 1:35 pm, edited 1 time in total.
fusen
Newbie
Newbie
Posts: 41
Joined: February 11th, 2008, 12:14 am

Re: Theme: SabNZBd plush (concept!)

Post by fusen »

aha, I fixed it after reading through some of the jquery mailing list and seems someone else had the same problem.

bit of an ugly solution but I had to add;

Code: Select all

#add_nzb_menu {
	text-align: center;
	height: 32px
}
so that the toggle new exactly the height to extend to instead of going to far then jumping back.
Last edited by fusen on June 22nd, 2008, 1:58 pm, edited 1 time in total.
naneil
Newbie
Newbie
Posts: 13
Joined: May 15th, 2008, 12:40 pm

Re: Theme: SabNZBd plush (concept!)

Post by naneil »

pair of dimes wrote:
naneil wrote: I liked the way the bar didn't just 'appear' in NOVA, but the content slid down to make space, was very sleek... Any plans to add something like that o plush, even if only as an option?
It slides now.
naneil wrote: Edit: Also, how about an 'are you sure?' dialog box if you press the remove nzb button.. I just clicked it by mistake and lost a custom nzb I'd deleted... my own fault I know!
Okay it confirms now, good thinking since many methods of adding to sabnzbd are one-way.
Nice one!

Is anyone else noticing extremely slow rendering on the sliding of the add/download bar in firefox 3? It's perfect in konqueror, so I'm wondering if its an issue with my system :) A point to note is that on the NOVA theme on the old sabnzbd the sliding is fine in FF3...

Keep up the good work guys!
rAf
Moderator
Moderator
Posts: 546
Joined: April 28th, 2008, 2:35 pm
Location: France
Contact:

Re: Theme: SabNZBd plush (concept!)

Post by rAf »

Hi, are all changes on the trunk ?
I'll try to look...
fusen
Newbie
Newbie
Posts: 41
Joined: February 11th, 2008, 12:14 am

Re: Theme: SabNZBd plush (concept!)

Post by fusen »

pair of dimes wrote: rAf I noticed that if I toggle the "add nzb" menu when it is stretched out all on one line/row it will snap open oddly.
check my posts above on this thread's page
rAf
Moderator
Moderator
Posts: 546
Joined: April 28th, 2008, 2:35 pm
Location: France
Contact:

Re: Theme: SabNZBd plush (concept!)

Post by rAf »

I've found a fix... here the new files (tested in safari and firefox on mac and in ie7 on win)
Hope it's ok...
rAf
Moderator
Moderator
Posts: 546
Joined: April 28th, 2008, 2:35 pm
Location: France
Contact:

Re: Theme: SabNZBd plush (concept!)

Post by rAf »

Yes i update from the trunk first.Ii've made too many tries... made some cleanup on template and css. Re-download the file, i've just updated my zip...
rAf
Moderator
Moderator
Posts: 546
Joined: April 28th, 2008, 2:35 pm
Location: France
Contact:

Re: Theme: SabNZBd plush (concept!)

Post by rAf »

i've check and i've made some little changes, what do you think of that :

Image

the warning message is blinking...

here the file if you want.
KillerSneak
Newbie
Newbie
Posts: 6
Joined: May 29th, 2008, 3:43 pm

Re: Theme: SabNZBd plush (concept!)

Post by KillerSneak »

Sorry I'm at work and can't read all 19 pages, but where can i get this skin as it looks awsome :)
sbultez

Re: Theme: SabNZBd plush (concept!)

Post by sbultez »

just download the latest beta release of sabnzbd and switch to template 'Plush'
rAf
Moderator
Moderator
Posts: 546
Joined: April 28th, 2008, 2:35 pm
Location: France
Contact:

Re: Theme: SabNZBd plush (concept!)

Post by rAf »

pair of dimes wrote: you shouldn't have commented out the 2nd warning line, that is used for critical warnings (this is a separate notification)

also i want to make that warning notification use ajax (right now it only shows up if you reload the page)
Ok i hadn't noticed the differents variables, sorry.
If you want some help for ajax, tell me...
sbultez

Re: Theme: SabNZBd plush (concept!)

Post by sbultez »

it looks really good, can you just change the colors to black fonts / grey background ?
Post Reply