You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

122 lines
2.7 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. .pos .print-label.disabled {
  2. background: #e2e2e2;
  3. border: solid 1px #BEBEBE;
  4. opacity: 0.5;
  5. cursor: default;
  6. color: inherit;
  7. }
  8. .pos .tare-screen .centered-content {
  9. text-align:center;
  10. }
  11. @media screen {
  12. .pos .tare-screen .pos-tare-label-container {
  13. width: 300px;
  14. background-color: white;
  15. margin: 20px;
  16. padding: 15px;
  17. font-size: 21px;
  18. padding-bottom:30px;
  19. font-family: "Inconsolata";
  20. border: solid 1px rgb(220,220,220);
  21. border-radius: 3px;
  22. overflow: hidden;
  23. text-align: center;
  24. display: inline-block;
  25. justify-content: center;
  26. align-items: center;
  27. flex-wrap: wrap;
  28. }
  29. .pos .tare-screen .pos-tare-label-container img {
  30. width: 50mm;
  31. height: 45mm;
  32. }
  33. }
  34. .pos .tare-screen .pos-tare-label-container .caption {
  35. display: block;
  36. text-overflow: ellipsis;
  37. flex-basis: 100vw;
  38. }
  39. .pos .tare-screen .pos-directions-for-user {
  40. font-size: 25px;
  41. margin: 8px;
  42. text-align: center;
  43. line-height: 2;
  44. }
  45. .pos .tare-screen .pos-directions-for-user span {
  46. width:100px;
  47. height: 50px;
  48. background-color: rgb(49,174,218);
  49. color: white !important;
  50. font-weight: bold;
  51. border: solid 1px black;
  52. border-radius: 90% 30%;
  53. display: flex;
  54. align-items: center;
  55. overflow: hidden;
  56. vertical-align:middle;
  57. justify-content: center;
  58. margin-left: auto;
  59. margin-right: auto;
  60. }
  61. .pos .tare-screen .centered-content .print-label {
  62. text-align: center;
  63. font-size: 32px;
  64. background: rgb(110,200,155);
  65. color: white;
  66. border-radius: 3px;
  67. padding: 16px;
  68. margin: 16px;
  69. cursor: pointer;
  70. }
  71. @media print {
  72. body {
  73. position: relative !important;
  74. }
  75. .pos .tare-screen header,
  76. .pos .tare-screen .top-content,
  77. .pos .tare-screen .print-label,
  78. .pos .tare-screen .pos-directions-for-user {
  79. display: none !important;
  80. }
  81. .pos .tare-screen .screen-content {
  82. max-width: unset !important;
  83. }
  84. .pos .tare-screen .centered-content {
  85. position: static;
  86. text-align: center;
  87. border: none;
  88. width: 100vw;
  89. height: 100vh;
  90. margin: 0mm;
  91. page-break-inside: avoid;
  92. overflow: hidden;
  93. padding: 0;
  94. display: flex;
  95. justify-content: center;
  96. align-items: center;
  97. flex-wrap: wrap;
  98. left: unset !important;
  99. right: unset !important;
  100. }
  101. .pos .tare-screen .centered-content .pos-tare-label-container img {
  102. width: 90vw;
  103. height: 70vh;
  104. }
  105. .pos .tare-screen .centered-content .pos-tare-label-container .caption {
  106. text-overflow: ellipsis;
  107. font-size: 5vh;
  108. flex-basis: 100%;
  109. }
  110. }