mirror of
https://github.com/movahhedi/blueberry-pma-theme.git
synced 2026-08-24 10:04:43 -05:00
Fix another css syntax error in darkwolf theme
CssSyntaxError: themes/darkwolf/css/theme.rtl.css:5432:26: Missed semicolon
5430 | }
5431 | .accordion-body {
> 5432 | padding: 1rem 1.25rem background-color: #121517;
| ^
5433 | color: #999;
5434 | border: 1px dashed #555;
This commit is contained in:
@@ -5429,7 +5429,8 @@ ul#topmenu > li.active a:hover {
|
||||
border-bottom-right-radius: .25rem
|
||||
}
|
||||
.accordion-body {
|
||||
padding: 1rem 1.25rem background-color: #121517;
|
||||
padding: 1rem 1.25rem;
|
||||
background-color: #121517;
|
||||
color: #999;
|
||||
border: 1px dashed #555;
|
||||
border-top: none
|
||||
@@ -6158,7 +6159,8 @@ div#ajaxError {
|
||||
padding: 1rem 1rem;
|
||||
border-bottom: 1px solid #333;
|
||||
border-top-right-radius: calc(0.3rem - 1px);
|
||||
border-top-left-radius: calc(0.3rem - 1px) background-color: #1B1E21;
|
||||
border-top-left-radius: calc(0.3rem - 1px);
|
||||
background-color: #1B1E21;
|
||||
border-top: none !important
|
||||
}
|
||||
.modal-header .btn-close {
|
||||
|
||||
Reference in New Issue
Block a user