| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- input[type="checkbox"] {
- cursor: pointer;
- }
- input[type="color"] {
- width: 30px;
- height: 16px;
- border: 0;
- padding: 0;
- background-color: rgba(0, 0, 0, 0.0);
- overflow: hidden;
- }
- /* ::-webkit-color-swatch-wrapper {
- border: 1px solid #777;
- } */
- ::-webkit-color-swatch {
- position:relative;
- margin-top: -5px;
- width: 40px;
- height: 16px;
- }
- .popup-container {
- position: absolute;
- top: 76px;
- left: calc(5%);
- width: 330px;
- height: 600px;
- max-height: 90%; /* fix the issue when canvas's height is less than 600px */
- border-radius: 4px;
- border: 1px solid rgba(0, 0, 0, 0.7);
- background-color: rgba(255, 255, 255, 0.7);
- color: black;
- z-index: 1000;
- overflow: hidden;
- }
- .popup-container:hover {
- background-color: rgba(255, 255, 255, 1);
- }
- .popup-wrapper {
- width: 100%;
- height: calc(100% - 40px);
- padding: 0;
- margin: 0;
- border-bottom: 1px solid #ccc;
- overflow-y: scroll;
- }
- .popup-list-item {
- display: flex;
- /* justify-content: space-between; */
- align-items: center;
- padding: 6px;
- border-bottom: 1px solid #ccc;
- white-space: nowrap;
- }
- .popup-list-item:hover {
- background-color: aliceblue;
- }
- .popup-layer-color {
- display: inline-block;
- margin-left: 5px;
- width: 20px;
- font-size: 12px;
- }
- .popup-layer-name {
- display: inline-block;
- margin-left: 10px;
- padding: 1px 0;
- width: 280px;
- font-size: 12px;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .popup-color {
- margin-left: 8px;
- font-size: 12px;
- border: 1px solid black;
- width: 18px;
- height: 16px;
- min-width: 18px;
- }
- .popup-freeze {
- margin-right: 5px;
- color: #ccc;
- font-size: 12px;
- width: 50px;
- }
- .popup-hide {
- visibility: hidden;
- }
- .popup-header {
- display: flex;
- /* justify-content: space-between; */
- align-items: center;
- width: 100%;
- height: 40px;
- border-bottom: 1px solid #ccc;
- }
- /* .popup-layer-name-title,
- .popup-layer-color-title {
- display: inline;
- color: #ccc;
- font-size: 12px;
- }
- .popup-layer-name-title {
- margin-left: 40px;
- }
- .popup-layer-color-title {
- margin-right: 75px;
- } */
- .popup-close {
- position: absolute;
- top: 10px;
- right: 20px;
- font-size: 16px;
- cursor: pointer;
- }
- .popup-header {
- display: flex;
- align-items: center;
- padding-left: 6px;
- width: 100%;
- height: 40px;
- border-bottom: 1px solid #ccc;
- background-color: #00000022;
- }
|