| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- @import url("../static/css/bootstrap.min.css");
- .wrapper,.panel-body {
- padding-bottom: 0;
- }
- .img-container {
- overflow: auto;
- border:10px solid #4e5d6c;
- border-right: 0;
- background-color:#4e5d6c;
- position: absolute;
- bottom: 0;
- top: 120px;
- left: 0;
- right: 0;
- max-height: calc(100vh - 150px);
- }
- .img-result {
- width: 100%;
- padding-right: 10px;
- margin: auto;
- display: block;
- }
- #btnSave {
- margin-top: -13px;
- }
- .x-title {
- display: block;
- border-bottom: 1px solid #eee;
- padding-bottom: 4px;
- margin-bottom:10px;
- }
- .x-title .x-link {
- cursor: pointer;
- color:#c00;
- text-decoration: underline;
- margin-left: 10px;
- }
- .x-title .x-link:hover {
- color: #f00;
- }
- .c-d {
- cursor: default;
- margin-top: 20px;
- }
- table {
- font-size : 14px;
- }
- .table>tbody>tr>td {
- word-break: break-all;
- vertical-align: middle !important;
- }
- th.x-index {
- width:50px;
- }
- th.x-tt {
- min-width: 260px;
- }
- th.x-op {
- width:212px;
- }
- .x-switch {
- font-size: 12px;
- font-weight: normal;
- color: #f00;
- margin-left: 20px;
- }
- /* 为canvas添加样式 */
- #imageEditor canvas {
- display: block;
- background-color: #fff;
- box-shadow: 0 0 10px rgba(0,0,0,0.3);
- width: 100%;
- }
|