App.vue 922 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <router-view />
  3. </template>
  4. <style>
  5. html,
  6. body {
  7. padding: 0 0;
  8. margin: 0 0;
  9. width: 100% !important;
  10. height: 100%;
  11. overflow: hidden;
  12. }
  13. #app {
  14. width: 100%;
  15. height: 100%;
  16. /* min-height: 945px;
  17. max-height: 1080px; */
  18. }
  19. .el-tooltip {
  20. max-width: 200px;
  21. /* 根据需要调整宽度 */
  22. white-space: pre-line;
  23. /* 允许换行 */
  24. }
  25. .viewer-text-label {
  26. position: absolute;
  27. text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  28. /* -webkit-user-select: none; */
  29. /* Chrome, Safari, Opera */
  30. /* -moz-user-select: none; */
  31. /* Firefox */
  32. /* -ms-user-select: none; */
  33. /* Internet Explorer/Edge */
  34. /* user-select: none; */
  35. /* 标准语法 */
  36. }
  37. .el-scrollbar__thumb {
  38. background-color: #eeeeee !important;
  39. opacity: 0.7 !important;
  40. }
  41. .el-scrollbar__thumb:hover {
  42. opacity: 1 !important;
  43. background-color: #ffffff !important;
  44. }
  45. .yhfkInfoDialogHeader {
  46. height: 30px;
  47. }
  48. </style>