Skip to content

safehou-se tweaks by captainharrie

Screenshot of safehou-se tweaks

Details

Authorcaptainharrie

LicenseNo License

Categorysafehou-se

Created

Updated

Size1.1 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

  • Added scrollbar to the preview pane, so you can scroll to where you are editing when editing a long code with lots of fields.
  • allowed resizing of long text fields.
  • changed form loop separator to be a line instead of a box, to show which header corresponds to which section clearly
  • Tweaked appearance of Add button, hid non-functioning delete buttons.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         safehou-se tweaks
@version      20221029.20.02
@namespace    userstyles.world/user/captainharrie
@description  - Added scrollbar to the preview pane, so you can scroll to where you are editing when editing a long code with lots of fields.
- allowed resizing of long text fields.
- added separator between new form loops, to make it clearer where new loops begin.
@author       captainharrie
@license      No License
==/UserStyle== */

@-moz-document url-prefix("https://safehou-se.vercel.app/code-filler") {
    .code-preview > div {
      max-height: 100vh;
      overflow-y: scroll;
      scrollbar-width:thin;
    }
    textarea {
      resize: vertical;
    }
    .form-loop > div > div {
      margin-bottom: .5rem;
    }

    .code-filler .code-form .form-loop > div
        {border-width:0; box-shadow:none; border-left-width:2px; border-radius:0;}
    .form-loop > div:first-of-type > .delete {
      display: none !important;
    }
    .form-loop > .btn-filled {
      border-top-left-radius: 0;
      margin-top: -8px !important;
      border-top-right-radius: 0;
    }
}

Reviews

No reviews yet.