Skip to content
View marcosrego-web's full-sized avatar

Block or report marcosrego-web

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. mr-utils mr-utils Public

    Utility classes and functions used by Mr.Dev.'s plugins, that you can also use on different environments.

    JavaScript

  2. flipbook-block flipbook-block Public

    Simple Wordpress block that shows a PDF from your Media in a Flip Book, for your visitors to turn the pages.

    Java

  3. mrdev-theme mrdev-theme Public

    Mr.Dev. gives you a boilerplate theme for Blocks Full Site Editor and optionally for Mr.Dev's Framework.

    PHP

  4. mrdev-widget mrdev-widget Public

    A Wordpress widget to display content with many customizable layouts and options.

    PHP

  5. A simple CSS-only trick, for touch-d... A simple CSS-only trick, for touch-devices to open a link only on double-tap. This can be useful for dropdown menus.
    1
     /* 
    2
      On this example, ".menu-item-has-children" is a class from the parent element of the link. 
    3
      (This class comes from a Wordpress Navigation Menu widget, that I made dropdown and togglable using only css.)
    4
    */
    5
    .menu-item-has-children {
  6. Full simplified code on how to trans... Full simplified code on how to transform a HTML5 datalist to style. Similar to how I did on my front-end toolkit called Mr.Utils.
    1
    function mrSearch(t, e) {
    2
      //t = Datalist
    3
      //e = Input with list attribute
    4
      let mrSearchChildren = t.children;
    5
      if (mrSearchChildren) {