- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
52 lines
1.1 KiB
CSS
52 lines
1.1 KiB
CSS
.ui-timepicker-list {
|
|
overflow-y: auto;
|
|
height: 150px;
|
|
width: 6.5em;
|
|
background: #fff;
|
|
border: 1px solid #ddd;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);
|
|
-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);
|
|
box-shadow:0 5px 10px rgba(0,0,0,0.2);
|
|
outline: none;
|
|
z-index: 10001;
|
|
}
|
|
|
|
.ui-timepicker-list.ui-timepicker-with-duration {
|
|
width: 11em;
|
|
}
|
|
|
|
.ui-timepicker-duration {
|
|
margin-left: 5px; color: #888;
|
|
}
|
|
|
|
.ui-timepicker-list:hover .ui-timepicker-duration {
|
|
color: #888;
|
|
}
|
|
|
|
.ui-timepicker-list li {
|
|
padding: 3px 0 3px 5px;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
color: #000;
|
|
list-style: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.ui-timepicker-list:hover .ui-timepicker-selected {
|
|
background: #fff; color: #000;
|
|
}
|
|
|
|
li.ui-timepicker-selected,
|
|
.ui-timepicker-list li:hover,
|
|
.ui-timepicker-list:hover .ui-timepicker-selected:hover {
|
|
background: #1980EC; color: #fff;
|
|
}
|
|
|
|
li.ui-timepicker-selected .ui-timepicker-duration,
|
|
.ui-timepicker-list li:hover .ui-timepicker-duration {
|
|
color: #ccc;
|
|
}
|