Page 11 of 13

Re: Theme: SabNZBd plush (concept!)

Posted: June 20th, 2008, 5:54 am
by rAf
Is this one better ?

Re: Theme: SabNZBd plush (concept!)

Posted: June 21st, 2008, 11:40 pm
by fusen
I moved the add box down so it's incorporated into the main design,

same click to expand and retract though

Re: Theme: SabNZBd plush (concept!)

Posted: June 22nd, 2008, 10:04 am
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

Re: Theme: SabNZBd plush (concept!)

Posted: June 22nd, 2008, 1:32 pm
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

Re: Theme: SabNZBd plush (concept!)

Posted: June 22nd, 2008, 1:54 pm
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.

Re: Theme: SabNZBd plush (concept!)

Posted: June 22nd, 2008, 5:32 pm
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!

Re: Theme: SabNZBd plush (concept!)

Posted: June 25th, 2008, 4:17 am
by rAf
Hi, are all changes on the trunk ?
I'll try to look...

Re: Theme: SabNZBd plush (concept!)

Posted: June 25th, 2008, 6:42 am
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

Re: Theme: SabNZBd plush (concept!)

Posted: June 25th, 2008, 7:28 pm
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...

Re: Theme: SabNZBd plush (concept!)

Posted: June 25th, 2008, 8:08 pm
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...

Re: Theme: SabNZBd plush (concept!)

Posted: June 26th, 2008, 6:34 pm
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.

Re: Theme: SabNZBd plush (concept!)

Posted: June 27th, 2008, 3:06 am
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 :)

Re: Theme: SabNZBd plush (concept!)

Posted: June 27th, 2008, 3:07 am
by sbultez
just download the latest beta release of sabnzbd and switch to template 'Plush'

Re: Theme: SabNZBd plush (concept!)

Posted: June 27th, 2008, 7:26 am
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...

Re: Theme: SabNZBd plush (concept!)

Posted: June 28th, 2008, 10:25 am
by sbultez
it looks really good, can you just change the colors to black fonts / grey background ?