mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-21 08:52:46 +08:00
* [APP-1547][APP-1548][APP-948] update alt text view, fix list issues, add rest route for update status * [APP-1547][APP-1548][APP-948] update alt text view, fix list issues, add rest route for update status
72 lines
1.2 KiB
SCSS
72 lines
1.2 KiB
SCSS
#accessibility_status, .accessibility_status {
|
|
width: 300px;
|
|
}
|
|
|
|
.accessibility_status.column-accessibility_status {
|
|
vertical-align: middle;
|
|
|
|
.accessibility_status_content {
|
|
display: flex;
|
|
gap: 16px;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 265px;
|
|
|
|
&__stats {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
flex-grow: 3;
|
|
}
|
|
|
|
&__summary {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 12px;
|
|
}
|
|
|
|
&__text {
|
|
// Optional extra styling for the fixed count
|
|
}
|
|
|
|
&__percentage {
|
|
border-radius: 12px;
|
|
padding: 2px 6px;
|
|
&.red {
|
|
background-color: #FDECEC;
|
|
color: #9A1A1A;
|
|
}
|
|
&.orange {
|
|
background-color: #FBF1E6;
|
|
color: #823F14;
|
|
}
|
|
&.grey {
|
|
background-color: #E2E3E5;
|
|
color: #000;
|
|
}
|
|
}
|
|
|
|
&__bar {
|
|
background-color: #e2e3e5;
|
|
height: 6px;
|
|
border-radius: 3px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
&__bar-fill {
|
|
background-color: #555;
|
|
height: 100%;
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
&__actions {
|
|
.button {
|
|
width: 112px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|