nf-form-block-style.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .nf-iframe-container {
  2. position: relative;
  3. }
  4. .nf-iframe-overlay {
  5. position: absolute;
  6. top: 0; right: 0; bottom: 0; left: 0;
  7. }
  8. .nf-block-form-selector {
  9. background-color: lightgrey;
  10. border-bottom: 1px solid;
  11. margin-bottom: 5px;
  12. padding: 4px;
  13. }
  14. .nf-filter-input {
  15. border: 1px solid #ddd;
  16. border-radius: 5px;
  17. box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
  18. padding: 0;
  19. width: 100%;
  20. margin-top: 10px;
  21. margin-bottom: 10px;
  22. position: relative;
  23. }
  24. .nf-filter-input .blocks-select-control__input {
  25. margin: 0 0 0 0;
  26. }
  27. .nf-filter-input-el {
  28. border: none !important;
  29. box-shadow: none !important;
  30. width: 95%;
  31. position: relative;
  32. display: inline-block;
  33. }
  34. .nf-filter-input-icon {
  35. display: inline-block;
  36. content: '▾';
  37. color: #999;
  38. font-size: 14px;
  39. right: .77em;
  40. position: absolute;
  41. top: .2em;
  42. }
  43. #nf-formFilter-main {
  44. border-top: none;
  45. border-left: none;
  46. border-bottom: none;
  47. }
  48. #nf-formFilter-sidebar {
  49. border-top: none;
  50. border-left: none;
  51. border-bottom: none;
  52. width: 95%;
  53. }
  54. #nf-filter-input-icon-sidebar {
  55. font-size: 1.4em;
  56. top: .35em;
  57. right: .45em;
  58. }
  59. .nf-filter-option-container {
  60. display: none;
  61. position: absolute;
  62. background-color: #edeff0;
  63. z-index: 10000;
  64. padding: 4px;
  65. width: 100%;
  66. border-radius: 5px;
  67. max-height: 200px;
  68. overflow: scroll;
  69. box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)!important;
  70. }
  71. .nf-filter-option {
  72. list-style: none;
  73. }
  74. .nf-filter-option:hover {
  75. background-color: #0073aa;
  76. color: white;
  77. }