index.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. @import url("../static/css/bootstrap.min.css");
  2. .wrapper,.panel-body {
  3. padding-bottom: 0;
  4. }
  5. .img-container {
  6. overflow: auto;
  7. border:10px solid #4e5d6c;
  8. border-right: 0;
  9. background-color:#4e5d6c;
  10. position: absolute;
  11. bottom: 0;
  12. top: 120px;
  13. left: 0;
  14. right: 0;
  15. max-height: calc(100vh - 150px);
  16. }
  17. .img-result {
  18. width: 100%;
  19. padding-right: 10px;
  20. margin: auto;
  21. display: block;
  22. }
  23. #btnSave {
  24. margin-top: -13px;
  25. }
  26. .x-title {
  27. display: block;
  28. border-bottom: 1px solid #eee;
  29. padding-bottom: 4px;
  30. margin-bottom:10px;
  31. }
  32. .x-title .x-link {
  33. cursor: pointer;
  34. color:#c00;
  35. text-decoration: underline;
  36. margin-left: 10px;
  37. }
  38. .x-title .x-link:hover {
  39. color: #f00;
  40. }
  41. .c-d {
  42. cursor: default;
  43. margin-top: 20px;
  44. }
  45. table {
  46. font-size : 14px;
  47. }
  48. .table>tbody>tr>td {
  49. word-break: break-all;
  50. vertical-align: middle !important;
  51. }
  52. th.x-index {
  53. width:50px;
  54. }
  55. th.x-tt {
  56. min-width: 260px;
  57. }
  58. th.x-op {
  59. width:212px;
  60. }
  61. .x-switch {
  62. font-size: 12px;
  63. font-weight: normal;
  64. color: #f00;
  65. margin-left: 20px;
  66. }
  67. /* 为canvas添加样式 */
  68. #imageEditor canvas {
  69. display: block;
  70. background-color: #fff;
  71. box-shadow: 0 0 10px rgba(0,0,0,0.3);
  72. width: 100%;
  73. }