function.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. html {
  2. background: white;
  3. }
  4. .editFormWrapper {
  5. padding: 0 12px 18px;
  6. }
  7. .listHeader {
  8. width: auto;
  9. font-size: 14px;
  10. color: white;
  11. background-color: #009688;
  12. padding: 4px 6px;
  13. overflow: auto;
  14. }
  15. .listHeader > span {
  16. float: left;
  17. line-height: 24px;
  18. }
  19. .listHeader > img {
  20. float: right;
  21. cursor: pointer;
  22. }
  23. .deleteValidation {
  24. margin-top: 8px;
  25. color: red;
  26. }
  27. /* Label and validation customization */
  28. .inlineModelPropertyContainer {
  29. width: 100%;
  30. overflow: auto;
  31. }
  32. .inlineModelProperty {
  33. overflow: auto;
  34. float: left;
  35. }
  36. .inlineModelPropertyLeft {
  37. overflow: auto;
  38. float: left;
  39. padding-right: 4px;
  40. }
  41. .inlineModelPropertyCenter {
  42. overflow: auto;
  43. float: left;
  44. padding-left: 4px;
  45. padding-right: 4px;
  46. }
  47. .inlineModelPropertyRight {
  48. overflow: auto;
  49. float: left;
  50. padding-left: 4px;
  51. }
  52. .modelPropertyLabel {
  53. margin: 10px 0 4px 0;
  54. display: inline-block;
  55. }
  56. .field-validation-error {
  57. color: red;
  58. margin-left: 8px;
  59. }
  60. .validated {
  61. border-color: #DCE4EC !important;
  62. }
  63. textarea, input[type="text"], input[type="password"],
  64. input[type="datetime"],
  65. input[type="datetime-local"], input[type="date"],
  66. input[type="month"],
  67. input[type="time"], input[type="week"],
  68. input[type="number"], input[type="email"],
  69. input[type="url"], input[type="search"],
  70. input[type="tel"], input[type="color"],
  71. .uneditable-input {
  72. padding: 3px 3px;
  73. border: 1px solid #DCE4EC;
  74. }
  75. .tip {
  76. background: none repeat scroll 0 0 #FFFFFF;
  77. border: 1px solid #808080;
  78. border-radius: 10px;
  79. box-shadow: 0 1px 10px rgba(32, 32, 32, 0.5);
  80. color: red;
  81. display: none;
  82. font-size: 12px;
  83. font-style: normal;
  84. margin-left: 10px;
  85. margin-top: -24px;
  86. padding: 4px;
  87. position: absolute;
  88. z-index: 999999;
  89. }
  90. .tip_trigger {
  91. width: 10px;
  92. display: inline-block;
  93. color: red;
  94. margin-left: 3px;
  95. }