12345678910111213141516171819202122232425262728293031323334 |
- .index-status {
- border: 1px solid transparent;
- }
- .index-status span {
- padding: 0.3rem 0.7rem;
- border-radius: 4px;
- line-height: 1.7;
- vertical-align: middle;
- display: inline-block;
- }
- .index-status .error {
- background: #ddd;
- color: #c00;
- }
- .index-status .success {
- border: 1px solid #ddd;
- color: #999;
- }
- #admin-main .admin-block .index-status .button.critical {
- background: #c00;
- color: #fff;
- }
- #admin-main .admin-block .index-status .button.reindex {
- background: #0079BA;
- color: #fff;
- }
- .tntsearch-error-details {
- padding: .2rem .5rem;
- margin: 1rem 0;
- border-radius: 3px;
- display: none;
- }
|