1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- .sg-editing-superuser-textarea {
- width: 100%;
- height: 100%;
- border: none;
- padding: 15px;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- resize: none;
- background-color: #fff;
- font-family: 'Courier New', Arial;
- color: #000000;
- font-size: 13px;
- }
- .sg-editing-superuser-modal-container {
- position: absolute;
- bottom: -38px;
- right: 0px;
- width: 60px;
- height: 30px;
- padding: 4px;
- background-color: rgb(255, 41, 61);
- }
- .sg-editing-superuser-modal-container:before {
- content: '';
- position: absolute;
- z-index: -1;
- top: 0;
- left: 0;
- width: 68px;
- height: 38px;
- -moz-box-shadow: 0 0 2px 3px #555;
- -webkit-box-shadow: 0 0 2px 3px #555;
- box-shadow: 0 0 2px 3px #555;
- }
- .sg-editing-superuser-modal-container button {
- display: inline-block;
- width: 30px;
- height: 30px;
- border: none;
- outline: none;
- background-color: rgb(255, 41, 61);
- background-repeat: no-repeat;
- background-size: 30px auto;
- background-position: center;
- }
- .sg-editing-superuser-modal-container button:hover {
- background-color: rgb(183, 12, 29);
- cursor: pointer;
- }
- .sg-editing-superuser-modal-container button.confirm {
- background-image: url(./icons/copy.svg);
- }
- .sg-editing-superuser-modal-container button.cancel {
- background-image: url(./icons/copy.svg);
- }
|