Advertisement
BaneD

Stylish - show hidden files on JotForm

Jan 14th, 2016
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.65 KB | None | 0 0
  1. /*
  2.     Requires FireFox or Chrome Stylish plugin
  3.     https://addons.mozilla.org/en-US/firefox/addon/stylish/
  4.     https://chrome.google.com/webstore/detail/stylish/fjnbnpbmkenffdnngjfgmeleoegfcffe?hl=en
  5. */
  6. @namespace url(http://www.w3.org/1999/xhtml);
  7.  
  8. @-moz-document domain("jotform.com") {
  9.   li.form-line.always-hidden, li.form-line.always-hidden > div.always-hidden
  10.   {
  11.     display:block !important;
  12.   }
  13.   li.form-line.always-hidden > label:before
  14.   {
  15.     content:"hidden (administration) field";
  16.     font-size: 8px;
  17.     background-color: yellow;
  18.     float:left;
  19.     margin-top: -1.5em !important;
  20.     padding-left: 2px;
  21.     padding-right: 2px;
  22.   }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement