Files
Jacek Pyziak cd264483f8 Add PSR HTTP Message Interfaces and Dependencies
- Implemented StreamInterface, UploadedFileInterface, and UriInterface as per PSR standards.
- Added getallheaders function to retrieve HTTP headers in a compatible manner.
- Included LICENSE files for ralouphie/getallheaders and symfony/deprecation-contracts.
- Introduced function for triggering deprecation notices in Symfony.
2025-12-28 12:44:00 +01:00

87 lines
2.3 KiB
CSS

.atfp-elementor-translate-confirm-box{
display: none;
position: fixed;
z-index: 99999;
top: 0;
width: 100%;
height: 100vh;
overflow: hidden;
background-color: rgba(0,0,0,.75);
justify-content: center;
align-items: center;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}
.atfp-elementor-translate-confirm-box .modal-content{
padding: 16px;
text-align: center;
position: relative;
background-color: #fefefe;
width: clamp(200px,400px,80%);
height: auto;
overflow: hidden;
border-radius: 5px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);
-webkit-animation-name: animatetopsetting;
-webkit-animation-duration: .6s;
-webkit-animation-fill-mode: forwards;
animation-name: animatetopsetting;
animation-duration: .6s;
animation-fill-mode: forwards;
padding-block: 16px;
color: #000;
border-radius: 8px;
}
.atfp-elementor-translate-confirm-box .modal-content p{
font-size: 16px;
}
.atfp-elementor-translate-confirm-box .modal-content button[data-value]{
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 13px;
line-height: 1.3;
min-height: 30px;
margin: 0 0.3rem;
cursor: pointer;
border-width: 1px;
border-style: solid;
-webkit-appearance: none;
border-radius: 3px;
box-sizing: border-box;
font-family: inherit;
font-weight: inherit;
vertical-align: top;
text-decoration: none;
text-shadow: none;
text-align: center;
}
.atfp-elementor-translate-confirm-box .modal-content button[data-value="yes"]{
padding: 2px 11px;
white-space: nowrap;
background: #3db63d;
border-color: #33a133;
color: #fff;
}
.atfp-elementor-translate-confirm-box .modal-content button[data-value="no"]{
background: #ee4237;
border-color: #dd362b;
color: #fff;
padding: 2px 11px;
display: inline-flex;
align-items: center;
}
.atfp-elementor-translate-confirm-box .modal-content button[data-value="yes"]:hover{
background: #37a737;
border-color: #238b23;
}
.atfp-elementor-translate-confirm-box .modal-content button[data-value="no"]:hover{
background: #dd382e;
border-color: #c72a20;
}