fl-builder-user-templates-admin-add.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* Form General
  2. ------------------------------------------------------*/
  3. .fl-new-template-form {
  4. margin-right: 300px;
  5. }
  6. .fl-new-template-form table {
  7. background: #fff;
  8. border: 1px solid #e5e5e5;
  9. -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.04);
  10. box-shadow: 0 1px 1px rgba(0,0,0,.04);
  11. }
  12. .fl-new-template-form th {
  13. background: #F9F9F9;
  14. border-right: 1px solid #E1E1E1;
  15. border-bottom: 1px solid #f0f0f0;
  16. padding: 13px 15px;
  17. width: 25%;
  18. }
  19. .fl-new-template-form th label {
  20. display: inline-block;
  21. font-size: 13px;
  22. line-height: 1.4em;
  23. font-weight: bold;
  24. padding: 0;
  25. margin: 0 0 3px;
  26. color: #333;
  27. }
  28. .fl-new-template-form td {
  29. border-bottom: 1px solid #f0f0f0;
  30. padding: 13px 15px;
  31. }
  32. .fl-new-template-form input.regular-text,
  33. .fl-new-template-form select {
  34. width: 100%;
  35. }
  36. .fl-new-template-form .dashicons-editor-help {
  37. color: #555;
  38. cursor: help;
  39. font-size: 18px;
  40. position: relative;
  41. top: 1px;
  42. }
  43. .fl-template-module-row,
  44. .fl-template-global-row {
  45. display: none;
  46. }
  47. .fl-new-template-form p.submit {
  48. margin-top: 10px;
  49. }
  50. /* Errors
  51. ------------------------------------------------------*/
  52. input.error,
  53. input.error:focus,
  54. select.error {
  55. border: 1px solid #d54e21;
  56. }
  57. label.error {
  58. color: #d54e21;
  59. display: inline-block;
  60. padding-top: 5px;
  61. }
  62. /* TipTip
  63. ------------------------------------------------------*/
  64. #tiptip_arrow_inner {
  65. border-bottom-color: #333 !important;
  66. }
  67. #tiptip_content {
  68. background: #333;
  69. box-shadow: none;
  70. }
  71. /* Media Queries
  72. ------------------------------------------------------*/
  73. @media (max-width: 992px) {
  74. .fl-new-template-form {
  75. margin-right: 0;
  76. }
  77. }