Jump to content

tpr

Members
  • Posts

    2,321
  • Joined

  • Last visited

  • Days Won

    44

Everything posted by tpr

  1. This plugin for KeePass makes it much more handy to use: https://sourceforge.net/projects/autotypesearch/
  2. I've tried setting a max height on the dropdown menus so at least they were scrollable, but unfortunately the 3rd level menus that open to the right were cut off. They are absolutely positioned so I don't think this could be fixed. Btw I really don't like how the main menu markup is built in the admin, submenus are not part of the menu markup but they are positioned there on open. A simple CSS solution would be enough I think with proper nested markup, that would allow more customization.
  3. Thanks, I've added this to v2.0.16, please try. It also contains a fix for the PHP notice @Brian Peat has come across.
  4. This has something to do that the markup is different here, there is a span.label_title around the page title's text. This has came up earlier too but I couldn't figure out why. I googled around and found a WebKit bug that could cause this. Could you try applying this CSS? If it works via devtools, please try adding this to aos.min.css (just append to the end): .PageList .PageListItem { transform: scale3d(1,1,1); } Or if no joy, by adding backface-visibilty: hidden. Unfortunately because I can't reproduce I can't check.
  5. Well I don't know how could I fix the long menu issue, sticky works just this way. @MilenKo Are you also on Mac? As I know adrian also is.
  6. You mean like this for example? Error: \tException: SQLSTATE[HY000] [2002] Nem hozhat\xf3 l\xe9tre kapcsolat
  7. I got an "Error in ProcessWireLogsPanel": Let me know how to get more info if you need. Btw it's unbelievable that there are soo many panels in Tracy - you may need to add a filterbox just here too ?
  8. So changing the opacity back and forth fixes it? That is weird, does it happen in incognito mode too?
  9. I couldn't reproduce (latest Chrome and Firefox). Could you check what CSS rule is causing this? Apparently the page title is there but not visible because the page IDs are not aligned to the left. It could be also handy to see the markup of a failing pagelist item.
  10. Just do it, I don't think I can devote time for a while to check.
  11. Thanks @jmartsch! It seems that a regex in FilterBox allows only specific characters to use for filtering. I don't remember why I did this but I think it's too restrictive. Could you try replacing the line at 552 with this? var i, aStr = str.match(/[^\s]+|"[^"]+"/g); I think I'll need to revisit this sometime but in my quick tests it works better then the previous.
  12. tpr

    MarkupSrcSet

    I think @Autofahrn is right, the module should output anything only on $img->srcset().
  13. For the record, there is also Choices which is also a good one: https://github.com/jshjohnson/Choices
  14. It's the onInit callback where you can return false, eg. based on the number of DOM elements. That's nice ?
  15. @adrian FYI it is possible to load filterbox only if some criteria is meet, eg. the number of data to filter is greater than 20.
  16. tpr

    other CMSs

    I was moving recently my sites made with Eleventy to Netlify (free plan) and I really like it. It's easier to deploy (just push to GitHub) and as a plus I have a version control which was not the case with my previous projects. I noticed that my site scores higher on YSlow on GTMetrix so I went ahead and fixed the remaining issues it was complaining about. Previously I used no CDN so YSlow was always lagging behind the PageSpeed score. The result is 100/100, and not only the main indicators but all recommendations below them (it was 100/100 even if one or two recommendations were only 99%). I know it's an overkill and it really doesn't add extra value to the site, but I was curious whether it is possible to reach such figures. Apparently is ? https://gtmetrix.com/reports/neptunbrigad.hu/ffOeMHHL
  17. And what about a multilanguage site? In general I think the easiest solution would be to display the page name and a link below the title that links to the Content tab. In case of a multilanguage site, display the current language name only.
  18. Thanks @adrian, I was really missing these features (search and recents list). It was a challenge to set up FilterBox to fit in here but fortunately everything fell into place.
  19. Hi @Brian Peat, that line fails if a template doesn't have a name I was wrong, it's the editedPage being null, will add a check.
  20. It would be great having "ő", "Ő" (=> "o") and "ű", "Ű" (=> "u") on the list. I've requested it years ago but it haven't found its way to the core.
  21. Hi @adrian would it be hard to add some kind of "bookmark" feature to the File Editor panel? I sometimes have no other option to edit files but the FE and it's a real pain jumping back and forth eg. from CSS and template files. A simple localStorage implementation would be fine for me. As for the UI, perhaps a select would be the best.
  22. I've added data-attributes to field wrappers in v2.0.15 containing information about the included field. Unlike the info currently available it's not on the inputfield itself but on its wrapper, making admin CSS/JS customizations easier to apply. https://github.com/rolandtoth/AdminOnSteroids/wiki/Misc
  23. https://github.com/rolandtoth/AdminOnSteroids/wiki/FieldAndTemplateEditLinks
  24. OK, due to the popular demand towards this feature it's been added to v2.0.14 ? Some changes: the new suffix contains the field type (eg. "Textarea"), and the inputfield class if it's different from it (eg. "CKEditor") the optional inputfieldClass is not added if it's the language variant (to avoid situations like "excerpt - TextareaLanguage (Textarea)" on the right side of the bars the original field type string is removed (before the percentage) not to display it twice
  25. Actually having the field type appended to the name is quite handy when used together with the "add search box to asmSelect" feature because field types can also be searched. So for example you can easily find CroppableImage3 image o CKEditor fields, etc, which is a huge help when there are a lot of fields.
×
×
  • Create New...