one-click-accessibility/modules/settings/assets/css/style.css
Pavlo Kniazevych 82499ee78c
Fix: Fix the QA bugs [n/a] (#138)
* New: Finish the BE integration [n/a]

* Fix: Fix some bugs [n/a]
2025-01-19 13:11:09 +02:00

73 lines
1.1 KiB
CSS

#wpbody-content {
padding-bottom: 0;
}
body {
background: #fff;
}
.wrap {
margin-top: 0;
}
html:not([dir='rtl']) #ea11y-app {
margin-left: -20px;
background: white;
height: calc(100vh - 32px);
}
html[dir='rtl'] #ea11y-app {
margin-right: -20px;
background: white;
height: calc( 100vh - 32px );
}
#ea11y-app * {
box-sizing: border-box;
}
.ea11y-textfield .MuiInputBase-input {
height: 40px;
padding: 8px 12px;
box-shadow: none;
border-color: rgba(12, 13, 14, 0.23);
}
/* Widget Preview in Menu Settings */
#ea11y-widget-preview--container #ea11y-root {
display: flex;
justify-content: center;
}
@media (min-width: 480px) {
.ea11y-widget-container {
max-width: 100% !important;
}
}
/* Widget style for statement section */
.ea11y-statement--widget-preview {
height: 250px;
position: relative;
padding: 25px;
overflow: hidden;
}
.ea11y-statement--widget-preview .ea11y-widget-container--preview {
position: absolute;
}
.ea11y-statement--widget-preview .ea11y-widget-content::after {
content: '';
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 60px;
background-color: #FCFDFF;
opacity: 0.6;
}