common.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. html, body{
  2. width: 100%;
  3. overflow-x:hidden;
  4. margin: 0;
  5. padding: 0;
  6. }
  7. .plugin-action{
  8. display: inline-block;
  9. color: steelblue;
  10. margin-right: 10px;
  11. cursor: pointer;
  12. text-decoration: none;
  13. }
  14. .plugin-action:nth-child(1) {
  15. margin-right: 0;
  16. }
  17. .plugin-action:hover{
  18. text-decoration: underline;
  19. }
  20. .search-area{
  21. padding: 10px 20px;
  22. border: 1px solid #ccc;
  23. background: #efefef;
  24. margin-bottom: 15px;
  25. }
  26. .search-area .sa-ele{
  27. display: inline-block;
  28. margin-right: 20px;
  29. font-size: 12px;
  30. }
  31. .search-area .sa-ele .se-title{
  32. display: inline-block;
  33. margin-right: 10px;
  34. }
  35. .search-area .sa-ele .se-con{
  36. display: inline-block;
  37. width:180px;
  38. height: 24px;
  39. border: 1px solid #ccc;
  40. padding: 0 4px;
  41. line-height: 24px;
  42. }
  43. .search-area .sa-ele .search-action, .search-area .sa-ele .reset-action{
  44. display: inline-block;
  45. width:80px;
  46. height: 26px;
  47. border: 1px solid #ccc;
  48. background: #e8e8e8;
  49. padding: 0 4px;
  50. line-height: 26px;
  51. text-align: center;
  52. cursor: pointer;
  53. margin-right: 10px;
  54. }
  55. .search-area .sa-ele .search-action:hover, .search-area .sa-ele .reset-action:hover{
  56. opacity: 0.7;
  57. }
  58. .bottom-bar{
  59. height: 30px;
  60. background: #f8f8f8;
  61. padding: 10px;
  62. margin-top: 10px;
  63. }
  64. .fn-select{
  65. width: 100px;
  66. height: 28px;
  67. }
  68. .fn-code{
  69. width: 400px;
  70. height: 28px;
  71. border: 0;
  72. padding: 0 10px;
  73. }
  74. .fn-run-info{
  75. font-size: 12px;
  76. padding: 0 10px;
  77. }
  78. .bottom-bar .fn-run-info a{
  79. color: #0f88eb;
  80. margin: 0;
  81. }
  82. .success-info{
  83. color: #008800;
  84. }
  85. .error-info{
  86. color: #880000;
  87. }
  88. .bottom-bar button{
  89. padding: 5px 20px;
  90. margin-right: 10px;
  91. border: 1px solid #999;
  92. }
  93. .bottom-bar a{
  94. font-size: 12px;
  95. margin-right: 10px;
  96. }
  97. .void-template{
  98. height:300px;
  99. line-height: 300px;
  100. text-align: center;
  101. font-size: 24px;
  102. color: #ccc;
  103. }
  104. .grid-main {
  105. height: calc(100vh - 64px - 60px);
  106. overflow: auto;
  107. }