admin-settings.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .ninja-forms-settings h3.hndle {
  2. padding: 10px 12px;
  3. margin: 0;
  4. }
  5. .nf-loading-spinner {
  6. width: 40px;
  7. height: 40px;
  8. margin: 15px auto;
  9. background-color: rgba(208,208,208,.5);
  10. border-radius: 100%;
  11. animation: nf-scaleout 1.0s infinite ease-in-out;
  12. }
  13. @-webkit-keyframes nf-scaleout {
  14. 0% { transform: scale(0) }
  15. 100% {
  16. transform: scale(1.0);
  17. opacity: 0;
  18. }
  19. }
  20. @keyframes nf-scaleout {
  21. 0% {
  22. transform: scale(0);
  23. } 100% {
  24. transform: scale(1.0);
  25. opacity: 0;
  26. }
  27. }
  28. .ninja-forms-settings .postbox .item-controls {
  29. display: none;
  30. }
  31. .nf_export_input {
  32. width: 60%;
  33. }
  34. .nf_filter_sub_input {
  35. width: 159px;
  36. }
  37. .nf-form-dropdown {
  38. display:none;
  39. border: 1px solid black;
  40. background-color: lightgrey;
  41. position: absolute;
  42. max-height: 150px;
  43. overflow: auto;
  44. width: 60%;
  45. }
  46. .nf-form-option:hover {
  47. background-color: #0073aa;
  48. color: #FFFFFF;
  49. cursor: pointer;
  50. }
  51. .nf-form-option {
  52. padding: 4px;
  53. border-bottom: 1px solid black;
  54. margin-bottom: 0;
  55. }
  56. .alignleft.actions input[type=text] {
  57. height: 28px;
  58. border-radius: 4px;
  59. }