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:
William Desportes
2023-01-12 09:42:33 +04:00
parent bf24847614
commit df7ce47092
+4 -2
View File
@@ -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 {