|
| 1 | +.vp-pdf { |
| 2 | + position: absolute; |
| 3 | + top: 0; |
| 4 | + left: 0; |
| 5 | + width: 100%; |
| 6 | + height: 100%; |
| 7 | + z-index: 1200; |
| 8 | + background-color: rgba(0,0,0,.4); |
| 9 | +} |
| 10 | +.vp-pdf-container { |
| 11 | + position: relative; |
| 12 | + left: 50%; |
| 13 | + top: 50%; |
| 14 | + transform:translate(-50%, -50%); |
| 15 | + min-width: 470px; |
| 16 | + min-height: 420px; |
| 17 | + width: 50%; |
| 18 | + height: 60%; |
| 19 | + background-color: white; |
| 20 | +} |
| 21 | +.vp-pdf-title { |
| 22 | + height: 40px; |
| 23 | + padding: 5px 0px 5px 10px; |
| 24 | + background-color: #EEE; |
| 25 | + border: 1px solid #ddd;; |
| 26 | + display: flex; |
| 27 | + flex-direction: row; |
| 28 | + position: relative; |
| 29 | + align-items: center; |
| 30 | + font-size: 16px; |
| 31 | + font-weight: 700; |
| 32 | +} |
| 33 | +.vp-pdf-close, |
| 34 | +.vp-pdf-popup-close { |
| 35 | + position: fixed; |
| 36 | + z-index: 3; |
| 37 | + right: 5px; |
| 38 | + width: 30px; |
| 39 | + height: 20px; |
| 40 | + line-height: 20px; |
| 41 | + top: 10px; |
| 42 | + text-align: center; |
| 43 | + cursor: pointer; |
| 44 | +} |
| 45 | +.vp-pdf-body { |
| 46 | + width: 100%; |
| 47 | + height: calc(100% - 90px); |
| 48 | + padding: 10px; |
| 49 | +} |
| 50 | +.vp-pdf-grid-box { |
| 51 | + display: grid; |
| 52 | + width: 100%; |
| 53 | + height: 100%; |
| 54 | + grid-row-gap: 5px; |
| 55 | + /* grid-template-rows: 60px calc(100% - 80px); */ |
| 56 | + /* grid-template-rows: 80px calc(100% - 100px); */ |
| 57 | + /* grid-template-rows: 80px min-content; */ |
| 58 | + grid-template-rows: 60px 140px 150px; |
| 59 | +} |
| 60 | +.vp-pdf-prepare-box { |
| 61 | + display: grid; |
| 62 | + grid-template-columns: 50% 50%; |
| 63 | + align-items: baseline; |
| 64 | + align-content: center; |
| 65 | + border: 1px solid #E4E4E4; |
| 66 | + border-radius: 5px; |
| 67 | + box-sizing: border-box; |
| 68 | + padding: 15px; |
| 69 | +} |
| 70 | +.vp-pdf-link { |
| 71 | + color: var(--highlight-color); |
| 72 | +} |
| 73 | +.vp-pdf-install-btn{ |
| 74 | + margin-left: 7px; |
| 75 | +} |
| 76 | +.vp-pdf-check-btn { |
| 77 | + display: inline-block; |
| 78 | + margin-left: 5px; |
| 79 | +} |
| 80 | +.vp-pdf-import-btn { |
| 81 | + margin-left: 10px; |
| 82 | +} |
| 83 | +.vp-pdf-show-box { |
| 84 | + display: grid; |
| 85 | + /* grid-template-rows: min-content min-content; */ |
| 86 | + grid-row-gap: 10px; |
| 87 | + border: 1px solid #E4E4E4; |
| 88 | + border-radius: 5px; |
| 89 | + box-sizing: border-box; |
| 90 | + padding: 15px; |
| 91 | +} |
| 92 | +.vp-pdf-df-box { |
| 93 | + display: grid; |
| 94 | + grid-template-columns: 95px auto; |
| 95 | + grid-row-gap: 3px; |
| 96 | + align-items: baseline; |
| 97 | + align-content: space-evenly; |
| 98 | +} |
| 99 | +.vp-pdf #vp_pdfVariable { |
| 100 | + width: 62%; |
| 101 | + height: 30px; |
| 102 | +} |
| 103 | +.vp-pdf-input { |
| 104 | + width: 62%; |
| 105 | +} |
| 106 | +.vp-pdf-run-btn { |
| 107 | + width: 112px !important; |
| 108 | + margin-left: 5px; |
| 109 | +} |
| 110 | +.vp-pdf-preview-box { |
| 111 | + display: none; |
| 112 | + width: 100%; |
| 113 | + height: 100px; |
| 114 | + position: absolute; |
| 115 | + bottom: 50px; |
| 116 | + |
| 117 | + background: #F7F7F7; |
| 118 | + border: 0.25px solid #E4E4E4; |
| 119 | + padding: 10px; |
| 120 | +} |
| 121 | +/** Buttons */ |
| 122 | +.vp-pdf-btn-box { |
| 123 | + position: relative; |
| 124 | + height: 50px; |
| 125 | + border-top: 0.25px solid var(--border-gray-color); |
| 126 | +} |
| 127 | +.vp-pdf-btn { |
| 128 | + position: absolute; |
| 129 | +} |
| 130 | +.vp-pdf-btn-preview { |
| 131 | + left: 15px; |
| 132 | + top: 9px; |
| 133 | +} |
| 134 | +.vp-pdf-btn-dataview { |
| 135 | + left: 105px; |
| 136 | + top: 9px; |
| 137 | +} |
| 138 | +.vp-pdf-btn-cancel { |
| 139 | + top: 9px; |
| 140 | + right: 105px; |
| 141 | +} |
| 142 | +.vp-pdf-btn-runadd { |
| 143 | + position: absolute; |
| 144 | + top: 9px; |
| 145 | + right: 15px; |
| 146 | + width: fit-content; |
| 147 | + height: 30px; |
| 148 | + background: #F38504; |
| 149 | + border-radius: 2px; |
| 150 | +} |
| 151 | +.vp-pdf-btn-run { |
| 152 | + display: inline-block; |
| 153 | + width: 60px; |
| 154 | + border-radius: 2px 0px 0px 2px; |
| 155 | + border-right: 0.25px solid var(--border-gray-color) !important; |
| 156 | +} |
| 157 | +.vp-pdf-btn-detail { |
| 158 | + display: inline-block; |
| 159 | + width: 20px; |
| 160 | + height: 28px; |
| 161 | + border-radius: 0px 2px 2px 0px; |
| 162 | + padding: 0; |
| 163 | +} |
| 164 | +.vp-pdf-detail-box { |
| 165 | + display: none; |
| 166 | + background: white; |
| 167 | + border: 0.25px solid var(--border-gray-color); |
| 168 | + position: absolute; |
| 169 | + bottom: 35px; |
| 170 | + right: 1px; |
| 171 | + width: 84px; |
| 172 | + height: 62px; |
| 173 | + text-align: center; |
| 174 | + line-height: 30px; |
| 175 | +} |
| 176 | +.vp-pdf-detail-item { |
| 177 | + color: var(--font-primary); |
| 178 | +} |
| 179 | +.vp-pdf-detail-item:hover { |
| 180 | + color: var(--font-hightlight); |
| 181 | + background: var(--light-gray-color); |
| 182 | +} |
0 commit comments