- 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.
74 lines
1.8 KiB
Plaintext
74 lines
1.8 KiB
Plaintext
// Datepicker .less buildfile. Includes select mixins/variables from bootstrap
|
|
// and imports the included datepicker.less to output a minimal datepicker.css
|
|
//
|
|
// Usage:
|
|
// lessc build3.less datepicker.css
|
|
//
|
|
// Variables and mixins copied from bootstrap 2.0.2
|
|
|
|
// Variables
|
|
@gray: lighten(#000, 33.5%); // #555
|
|
@gray-light: lighten(#000, 60%); // #999
|
|
@gray-lighter: lighten(#000, 93.5%); // #eee
|
|
|
|
@input-border: #ccc;
|
|
|
|
@brand-primary: #428bca;
|
|
//@btn-default-color: #333;
|
|
//@btn-default-bg: #fff;
|
|
//@btn-default-border: #ccc;
|
|
@btn-primary-color: #fff;
|
|
@btn-primary-bg: @brand-primary;
|
|
@btn-primary-border: darken(@btn-primary-bg, 5%);
|
|
|
|
|
|
@btn-link-disabled-color: @gray-light;
|
|
|
|
@input-group-addon-bg: @gray-lighter;
|
|
@input-group-addon-border-color: @input-border;
|
|
|
|
@state-info-bg: #d9edf7;
|
|
|
|
@font-size-base: 14px;
|
|
@line-height-base: 1.428571429; // 20/14
|
|
@line-height-computed: floor(@font-size-base * @line-height-base); // ~20px
|
|
|
|
|
|
// Mixins
|
|
|
|
// Button variants
|
|
.button-variant(@color; @background; @border) {
|
|
color: @color;
|
|
background-color: @background;
|
|
border-color: @border;
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active,
|
|
&.active,
|
|
.open .dropdown-toggle& {
|
|
color: @color;
|
|
background-color: darken(@background, 8%);
|
|
border-color: darken(@border, 12%);
|
|
}
|
|
&:active,
|
|
&.active,
|
|
.open .dropdown-toggle& {
|
|
background-image: none;
|
|
}
|
|
&.disabled,
|
|
&[disabled],
|
|
fieldset[disabled] & {
|
|
&,
|
|
&:hover,
|
|
&:focus,
|
|
&:active,
|
|
&.active {
|
|
background-color: @background;
|
|
border-color: @border
|
|
}
|
|
}
|
|
}
|
|
|
|
@import "../less/datepicker3.less";
|