Soma Posted March 16, 2013 Author Share Posted March 16, 2013 It's not really tested in IE's but it looks pretty solid so far. Link to comment Share on other sites More sharing options...
maba Posted March 18, 2013 Share Posted March 18, 2013 Hi All, some little problem on OSX (Safari, Chrome and Firefox) with dev version: - top "action" button is out of container - top "action" button does not scroll with page - box-shadow in widget-header only (I saw this in your screenshot also, is this wanted?) Link to comment Share on other sites More sharing options...
Soma Posted March 18, 2013 Author Share Posted March 18, 2013 Hi All, some little problem on OSX (Safari, Chrome and Firefox) with dev version: - top "action" button is out of container 1.png That's correct. It's not inside container but outside. Was always like this and should be. - top "action" button does not scroll with page 2.png Yes, it's fixed and should stay and not scroll with page. - box-shadow in widget-header only (I saw this in your screenshot also, is this wanted?) 3.png Yes that's intentional. Link to comment Share on other sites More sharing options...
maba Posted March 18, 2013 Share Posted March 18, 2013 Ok, thanks Soma. Link to comment Share on other sites More sharing options...
maba Posted March 18, 2013 Share Posted March 18, 2013 Soma, in your TemplateDecorator version, have you fixed the problem with Admin, 404 and Trash pages? With PW2.3, TemplateDecorator 1.0.3 and 1.0.4 I cannot see icons for these pages. But.. with standard admin theme also. Thanks Link to comment Share on other sites More sharing options...
Soma Posted March 18, 2013 Author Share Posted March 18, 2013 Nope I haven't anything, since those pages are anyway only for admin, I didn't take care of it for now. And it wasn't considered at the time I forked the module. Admin pages have template "admin" I think you have to ask mindplay, I think it's in there in the module configuration screen. But haven't tried. Link to comment Share on other sites More sharing options...
maba Posted March 18, 2013 Share Posted March 18, 2013 Thanks. Yes, I tried to set icon in admin template (decorations tab) also.. but decorator not add the img tag (only for these pages). This happens for home template also if setted from module configuration, but for this template set icon from decorations tab works. Link to comment Share on other sites More sharing options...
Manfred62 Posted March 25, 2013 Share Posted March 25, 2013 just find time to play around again with Teflon Version 2. In default.php, line 69 there is a doubled entry: adminTemplates' => $config->urls->adminTemplates, not sure why there is a extra translation section for the file upload? $upload_label = __('file upload', __FILE__); $jsConfig['translations'] = array( 'teflon_upload_text' => $upload_label // file upload button label text ); Wouldn't it be simpler to style the default button to Teflon needs? Tested this temporary without the code above. Then you get the translated string. regards Manfred Link to comment Share on other sites More sharing options...
Soma Posted March 25, 2013 Author Share Posted March 25, 2013 Thanks for the report Manfred! Must have had nervous fingers when editing in there. Will remove the double in the next update. not sure why there is a extra translation section for the file upload?$upload_label = __('file upload', __FILE__);$jsConfig['translations'] = array( 'teflon_upload_text' => $upload_label // file upload button label text);Wouldn't it be simpler to style the default button to Teflon needs? Tested this temporary without the code above. Then you get the translated string. Because it's not easy possible to style the file field across browsers. I'm progressively hidding and adding new text and button using jQuery. Since there's no text translation for the file upload buttons (it's translated by the browser), I had to somehow make it possible to localize it. Link to comment Share on other sites More sharing options...
kongondo Posted May 30, 2013 Share Posted May 30, 2013 Well I found the issue on another installation. The include path of the topnav somehow was different from the default admin template. I got : <ul id='topnav' class='nav droppy'> <?php include($config->urls->templatesAdmin . "topnav.inc"); ?> </ul> instead of <ul id='topnav' class='nav droppy'> <?php include($config->paths->templatesAdmin . "topnav.inc"); ?> </ul> Wonders how this doesn't cause an error on my local test server, but on the live server. Anyway it's fixed and checked in on github. Thanks for finding it. Soma, The path is still wrong in the current version (http://mods.pw/p) line 103 in default.php has this.. <?php include($config->paths->templatesAdmin . "topnav.inc"); ?> instead of... <?php include($config->paths->adminTemplates . "topnav.inc"); ?> templatesAdmin is wrong Link to comment Share on other sites More sharing options...
Soma Posted May 30, 2013 Author Share Posted May 30, 2013 Ah, ok must have missed that, and since it works anyway I haven't noticed. I corrected this in master and dev, thanks for finding it. Link to comment Share on other sites More sharing options...
kongondo Posted May 30, 2013 Share Posted May 30, 2013 It seems several themes have that mistake; Appy, Bootstrap, Ergo, Futura, Moderna. Must be a relic from some base template. Link to comment Share on other sites More sharing options...
Soma Posted May 30, 2013 Author Share Posted May 30, 2013 Yeah, Ryan is the source https://github.com/ryancramerdesign/ProcessWire/blob/f82594bf64111091f66a99778433417b372cc664/wire/templates-admin/default.php#L68 Link to comment Share on other sites More sharing options...
ryan Posted June 1, 2013 Share Posted June 1, 2013 Sorry about that! I don't even remember this one or when it was fixed, but it at least appears correct in all current versions. Link to comment Share on other sites More sharing options...
ceberlin Posted August 9, 2013 Share Posted August 9, 2013 Hi, I am on PW dev and tried Teflon 2 dev. The sticky save button at the top does not seem to save anything. The default admin template does work. Am I the only one? (do I need to search for other reasons?) Link to comment Share on other sites More sharing options...
Soma Posted August 9, 2013 Author Share Posted August 9, 2013 Works fine here since ever, can you provide more details on your environment? Link to comment Share on other sites More sharing options...
ceberlin Posted August 9, 2013 Share Posted August 9, 2013 I am using the latest PW dev version together with the teflon2 dev version (which I like a lot, I must say) OK then I need to watch out for modules which might be disturbing the functionality. My first thought was that the after-save- Module, which alters the save button behavior was the bad guy, but after disabling it the save still did not work. If I use the button at the bottom for saving a page, everything's fine. Interesting that that sticky button works ok, when I switch back to the default template. Link to comment Share on other sites More sharing options...
Soma Posted August 9, 2013 Author Share Posted August 9, 2013 I'm also using dev and dev all over so that can't be issue. I meant more your browser Any javascript errors? Link to comment Share on other sites More sharing options...
ceberlin Posted August 14, 2013 Share Posted August 14, 2013 no errors. But my suspicion is (after I am the only one here with the problem, it seems) that browser add-ons need a 2nd look. Link to comment Share on other sites More sharing options...
Soma Posted August 15, 2013 Author Share Posted August 15, 2013 Still don't know what browser... I missed that you wrote it works in default theme, and I took a second look at the main.js. There's been a small change to the click behavior of the sticky button. I pushed an little update to both master and dev, let me know if that fixes the issue, although it still works as before. Link to comment Share on other sites More sharing options...
ceberlin Posted August 15, 2013 Share Posted August 15, 2013 ahm, sorry, I am on Safari 6.x/latest / MacOS Mountain Lion/latest I installed the update and saving using the sticky button appears to be working now! - Thank you very much!!!! 1 Link to comment Share on other sites More sharing options...
mike77 Posted September 16, 2013 Share Posted September 16, 2013 Smashing theme. It's great! I found a little "bug", though. There is no trash bin icon (image deleting) on the blue bar when you use image field. The place where the icon should show is clickable and everything works, but lack of this tiny icon is a bit confusing for people not familiar with the original Ryan's interface (clients for example). Link to comment Share on other sites More sharing options...
Soma Posted September 16, 2013 Author Share Posted September 16, 2013 Thanks. I never experienced this and not sure whats about it. I used it a long time and also many clients. What browser and which version theme?. I would also recommend using the dev version of teflon. Link to comment Share on other sites More sharing options...
mike77 Posted September 16, 2013 Share Posted September 16, 2013 The icon does not show on ff, ie and chrome (latest versions). The theme version is the actual - 1.0.4. Link to comment Share on other sites More sharing options...
mike77 Posted September 16, 2013 Share Posted September 16, 2013 I tested it in firebug and it seems the problem is somehow in jquery ui css file. There is a "ui-icon" class appended to the element where the clickable area is and and it uses a wrong sprite image which overrides the proper one. Once that background image is disabled the right one shows up and the bin is visible. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now