├── .gitignore ├── .travis.yml ├── README.md ├── assets ├── css │ ├── bootstrap.min.css │ └── themes │ │ ├── tableview-a.css │ │ └── tableview-a.css.map ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── js │ └── jquery-1.9.1.min.js └── less │ └── themes │ └── a │ ├── _components.less │ ├── _helper.less │ ├── _mixins.less │ ├── _responsive.less │ ├── _variable.less │ ├── components │ ├── _btn.less │ ├── _form.less │ ├── _pagination.less │ ├── _panel.less │ └── _table.less │ └── style.less ├── composer.json ├── phpspec.yml ├── phpunit.xml ├── src ├── CookieStorage │ ├── LookInStorage.php │ └── UpdateStorage.php ├── Facades │ └── TableView.php ├── LaravelTableView.php ├── LaravelTableViewColumn.php ├── LaravelTableViewServiceProvider.php ├── Middleware │ └── TableViewCookieStorage.php ├── Presenters │ ├── LaravelTableViewPresenter.php │ ├── PerPageDropdownPresenter.php │ ├── RoutePresenter.php │ ├── SortArrowsPresenter.php │ └── TableViewTitlePresenter.php └── Repositories │ ├── SearchRepository.php │ └── SortRepository.php ├── tests └── ExampleTest.php └── views ├── container.blade.php ├── elements ├── _per_page_dropdown.blade.php ├── _search_form.blade.php └── _sort_arrows.blade.php ├── partials ├── _empty.blade.php └── _filled.blade.php └── scripts.blade.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | composer.lock 3 | vendor 4 | .DS_Store 5 | .idea 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.4 5 | - 5.5 6 | - 5.6 7 | - hhvm 8 | 9 | before_script: 10 | - travis_retry composer self-update 11 | - travis_retry composer install --prefer-source --no-interaction --dev 12 | 13 | script: phpunit 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # laravel-table-view 2 | 3 | Laravel 5 Package for easily displaying table views for Eloquent Collections with search and sort functionality built in. 4 | 5 | Installation 6 | ---- 7 | 8 | Update your `composer.json` file to include this package as a dependency 9 | ```json 10 | "witty/laravel-table-view": "dev-master" 11 | ``` 12 | 13 | 14 | Register the TableView service provider by adding it to the providers array in the `config/app.php` file. 15 | ```php 16 | 'providers' => array( 17 | Witty\LaravelTableView\LaravelTableViewServiceProvider::class 18 | ) 19 | ``` 20 | 21 | If you want you can alias the TableView facade by adding it to the aliases array in the `config/app.php` file. 22 | ```php 23 | 'aliases' => array( 24 | 'TableView' => Witty\LaravelTableView\Facades\TableView::class, 25 | ) 26 | ``` 27 | 28 | # Configuration 29 | 30 | Copy the vendor file views and assets into your project by running 31 | ``` 32 | php artisan vendor:publish 33 | ``` 34 | 35 | This will add multiple styles and one script to public/vendor/table-view 36 | The plugin depends on jQuery and v1.9.1 will be included under public/vendor/table-view 37 | - Bootstrap CSS v3.3.2 38 | - Font Awesome v4.3.0 39 | - jQuery v1.9.1 40 | 41 | 42 | 43 | # Usage 44 | 45 | Initialize the table view by passing in an instance of \Illuminate\Eloquent\Builder or simply the class name of the model for the tableview 46 | ```php 47 | 48 | $users = User::select('id', 'name', 'email', 'created_at'); 49 | 50 | $usersTableView = TableView::collection( $users ) 51 | // or $usersTableView = TableView::collection( \App\User::class ) 52 | 53 | ``` 54 | 55 | Adding Columns to the tableview 56 | ```php 57 | 58 | $usersTableView = $usersTableView 59 | // you can pass in the title for the column, and the Eloquent\Model property name 60 | ->column('Email', 'email') 61 | 62 | // Add a colon after the Eloquent\Model property name along with sort and/or search to enable these options 63 | ->column('Name', 'name:sort,search') 64 | 65 | // Set the default sorting property with 66 | ->column('Name', 'name:sort*,search') // Sorted Ascending by default or specify 67 | ->column('Name', 'name:sort*:asc') 68 | ->column('Name', 'name:sort*:desc') 69 | 70 | // Custom column values are created by passing an array with the Eloquent\Model property name as the key 71 | // and a closure function 72 | ->column('Joined At', ['created_at:sort*' => function ($user) 73 | { 74 | return $user->created_at->diffForHumans(); 75 | }]) 76 | 77 | 78 | 79 | // OR 80 | ->column(function ($user) 81 | { 82 | return ''; 83 | }) 84 | ->column('Email', 'email:sort,search') 85 | ->column(function ($user) 86 | { 87 | return 'View'; 88 | }); 89 | 90 | ``` 91 | 92 | Custom column values 93 | ```php 94 | 95 | $usersTableView = $usersTableView 96 | // You can pass in an array for the column's row value with the Eloquent\Model property name as the key 97 | // and a closure function 98 | ->column('Joined At', ['created_at:sort*' => function ($user) 99 | { 100 | return $user->created_at->diffForHumans(); 101 | }]) 102 | 103 | // OR if sorting and searching is unnecessary, simply pass in the Closure instead of the array 104 | ->column('Image', function ($user) 105 | { 106 | return ''; 107 | }); 108 | }]); 109 | 110 | ``` 111 | 112 | Columns without titles 113 | ```php 114 | 115 | $usersTableView = $usersTableView 116 | // Just leave the column title out if you don't want to use it 117 | ->column(function ($user) 118 | { 119 | return ''; 120 | }); 121 | 122 | ``` 123 | 124 | Additional Controls - you can add partial views containing custom controls like a filter button to add additional functionality to your table 125 | ```php 126 | $usersTableView = $usersTableView 127 | // Just pass in the partial view file path of the custom control 128 | ->headerControl('_types_filter_button'); 129 | 130 | // access the TableView data collection with $usersTableView->data() 131 | 132 | ``` 133 | 134 | Finally, build the TableView and pass it to the view 135 | ```php 136 | 137 | $usersTableView = $usersTableView->build(); 138 | 139 | return view('test', [ 140 | 'usersTableView' => $usersTableView 141 | ]); 142 | 143 | ``` 144 | 145 | All together with chaining 146 | ```php 147 | 148 | Route::get('/', function(\Illuminate\Http\Request $request) 149 | { 150 | $users = User::select('id', 'name', 'email', 'created_at'); 151 | 152 | $usersTableView = TableView::collection( $users, 'Administrator' ) 153 | ->column(function ($user) 154 | { 155 | return ''; 156 | }) 157 | ->column('Name', 'name:sort,search') 158 | ->column('Email', 'email:sort,search') 159 | ->column('Joined At', ['created_at:sort*' => function ($user) 160 | { 161 | return $user->created_at->diffForHumans(); 162 | }]) 163 | ->column(function ($user) 164 | { 165 | return 'View'; 166 | }) 167 | ->headerControl('_types_filter_button') 168 | ->build(); 169 | 170 | return view('test', [ 171 | 'usersTableView' => $usersTableView 172 | ]); 173 | }); 174 | 175 | ``` 176 | # Front End 177 | Include stylesheets for Bootstrap and Font Awesome 178 | - Bootstrap CSS v3.3.2 and Font Awesome v4.3.0 are included in the vendor 179 | ```html 180 | 181 | 182 | 183 | 184 | 185 | ``` 186 | 187 | Include the tablview in your view, referencing the variable name given to it 188 | ```html 189 | 190 | @include('table-view::container', ['tableView' => $usersTableView]) 191 | 192 | ``` 193 | 194 | Also include the tablview scripts 195 | ** Requires jQuery and v1.9.1 will be included under public/vendor/table-view 196 | ```html 197 | 198 | 199 | 200 | @include('table-view::scripts') 201 | 202 | ``` 203 | 204 | # Middleware Cookie Storage 205 | Selected options for the tableview are easily added to cookie storage with built-in Middleware. 206 | 207 | Sort options and limits per page are each added to permanent storage. At any point, a user returning to the tableview will see these options filled with the same values that he/she selected in his/her most recent session. 208 | 209 | The search query and page number are temporarily stored during the user's current session. With this, a user could visit something http://tableview.com/blog-articles with the tableview listing articles. When a user views a specific article like http://tableview.com/blog-articles/laravel-blog/article, any link back to http://tableview.com/blog-articles will show the tableview with its most recent page number and search query. 210 | 211 | All you have to do: 212 | 213 | Edit app/Http/Kernel.php, adding a reference to the Middleware 214 | ```php 215 | 216 | /** 217 | * The application's route middleware. 218 | * 219 | * @var array 220 | */ 221 | protected $routeMiddleware = [ 222 | 'auth' => \App\Http\Middleware\Authenticate::class, 223 | 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, 224 | 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, 225 | 226 | // Laravel TableView Middleware 227 | 'table-view.storage' => \Witty\LaravelTableView\Middleware\TableViewCookieStorage::class, 228 | ]; 229 | ``` 230 | 231 | Then add it to the route containing the tableview 232 | ```php 233 | 234 | Route::get('/', ['middleware' => 'table-view.storage', function () { 235 | 236 | ``` 237 | 238 | # That's it! 239 | It's particular but in just a few lines you have a dynamic table view with powerful functionality. Feel free to customize the tableview and element partial views. Additional themes and styles coming soon. 240 | -------------------------------------------------------------------------------- /assets/css/themes/tableview-a.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["style.css","components/_btn.less","_mixins.less","components/_form.less","components/_pagination.less","components/_panel.less","components/_table.less","_helper.less","_responsive.less"],"names":[],"mappings":"AAAA,eAAc;AACd,aAAY;AACZ,aAAY;ACAZ;EACI,kBAAA;ECEM,oBAAA;EFGT;ACFG;;;EAGI,eAAA;EDIP;ACFG;;ECDM,gDAAA;EFST;ACHD;;EAEI,uBAAA;EACA,aAAA;EACA,cAAA;EACA,YAAA;EACA,cAAA;EACA,mBAAA;EACA,oBAAA;EACA,iBAAA;EDKH;ACHG;;EACI,aAAA;EACA,cAAA;EACA,gBAAA;EACA,mBAAA;EDMP;ACJG;;EACI,aAAA;EACA,cAAA;EACA,iBAAA;EACA,mBAAA;EDOP;ACLG;;EACI,aAAA;EACA,cAAA;EACA,iBAAA;EACA,mBAAA;EDQP;ACNG;;;;EAEI,0BAAA;EDUP;ACND;;EC9CU,oBAAA;EF0DT;ACRD;EACI,iBAAA;EACA,cAAA;EACA,aAAA;EACA,eAAA;EDUH;ACRD;EACI,oBAAA;EACA,qBAAA;EDUH;AACD;;;;GAIE;AEzDE;EACI,aAAA;EACA,qBAAA;EACA,uBAAA;EF2DP;AEzDO;;;;EAII,qBAAA;EACA,uBAAA;EF2DX;AEvDG;EACI,qBAAA;EACA,uBAAA;EFyDP;AEvDG;;EAEI,4BAAA;EFyDP;AE7EG;EACI,aAAA;EACA,qBAAA;EACA,uBAAA;EF+EP;AE7EO;;;;EAII,qBAAA;EACA,uBAAA;EF+EX;AE3EG;EACI,qBAAA;EACA,uBAAA;EF6EP;AE3EG;;EAEI,4BAAA;EF6EP;AEjGG;EACI,aAAA;EACA,qBAAA;EACA,uBAAA;EFmGP;AEjGO;;;;EAII,qBAAA;EACA,uBAAA;EFmGX;AE/FG;EACI,qBAAA;EACA,uBAAA;EFiGP;AE/FG;;EAEI,4BAAA;EFiGP;AErHG;EACI,aAAA;EACA,qBAAA;EACA,uBAAA;EFuHP;AErHO;;;;EAII,qBAAA;EACA,uBAAA;EFuHX;AEnHG;EACI,qBAAA;EACA,uBAAA;EFqHP;AEnHG;;EAEI,4BAAA;EFqHP;AEzIG;EACI,aAAA;EACA,qBAAA;EACA,uBAAA;EF2IP;AEzIO;;;;EAII,qBAAA;EACA,uBAAA;EF2IX;AEvIG;EACI,qBAAA;EACA,uBAAA;EFyIP;AEvIG;;EAEI,4BAAA;EFyIP;AE7JG;EACI,aAAA;EACA,qBAAA;EACA,uBAAA;EF+JP;AE7JO;;;;EAII,qBAAA;EACA,uBAAA;EF+JX;AE3JG;EACI,qBAAA;EACA,uBAAA;EF6JP;AE3JG;;EAEI,4BAAA;EF6JP;AEjLG;EACI,aAAA;EACA,qBAAA;EACA,uBAAA;EFmLP;AEjLO;;;;EAII,qBAAA;EACA,uBAAA;EFmLX;AE/KG;EACI,qBAAA;EACA,uBAAA;EFiLP;AE/KG;;EAEI,4BAAA;EFiLP;AC3HD;EACI,qBAAA;EACA,aAAA;EACA,qBAAA;EACA,uBAAA;ED6HH;AC3HG;;;;EAII,qBAAA;EACA,uBAAA;ED6HP;AC1HG;EACI,uBAAA;ED4HP;AC1HO;;;EAGI,oBAAA;ED4HX;AC1HO;;EAEI,oBAAA;ED4HX;ACxHD;EACI,qBAAA;EACA,uBAAA;ED0HH;ACxHD;;EAEI,yBAAA;ED0HH;AACD,oBAAmB;AG1PnB;EACI,2BAAA;EACA,iBAAA;EDCM,oBAAA;EAKA,kBAAA;EF4PT;AG9PD;EACI,kBAAA;EACA,oBAAA;EHgQH;AG9PD;EDFU,kBAAA;EFqQT;AGhQD;;;EAGI,qBAAA;EDLA,cAAA;EFwQH;AGhQD;;;EDXU,kBAAA;ECeN,2BAAA;EHoQH;AGlQD;EACI,uBAAA;EDlBM,kBAAA;EFyRT;AGpQD;EACI,+BAAA;EACA,WAAA;EHsQH;AGpQD;EACI,kBAAA;EHsQH;AGpQD;EACI,yBAAA;EHsQH;AGpQD;EACI,eAAA;EHsQH;AGpQD;EACI,6BAAA;EHsQH;AGpQD;EACI,8BAAA;EACA,oBAAA;EHsQH;AGpQD;EACI,WAAA;EHsQH;AGpQD;EACI,uBAAA;EHsQH;AGpQD;EACI,uBAAA;EHsQH;AGpQD;EACI,kBAAA;EHsQH;AGpQD;EACI,qBAAA;EACA,cAAA;EHsQH;AGpQD;EACI,qBAAA;EACA,kCAAA;EHsQH;AGnQD;EACC,iBAAA;EACA,oBAAA;EACA,aAAA;EHqQA;AGnQD;;EAEI,2BAAA;EACA,kBAAA;EACA,iBAAA;EACA,mBAAA;EACA,yBAAA;EACA,aAAA;EAGA,oBAAA;EHqQH;AGnQD;EACI,oBAAA;EACA,yBAAA;EACA,wBAAA;EHqQH;AGnQD;EACI,uBAAA;EACA,cAAA;EACA,mBAAA;EHqQH;AGnQD;EACI,YAAA;EACA,uBAAA;EAEA,kBAAA;EHqQH;AACD,yBAAwB;AI3WxB;;;EAGI,uBAAA;EACA,gBAAA;EJ6WH;AI3WD;;;EAGI,uBAAA;EJ6WH;AI3WD;;;;;;;;EFAI,cAAA;EESA,oBAAA;EJ6WH;AI3WD;EACI,gBAAA;EACA,kBAAA;EFrBM,+BAAA;EFqYT;AI7WD;EACI,gBAAA;EJ+WH;AI7WD;;EAEI,iBAAA;EACA,kBAAA;EJ+WH;AI7WD;;EAEI,iBAAA;EACA,kBAAA;EJ+WH;AI7WD;;;;;;EAMI,gBAAA;EACA,qBAAA;EACA,uBAAA;EJ+WH;AI7WD;;;;;;EAMI,gCAAA;EACA,kCAAA;EJ+WH;AACD,YAAW;AKzaX;EACI,cAAA;EHOM,kBAAA;EALA,oBAAA;EF+aT;AK7aG;;;EHFM,6BAAA;EFsbT;AK/aG;EHPM,4BAAA;EF2bT;AKhbD;EACI,oBAAA;EACA,cAAA;ELkbH;AKhbG;;EAEI,4BAAA;ELkbP;AKhbG;EACI,cAAA;ELkbP;AKhbG;EACI,kBAAA;ELkbP;AKhbG;EACI,kBAAA;ELkbP;AKhbG;EACI,kBAAA;ELkbP;AKhbG;EACI,kBAAA;ELkbP;AKhbG;;EAEI,mBAAA;ELkbP;AKhbG;;EAEI,YAAA;EACA,kBAAA;ELkbP;AKhbG;EACI,kBAAA;EAGA,kBAAA;ELkbP;AKhbG;EACI,mBAAA;EACA,qBAAA;ELkbP;AKhbG;EACI,oBAAA;EACA,mBAAA;ELkbP;AK/aD;EACI,qBAAA;EACA,aAAA;ELibH;AK/aD;EACI,mBAAA;EACA,iBAAA;ELibH;AK/aG;EACI,qBAAA;EACA,oBAAA;ELibP;AK/aG;EACI,kBAAA;ELibP;AK/aG;EACI,kBAAA;ELibP;AK/aG;EACI,mBAAA;ELibP;AK9aD;EHhFU,oBAAA;EFmgBT;AKhbD;EACI,kBAAA;ELkbH;AKhbD;EACI,eAAA;ELkbH;AKhbG;EACI,yBAAA;ELkbP;AKhbG;;;;EAII,uBAAA;ELkbP;AKhbG;EACI,WAAA;EACA,WAAA;ELkbP;AKhbG;;EAEI,kBAAA;ELkbP;AK/aD;EACI,4BAAA;ELibH;AK/aD;EACI,kBAAA;EACA,4BAAA;ELibH;AK/aD;EACI,qBAAA;ELibH;AK/aD;;;;;;EAMI,aAAA;ELibH;AK/aD;EAAkC,qBAAA;ELkbjC;AKjbD;EAAkC,qBAAA;ELobjC;AKnbD;EAAkC,qBAAA;ELsbjC;AKrbD;EAAiC,qBAAA;ELwbhC;AKvbD;EAAkC,qBAAA;EL0bjC;AKzbD;EAA+B,qBAAA;EL4b9B;AACD,mBAAkB;AKxblB;EACI,iBAAA;EACA,QAAA;EACA,SAAA;EACA,UAAA;EACA,WAAA;EACA,WAAA;EACA,kBAAA;EACA,eAAA;EH/IM,kBAAA;EF4kBT;AK1bG;;;;;EAKI,yBAAA;EL4bP;AKzbG;EACI,kBAAA;EL2bP;AKzbG;;EH7JM,kBAAA;EF4lBT;AK3bG;EACI,oBAAA;EACA,UAAA;EACA,SAAA;EACA,WAAA;EACA,WAAA;EACA,oBAAA;EACA,eAAA;EL6bP;AK3bG;EACI,oBAAA;EACA,SAAA;EACA,UAAA;EACA,WAAA;EL6bP;AK1bD;EACI;IAAO,UAAA;IAAU,WAAA;IAAW,YAAA;IAAY,aAAA;ILgczC;EK/bC;IAAK,QAAA;IAAQ,SAAA;IAAS,UAAA;IAAU,WAAA;ILqcjC;EACF;AKpcD;EACI;IAAO,UAAA;IAAU,WAAA;IAAW,YAAA;IAAY,aAAA;IL0czC;EKzcC;IAAK,QAAA;IAAQ,SAAA;IAAS,UAAA;IAAU,WAAA;IL+cjC;EACF;AACD,YAAW;AM3oBX;EACI,uBAAA;EJEM,oBAAA;EF8oBT;AM7oBD;EACI,gBAAA;EACA,kBAAA;EACA,6CAAA;EN+oBH;AM7oBD;;;;;;EAMI,uBAAA;EACA,oBAAA;EN+oBH;AM7oBD;;;;;;EAMI,mBAAA;EN+oBH;AM7oBD;;EAEI,gCAAA;EN+oBH;AM7oBD;;EAEI,qBAAA;EN+oBH;AM7oBD;;;;;;EAMI,+BAAA;EACA,6CAAA;EN+oBH;AM7oBD;;;;EAII,gBAAA;EN+oBH;AM7oBD;;;;;;;;;;;;EAYI,qBAAA;EACA,uBAAA;EN+oBH;AM7oBD;;;;;;;;;;;;EAYI,qBAAA;EACA,uBAAA;EN+oBH;AM7oBD;;;;;;;;;;;;EAYI,qBAAA;EACA,uBAAA;EN+oBH;AM7oBD;;;;;;;;;;;;EAYI,qBAAA;EACA,uBAAA;EN+oBH;AM7oBD;;;;;;;;;;;;EAYI,qBAAA;EACA,uBAAA;EN+oBH;AACD,yBAAwB;AO1wBxB;EAAO,iBAAA;EP6wBN;AO5wBD;EAA0B,iBAAA;EP+wBzB;AO9wBD;EAAU,2BAAA;EPixBT;AOhxBD;EAAW,0BAAA;EPmxBV;AOlxBD;EAAa,6BAAA;EPqxBZ;AOpxBD;EAAiB,2BAAA;EPuxBhB;AOtxBD;EAAmB,6BAAA;EPyxBlB;AOxxBD;EAAoB,8BAAA;EP2xBnB;AO1xBD;EAAmB,6BAAA;EP6xBlB;AO5xBD;EAAqB,+BAAA;EP+xBpB;AO9xBD;EAAsB,gCAAA;EPiyBrB;AOhyBD;EAAqB,+BAAA;EPmyBpB;AOlyBD;EAAqB,+BAAA;EPqyBpB;AOpyBD;EAAsB,gCAAA;EPuyBrB;AOtyBD;EAAqB,+BAAA;EPyyBpB;AOxyBD;EAAW,6BAAA;EP2yBV;AO1yBD;EAAW,6BAAA;EP6yBV;AO5yBD;EAAW,6BAAA;EP+yBV;AO9yBD;EAAW,6BAAA;EPizBV;AOhzBD;EAAW,6BAAA;EPmzBV;AOlzBD;EAAW,6BAAA;EPqzBV;AOpzBD;EAAW,6BAAA;EPuzBV;AOtzBD;EAAe,+BAAA;EPyzBd;AOxzBD;EAAa,6BAAA;EP2zBZ;AO1zBD;EAAc,8BAAA;EP6zBb;AO5zBD;EAAa,wBAAA;EP+zBZ;AO9zBD;EAAc,yBAAA;EPi0Bb;AOh0BD;EAAa,wBAAA;EPm0BZ;AACD,8BAA6B;AO/zBzB;EAAgB,yBAAA;EPk0BnB;AOj0BG;EAAkB,6BAAA;EPo0BrB;AOn0BG;EAAkB,+BAAA;EPs0BrB;AOr0BG;EAAkB,gCAAA;EPw0BrB;AOv0BG;EAAkB,8BAAA;EP00BrB;AOx0BG;EAAgB,0BAAA;EP20BnB;AO10BG;EAAkB,8BAAA;EP60BrB;AO50BG;EAAkB,gCAAA;EP+0BrB;AO90BG;EAAkB,iCAAA;EPi1BrB;AOh1BG;EAAkB,+BAAA;EPm1BrB;AO71BG;EAAgB,yBAAA;EPg2BnB;AO/1BG;EAAkB,6BAAA;EPk2BrB;AOj2BG;EAAkB,+BAAA;EPo2BrB;AOn2BG;EAAkB,gCAAA;EPs2BrB;AOr2BG;EAAkB,8BAAA;EPw2BrB;AOt2BG;EAAgB,0BAAA;EPy2BnB;AOx2BG;EAAkB,8BAAA;EP22BrB;AO12BG;EAAkB,gCAAA;EP62BrB;AO52BG;EAAkB,iCAAA;EP+2BrB;AO92BG;EAAkB,+BAAA;EPi3BrB;AO33BG;EAAgB,yBAAA;EP83BnB;AO73BG;EAAkB,6BAAA;EPg4BrB;AO/3BG;EAAkB,+BAAA;EPk4BrB;AOj4BG;EAAkB,gCAAA;EPo4BrB;AOn4BG;EAAkB,8BAAA;EPs4BrB;AOp4BG;EAAgB,0BAAA;EPu4BnB;AOt4BG;EAAkB,8BAAA;EPy4BrB;AOx4BG;EAAkB,gCAAA;EP24BrB;AO14BG;EAAkB,iCAAA;EP64BrB;AO54BG;EAAkB,+BAAA;EP+4BrB;AOz5BG;EAAgB,yBAAA;EP45BnB;AO35BG;EAAkB,6BAAA;EP85BrB;AO75BG;EAAkB,+BAAA;EPg6BrB;AO/5BG;EAAkB,gCAAA;EPk6BrB;AOj6BG;EAAkB,8BAAA;EPo6BrB;AOl6BG;EAAgB,0BAAA;EPq6BnB;AOp6BG;EAAkB,8BAAA;EPu6BrB;AOt6BG;EAAkB,gCAAA;EPy6BrB;AOx6BG;EAAkB,iCAAA;EP26BrB;AO16BG;EAAkB,+BAAA;EP66BrB;AOv7BG;EAAgB,yBAAA;EP07BnB;AOz7BG;EAAkB,6BAAA;EP47BrB;AO37BG;EAAkB,+BAAA;EP87BrB;AO77BG;EAAkB,gCAAA;EPg8BrB;AO/7BG;EAAkB,8BAAA;EPk8BrB;AOh8BG;EAAgB,0BAAA;EPm8BnB;AOl8BG;EAAkB,8BAAA;EPq8BrB;AOp8BG;EAAkB,gCAAA;EPu8BrB;AOt8BG;EAAkB,iCAAA;EPy8BrB;AOx8BG;EAAkB,+BAAA;EP28BrB;AOr9BG;EAAgB,yBAAA;EPw9BnB;AOv9BG;EAAkB,6BAAA;EP09BrB;AOz9BG;EAAkB,+BAAA;EP49BrB;AO39BG;EAAkB,gCAAA;EP89BrB;AO79BG;EAAkB,8BAAA;EPg+BrB;AO99BG;EAAgB,0BAAA;EPi+BnB;AOh+BG;EAAkB,8BAAA;EPm+BrB;AOl+BG;EAAkB,gCAAA;EPq+BrB;AOp+BG;EAAkB,iCAAA;EPu+BrB;AOt+BG;EAAkB,+BAAA;EPy+BrB;AOn/BG;EAAgB,yBAAA;EPs/BnB;AOr/BG;EAAkB,6BAAA;EPw/BrB;AOv/BG;EAAkB,+BAAA;EP0/BrB;AOz/BG;EAAkB,gCAAA;EP4/BrB;AO3/BG;EAAkB,8BAAA;EP8/BrB;AO5/BG;EAAgB,0BAAA;EP+/BnB;AO9/BG;EAAkB,8BAAA;EPigCrB;AOhgCG;EAAkB,gCAAA;EPmgCrB;AOlgCG;EAAkB,iCAAA;EPqgCrB;AOpgCG;EAAkB,+BAAA;EPugCrB;AOjhCG;EAAgB,yBAAA;EPohCnB;AOnhCG;EAAkB,6BAAA;EPshCrB;AOrhCG;EAAkB,+BAAA;EPwhCrB;AOvhCG;EAAkB,gCAAA;EP0hCrB;AOzhCG;EAAkB,8BAAA;EP4hCrB;AO1hCG;EAAgB,0BAAA;EP6hCnB;AO5hCG;EAAkB,8BAAA;EP+hCrB;AO9hCG;EAAkB,gCAAA;EPiiCrB;AOhiCG;EAAkB,iCAAA;EPmiCrB;AOliCG;EAAkB,+BAAA;EPqiCrB;AO/iCG;EAAgB,yBAAA;EPkjCnB;AOjjCG;EAAkB,6BAAA;EPojCrB;AOnjCG;EAAkB,+BAAA;EPsjCrB;AOrjCG;EAAkB,gCAAA;EPwjCrB;AOvjCG;EAAkB,8BAAA;EP0jCrB;AOxjCG;EAAgB,0BAAA;EP2jCnB;AO1jCG;EAAkB,8BAAA;EP6jCrB;AO5jCG;EAAkB,gCAAA;EP+jCrB;AO9jCG;EAAkB,iCAAA;EPikCrB;AOhkCG;EAAkB,+BAAA;EPmkCrB;AO7kCG;EAAgB,yBAAA;EPglCnB;AO/kCG;EAAkB,6BAAA;EPklCrB;AOjlCG;EAAkB,+BAAA;EPolCrB;AOnlCG;EAAkB,gCAAA;EPslCrB;AOrlCG;EAAkB,8BAAA;EPwlCrB;AOtlCG;EAAgB,0BAAA;EPylCnB;AOxlCG;EAAkB,8BAAA;EP2lCrB;AO1lCG;EAAkB,gCAAA;EP6lCrB;AO5lCG;EAAkB,iCAAA;EP+lCrB;AO9lCG;EAAkB,+BAAA;EPimCrB;AO3mCG;EAAgB,yBAAA;EP8mCnB;AO7mCG;EAAkB,6BAAA;EPgnCrB;AO/mCG;EAAkB,+BAAA;EPknCrB;AOjnCG;EAAkB,gCAAA;EPonCrB;AOnnCG;EAAkB,8BAAA;EPsnCrB;AOpnCG;EAAgB,0BAAA;EPunCnB;AOtnCG;EAAkB,8BAAA;EPynCrB;AOxnCG;EAAkB,gCAAA;EP2nCrB;AO1nCG;EAAkB,iCAAA;EP6nCrB;AO5nCG;EAAkB,+BAAA;EP+nCrB;AOzoCG;EAAgB,yBAAA;EP4oCnB;AO3oCG;EAAkB,6BAAA;EP8oCrB;AO7oCG;EAAkB,+BAAA;EPgpCrB;AO/oCG;EAAkB,gCAAA;EPkpCrB;AOjpCG;EAAkB,8BAAA;EPopCrB;AOlpCG;EAAgB,0BAAA;EPqpCnB;AOppCG;EAAkB,8BAAA;EPupCrB;AOtpCG;EAAkB,gCAAA;EPypCrB;AOxpCG;EAAkB,iCAAA;EP2pCrB;AO1pCG;EAAkB,+BAAA;EP6pCrB;AOvqCG;EAAgB,yBAAA;EP0qCnB;AOzqCG;EAAkB,6BAAA;EP4qCrB;AO3qCG;EAAkB,+BAAA;EP8qCrB;AO7qCG;EAAkB,gCAAA;EPgrCrB;AO/qCG;EAAkB,8BAAA;EPkrCrB;AOhrCG;EAAgB,0BAAA;EPmrCnB;AOlrCG;EAAkB,8BAAA;EPqrCrB;AOprCG;EAAkB,gCAAA;EPurCrB;AOtrCG;EAAkB,iCAAA;EPyrCrB;AOxrCG;EAAkB,+BAAA;EP2rCrB;AOrsCG;EAAgB,yBAAA;EPwsCnB;AOvsCG;EAAkB,6BAAA;EP0sCrB;AOzsCG;EAAkB,+BAAA;EP4sCrB;AO3sCG;EAAkB,gCAAA;EP8sCrB;AO7sCG;EAAkB,8BAAA;EPgtCrB;AO9sCG;EAAgB,0BAAA;EPitCnB;AOhtCG;EAAkB,8BAAA;EPmtCrB;AOltCG;EAAkB,gCAAA;EPqtCrB;AOptCG;EAAkB,iCAAA;EPutCrB;AOttCG;EAAkB,+BAAA;EPytCrB;AOnuCG;EAAgB,yBAAA;EPsuCnB;AOruCG;EAAkB,6BAAA;EPwuCrB;AOvuCG;EAAkB,+BAAA;EP0uCrB;AOzuCG;EAAkB,gCAAA;EP4uCrB;AO3uCG;EAAkB,8BAAA;EP8uCrB;AO5uCG;EAAgB,0BAAA;EP+uCnB;AO9uCG;EAAkB,8BAAA;EPivCrB;AOhvCG;EAAkB,gCAAA;EPmvCrB;AOlvCG;EAAkB,iCAAA;EPqvCrB;AOpvCG;EAAkB,+BAAA;EPuvCrB;AOjwCG;EAAgB,yBAAA;EPowCnB;AOnwCG;EAAkB,6BAAA;EPswCrB;AOrwCG;EAAkB,+BAAA;EPwwCrB;AOvwCG;EAAkB,gCAAA;EP0wCrB;AOzwCG;EAAkB,8BAAA;EP4wCrB;AO1wCG;EAAgB,0BAAA;EP6wCnB;AO5wCG;EAAkB,8BAAA;EP+wCrB;AO9wCG;EAAkB,gCAAA;EPixCrB;AOhxCG;EAAkB,iCAAA;EPmxCrB;AOlxCG;EAAkB,+BAAA;EPqxCrB;AO/xCG;EAAgB,yBAAA;EPkyCnB;AOjyCG;EAAkB,6BAAA;EPoyCrB;AOnyCG;EAAkB,+BAAA;EPsyCrB;AOryCG;EAAkB,gCAAA;EPwyCrB;AOvyCG;EAAkB,8BAAA;EP0yCrB;AOxyCG;EAAgB,0BAAA;EP2yCnB;AO1yCG;EAAkB,8BAAA;EP6yCrB;AO5yCG;EAAkB,gCAAA;EP+yCrB;AO9yCG;EAAkB,iCAAA;EPizCrB;AOhzCG;EAAkB,+BAAA;EPmzCrB;AO7zCG;EAAgB,yBAAA;EPg0CnB;AO/zCG;EAAkB,6BAAA;EPk0CrB;AOj0CG;EAAkB,+BAAA;EPo0CrB;AOn0CG;EAAkB,gCAAA;EPs0CrB;AOr0CG;EAAkB,8BAAA;EPw0CrB;AOt0CG;EAAgB,0BAAA;EPy0CnB;AOx0CG;EAAkB,8BAAA;EP20CrB;AO10CG;EAAkB,gCAAA;EP60CrB;AO50CG;EAAkB,iCAAA;EP+0CrB;AO90CG;EAAkB,+BAAA;EPi1CrB;AO31CG;EAAgB,yBAAA;EP81CnB;AO71CG;EAAkB,6BAAA;EPg2CrB;AO/1CG;EAAkB,+BAAA;EPk2CrB;AOj2CG;EAAkB,gCAAA;EPo2CrB;AOn2CG;EAAkB,8BAAA;EPs2CrB;AOp2CG;EAAgB,0BAAA;EPu2CnB;AOt2CG;EAAkB,8BAAA;EPy2CrB;AOx2CG;EAAkB,gCAAA;EP22CrB;AO12CG;EAAkB,iCAAA;EP62CrB;AO52CG;EAAkB,+BAAA;EP+2CrB;AOz3CG;EAAgB,yBAAA;EP43CnB;AO33CG;EAAkB,6BAAA;EP83CrB;AO73CG;EAAkB,+BAAA;EPg4CrB;AO/3CG;EAAkB,gCAAA;EPk4CrB;AOj4CG;EAAkB,8BAAA;EPo4CrB;AOl4CG;EAAgB,0BAAA;EPq4CnB;AOp4CG;EAAkB,8BAAA;EPu4CrB;AOt4CG;EAAkB,gCAAA;EPy4CrB;AOx4CG;EAAkB,iCAAA;EP24CrB;AO14CG;EAAkB,+BAAA;EP64CrB;AOv5CG;EAAgB,yBAAA;EP05CnB;AOz5CG;EAAkB,6BAAA;EP45CrB;AO35CG;EAAkB,+BAAA;EP85CrB;AO75CG;EAAkB,gCAAA;EPg6CrB;AO/5CG;EAAkB,8BAAA;EPk6CrB;AOh6CG;EAAgB,0BAAA;EPm6CnB;AOl6CG;EAAkB,8BAAA;EPq6CrB;AOp6CG;EAAkB,gCAAA;EPu6CrB;AOt6CG;EAAkB,iCAAA;EPy6CrB;AOx6CG;EAAkB,+BAAA;EP26CrB;AOr7CG;EAAgB,yBAAA;EPw7CnB;AOv7CG;EAAkB,6BAAA;EP07CrB;AOz7CG;EAAkB,+BAAA;EP47CrB;AO37CG;EAAkB,gCAAA;EP87CrB;AO77CG;EAAkB,8BAAA;EPg8CrB;AO97CG;EAAgB,0BAAA;EPi8CnB;AOh8CG;EAAkB,8BAAA;EPm8CrB;AOl8CG;EAAkB,gCAAA;EPq8CrB;AOp8CG;EAAkB,iCAAA;EPu8CrB;AOt8CG;EAAkB,+BAAA;EPy8CrB;AOn9CG;EAAgB,yBAAA;EPs9CnB;AOr9CG;EAAkB,6BAAA;EPw9CrB;AOv9CG;EAAkB,+BAAA;EP09CrB;AOz9CG;EAAkB,gCAAA;EP49CrB;AO39CG;EAAkB,8BAAA;EP89CrB;AO59CG;EAAgB,0BAAA;EP+9CnB;AO99CG;EAAkB,8BAAA;EPi+CrB;AOh+CG;EAAkB,gCAAA;EPm+CrB;AOl+CG;EAAkB,iCAAA;EPq+CrB;AOp+CG;EAAkB,+BAAA;EPu+CrB;AOj/CG;EAAgB,yBAAA;EPo/CnB;AOn/CG;EAAkB,6BAAA;EPs/CrB;AOr/CG;EAAkB,+BAAA;EPw/CrB;AOv/CG;EAAkB,gCAAA;EP0/CrB;AOz/CG;EAAkB,8BAAA;EP4/CrB;AO1/CG;EAAgB,0BAAA;EP6/CnB;AO5/CG;EAAkB,8BAAA;EP+/CrB;AO9/CG;EAAkB,gCAAA;EPigDrB;AOhgDG;EAAkB,iCAAA;EPmgDrB;AOlgDG;EAAkB,+BAAA;EPqgDrB;AO/gDG;EAAgB,yBAAA;EPkhDnB;AOjhDG;EAAkB,6BAAA;EPohDrB;AOnhDG;EAAkB,+BAAA;EPshDrB;AOrhDG;EAAkB,gCAAA;EPwhDrB;AOvhDG;EAAkB,8BAAA;EP0hDrB;AOxhDG;EAAgB,0BAAA;EP2hDnB;AO1hDG;EAAkB,8BAAA;EP6hDrB;AO5hDG;EAAkB,gCAAA;EP+hDrB;AO9hDG;EAAkB,iCAAA;EPiiDrB;AOhiDG;EAAkB,+BAAA;EPmiDrB;AO7iDG;EAAgB,yBAAA;EPgjDnB;AO/iDG;EAAkB,6BAAA;EPkjDrB;AOjjDG;EAAkB,+BAAA;EPojDrB;AOnjDG;EAAkB,gCAAA;EPsjDrB;AOrjDG;EAAkB,8BAAA;EPwjDrB;AOtjDG;EAAgB,0BAAA;EPyjDnB;AOxjDG;EAAkB,8BAAA;EP2jDrB;AO1jDG;EAAkB,gCAAA;EP6jDrB;AO5jDG;EAAkB,iCAAA;EP+jDrB;AO9jDG;EAAkB,+BAAA;EPikDrB;AO3kDG;EAAgB,yBAAA;EP8kDnB;AO7kDG;EAAkB,6BAAA;EPglDrB;AO/kDG;EAAkB,+BAAA;EPklDrB;AOjlDG;EAAkB,gCAAA;EPolDrB;AOnlDG;EAAkB,8BAAA;EPslDrB;AOplDG;EAAgB,0BAAA;EPulDnB;AOtlDG;EAAkB,8BAAA;EPylDrB;AOxlDG;EAAkB,gCAAA;EP2lDrB;AO1lDG;EAAkB,iCAAA;EP6lDrB;AO5lDG;EAAkB,+BAAA;EP+lDrB;AOzmDG;EAAgB,yBAAA;EP4mDnB;AO3mDG;EAAkB,6BAAA;EP8mDrB;AO7mDG;EAAkB,+BAAA;EPgnDrB;AO/mDG;EAAkB,gCAAA;EPknDrB;AOjnDG;EAAkB,8BAAA;EPonDrB;AOlnDG;EAAgB,0BAAA;EPqnDnB;AOpnDG;EAAkB,8BAAA;EPunDrB;AOtnDG;EAAkB,gCAAA;EPynDrB;AOxnDG;EAAkB,iCAAA;EP2nDrB;AO1nDG;EAAkB,+BAAA;EP6nDrB;AOvoDG;EAAgB,yBAAA;EP0oDnB;AOzoDG;EAAkB,6BAAA;EP4oDrB;AO3oDG;EAAkB,+BAAA;EP8oDrB;AO7oDG;EAAkB,gCAAA;EPgpDrB;AO/oDG;EAAkB,8BAAA;EPkpDrB;AOhpDG;EAAgB,0BAAA;EPmpDnB;AOlpDG;EAAkB,8BAAA;EPqpDrB;AOppDG;EAAkB,gCAAA;EPupDrB;AOtpDG;EAAkB,iCAAA;EPypDrB;AOxpDG;EAAkB,+BAAA;EP2pDrB;AOrqDG;EAAgB,yBAAA;EPwqDnB;AOvqDG;EAAkB,6BAAA;EP0qDrB;AOzqDG;EAAkB,+BAAA;EP4qDrB;AO3qDG;EAAkB,gCAAA;EP8qDrB;AO7qDG;EAAkB,8BAAA;EPgrDrB;AO9qDG;EAAgB,0BAAA;EPirDnB;AOhrDG;EAAkB,8BAAA;EPmrDrB;AOlrDG;EAAkB,gCAAA;EPqrDrB;AOprDG;EAAkB,iCAAA;EPurDrB;AOtrDG;EAAkB,+BAAA;EPyrDrB;AOnsDG;EAAgB,yBAAA;EPssDnB;AOrsDG;EAAkB,6BAAA;EPwsDrB;AOvsDG;EAAkB,+BAAA;EP0sDrB;AOzsDG;EAAkB,gCAAA;EP4sDrB;AO3sDG;EAAkB,8BAAA;EP8sDrB;AO5sDG;EAAgB,0BAAA;EP+sDnB;AO9sDG;EAAkB,8BAAA;EPitDrB;AOhtDG;EAAkB,gCAAA;EPmtDrB;AOltDG;EAAkB,iCAAA;EPqtDrB;AOptDG;EAAkB,+BAAA;EPutDrB;AOjuDG;EAAgB,wBAAA;EPouDnB;AOnuDG;EAAkB,4BAAA;EPsuDrB;AOruDG;EAAkB,8BAAA;EPwuDrB;AOvuDG;EAAkB,+BAAA;EP0uDrB;AOzuDG;EAAkB,6BAAA;EP4uDrB;AO1uDG;EAAgB,yBAAA;EP6uDnB;AO5uDG;EAAkB,6BAAA;EP+uDrB;AO9uDG;EAAkB,+BAAA;EPivDrB;AOhvDG;EAAkB,gCAAA;EPmvDrB;AOlvDG;EAAkB,8BAAA;EPqvDrB;AO/vDG;EAAgB,wBAAA;EPkwDnB;AOjwDG;EAAkB,4BAAA;EPowDrB;AOnwDG;EAAkB,8BAAA;EPswDrB;AOrwDG;EAAkB,+BAAA;EPwwDrB;AOvwDG;EAAkB,6BAAA;EP0wDrB;AOxwDG;EAAgB,yBAAA;EP2wDnB;AO1wDG;EAAkB,6BAAA;EP6wDrB;AO5wDG;EAAkB,+BAAA;EP+wDrB;AO9wDG;EAAkB,gCAAA;EPixDrB;AOhxDG;EAAkB,8BAAA;EPmxDrB;AO7xDG;EAAgB,wBAAA;EPgyDnB;AO/xDG;EAAkB,4BAAA;EPkyDrB;AOjyDG;EAAkB,8BAAA;EPoyDrB;AOnyDG;EAAkB,+BAAA;EPsyDrB;AOryDG;EAAkB,6BAAA;EPwyDrB;AOtyDG;EAAgB,yBAAA;EPyyDnB;AOxyDG;EAAkB,6BAAA;EP2yDrB;AO1yDG;EAAkB,+BAAA;EP6yDrB;AO5yDG;EAAkB,gCAAA;EP+yDrB;AO9yDG;EAAkB,8BAAA;EPizDrB;AO3zDG;EAAgB,wBAAA;EP8zDnB;AO7zDG;EAAkB,4BAAA;EPg0DrB;AO/zDG;EAAkB,8BAAA;EPk0DrB;AOj0DG;EAAkB,+BAAA;EPo0DrB;AOn0DG;EAAkB,6BAAA;EPs0DrB;AOp0DG;EAAgB,yBAAA;EPu0DnB;AOt0DG;EAAkB,6BAAA;EPy0DrB;AOx0DG;EAAkB,+BAAA;EP20DrB;AO10DG;EAAkB,gCAAA;EP60DrB;AO50DG;EAAkB,8BAAA;EP+0DrB;AOz1DG;EAAgB,wBAAA;EP41DnB;AO31DG;EAAkB,4BAAA;EP81DrB;AO71DG;EAAkB,8BAAA;EPg2DrB;AO/1DG;EAAkB,+BAAA;EPk2DrB;AOj2DG;EAAkB,6BAAA;EPo2DrB;AOl2DG;EAAgB,yBAAA;EPq2DnB;AOp2DG;EAAkB,6BAAA;EPu2DrB;AOt2DG;EAAkB,+BAAA;EPy2DrB;AOx2DG;EAAkB,gCAAA;EP22DrB;AO12DG;EAAkB,8BAAA;EP62DrB;AOv3DG;EAAgB,wBAAA;EP03DnB;AOz3DG;EAAkB,4BAAA;EP43DrB;AO33DG;EAAkB,8BAAA;EP83DrB;AO73DG;EAAkB,+BAAA;EPg4DrB;AO/3DG;EAAkB,6BAAA;EPk4DrB;AOh4DG;EAAgB,yBAAA;EPm4DnB;AOl4DG;EAAkB,6BAAA;EPq4DrB;AOp4DG;EAAkB,+BAAA;EPu4DrB;AOt4DG;EAAkB,gCAAA;EPy4DrB;AOx4DG;EAAkB,8BAAA;EP24DrB;AOr5DG;EAAgB,wBAAA;EPw5DnB;AOv5DG;EAAkB,4BAAA;EP05DrB;AOz5DG;EAAkB,8BAAA;EP45DrB;AO35DG;EAAkB,+BAAA;EP85DrB;AO75DG;EAAkB,6BAAA;EPg6DrB;AO95DG;EAAgB,yBAAA;EPi6DnB;AOh6DG;EAAkB,6BAAA;EPm6DrB;AOl6DG;EAAkB,+BAAA;EPq6DrB;AOp6DG;EAAkB,gCAAA;EPu6DrB;AOt6DG;EAAkB,8BAAA;EPy6DrB;AOn7DG;EAAgB,wBAAA;EPs7DnB;AOr7DG;EAAkB,4BAAA;EPw7DrB;AOv7DG;EAAkB,8BAAA;EP07DrB;AOz7DG;EAAkB,+BAAA;EP47DrB;AO37DG;EAAkB,6BAAA;EP87DrB;AO57DG;EAAgB,yBAAA;EP+7DnB;AO97DG;EAAkB,6BAAA;EPi8DrB;AOh8DG;EAAkB,+BAAA;EPm8DrB;AOl8DG;EAAkB,gCAAA;EPq8DrB;AOp8DG;EAAkB,8BAAA;EPu8DrB;AOj9DG;EAAgB,wBAAA;EPo9DnB;AOn9DG;EAAkB,4BAAA;EPs9DrB;AOr9DG;EAAkB,8BAAA;EPw9DrB;AOv9DG;EAAkB,+BAAA;EP09DrB;AOz9DG;EAAkB,6BAAA;EP49DrB;AO19DG;EAAgB,yBAAA;EP69DnB;AO59DG;EAAkB,6BAAA;EP+9DrB;AO99DG;EAAkB,+BAAA;EPi+DrB;AOh+DG;EAAkB,gCAAA;EPm+DrB;AOl+DG;EAAkB,8BAAA;EPq+DrB;AO/+DG;EAAgB,wBAAA;EPk/DnB;AOj/DG;EAAkB,4BAAA;EPo/DrB;AOn/DG;EAAkB,8BAAA;EPs/DrB;AOr/DG;EAAkB,+BAAA;EPw/DrB;AOv/DG;EAAkB,6BAAA;EP0/DrB;AOx/DG;EAAgB,yBAAA;EP2/DnB;AO1/DG;EAAkB,6BAAA;EP6/DrB;AO5/DG;EAAkB,+BAAA;EP+/DrB;AO9/DG;EAAkB,gCAAA;EPigErB;AOhgEG;EAAkB,8BAAA;EPmgErB;AACD,uBAAsB;AO1/DlB;EAAkB,4BAAA;EP6/DrB;AO7/DG;EAAkB,4BAAA;EPggErB;AOhgEG;EAAkB,4BAAA;EPmgErB;AOngEG;EAAkB,4BAAA;EPsgErB;AOtgEG;EAAkB,4BAAA;EPygErB;AOzgEG;EAAkB,4BAAA;EP4gErB;AO5gEG;EAAkB,4BAAA;EP+gErB;AO/gEG;EAAkB,4BAAA;EPkhErB;AOlhEG;EAAkB,4BAAA;EPqhErB;AOrhEG;EAAkB,4BAAA;EPwhErB;AOxhEG;EAAkB,4BAAA;EP2hErB;AO3hEG;EAAkB,2BAAA;EP8hErB;AO9hEG;EAAkB,2BAAA;EPiiErB;AO1hED;;EAEI,mCAAA;EP4hEH;AO1hED;;EAEI,mCAAA;EP4hEH;AO1hED;;EAEI,gCAAA;EP4hEH;AO1hED;;EAEI,gCAAA;EP4hEH;AO1hED;;EAEI,mCAAA;EP4hEH;AO1hED;;EAEI,mCAAA;EP4hEH;AO1hED;EAAgB,2BAAA;EP6hEf;AO5hED;;EAEI,2BAAA;EP8hEH;AO5hED;EAAgB,2BAAA;EP+hEf;AO9hED;;EAEI,2BAAA;EPgiEH;AO9hED;EAAa,2BAAA;EPiiEZ;AOhiED;;EAEI,2BAAA;EPkiEH;AOhiED;EAAgB,2BAAA;EPmiEf;AOliED;;EAEI,2BAAA;EPoiEH;AOliED;EAAgB,2BAAA;EPqiEf;AOpiED;;EAEI,2BAAA;EPsiEH;AOpiED;EAAe,2BAAA;EPuiEd;AOtiED;;EAEI,2BAAA;EPwiEH;AOtiED;EAAc,wBAAA;EPyiEb;AOxiED;;EAEI,2BAAA;EP0iEH;AOviED;EAAY,gCAAA;EP0iEX;AOziED;EAAqB,gCAAA;EP4iEpB;AO3iED;EAAa,gCAAA;EP8iEZ;AO7iED;EAAoB,gCAAA;EPgjEnB;AO9iED;EAAY,gCAAA;EPijEX;AOhjED;EAAmB,gCAAA;EPmjElB;AOljED;EAAoB,gCAAA;EPqjEnB;AOnjED;EAAW,gCAAA;EPsjEV;AOrjED;EAAkB,gCAAA;EPwjEjB;AOvjED;EAAmB,gCAAA;EP0jElB;AOxjED;EAAU,gCAAA;EP2jET;AO1jED;EAAiB,gCAAA;EP6jEhB;AO5jED;EAAkB,gCAAA;EP+jEjB;AO7jED;EAAa,gCAAA;EPgkEZ;AO/jED;EAAoB,gCAAA;EPkkEnB;AOjkED;EAAqB,gCAAA;EPokEpB;AOlkED;EAAa,gCAAA;EPqkEZ;AOpkED;EAAoB,gCAAA;EPukEnB;AOtkED;EAAqB,gCAAA;EPykEpB;AOvkED;EAAY,gCAAA;EP0kEX;AOzkED;EAAmB,gCAAA;EP4kElB;AO3kED;EAAoB,gCAAA;EP8kEnB;AO5kED;EAAW,gCAAA;EP+kEV;AO9kED;EAAkB,gCAAA;EPilEjB;AOhlED;EAAmB,gCAAA;EPmlElB;AOjlED;EAAW,gCAAA;EPolEV;AOnlED;EAAkB,gCAAA;EPslEjB;AOrlED;EAAmB,gCAAA;EPwlElB;AOtlED;EAAa,gCAAA;EPylEZ;AOxlED;EAAoB,gCAAA;EP2lEnB;AO1lED;EAAqB,gCAAA;EP6lEpB;AO3lED;EAAS,6BAAA;EP8lER;AO5lED;EAAa,0BAAA;EP+lEZ;AO9lED;EAAa,0BAAA;EPimEZ;AOhmED;EAAa,0BAAA;EPmmEZ;AOlmED;EAAa,0BAAA;EPqmEZ;AOpmED;EAAe,yBAAA;EPumEd;AOtmED;EAAa,yBAAA;EPymEZ;AOxmED;EAAc,0BAAA;EP2mEb;AO1mED;EAAc,0BAAA;EP6mEb;AO5mED;EAAc,0BAAA;EP+mEb;AO9mED;EAAc,0BAAA;EPinEb;AOhnED;EAAc,0BAAA;EPmnEb;AOlnED;EAAc,0BAAA;EPqnEb;AOpnED;EAAc,0BAAA;EPunEb;AOtnED;EAAc,0BAAA;EPynEb;AOxnED;EAAc,0BAAA;EP2nEb;AO1nED;EAAc,0BAAA;EP6nEb;AO5nED;EAAc,0BAAA;EP+nEb;AO7nED;EAAY,yBAAA;EPgoEX;AO/nED;EAAY,yBAAA;EPkoEX;AOjoED;EAAY,yBAAA;EPooEX;AOnoED;EAAY,yBAAA;EPsoEX;AOroED;EAAc,wBAAA;EPwoEb;AOvoED;EAAY,wBAAA;EP0oEX;AOzoED;EAAa,yBAAA;EP4oEZ;AO3oED;EAAa,yBAAA;EP8oEZ;AO7oED;EAAa,yBAAA;EPgpEZ;AO/oED;EAAa,yBAAA;EPkpEZ;AOjpED;EAAa,yBAAA;EPopEZ;AOnpED;EAAa,yBAAA;EPspEZ;AOrpED;EAAa,yBAAA;EPwpEZ;AOvpED;EAAa,yBAAA;EP0pEZ;AOzpED;EAAa,yBAAA;EP4pEZ;AO3pED;EAAa,yBAAA;EP8pEZ;AO7pED;EAAa,yBAAA;EPgqEZ;AO9pED;EACI,gCAAA;EACA,6BAAA;EACA,oCAAA;EPgqEH;AO9pED;EACI,6CAAA;EPgqEH;AO9pED;EACC,iBAAA;EPgqEA;AACD,yBAAwB;AQ71ExB;EAlBI;IACI,+BAAA;IRk3EL;EQh3EK;IACI,eAAA;IACA,mBAAA;IRk3ET;EQh3EK;IACI,eAAA;IRk3ET;EQh3EK;;;IAGI,cAAA;IRk3ET;EACF;AQ90EA;EA/BG;;;;;;IAMI,qBAAA;IRg3EL;EQ92EC;IACI,sBAAA;IACA,sBAAA;IRg3EL;EQ92EC;IACI,wBAAA;IRg3EL;EQ92EC;IACI,QAAA;IACA,WAAA;IRg3EL;EQ92EC;IACI,YAAA;IRg3EL;EQ92EC;IACI,oBAAA;IACA,QAAA;IACA,WAAA;IACA,SAAA;IACA,UAAA;IACA,WAAA;IACA,kBAAA;IRg3EL;EACF","file":"tableview-a.css","sourcesContent":[null,"/* Button */\n\n.btn {\n font-weight: 300;\n .border-radius(3px);\n \n &:focus,\n &:active:focus,\n &.active:focus {\n outline: none;\n }\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0, 0, 0, 0.1));\n } \n}\n.btn-icon,\n.btn.btn-icon {\n display: inline-block;\n width: 28px;\n height: 28px;\n padding: 0;\n border: none;\n line-height: 28px;\n text-align: center;\n font-size: 14px;\n \n &.btn-xs {\n width: 16px;\n height: 16px;\n font-size: 8px;\n line-height: 16px;\n }\n &.btn-sm {\n width: 22px;\n height: 22px;\n font-size: 11px;\n line-height: 22px;\n }\n &.btn-lg {\n width: 34px;\n height: 34px;\n font-size: 17px;\n line-height: 34px;\n }\n & > .pull-left,\n & > .pull-right {\n line-height: 1.428571429;\n }\n}\n\n.btn-circle,\n.btn.btn-circle {\n .border-radius(50%);\n}\n.btn-scroll-to-top {\n position: fixed;\n bottom: 20px;\n right: 25px;\n z-index: 1020;\n}\n.btn-block {\n padding-left: 12px;\n padding-right: 12px;\n}\n\n\n/* \n Button Generator (inside _mixins.less) \n ----------------\n .generate-button-styling(@buttonClassName; @defaultColor; @hoverColor;); \n*/\n\n// .btn-default\n.generate-button-styling(btn-default; @grey; @dark_grey);\n\n// .btn-inverse\n.generate-button-styling(btn-inverse; @black; @dark_black);\n\n// .btn-primary\n.generate-button-styling(btn-primary; @blue; @dark_blue);\n\n// .btn-success\n.generate-button-styling(btn-success; @green; @dark_green);\n\n// .btn-warning\n.generate-button-styling(btn-warning; @orange; @dark_orange);\n\n// .btn-danger\n.generate-button-styling(btn-danger; @red; @dark_red);\n\n// .btn-info\n.generate-button-styling(btn-info; @aqua; @dark_aqua);\n\n// .btn-white\n.btn.btn-white {\n font-weight: normal;\n color: #333;\n background: @white;\n border-color: #e2e7eb;\n \n &:hover, \n &:focus, \n &:active, \n &.active {\n background: #e2e7eb;\n border-color: #d8dde1;\n }\n \n &.btn-white-without-border {\n border-color: @white;\n \n &.active,\n &.active:hover,\n &.active:focus {\n border-color: #ddd;\n }\n &:hover,\n &focus {\n border-color: #eee;\n }\n }\n}\n.open .dropdown-toggle.btn-white {\n background: #e2e7eb;\n border-color: #d8dde1;\n}\n.btn-group .btn.btn-white:not(.active) + .btn.btn-white,\n.input-group-btn .btn.btn-white:not(.active) + .btn.btn-white {\n border-left-color: #eee;\n}\n\n\n","/* Mixins */\n\n.border-radius(@radius) {\n -webkit-border-radius: @radius;\n -moz-border-radius: @radius;\n border-radius: @radius;\n}\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow;\n -moz-box-shadow: @shadow;\n box-shadow: @shadow;\n}\n.opacity(@opacity) {\n opacity: @opacity;\n}\n.clearfix() {\n content: '';\n clear: both;\n display: table;\n}\n.generate-button-styling(@buttonClassName; @defaultColor; @hoverColor;) {\n .btn.@{buttonClassName} {\n color: #fff;\n background: @defaultColor;\n border-color: @defaultColor;\n \n &:hover,\n &:focus,\n &:active,\n &.active {\n background: @hoverColor;\n border-color: @hoverColor;\n }\n \n }\n .open .dropdown-toggle.@{buttonClassName} {\n background: @hoverColor;\n border-color: @hoverColor;\n }\n .btn-group .btn.@{buttonClassName}:not(.active) + .btn.@{buttonClassName},\n .input-group-btn .btn.@{buttonClassName}:not(.active) + .btn.@{buttonClassName} {\n border-left-color: @hoverColor;\n }\n}","/* Form Elements */\n\n.form-control {\n border: 1px solid #ccd0d4;\n font-size: 12px;\n .border-radius(3px);\n .box-shadow(none);\n}\n.form-control.input-white {\n background: #fff;\n border-color: #fff;\n}\n.form-control.input-white:focus {\n .box-shadow(none);\n}\n.form-control[disabled], \n.form-control[readonly],\nfieldset[disabled] .form-control {\n background: #e5e9ed;\n .opacity(0.6);\n}\n.form-control[disabled]:focus, \n.form-control[readonly]:focus,\nfieldset[disabled] .form-control:focus {\n .box-shadow(none);\n border: 1px solid #ccd0d4;\n}\n.form-control:focus {\n border-color: #9fa2a5;\n .box-shadow(none);\n}\n.form-horizontal.form-bordered .form-group {\n border-bottom: 1px solid #eee;\n margin: 0;\n}\n.form-horizontal.form-bordered .form-group:last-child {\n border-bottom: 0;\n}\n.form-horizontal.form-bordered .form-group > .control-label {\n padding: 22px 15px 15px;\n}\n.form-horizontal.form-bordered .form-group > div {\n padding: 15px;\n}\n.form-horizontal.form-bordered .form-group > div {\n border-left: 1px solid #eee;\n}\n.form-horizontal.form-bordered .form-group > .control-label {\n border-right: 1px solid #eee;\n margin-right: -1px;\n}\n.form-horizontal.form-bordered .has-feedback .form-control-feedback {\n top: 15px;\n}\nselect.form-control {\n border-color: #ccd0d4;\n}\nselect[multiple].form-control {\n border-color: #ccd0d4;\n}\nlabel {\n font-weight: 500;\n}\n.input-group-addon {\n background: #e2e7eb;\n border: none;\n}\nlegend {\n padding-bottom: 3px;\n border-bottom: 1px solid #e2e7eb;\n}\n\n#cancel-search-btn {\n\tmargin-top: 8px;\n\tposition: absolute;\n\tright: 75px;\n}\n.per-page-dropdown,\n.search-form-input {\n border: 1px solid #ccd0d4;\n background: #fff;\n font-size: 12px;\n padding: 6px 12px;\n line-height: 1.42857143;\n color: #555;\n -webkit-border-radius: 3px;\n -moz-border-radius: 3px;\n border-radius: 3px;\n}\n.per-page-dropdown {\n margin-right: 10px;\n height: 34px !important;\n width: auto !important;\n}\n.search-form-input {\n border-color: #ccd0d4;\n height: 34px;\n margin-left: 10px;\n}\n.search-form-input:focus {\n outline: 0;\n border-color: #9fa2a5;\n -webkit-box-shadow: none;\n box-shadow: none;\n}","/* Pagination & pager */\n\n.pager li > a, \n.pager li > span,\n.pagination > li > a {\n border-color: #e2e7eb;\n color: @dark_black;\n}\n.pager.pager-without-border li > a, \n.pager.pager-without-border li > span,\n.pagination.pagination-without-border > li > a {\n border-color: @white;\n}\n.pagination > .disabled > span, \n.pagination > .disabled > span:hover, \n.pagination > .disabled > span:focus, \n.pagination > .disabled > a, \n.pagination > .disabled > a:hover, \n.pagination > .disabled > a:focus,\n.pager > .disabled > span,\n.pager > .disabled > a {\n .opacity(0.6);\n border-color: #ddd;\n}\n.pagination > li > a {\n color: @dark_black;\n margin-left: 5px;\n .border-radius(3px) !important;\n}\n.pagination > li:first-child > a {\n margin-left: 0;\n}\n.pagination-sm > li > a, \n.pagination-sm > li > span {\n font-size: 10px;\n margin-left: 4px;\n}\n.pagination-lg > li > a, \n.pagination-lg > li > span {\n font-size: 14px;\n margin-left: 6px;\n}\n.pager li > a:hover, \n.pager li > a:focus, \n.pager li > span:hover,\n.pager li > span:focus,\n.pagination > li > a:hover,\n.pagination > li > a:focus {\n color: @dark_black;\n background: #e2e7eb;\n border-color: #d8dde1;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover, \n.pagination > .active > span:hover, \n.pagination > .active > a:focus, \n.pagination > .active > span:focus {\n background: @dark_black !important;\n border-color: @dark_black !important;\n}","/* Panel */\n\n.panel {\n border: none;\n .box-shadow(none);\n .border-radius(3px);\n \n &.panel-no-rounded-corner .panel-heading,\n &.panel-no-rounded-corner .panel-body,\n &.panel-no-rounded-corner .panel-footer {\n .border-radius(0) !important;\n }\n & .tab-content {\n .border-radius(0 0 3px 3px);\n }\n}\n.panel-heading {\n padding: 10px 15px;\n border: none;\n \n &+ .table,\n &+ .slimScrollDiv {\n border-top: 1px solid #eee;\n }\n & .panel-heading-btn {\n float: right;\n }\n & .panel-heading-btn > a {\n margin-left: 8px;\n }\n & .btn-group .btn {\n margin-top: -7px;\n }\n & .btn-group .btn.btn-sm {\n margin-top: -5px;\n }\n & .btn-group .btn.btn-xs {\n margin-top: -1px;\n }\n & .label.pull-left,\n & .label.pull-right {\n line-height: 15px;\n }\n & .progress.pull-right,\n & .progress.pull-left {\n width: 40%;\n min-width: 120px;\n }\n & + .alert {\n margin-bottom: 0;\n -webkit-border-radius: 0;\n -moz-border-radius: 0;\n border-radius: 0;\n }\n & .nav-tabs {\n margin-top: -10px;\n margin-right: -15px;\n }\n & .nav-tabs > li > a {\n padding: 10px 15px;\n line-height: 20px;\n }\n}\n.panel-with-tabs.panel-default .panel-heading {\n background: #c1ccd1;\n color: #333;\n}\n.panel-title {\n line-height: 20px;\n font-size: 12px;\n \n & .accordion-toggle {\n margin: -10px -15px;\n padding: 10px 15px;\n }\n & .accordion-toggle.accordion-toggle-styled .fa:before {\n content: '\\f056';\n }\n & .accordion-toggle.accordion-toggle-styled.collapsed .fa:before {\n content: '\\f055';\n }\n & .pull-right {\n line-height: 20px;\n }\n}\n.panel-group .panel {\n .border-radius(3px);\n}\n.form-control + .panel-footer {\n border-top: none;\n}\n.panel-body {\n padding: 15px;\n \n &.no-border {\n border: none !important;\n }\n &.panel-table,\n &.panel-form,\n &.no-padding,\n &.panel-full-width {\n padding: 0 !important;\n }\n &.with-table > .table {\n border: 0;\n margin: 0;\n }\n &.with-table > .table tr:last-child th,\n &.with-table > .table tr:last-child td{\n border-bottom: 0;\n }\n}\n.panel-default > .panel-heading + .panel-collapse .panel-body {\n border-top: 1px solid #eee;\n}\n.panel-footer {\n background: #fff;\n border-top: 1px solid #eee;\n}\n.panel-default > .panel-heading {\n background: #fafafa;\n}\n.panel-inverse > .panel-heading,\n.panel-success > .panel-heading,\n.panel-warning > .panel-heading,\n.panel-danger > .panel-heading,\n.panel-primary > .panel-heading,\n.panel-info > .panel-heading {\n color: #fff;\n}\n.panel-inverse > .panel-heading { background: @dark_black; }\n.panel-success > .panel-heading { background: @dark_green; }\n.panel-warning > .panel-heading { background: @dark_orange; }\n.panel-danger > .panel-heading { background: @dark_red; }\n.panel-primary > .panel-heading { background: @dark_blue; }\n.panel-info > .panel-heading { background: @dark_aqua; }\n\n\n/* Panel Expand */\n\n.panel.panel-expand {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n margin: 0;\n overflow: hidden;\n z-index: 1080;\n .border-radius(0);\n \n & .height-xs,\n & .height-sm,\n & .height-md,\n & .height-lg,\n & .height-full {\n height: 100% !important;\n }\n \n & > .panel-heading .fa.fa-expand:before {\n content: '\\f066';\n }\n & > .panel-heading,\n & > .panel-body {\n .border-radius(0);\n }\n & > .panel-body {\n position: absolute;\n right: 0;\n left: 0;\n bottom: 0;\n top: 40px;\n overflow-y: scroll;\n z-index: 1020;\n }\n & > .panel-footer {\n position: absolute;\n left: 0;\n right: 0;\n bottom: 0;\n }\n}\n@keyframes panelExpand {\n from { top: 50%; left: 50%; right: 50%; bottom: 50%; }\n to { top: 0; left: 0; right: 0; bottom: 0; }\n}\n@-webkit-keyframes panelExpand {\n from { top: 50%; left: 50%; right: 50%; bottom: 50%; }\n to { top: 0; left: 0; right: 0; bottom: 0; }\n}\n","/* Table */\n\n.table {\n border-color: #e2e7eb;\n .border-radius(3px);\n}\n.table > thead > tr > th {\n color: @dark_black;\n font-weight: 600;\n border-bottom: 2px solid #e2e7eb !important;\n}\n.table > thead > tr > th, \n.table > tbody > tr > th, \n.table > tfoot > tr > th, \n.table > thead > tr > td, \n.table > tbody > tr > td, \n.table > tfoot > tr > td {\n border-color: #e2e7eb;\n padding: 10px 15px;\n}\n.table-condensed > thead > tr > th, \n.table-condensed > tbody > tr > th, \n.table-condensed > tfoot > tr > th, \n.table-condensed > thead > tr > td, \n.table-condensed > tbody > tr > td, \n.table-condensed > tfoot > tr > td {\n padding: 7px 15px;\n}\n.table-hover > tbody > tr:hover > td, \n.table-hover > tbody > tr:hover > th {\n background: #e8ecf1 !important;\n}\n.table-striped > tbody > tr:nth-child(odd) > td, \n.table-striped > tbody > tr:nth-child(odd) > th {\n background: #f0f3f5;\n}\n.table.table-inverse > thead > tr > th, \n.table.table-inverse > tbody > tr > th, \n.table.table-inverse > tfoot > tr > th, \n.table.table-inverse > thead > tr > td, \n.table.table-inverse > tbody > tr > td, \n.table.table-inverse > tfoot > tr > td {\n border-color: #999 !important;\n border-color: rgba(0,0,0,0.2) !important;\n}\n.table.table-inverse,\n.table.table-inverse > thead > tr > th, \n.table.table-inverse > tbody > tr > th, \n.table.table-inverse > tfoot > tr > th {\n color: @white;\n}\n.table > thead > tr > td.info, \n.table > tbody > tr > td.info, \n.table > tfoot > tr > td.info, \n.table > thead > tr > th.info, \n.table > tbody > tr > th.info, \n.table > tfoot > tr > th.info, \n.table > thead > tr.info > td, \n.table > tbody > tr.info > td, \n.table > tfoot > tr.info > td, \n.table > thead > tr.info > th, \n.table > tbody > tr.info > th, \n.table > tfoot > tr.info > th {\n background: #dbf0f7;\n border-color: #b6e2ef;\n}\n.table > thead > tr > td.success, \n.table > tbody > tr > td.success, \n.table > tfoot > tr > td.success, \n.table > thead > tr > th.success, \n.table > tbody > tr > th.success, \n.table > tfoot > tr > th.success, \n.table > thead > tr.success > td, \n.table > tbody > tr.success > td, \n.table > tfoot > tr.success > td, \n.table > thead > tr.success > th, \n.table > tbody > tr.success > th, \n.table > tfoot > tr.success > th {\n background: #cceeee;\n border-color: #99dede;\n}\n.table > thead > tr > td.danger, \n.table > tbody > tr > td.danger, \n.table > tfoot > tr > td.danger, \n.table > thead > tr > th.danger, \n.table > tbody > tr > th.danger, \n.table > tfoot > tr > th.danger, \n.table > thead > tr.danger > td, \n.table > tbody > tr.danger > td, \n.table > tfoot > tr.danger > td, \n.table > thead > tr.danger > th, \n.table > tbody > tr.danger > th, \n.table > tfoot > tr.danger > th {\n background: #ffdedd;\n border-color: #ffbdbc;\n}\n.table > thead > tr > td.warning, \n.table > tbody > tr > td.warning, \n.table > tfoot > tr > td.warning, \n.table > thead > tr > th.warning, \n.table > tbody > tr > th.warning, \n.table > tfoot > tr > th.warning, \n.table > thead > tr.warning > td, \n.table > tbody > tr.warning > td, \n.table > tfoot > tr.warning > td, \n.table > thead > tr.warning > th, \n.table > tbody > tr.warning > th, \n.table > tfoot > tr.warning > th {\n background: #fdebd1;\n border-color: #fbd7a3;\n}\n.table > thead > tr > td.active, \n.table > tbody > tr > td.active, \n.table > tfoot > tr > td.active, \n.table > thead > tr > th.active, \n.table > tbody > tr > th.active, \n.table > tfoot > tr > th.active, \n.table > thead > tr.active > td, \n.table > tbody > tr.active > td, \n.table > tfoot > tr.active > td, \n.table > thead > tr.active > th, \n.table > tbody > tr.active > th, \n.table > tfoot > tr.active > th {\n background: #f0f3f5;\n border-color: #e2e7e9;\n}","/* Predefined Classes */\n\n.row { margin: 0 -10px; }\n.row > [class*=\"col-\"] { padding: 0 10px; }\n.m-auto { margin: 0 auto !important; }\n.wrapper { padding: 15px !important; }\n.semi-bold { font-weight: 600 !important; }\n.overflow-auto { overflow: auto !important; }\n.overflow-hidden { overflow: hidden !important; }\n.overflow-visible { overflow: visible !important; }\n.overflow-scroll { overflow: scroll !important; }\n.overflow-x-hidden { overflow-x: hidden !important; }\n.overflow-x-visible { overflow-x: visible !important; }\n.overflow-x-scroll { overflow-x: scroll !important; }\n.overflow-y-hidden { overflow-y: hidden !important; }\n.overflow-y-visible { overflow-y: visible !important; }\n.overflow-y-scroll { overflow-y: scroll !important; }\n.f-w-100 { font-weight: 100 !important; }\n.f-w-200 { font-weight: 200 !important; }\n.f-w-300 { font-weight: 300 !important; }\n.f-w-400 { font-weight: 400 !important; }\n.f-w-500 { font-weight: 500 !important; }\n.f-w-600 { font-weight: 600 !important; }\n.f-w-700 { font-weight: 700 !important; }\n.text-center { text-align: center !important; }\n.text-left { text-align: left !important; }\n.text-right { text-align: right !important; }\n.pull-left { float: left !important; }\n.pull-right { float: right !important; }\n.pull-none { float: none !important; }\n\n/* LOOP - Margin & Padding */\n\n.margin-padding-css-generator(@counter) when (@counter > -1) {\n .m-@{counter} { margin: (@counter * 1px) !important; }\n .m-t-@{counter} { margin-top: (@counter * 1px) !important; }\n .m-r-@{counter} { margin-right: (@counter * 1px) !important; }\n .m-b-@{counter} { margin-bottom: (@counter * 1px) !important; }\n .m-l-@{counter} { margin-left: (@counter * 1px) !important; }\n \n .p-@{counter} { padding: (@counter * 1px) !important; }\n .p-t-@{counter} { padding-top: (@counter * 1px) !important; }\n .p-r-@{counter} { padding-right: (@counter * 1px) !important; }\n .p-b-@{counter} { padding-bottom: (@counter * 1px) !important; }\n .p-l-@{counter} { padding-left: (@counter * 1px) !important; }\n \n .margin-padding-css-generator((@counter - 1));\n}\n.margin-padding-css-generator(40);\n\n\n/* LOOP - Font Size */\n\n.font-size-css-generator(@counter) when (@counter > 7) {\n .f-s-@{counter} { font-size: (@counter * 1px) !important; }\n \n .font-size-css-generator((@counter - 1));\n}\n.font-size-css-generator(20);\n\n\n.table-valign-middle th, \n.table-valign-middle td { \n vertical-align: middle !important;\n}\n.table-th-valign-middle th,\n.table-td-valign-middle td { \n vertical-align: middle !important;\n}\n.table-valign-top th, \n.table-valign-top td { \n vertical-align: top !important;\n}\n.table-th-valign-top th,\n.table-td-valign-top td { \n vertical-align: top !important;\n}\n.table-valign-bottom th, \n.table-valign-bottom td { \n vertical-align: bottom !important;\n}\n.table-th-valign-bottom th,\n.table-td-valign-bottom td { \n vertical-align: bottom !important;\n}\n.text-inverse { color: @black !important; }\na.text-inverse:hover,\na.text-inverse:focus { \n color: @light_black !important; \n}\n.text-success { color: @green !important; }\na.text-success:hover,\na.text-success:focus { \n color: @light_green !important; \n}\n.text-info { color: @aqua !important; }\na.text-info:hover,\na.text-info:focus { \n color: @light_aqua !important; \n}\n.text-primary { color: @blue !important; }\na.text-primary:hover,\na.text-primary:focus { \n color: @light_blue !important; \n}\n.text-warning { color: @yellow !important; }\na.text-warning:hover,\na.text-warning:focus { \n color: @light_yellow !important; \n}\n.text-danger { color: @red !important; }\na.text-danger:hover,\na.text-danger:focus { \n color: @light_red !important; \n}\n.text-white { color: #fff !important; }\na.text-white:hover,\na.text-white:focus { \n color: #f0f3f4 !important; \n}\n\n.bg-white { background: #ffffff !important; }\n.bg-silver-lighter { background: @light_silver !important; }\n.bg-silver { background: @silver !important; }\n.bg-silver-darker { background: @dark_silver !important; }\n\n.bg-black { background: @black !important; }\n.bg-black-darker { background: @dark_black !important; }\n.bg-black-lighter { background: @light_black !important; }\n\n.bg-grey { background: @grey !important; }\n.bg-grey-darker { background: @dark_grey !important; }\n.bg-grey-lighter { background: @light_grey !important; }\n\n.bg-red { background: @red !important; }\n.bg-red-darker { background: @dark_red !important; }\n.bg-red-lighter { background: @light_red !important; }\n\n.bg-orange { background: @orange !important; }\n.bg-orange-darker { background: @dark_orange !important; }\n.bg-orange-lighter { background: @light_orange !important; }\n\n.bg-yellow { background: @yellow !important; }\n.bg-yellow-darker { background: @dark_yellow !important; }\n.bg-yellow-lighter { background: @light_yellow !important; }\n\n.bg-green { background: @green !important; }\n.bg-green-darker { background: @dark_green !important; }\n.bg-green-lighter { background: @light_green !important; }\n\n.bg-blue { background: @blue !important; }\n.bg-blue-darker { background: @dark_blue !important; }\n.bg-blue-lighter { background: @light_blue !important; }\n\n.bg-aqua { background: @aqua !important; }\n.bg-aqua-darker { background: @dark_aqua !important; }\n.bg-aqua-lighter { background: @light_aqua !important; }\n\n.bg-purple { background: @purple !important; }\n.bg-purple-darker { background: @dark_purple !important; }\n.bg-purple-lighter { background: @light_purple !important; }\n\n.no-bg { background: none !important; }\n\n.height-xs { height: 150px !important; }\n.height-sm { height: 300px !important; }\n.height-md { height: 450px !important; }\n.height-lg { height: 600px !important; }\n.height-full { height: 100% !important; }\n.height-50 { height: 50px !important; }\n.height-100 { height: 100px !important; }\n.height-150 { height: 150px !important; }\n.height-200 { height: 200px !important; }\n.height-250 { height: 250px !important; }\n.height-300 { height: 300px !important; }\n.height-350 { height: 350px !important; }\n.height-400 { height: 400px !important; }\n.height-450 { height: 450px !important; }\n.height-500 { height: 500px !important; }\n.height-550 { height: 550px !important; }\n.height-600 { height: 600px !important; }\n\n.width-xs { width: 150px !important; }\n.width-sm { width: 300px !important; }\n.width-md { width: 450px !important; }\n.width-lg { width: 600px !important; }\n.width-full { width: 100% !important; }\n.width-50 { width: 50px !important; }\n.width-100 { width: 100px !important; }\n.width-150 { width: 150px !important; }\n.width-200 { width: 200px !important; }\n.width-250 { width: 250px !important; }\n.width-300 { width: 300px !important; }\n.width-350 { width: 350px !important; }\n.width-400 { width: 400px !important; }\n.width-450 { width: 450px !important; }\n.width-500 { width: 500px !important; }\n.width-550 { width: 550px !important; }\n.width-600 { width: 600px !important; }\n\n.text-ellipsis {\n white-space: nowrap !important;\n overflow: hidden !important;\n text-overflow: ellipsis !important;\n}\n.underline {\n border-bottom: 1px solid #e2e7eb !important;\n}\n.inline {\n\tdisplay: inline;\n}","/* Responsive Setting */\n\n@media(max-width: 979px) {\n .form-horizontal.form-bordered .form-group {\n border-bottom: 1px solid #eee;\n \n & .control-label {\n padding: 15px;\n line-height: 34px;\n }\n & > div {\n padding: 15px;\n }\n &, \n & > div,\n & > .control-label {\n border: none;\n }\n }\n}\n\n@media (max-width: 767px) {\n .table-responsive .table > thead > tr > th, \n .table-responsive .table > tbody > tr > th, \n .table-responsive .table > tfoot > tr > th, \n .table-responsive .table > thead > tr > td, \n .table-responsive .table > tbody > tr > td, \n .table-responsive .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .form-horizontal.form-bordered .form-group > .control-label {\n padding: 15px 15px 0;\n line-height: inherit;\n }\n .form-horizontal.form-bordered .form-group > div {\n padding: 5px 15px 15px;\n }\n .theme-panel {\n top: 0;\n bottom: 0;\n }\n .theme-panel .theme-collapse-btn {\n top: 150px;\n }\n .theme-panel .theme-panel-content {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n margin: 0;\n overflow: scroll;\n }\n}"],"sourceRoot":"/source/"} -------------------------------------------------------------------------------- /assets/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | /* FONT PATH 6 | * -------------------------- */ 7 | @font-face { 8 | font-family: 'FontAwesome'; 9 | src: url('../fonts/fontawesome-webfont.eot?v=4.3.0'); 10 | src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg'); 11 | font-weight: normal; 12 | font-style: normal; 13 | } 14 | .fa { 15 | display: inline-block; 16 | font: normal normal normal 14px/1 FontAwesome; 17 | font-size: inherit; 18 | text-rendering: auto; 19 | -webkit-font-smoothing: antialiased; 20 | -moz-osx-font-smoothing: grayscale; 21 | transform: translate(0, 0); 22 | } 23 | /* makes the font 33% larger relative to the icon container */ 24 | .fa-lg { 25 | font-size: 1.33333333em; 26 | line-height: 0.75em; 27 | vertical-align: -15%; 28 | } 29 | .fa-2x { 30 | font-size: 2em; 31 | } 32 | .fa-3x { 33 | font-size: 3em; 34 | } 35 | .fa-4x { 36 | font-size: 4em; 37 | } 38 | .fa-5x { 39 | font-size: 5em; 40 | } 41 | .fa-fw { 42 | width: 1.28571429em; 43 | text-align: center; 44 | } 45 | .fa-ul { 46 | padding-left: 0; 47 | margin-left: 2.14285714em; 48 | list-style-type: none; 49 | } 50 | .fa-ul > li { 51 | position: relative; 52 | } 53 | .fa-li { 54 | position: absolute; 55 | left: -2.14285714em; 56 | width: 2.14285714em; 57 | top: 0.14285714em; 58 | text-align: center; 59 | } 60 | .fa-li.fa-lg { 61 | left: -1.85714286em; 62 | } 63 | .fa-border { 64 | padding: .2em .25em .15em; 65 | border: solid 0.08em #eeeeee; 66 | border-radius: .1em; 67 | } 68 | .pull-right { 69 | float: right; 70 | } 71 | .pull-left { 72 | float: left; 73 | } 74 | .fa.pull-left { 75 | margin-right: .3em; 76 | } 77 | .fa.pull-right { 78 | margin-left: .3em; 79 | } 80 | .fa-spin { 81 | -webkit-animation: fa-spin 2s infinite linear; 82 | animation: fa-spin 2s infinite linear; 83 | } 84 | .fa-pulse { 85 | -webkit-animation: fa-spin 1s infinite steps(8); 86 | animation: fa-spin 1s infinite steps(8); 87 | } 88 | @-webkit-keyframes fa-spin { 89 | 0% { 90 | -webkit-transform: rotate(0deg); 91 | transform: rotate(0deg); 92 | } 93 | 100% { 94 | -webkit-transform: rotate(359deg); 95 | transform: rotate(359deg); 96 | } 97 | } 98 | @keyframes fa-spin { 99 | 0% { 100 | -webkit-transform: rotate(0deg); 101 | transform: rotate(0deg); 102 | } 103 | 100% { 104 | -webkit-transform: rotate(359deg); 105 | transform: rotate(359deg); 106 | } 107 | } 108 | .fa-rotate-90 { 109 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); 110 | -webkit-transform: rotate(90deg); 111 | -ms-transform: rotate(90deg); 112 | transform: rotate(90deg); 113 | } 114 | .fa-rotate-180 { 115 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); 116 | -webkit-transform: rotate(180deg); 117 | -ms-transform: rotate(180deg); 118 | transform: rotate(180deg); 119 | } 120 | .fa-rotate-270 { 121 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); 122 | -webkit-transform: rotate(270deg); 123 | -ms-transform: rotate(270deg); 124 | transform: rotate(270deg); 125 | } 126 | .fa-flip-horizontal { 127 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); 128 | -webkit-transform: scale(-1, 1); 129 | -ms-transform: scale(-1, 1); 130 | transform: scale(-1, 1); 131 | } 132 | .fa-flip-vertical { 133 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); 134 | -webkit-transform: scale(1, -1); 135 | -ms-transform: scale(1, -1); 136 | transform: scale(1, -1); 137 | } 138 | :root .fa-rotate-90, 139 | :root .fa-rotate-180, 140 | :root .fa-rotate-270, 141 | :root .fa-flip-horizontal, 142 | :root .fa-flip-vertical { 143 | filter: none; 144 | } 145 | .fa-stack { 146 | position: relative; 147 | display: inline-block; 148 | width: 2em; 149 | height: 2em; 150 | line-height: 2em; 151 | vertical-align: middle; 152 | } 153 | .fa-stack-1x, 154 | .fa-stack-2x { 155 | position: absolute; 156 | left: 0; 157 | width: 100%; 158 | text-align: center; 159 | } 160 | .fa-stack-1x { 161 | line-height: inherit; 162 | } 163 | .fa-stack-2x { 164 | font-size: 2em; 165 | } 166 | .fa-inverse { 167 | color: #ffffff; 168 | } 169 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 170 | readers do not read off random characters that represent icons */ 171 | .fa-glass:before { 172 | content: "\f000"; 173 | } 174 | .fa-music:before { 175 | content: "\f001"; 176 | } 177 | .fa-search:before { 178 | content: "\f002"; 179 | } 180 | .fa-envelope-o:before { 181 | content: "\f003"; 182 | } 183 | .fa-heart:before { 184 | content: "\f004"; 185 | } 186 | .fa-star:before { 187 | content: "\f005"; 188 | } 189 | .fa-star-o:before { 190 | content: "\f006"; 191 | } 192 | .fa-user:before { 193 | content: "\f007"; 194 | } 195 | .fa-film:before { 196 | content: "\f008"; 197 | } 198 | .fa-th-large:before { 199 | content: "\f009"; 200 | } 201 | .fa-th:before { 202 | content: "\f00a"; 203 | } 204 | .fa-th-list:before { 205 | content: "\f00b"; 206 | } 207 | .fa-check:before { 208 | content: "\f00c"; 209 | } 210 | .fa-remove:before, 211 | .fa-close:before, 212 | .fa-times:before { 213 | content: "\f00d"; 214 | } 215 | .fa-search-plus:before { 216 | content: "\f00e"; 217 | } 218 | .fa-search-minus:before { 219 | content: "\f010"; 220 | } 221 | .fa-power-off:before { 222 | content: "\f011"; 223 | } 224 | .fa-signal:before { 225 | content: "\f012"; 226 | } 227 | .fa-gear:before, 228 | .fa-cog:before { 229 | content: "\f013"; 230 | } 231 | .fa-trash-o:before { 232 | content: "\f014"; 233 | } 234 | .fa-home:before { 235 | content: "\f015"; 236 | } 237 | .fa-file-o:before { 238 | content: "\f016"; 239 | } 240 | .fa-clock-o:before { 241 | content: "\f017"; 242 | } 243 | .fa-road:before { 244 | content: "\f018"; 245 | } 246 | .fa-download:before { 247 | content: "\f019"; 248 | } 249 | .fa-arrow-circle-o-down:before { 250 | content: "\f01a"; 251 | } 252 | .fa-arrow-circle-o-up:before { 253 | content: "\f01b"; 254 | } 255 | .fa-inbox:before { 256 | content: "\f01c"; 257 | } 258 | .fa-play-circle-o:before { 259 | content: "\f01d"; 260 | } 261 | .fa-rotate-right:before, 262 | .fa-repeat:before { 263 | content: "\f01e"; 264 | } 265 | .fa-refresh:before { 266 | content: "\f021"; 267 | } 268 | .fa-list-alt:before { 269 | content: "\f022"; 270 | } 271 | .fa-lock:before { 272 | content: "\f023"; 273 | } 274 | .fa-flag:before { 275 | content: "\f024"; 276 | } 277 | .fa-headphones:before { 278 | content: "\f025"; 279 | } 280 | .fa-volume-off:before { 281 | content: "\f026"; 282 | } 283 | .fa-volume-down:before { 284 | content: "\f027"; 285 | } 286 | .fa-volume-up:before { 287 | content: "\f028"; 288 | } 289 | .fa-qrcode:before { 290 | content: "\f029"; 291 | } 292 | .fa-barcode:before { 293 | content: "\f02a"; 294 | } 295 | .fa-tag:before { 296 | content: "\f02b"; 297 | } 298 | .fa-tags:before { 299 | content: "\f02c"; 300 | } 301 | .fa-book:before { 302 | content: "\f02d"; 303 | } 304 | .fa-bookmark:before { 305 | content: "\f02e"; 306 | } 307 | .fa-print:before { 308 | content: "\f02f"; 309 | } 310 | .fa-camera:before { 311 | content: "\f030"; 312 | } 313 | .fa-font:before { 314 | content: "\f031"; 315 | } 316 | .fa-bold:before { 317 | content: "\f032"; 318 | } 319 | .fa-italic:before { 320 | content: "\f033"; 321 | } 322 | .fa-text-height:before { 323 | content: "\f034"; 324 | } 325 | .fa-text-width:before { 326 | content: "\f035"; 327 | } 328 | .fa-align-left:before { 329 | content: "\f036"; 330 | } 331 | .fa-align-center:before { 332 | content: "\f037"; 333 | } 334 | .fa-align-right:before { 335 | content: "\f038"; 336 | } 337 | .fa-align-justify:before { 338 | content: "\f039"; 339 | } 340 | .fa-list:before { 341 | content: "\f03a"; 342 | } 343 | .fa-dedent:before, 344 | .fa-outdent:before { 345 | content: "\f03b"; 346 | } 347 | .fa-indent:before { 348 | content: "\f03c"; 349 | } 350 | .fa-video-camera:before { 351 | content: "\f03d"; 352 | } 353 | .fa-photo:before, 354 | .fa-image:before, 355 | .fa-picture-o:before { 356 | content: "\f03e"; 357 | } 358 | .fa-pencil:before { 359 | content: "\f040"; 360 | } 361 | .fa-map-marker:before { 362 | content: "\f041"; 363 | } 364 | .fa-adjust:before { 365 | content: "\f042"; 366 | } 367 | .fa-tint:before { 368 | content: "\f043"; 369 | } 370 | .fa-edit:before, 371 | .fa-pencil-square-o:before { 372 | content: "\f044"; 373 | } 374 | .fa-share-square-o:before { 375 | content: "\f045"; 376 | } 377 | .fa-check-square-o:before { 378 | content: "\f046"; 379 | } 380 | .fa-arrows:before { 381 | content: "\f047"; 382 | } 383 | .fa-step-backward:before { 384 | content: "\f048"; 385 | } 386 | .fa-fast-backward:before { 387 | content: "\f049"; 388 | } 389 | .fa-backward:before { 390 | content: "\f04a"; 391 | } 392 | .fa-play:before { 393 | content: "\f04b"; 394 | } 395 | .fa-pause:before { 396 | content: "\f04c"; 397 | } 398 | .fa-stop:before { 399 | content: "\f04d"; 400 | } 401 | .fa-forward:before { 402 | content: "\f04e"; 403 | } 404 | .fa-fast-forward:before { 405 | content: "\f050"; 406 | } 407 | .fa-step-forward:before { 408 | content: "\f051"; 409 | } 410 | .fa-eject:before { 411 | content: "\f052"; 412 | } 413 | .fa-chevron-left:before { 414 | content: "\f053"; 415 | } 416 | .fa-chevron-right:before { 417 | content: "\f054"; 418 | } 419 | .fa-plus-circle:before { 420 | content: "\f055"; 421 | } 422 | .fa-minus-circle:before { 423 | content: "\f056"; 424 | } 425 | .fa-times-circle:before { 426 | content: "\f057"; 427 | } 428 | .fa-check-circle:before { 429 | content: "\f058"; 430 | } 431 | .fa-question-circle:before { 432 | content: "\f059"; 433 | } 434 | .fa-info-circle:before { 435 | content: "\f05a"; 436 | } 437 | .fa-crosshairs:before { 438 | content: "\f05b"; 439 | } 440 | .fa-times-circle-o:before { 441 | content: "\f05c"; 442 | } 443 | .fa-check-circle-o:before { 444 | content: "\f05d"; 445 | } 446 | .fa-ban:before { 447 | content: "\f05e"; 448 | } 449 | .fa-arrow-left:before { 450 | content: "\f060"; 451 | } 452 | .fa-arrow-right:before { 453 | content: "\f061"; 454 | } 455 | .fa-arrow-up:before { 456 | content: "\f062"; 457 | } 458 | .fa-arrow-down:before { 459 | content: "\f063"; 460 | } 461 | .fa-mail-forward:before, 462 | .fa-share:before { 463 | content: "\f064"; 464 | } 465 | .fa-expand:before { 466 | content: "\f065"; 467 | } 468 | .fa-compress:before { 469 | content: "\f066"; 470 | } 471 | .fa-plus:before { 472 | content: "\f067"; 473 | } 474 | .fa-minus:before { 475 | content: "\f068"; 476 | } 477 | .fa-asterisk:before { 478 | content: "\f069"; 479 | } 480 | .fa-exclamation-circle:before { 481 | content: "\f06a"; 482 | } 483 | .fa-gift:before { 484 | content: "\f06b"; 485 | } 486 | .fa-leaf:before { 487 | content: "\f06c"; 488 | } 489 | .fa-fire:before { 490 | content: "\f06d"; 491 | } 492 | .fa-eye:before { 493 | content: "\f06e"; 494 | } 495 | .fa-eye-slash:before { 496 | content: "\f070"; 497 | } 498 | .fa-warning:before, 499 | .fa-exclamation-triangle:before { 500 | content: "\f071"; 501 | } 502 | .fa-plane:before { 503 | content: "\f072"; 504 | } 505 | .fa-calendar:before { 506 | content: "\f073"; 507 | } 508 | .fa-random:before { 509 | content: "\f074"; 510 | } 511 | .fa-comment:before { 512 | content: "\f075"; 513 | } 514 | .fa-magnet:before { 515 | content: "\f076"; 516 | } 517 | .fa-chevron-up:before { 518 | content: "\f077"; 519 | } 520 | .fa-chevron-down:before { 521 | content: "\f078"; 522 | } 523 | .fa-retweet:before { 524 | content: "\f079"; 525 | } 526 | .fa-shopping-cart:before { 527 | content: "\f07a"; 528 | } 529 | .fa-folder:before { 530 | content: "\f07b"; 531 | } 532 | .fa-folder-open:before { 533 | content: "\f07c"; 534 | } 535 | .fa-arrows-v:before { 536 | content: "\f07d"; 537 | } 538 | .fa-arrows-h:before { 539 | content: "\f07e"; 540 | } 541 | .fa-bar-chart-o:before, 542 | .fa-bar-chart:before { 543 | content: "\f080"; 544 | } 545 | .fa-twitter-square:before { 546 | content: "\f081"; 547 | } 548 | .fa-facebook-square:before { 549 | content: "\f082"; 550 | } 551 | .fa-camera-retro:before { 552 | content: "\f083"; 553 | } 554 | .fa-key:before { 555 | content: "\f084"; 556 | } 557 | .fa-gears:before, 558 | .fa-cogs:before { 559 | content: "\f085"; 560 | } 561 | .fa-comments:before { 562 | content: "\f086"; 563 | } 564 | .fa-thumbs-o-up:before { 565 | content: "\f087"; 566 | } 567 | .fa-thumbs-o-down:before { 568 | content: "\f088"; 569 | } 570 | .fa-star-half:before { 571 | content: "\f089"; 572 | } 573 | .fa-heart-o:before { 574 | content: "\f08a"; 575 | } 576 | .fa-sign-out:before { 577 | content: "\f08b"; 578 | } 579 | .fa-linkedin-square:before { 580 | content: "\f08c"; 581 | } 582 | .fa-thumb-tack:before { 583 | content: "\f08d"; 584 | } 585 | .fa-external-link:before { 586 | content: "\f08e"; 587 | } 588 | .fa-sign-in:before { 589 | content: "\f090"; 590 | } 591 | .fa-trophy:before { 592 | content: "\f091"; 593 | } 594 | .fa-github-square:before { 595 | content: "\f092"; 596 | } 597 | .fa-upload:before { 598 | content: "\f093"; 599 | } 600 | .fa-lemon-o:before { 601 | content: "\f094"; 602 | } 603 | .fa-phone:before { 604 | content: "\f095"; 605 | } 606 | .fa-square-o:before { 607 | content: "\f096"; 608 | } 609 | .fa-bookmark-o:before { 610 | content: "\f097"; 611 | } 612 | .fa-phone-square:before { 613 | content: "\f098"; 614 | } 615 | .fa-twitter:before { 616 | content: "\f099"; 617 | } 618 | .fa-facebook-f:before, 619 | .fa-facebook:before { 620 | content: "\f09a"; 621 | } 622 | .fa-github:before { 623 | content: "\f09b"; 624 | } 625 | .fa-unlock:before { 626 | content: "\f09c"; 627 | } 628 | .fa-credit-card:before { 629 | content: "\f09d"; 630 | } 631 | .fa-rss:before { 632 | content: "\f09e"; 633 | } 634 | .fa-hdd-o:before { 635 | content: "\f0a0"; 636 | } 637 | .fa-bullhorn:before { 638 | content: "\f0a1"; 639 | } 640 | .fa-bell:before { 641 | content: "\f0f3"; 642 | } 643 | .fa-certificate:before { 644 | content: "\f0a3"; 645 | } 646 | .fa-hand-o-right:before { 647 | content: "\f0a4"; 648 | } 649 | .fa-hand-o-left:before { 650 | content: "\f0a5"; 651 | } 652 | .fa-hand-o-up:before { 653 | content: "\f0a6"; 654 | } 655 | .fa-hand-o-down:before { 656 | content: "\f0a7"; 657 | } 658 | .fa-arrow-circle-left:before { 659 | content: "\f0a8"; 660 | } 661 | .fa-arrow-circle-right:before { 662 | content: "\f0a9"; 663 | } 664 | .fa-arrow-circle-up:before { 665 | content: "\f0aa"; 666 | } 667 | .fa-arrow-circle-down:before { 668 | content: "\f0ab"; 669 | } 670 | .fa-globe:before { 671 | content: "\f0ac"; 672 | } 673 | .fa-wrench:before { 674 | content: "\f0ad"; 675 | } 676 | .fa-tasks:before { 677 | content: "\f0ae"; 678 | } 679 | .fa-filter:before { 680 | content: "\f0b0"; 681 | } 682 | .fa-briefcase:before { 683 | content: "\f0b1"; 684 | } 685 | .fa-arrows-alt:before { 686 | content: "\f0b2"; 687 | } 688 | .fa-group:before, 689 | .fa-users:before { 690 | content: "\f0c0"; 691 | } 692 | .fa-chain:before, 693 | .fa-link:before { 694 | content: "\f0c1"; 695 | } 696 | .fa-cloud:before { 697 | content: "\f0c2"; 698 | } 699 | .fa-flask:before { 700 | content: "\f0c3"; 701 | } 702 | .fa-cut:before, 703 | .fa-scissors:before { 704 | content: "\f0c4"; 705 | } 706 | .fa-copy:before, 707 | .fa-files-o:before { 708 | content: "\f0c5"; 709 | } 710 | .fa-paperclip:before { 711 | content: "\f0c6"; 712 | } 713 | .fa-save:before, 714 | .fa-floppy-o:before { 715 | content: "\f0c7"; 716 | } 717 | .fa-square:before { 718 | content: "\f0c8"; 719 | } 720 | .fa-navicon:before, 721 | .fa-reorder:before, 722 | .fa-bars:before { 723 | content: "\f0c9"; 724 | } 725 | .fa-list-ul:before { 726 | content: "\f0ca"; 727 | } 728 | .fa-list-ol:before { 729 | content: "\f0cb"; 730 | } 731 | .fa-strikethrough:before { 732 | content: "\f0cc"; 733 | } 734 | .fa-underline:before { 735 | content: "\f0cd"; 736 | } 737 | .fa-table:before { 738 | content: "\f0ce"; 739 | } 740 | .fa-magic:before { 741 | content: "\f0d0"; 742 | } 743 | .fa-truck:before { 744 | content: "\f0d1"; 745 | } 746 | .fa-pinterest:before { 747 | content: "\f0d2"; 748 | } 749 | .fa-pinterest-square:before { 750 | content: "\f0d3"; 751 | } 752 | .fa-google-plus-square:before { 753 | content: "\f0d4"; 754 | } 755 | .fa-google-plus:before { 756 | content: "\f0d5"; 757 | } 758 | .fa-money:before { 759 | content: "\f0d6"; 760 | } 761 | .fa-caret-down:before { 762 | content: "\f0d7"; 763 | } 764 | .fa-caret-up:before { 765 | content: "\f0d8"; 766 | } 767 | .fa-caret-left:before { 768 | content: "\f0d9"; 769 | } 770 | .fa-caret-right:before { 771 | content: "\f0da"; 772 | } 773 | .fa-columns:before { 774 | content: "\f0db"; 775 | } 776 | .fa-unsorted:before, 777 | .fa-sort:before { 778 | content: "\f0dc"; 779 | } 780 | .fa-sort-down:before, 781 | .fa-sort-desc:before { 782 | content: "\f0dd"; 783 | } 784 | .fa-sort-up:before, 785 | .fa-sort-asc:before { 786 | content: "\f0de"; 787 | } 788 | .fa-envelope:before { 789 | content: "\f0e0"; 790 | } 791 | .fa-linkedin:before { 792 | content: "\f0e1"; 793 | } 794 | .fa-rotate-left:before, 795 | .fa-undo:before { 796 | content: "\f0e2"; 797 | } 798 | .fa-legal:before, 799 | .fa-gavel:before { 800 | content: "\f0e3"; 801 | } 802 | .fa-dashboard:before, 803 | .fa-tachometer:before { 804 | content: "\f0e4"; 805 | } 806 | .fa-comment-o:before { 807 | content: "\f0e5"; 808 | } 809 | .fa-comments-o:before { 810 | content: "\f0e6"; 811 | } 812 | .fa-flash:before, 813 | .fa-bolt:before { 814 | content: "\f0e7"; 815 | } 816 | .fa-sitemap:before { 817 | content: "\f0e8"; 818 | } 819 | .fa-umbrella:before { 820 | content: "\f0e9"; 821 | } 822 | .fa-paste:before, 823 | .fa-clipboard:before { 824 | content: "\f0ea"; 825 | } 826 | .fa-lightbulb-o:before { 827 | content: "\f0eb"; 828 | } 829 | .fa-exchange:before { 830 | content: "\f0ec"; 831 | } 832 | .fa-cloud-download:before { 833 | content: "\f0ed"; 834 | } 835 | .fa-cloud-upload:before { 836 | content: "\f0ee"; 837 | } 838 | .fa-user-md:before { 839 | content: "\f0f0"; 840 | } 841 | .fa-stethoscope:before { 842 | content: "\f0f1"; 843 | } 844 | .fa-suitcase:before { 845 | content: "\f0f2"; 846 | } 847 | .fa-bell-o:before { 848 | content: "\f0a2"; 849 | } 850 | .fa-coffee:before { 851 | content: "\f0f4"; 852 | } 853 | .fa-cutlery:before { 854 | content: "\f0f5"; 855 | } 856 | .fa-file-text-o:before { 857 | content: "\f0f6"; 858 | } 859 | .fa-building-o:before { 860 | content: "\f0f7"; 861 | } 862 | .fa-hospital-o:before { 863 | content: "\f0f8"; 864 | } 865 | .fa-ambulance:before { 866 | content: "\f0f9"; 867 | } 868 | .fa-medkit:before { 869 | content: "\f0fa"; 870 | } 871 | .fa-fighter-jet:before { 872 | content: "\f0fb"; 873 | } 874 | .fa-beer:before { 875 | content: "\f0fc"; 876 | } 877 | .fa-h-square:before { 878 | content: "\f0fd"; 879 | } 880 | .fa-plus-square:before { 881 | content: "\f0fe"; 882 | } 883 | .fa-angle-double-left:before { 884 | content: "\f100"; 885 | } 886 | .fa-angle-double-right:before { 887 | content: "\f101"; 888 | } 889 | .fa-angle-double-up:before { 890 | content: "\f102"; 891 | } 892 | .fa-angle-double-down:before { 893 | content: "\f103"; 894 | } 895 | .fa-angle-left:before { 896 | content: "\f104"; 897 | } 898 | .fa-angle-right:before { 899 | content: "\f105"; 900 | } 901 | .fa-angle-up:before { 902 | content: "\f106"; 903 | } 904 | .fa-angle-down:before { 905 | content: "\f107"; 906 | } 907 | .fa-desktop:before { 908 | content: "\f108"; 909 | } 910 | .fa-laptop:before { 911 | content: "\f109"; 912 | } 913 | .fa-tablet:before { 914 | content: "\f10a"; 915 | } 916 | .fa-mobile-phone:before, 917 | .fa-mobile:before { 918 | content: "\f10b"; 919 | } 920 | .fa-circle-o:before { 921 | content: "\f10c"; 922 | } 923 | .fa-quote-left:before { 924 | content: "\f10d"; 925 | } 926 | .fa-quote-right:before { 927 | content: "\f10e"; 928 | } 929 | .fa-spinner:before { 930 | content: "\f110"; 931 | } 932 | .fa-circle:before { 933 | content: "\f111"; 934 | } 935 | .fa-mail-reply:before, 936 | .fa-reply:before { 937 | content: "\f112"; 938 | } 939 | .fa-github-alt:before { 940 | content: "\f113"; 941 | } 942 | .fa-folder-o:before { 943 | content: "\f114"; 944 | } 945 | .fa-folder-open-o:before { 946 | content: "\f115"; 947 | } 948 | .fa-smile-o:before { 949 | content: "\f118"; 950 | } 951 | .fa-frown-o:before { 952 | content: "\f119"; 953 | } 954 | .fa-meh-o:before { 955 | content: "\f11a"; 956 | } 957 | .fa-gamepad:before { 958 | content: "\f11b"; 959 | } 960 | .fa-keyboard-o:before { 961 | content: "\f11c"; 962 | } 963 | .fa-flag-o:before { 964 | content: "\f11d"; 965 | } 966 | .fa-flag-checkered:before { 967 | content: "\f11e"; 968 | } 969 | .fa-terminal:before { 970 | content: "\f120"; 971 | } 972 | .fa-code:before { 973 | content: "\f121"; 974 | } 975 | .fa-mail-reply-all:before, 976 | .fa-reply-all:before { 977 | content: "\f122"; 978 | } 979 | .fa-star-half-empty:before, 980 | .fa-star-half-full:before, 981 | .fa-star-half-o:before { 982 | content: "\f123"; 983 | } 984 | .fa-location-arrow:before { 985 | content: "\f124"; 986 | } 987 | .fa-crop:before { 988 | content: "\f125"; 989 | } 990 | .fa-code-fork:before { 991 | content: "\f126"; 992 | } 993 | .fa-unlink:before, 994 | .fa-chain-broken:before { 995 | content: "\f127"; 996 | } 997 | .fa-question:before { 998 | content: "\f128"; 999 | } 1000 | .fa-info:before { 1001 | content: "\f129"; 1002 | } 1003 | .fa-exclamation:before { 1004 | content: "\f12a"; 1005 | } 1006 | .fa-superscript:before { 1007 | content: "\f12b"; 1008 | } 1009 | .fa-subscript:before { 1010 | content: "\f12c"; 1011 | } 1012 | .fa-eraser:before { 1013 | content: "\f12d"; 1014 | } 1015 | .fa-puzzle-piece:before { 1016 | content: "\f12e"; 1017 | } 1018 | .fa-microphone:before { 1019 | content: "\f130"; 1020 | } 1021 | .fa-microphone-slash:before { 1022 | content: "\f131"; 1023 | } 1024 | .fa-shield:before { 1025 | content: "\f132"; 1026 | } 1027 | .fa-calendar-o:before { 1028 | content: "\f133"; 1029 | } 1030 | .fa-fire-extinguisher:before { 1031 | content: "\f134"; 1032 | } 1033 | .fa-rocket:before { 1034 | content: "\f135"; 1035 | } 1036 | .fa-maxcdn:before { 1037 | content: "\f136"; 1038 | } 1039 | .fa-chevron-circle-left:before { 1040 | content: "\f137"; 1041 | } 1042 | .fa-chevron-circle-right:before { 1043 | content: "\f138"; 1044 | } 1045 | .fa-chevron-circle-up:before { 1046 | content: "\f139"; 1047 | } 1048 | .fa-chevron-circle-down:before { 1049 | content: "\f13a"; 1050 | } 1051 | .fa-html5:before { 1052 | content: "\f13b"; 1053 | } 1054 | .fa-css3:before { 1055 | content: "\f13c"; 1056 | } 1057 | .fa-anchor:before { 1058 | content: "\f13d"; 1059 | } 1060 | .fa-unlock-alt:before { 1061 | content: "\f13e"; 1062 | } 1063 | .fa-bullseye:before { 1064 | content: "\f140"; 1065 | } 1066 | .fa-ellipsis-h:before { 1067 | content: "\f141"; 1068 | } 1069 | .fa-ellipsis-v:before { 1070 | content: "\f142"; 1071 | } 1072 | .fa-rss-square:before { 1073 | content: "\f143"; 1074 | } 1075 | .fa-play-circle:before { 1076 | content: "\f144"; 1077 | } 1078 | .fa-ticket:before { 1079 | content: "\f145"; 1080 | } 1081 | .fa-minus-square:before { 1082 | content: "\f146"; 1083 | } 1084 | .fa-minus-square-o:before { 1085 | content: "\f147"; 1086 | } 1087 | .fa-level-up:before { 1088 | content: "\f148"; 1089 | } 1090 | .fa-level-down:before { 1091 | content: "\f149"; 1092 | } 1093 | .fa-check-square:before { 1094 | content: "\f14a"; 1095 | } 1096 | .fa-pencil-square:before { 1097 | content: "\f14b"; 1098 | } 1099 | .fa-external-link-square:before { 1100 | content: "\f14c"; 1101 | } 1102 | .fa-share-square:before { 1103 | content: "\f14d"; 1104 | } 1105 | .fa-compass:before { 1106 | content: "\f14e"; 1107 | } 1108 | .fa-toggle-down:before, 1109 | .fa-caret-square-o-down:before { 1110 | content: "\f150"; 1111 | } 1112 | .fa-toggle-up:before, 1113 | .fa-caret-square-o-up:before { 1114 | content: "\f151"; 1115 | } 1116 | .fa-toggle-right:before, 1117 | .fa-caret-square-o-right:before { 1118 | content: "\f152"; 1119 | } 1120 | .fa-euro:before, 1121 | .fa-eur:before { 1122 | content: "\f153"; 1123 | } 1124 | .fa-gbp:before { 1125 | content: "\f154"; 1126 | } 1127 | .fa-dollar:before, 1128 | .fa-usd:before { 1129 | content: "\f155"; 1130 | } 1131 | .fa-rupee:before, 1132 | .fa-inr:before { 1133 | content: "\f156"; 1134 | } 1135 | .fa-cny:before, 1136 | .fa-rmb:before, 1137 | .fa-yen:before, 1138 | .fa-jpy:before { 1139 | content: "\f157"; 1140 | } 1141 | .fa-ruble:before, 1142 | .fa-rouble:before, 1143 | .fa-rub:before { 1144 | content: "\f158"; 1145 | } 1146 | .fa-won:before, 1147 | .fa-krw:before { 1148 | content: "\f159"; 1149 | } 1150 | .fa-bitcoin:before, 1151 | .fa-btc:before { 1152 | content: "\f15a"; 1153 | } 1154 | .fa-file:before { 1155 | content: "\f15b"; 1156 | } 1157 | .fa-file-text:before { 1158 | content: "\f15c"; 1159 | } 1160 | .fa-sort-alpha-asc:before { 1161 | content: "\f15d"; 1162 | } 1163 | .fa-sort-alpha-desc:before { 1164 | content: "\f15e"; 1165 | } 1166 | .fa-sort-amount-asc:before { 1167 | content: "\f160"; 1168 | } 1169 | .fa-sort-amount-desc:before { 1170 | content: "\f161"; 1171 | } 1172 | .fa-sort-numeric-asc:before { 1173 | content: "\f162"; 1174 | } 1175 | .fa-sort-numeric-desc:before { 1176 | content: "\f163"; 1177 | } 1178 | .fa-thumbs-up:before { 1179 | content: "\f164"; 1180 | } 1181 | .fa-thumbs-down:before { 1182 | content: "\f165"; 1183 | } 1184 | .fa-youtube-square:before { 1185 | content: "\f166"; 1186 | } 1187 | .fa-youtube:before { 1188 | content: "\f167"; 1189 | } 1190 | .fa-xing:before { 1191 | content: "\f168"; 1192 | } 1193 | .fa-xing-square:before { 1194 | content: "\f169"; 1195 | } 1196 | .fa-youtube-play:before { 1197 | content: "\f16a"; 1198 | } 1199 | .fa-dropbox:before { 1200 | content: "\f16b"; 1201 | } 1202 | .fa-stack-overflow:before { 1203 | content: "\f16c"; 1204 | } 1205 | .fa-instagram:before { 1206 | content: "\f16d"; 1207 | } 1208 | .fa-flickr:before { 1209 | content: "\f16e"; 1210 | } 1211 | .fa-adn:before { 1212 | content: "\f170"; 1213 | } 1214 | .fa-bitbucket:before { 1215 | content: "\f171"; 1216 | } 1217 | .fa-bitbucket-square:before { 1218 | content: "\f172"; 1219 | } 1220 | .fa-tumblr:before { 1221 | content: "\f173"; 1222 | } 1223 | .fa-tumblr-square:before { 1224 | content: "\f174"; 1225 | } 1226 | .fa-long-arrow-down:before { 1227 | content: "\f175"; 1228 | } 1229 | .fa-long-arrow-up:before { 1230 | content: "\f176"; 1231 | } 1232 | .fa-long-arrow-left:before { 1233 | content: "\f177"; 1234 | } 1235 | .fa-long-arrow-right:before { 1236 | content: "\f178"; 1237 | } 1238 | .fa-apple:before { 1239 | content: "\f179"; 1240 | } 1241 | .fa-windows:before { 1242 | content: "\f17a"; 1243 | } 1244 | .fa-android:before { 1245 | content: "\f17b"; 1246 | } 1247 | .fa-linux:before { 1248 | content: "\f17c"; 1249 | } 1250 | .fa-dribbble:before { 1251 | content: "\f17d"; 1252 | } 1253 | .fa-skype:before { 1254 | content: "\f17e"; 1255 | } 1256 | .fa-foursquare:before { 1257 | content: "\f180"; 1258 | } 1259 | .fa-trello:before { 1260 | content: "\f181"; 1261 | } 1262 | .fa-female:before { 1263 | content: "\f182"; 1264 | } 1265 | .fa-male:before { 1266 | content: "\f183"; 1267 | } 1268 | .fa-gittip:before, 1269 | .fa-gratipay:before { 1270 | content: "\f184"; 1271 | } 1272 | .fa-sun-o:before { 1273 | content: "\f185"; 1274 | } 1275 | .fa-moon-o:before { 1276 | content: "\f186"; 1277 | } 1278 | .fa-archive:before { 1279 | content: "\f187"; 1280 | } 1281 | .fa-bug:before { 1282 | content: "\f188"; 1283 | } 1284 | .fa-vk:before { 1285 | content: "\f189"; 1286 | } 1287 | .fa-weibo:before { 1288 | content: "\f18a"; 1289 | } 1290 | .fa-renren:before { 1291 | content: "\f18b"; 1292 | } 1293 | .fa-pagelines:before { 1294 | content: "\f18c"; 1295 | } 1296 | .fa-stack-exchange:before { 1297 | content: "\f18d"; 1298 | } 1299 | .fa-arrow-circle-o-right:before { 1300 | content: "\f18e"; 1301 | } 1302 | .fa-arrow-circle-o-left:before { 1303 | content: "\f190"; 1304 | } 1305 | .fa-toggle-left:before, 1306 | .fa-caret-square-o-left:before { 1307 | content: "\f191"; 1308 | } 1309 | .fa-dot-circle-o:before { 1310 | content: "\f192"; 1311 | } 1312 | .fa-wheelchair:before { 1313 | content: "\f193"; 1314 | } 1315 | .fa-vimeo-square:before { 1316 | content: "\f194"; 1317 | } 1318 | .fa-turkish-lira:before, 1319 | .fa-try:before { 1320 | content: "\f195"; 1321 | } 1322 | .fa-plus-square-o:before { 1323 | content: "\f196"; 1324 | } 1325 | .fa-space-shuttle:before { 1326 | content: "\f197"; 1327 | } 1328 | .fa-slack:before { 1329 | content: "\f198"; 1330 | } 1331 | .fa-envelope-square:before { 1332 | content: "\f199"; 1333 | } 1334 | .fa-wordpress:before { 1335 | content: "\f19a"; 1336 | } 1337 | .fa-openid:before { 1338 | content: "\f19b"; 1339 | } 1340 | .fa-institution:before, 1341 | .fa-bank:before, 1342 | .fa-university:before { 1343 | content: "\f19c"; 1344 | } 1345 | .fa-mortar-board:before, 1346 | .fa-graduation-cap:before { 1347 | content: "\f19d"; 1348 | } 1349 | .fa-yahoo:before { 1350 | content: "\f19e"; 1351 | } 1352 | .fa-google:before { 1353 | content: "\f1a0"; 1354 | } 1355 | .fa-reddit:before { 1356 | content: "\f1a1"; 1357 | } 1358 | .fa-reddit-square:before { 1359 | content: "\f1a2"; 1360 | } 1361 | .fa-stumbleupon-circle:before { 1362 | content: "\f1a3"; 1363 | } 1364 | .fa-stumbleupon:before { 1365 | content: "\f1a4"; 1366 | } 1367 | .fa-delicious:before { 1368 | content: "\f1a5"; 1369 | } 1370 | .fa-digg:before { 1371 | content: "\f1a6"; 1372 | } 1373 | .fa-pied-piper:before { 1374 | content: "\f1a7"; 1375 | } 1376 | .fa-pied-piper-alt:before { 1377 | content: "\f1a8"; 1378 | } 1379 | .fa-drupal:before { 1380 | content: "\f1a9"; 1381 | } 1382 | .fa-joomla:before { 1383 | content: "\f1aa"; 1384 | } 1385 | .fa-language:before { 1386 | content: "\f1ab"; 1387 | } 1388 | .fa-fax:before { 1389 | content: "\f1ac"; 1390 | } 1391 | .fa-building:before { 1392 | content: "\f1ad"; 1393 | } 1394 | .fa-child:before { 1395 | content: "\f1ae"; 1396 | } 1397 | .fa-paw:before { 1398 | content: "\f1b0"; 1399 | } 1400 | .fa-spoon:before { 1401 | content: "\f1b1"; 1402 | } 1403 | .fa-cube:before { 1404 | content: "\f1b2"; 1405 | } 1406 | .fa-cubes:before { 1407 | content: "\f1b3"; 1408 | } 1409 | .fa-behance:before { 1410 | content: "\f1b4"; 1411 | } 1412 | .fa-behance-square:before { 1413 | content: "\f1b5"; 1414 | } 1415 | .fa-steam:before { 1416 | content: "\f1b6"; 1417 | } 1418 | .fa-steam-square:before { 1419 | content: "\f1b7"; 1420 | } 1421 | .fa-recycle:before { 1422 | content: "\f1b8"; 1423 | } 1424 | .fa-automobile:before, 1425 | .fa-car:before { 1426 | content: "\f1b9"; 1427 | } 1428 | .fa-cab:before, 1429 | .fa-taxi:before { 1430 | content: "\f1ba"; 1431 | } 1432 | .fa-tree:before { 1433 | content: "\f1bb"; 1434 | } 1435 | .fa-spotify:before { 1436 | content: "\f1bc"; 1437 | } 1438 | .fa-deviantart:before { 1439 | content: "\f1bd"; 1440 | } 1441 | .fa-soundcloud:before { 1442 | content: "\f1be"; 1443 | } 1444 | .fa-database:before { 1445 | content: "\f1c0"; 1446 | } 1447 | .fa-file-pdf-o:before { 1448 | content: "\f1c1"; 1449 | } 1450 | .fa-file-word-o:before { 1451 | content: "\f1c2"; 1452 | } 1453 | .fa-file-excel-o:before { 1454 | content: "\f1c3"; 1455 | } 1456 | .fa-file-powerpoint-o:before { 1457 | content: "\f1c4"; 1458 | } 1459 | .fa-file-photo-o:before, 1460 | .fa-file-picture-o:before, 1461 | .fa-file-image-o:before { 1462 | content: "\f1c5"; 1463 | } 1464 | .fa-file-zip-o:before, 1465 | .fa-file-archive-o:before { 1466 | content: "\f1c6"; 1467 | } 1468 | .fa-file-sound-o:before, 1469 | .fa-file-audio-o:before { 1470 | content: "\f1c7"; 1471 | } 1472 | .fa-file-movie-o:before, 1473 | .fa-file-video-o:before { 1474 | content: "\f1c8"; 1475 | } 1476 | .fa-file-code-o:before { 1477 | content: "\f1c9"; 1478 | } 1479 | .fa-vine:before { 1480 | content: "\f1ca"; 1481 | } 1482 | .fa-codepen:before { 1483 | content: "\f1cb"; 1484 | } 1485 | .fa-jsfiddle:before { 1486 | content: "\f1cc"; 1487 | } 1488 | .fa-life-bouy:before, 1489 | .fa-life-buoy:before, 1490 | .fa-life-saver:before, 1491 | .fa-support:before, 1492 | .fa-life-ring:before { 1493 | content: "\f1cd"; 1494 | } 1495 | .fa-circle-o-notch:before { 1496 | content: "\f1ce"; 1497 | } 1498 | .fa-ra:before, 1499 | .fa-rebel:before { 1500 | content: "\f1d0"; 1501 | } 1502 | .fa-ge:before, 1503 | .fa-empire:before { 1504 | content: "\f1d1"; 1505 | } 1506 | .fa-git-square:before { 1507 | content: "\f1d2"; 1508 | } 1509 | .fa-git:before { 1510 | content: "\f1d3"; 1511 | } 1512 | .fa-hacker-news:before { 1513 | content: "\f1d4"; 1514 | } 1515 | .fa-tencent-weibo:before { 1516 | content: "\f1d5"; 1517 | } 1518 | .fa-qq:before { 1519 | content: "\f1d6"; 1520 | } 1521 | .fa-wechat:before, 1522 | .fa-weixin:before { 1523 | content: "\f1d7"; 1524 | } 1525 | .fa-send:before, 1526 | .fa-paper-plane:before { 1527 | content: "\f1d8"; 1528 | } 1529 | .fa-send-o:before, 1530 | .fa-paper-plane-o:before { 1531 | content: "\f1d9"; 1532 | } 1533 | .fa-history:before { 1534 | content: "\f1da"; 1535 | } 1536 | .fa-genderless:before, 1537 | .fa-circle-thin:before { 1538 | content: "\f1db"; 1539 | } 1540 | .fa-header:before { 1541 | content: "\f1dc"; 1542 | } 1543 | .fa-paragraph:before { 1544 | content: "\f1dd"; 1545 | } 1546 | .fa-sliders:before { 1547 | content: "\f1de"; 1548 | } 1549 | .fa-share-alt:before { 1550 | content: "\f1e0"; 1551 | } 1552 | .fa-share-alt-square:before { 1553 | content: "\f1e1"; 1554 | } 1555 | .fa-bomb:before { 1556 | content: "\f1e2"; 1557 | } 1558 | .fa-soccer-ball-o:before, 1559 | .fa-futbol-o:before { 1560 | content: "\f1e3"; 1561 | } 1562 | .fa-tty:before { 1563 | content: "\f1e4"; 1564 | } 1565 | .fa-binoculars:before { 1566 | content: "\f1e5"; 1567 | } 1568 | .fa-plug:before { 1569 | content: "\f1e6"; 1570 | } 1571 | .fa-slideshare:before { 1572 | content: "\f1e7"; 1573 | } 1574 | .fa-twitch:before { 1575 | content: "\f1e8"; 1576 | } 1577 | .fa-yelp:before { 1578 | content: "\f1e9"; 1579 | } 1580 | .fa-newspaper-o:before { 1581 | content: "\f1ea"; 1582 | } 1583 | .fa-wifi:before { 1584 | content: "\f1eb"; 1585 | } 1586 | .fa-calculator:before { 1587 | content: "\f1ec"; 1588 | } 1589 | .fa-paypal:before { 1590 | content: "\f1ed"; 1591 | } 1592 | .fa-google-wallet:before { 1593 | content: "\f1ee"; 1594 | } 1595 | .fa-cc-visa:before { 1596 | content: "\f1f0"; 1597 | } 1598 | .fa-cc-mastercard:before { 1599 | content: "\f1f1"; 1600 | } 1601 | .fa-cc-discover:before { 1602 | content: "\f1f2"; 1603 | } 1604 | .fa-cc-amex:before { 1605 | content: "\f1f3"; 1606 | } 1607 | .fa-cc-paypal:before { 1608 | content: "\f1f4"; 1609 | } 1610 | .fa-cc-stripe:before { 1611 | content: "\f1f5"; 1612 | } 1613 | .fa-bell-slash:before { 1614 | content: "\f1f6"; 1615 | } 1616 | .fa-bell-slash-o:before { 1617 | content: "\f1f7"; 1618 | } 1619 | .fa-trash:before { 1620 | content: "\f1f8"; 1621 | } 1622 | .fa-copyright:before { 1623 | content: "\f1f9"; 1624 | } 1625 | .fa-at:before { 1626 | content: "\f1fa"; 1627 | } 1628 | .fa-eyedropper:before { 1629 | content: "\f1fb"; 1630 | } 1631 | .fa-paint-brush:before { 1632 | content: "\f1fc"; 1633 | } 1634 | .fa-birthday-cake:before { 1635 | content: "\f1fd"; 1636 | } 1637 | .fa-area-chart:before { 1638 | content: "\f1fe"; 1639 | } 1640 | .fa-pie-chart:before { 1641 | content: "\f200"; 1642 | } 1643 | .fa-line-chart:before { 1644 | content: "\f201"; 1645 | } 1646 | .fa-lastfm:before { 1647 | content: "\f202"; 1648 | } 1649 | .fa-lastfm-square:before { 1650 | content: "\f203"; 1651 | } 1652 | .fa-toggle-off:before { 1653 | content: "\f204"; 1654 | } 1655 | .fa-toggle-on:before { 1656 | content: "\f205"; 1657 | } 1658 | .fa-bicycle:before { 1659 | content: "\f206"; 1660 | } 1661 | .fa-bus:before { 1662 | content: "\f207"; 1663 | } 1664 | .fa-ioxhost:before { 1665 | content: "\f208"; 1666 | } 1667 | .fa-angellist:before { 1668 | content: "\f209"; 1669 | } 1670 | .fa-cc:before { 1671 | content: "\f20a"; 1672 | } 1673 | .fa-shekel:before, 1674 | .fa-sheqel:before, 1675 | .fa-ils:before { 1676 | content: "\f20b"; 1677 | } 1678 | .fa-meanpath:before { 1679 | content: "\f20c"; 1680 | } 1681 | .fa-buysellads:before { 1682 | content: "\f20d"; 1683 | } 1684 | .fa-connectdevelop:before { 1685 | content: "\f20e"; 1686 | } 1687 | .fa-dashcube:before { 1688 | content: "\f210"; 1689 | } 1690 | .fa-forumbee:before { 1691 | content: "\f211"; 1692 | } 1693 | .fa-leanpub:before { 1694 | content: "\f212"; 1695 | } 1696 | .fa-sellsy:before { 1697 | content: "\f213"; 1698 | } 1699 | .fa-shirtsinbulk:before { 1700 | content: "\f214"; 1701 | } 1702 | .fa-simplybuilt:before { 1703 | content: "\f215"; 1704 | } 1705 | .fa-skyatlas:before { 1706 | content: "\f216"; 1707 | } 1708 | .fa-cart-plus:before { 1709 | content: "\f217"; 1710 | } 1711 | .fa-cart-arrow-down:before { 1712 | content: "\f218"; 1713 | } 1714 | .fa-diamond:before { 1715 | content: "\f219"; 1716 | } 1717 | .fa-ship:before { 1718 | content: "\f21a"; 1719 | } 1720 | .fa-user-secret:before { 1721 | content: "\f21b"; 1722 | } 1723 | .fa-motorcycle:before { 1724 | content: "\f21c"; 1725 | } 1726 | .fa-street-view:before { 1727 | content: "\f21d"; 1728 | } 1729 | .fa-heartbeat:before { 1730 | content: "\f21e"; 1731 | } 1732 | .fa-venus:before { 1733 | content: "\f221"; 1734 | } 1735 | .fa-mars:before { 1736 | content: "\f222"; 1737 | } 1738 | .fa-mercury:before { 1739 | content: "\f223"; 1740 | } 1741 | .fa-transgender:before { 1742 | content: "\f224"; 1743 | } 1744 | .fa-transgender-alt:before { 1745 | content: "\f225"; 1746 | } 1747 | .fa-venus-double:before { 1748 | content: "\f226"; 1749 | } 1750 | .fa-mars-double:before { 1751 | content: "\f227"; 1752 | } 1753 | .fa-venus-mars:before { 1754 | content: "\f228"; 1755 | } 1756 | .fa-mars-stroke:before { 1757 | content: "\f229"; 1758 | } 1759 | .fa-mars-stroke-v:before { 1760 | content: "\f22a"; 1761 | } 1762 | .fa-mars-stroke-h:before { 1763 | content: "\f22b"; 1764 | } 1765 | .fa-neuter:before { 1766 | content: "\f22c"; 1767 | } 1768 | .fa-facebook-official:before { 1769 | content: "\f230"; 1770 | } 1771 | .fa-pinterest-p:before { 1772 | content: "\f231"; 1773 | } 1774 | .fa-whatsapp:before { 1775 | content: "\f232"; 1776 | } 1777 | .fa-server:before { 1778 | content: "\f233"; 1779 | } 1780 | .fa-user-plus:before { 1781 | content: "\f234"; 1782 | } 1783 | .fa-user-times:before { 1784 | content: "\f235"; 1785 | } 1786 | .fa-hotel:before, 1787 | .fa-bed:before { 1788 | content: "\f236"; 1789 | } 1790 | .fa-viacoin:before { 1791 | content: "\f237"; 1792 | } 1793 | .fa-train:before { 1794 | content: "\f238"; 1795 | } 1796 | .fa-subway:before { 1797 | content: "\f239"; 1798 | } 1799 | .fa-medium:before { 1800 | content: "\f23a"; 1801 | } 1802 | -------------------------------------------------------------------------------- /assets/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"} -------------------------------------------------------------------------------- /assets/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinwhitaker/laravel-table-view/6095b63fd13fb6757638516ec1fb45186680ed30/assets/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinwhitaker/laravel-table-view/6095b63fd13fb6757638516ec1fb45186680ed30/assets/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinwhitaker/laravel-table-view/6095b63fd13fb6757638516ec1fb45186680ed30/assets/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinwhitaker/laravel-table-view/6095b63fd13fb6757638516ec1fb45186680ed30/assets/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinwhitaker/laravel-table-view/6095b63fd13fb6757638516ec1fb45186680ed30/assets/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/less/themes/a/_components.less: -------------------------------------------------------------------------------- 1 | @import 'components/_btn'; 2 | @import 'components/_form'; 3 | @import 'components/_pagination'; 4 | @import 'components/_panel'; 5 | @import 'components/_table'; -------------------------------------------------------------------------------- /assets/less/themes/a/_helper.less: -------------------------------------------------------------------------------- 1 | /* Predefined Classes */ 2 | 3 | .row { margin: 0 -10px; } 4 | .row > [class*="col-"] { padding: 0 10px; } 5 | .m-auto { margin: 0 auto !important; } 6 | .wrapper { padding: 15px !important; } 7 | .semi-bold { font-weight: 600 !important; } 8 | .overflow-auto { overflow: auto !important; } 9 | .overflow-hidden { overflow: hidden !important; } 10 | .overflow-visible { overflow: visible !important; } 11 | .overflow-scroll { overflow: scroll !important; } 12 | .overflow-x-hidden { overflow-x: hidden !important; } 13 | .overflow-x-visible { overflow-x: visible !important; } 14 | .overflow-x-scroll { overflow-x: scroll !important; } 15 | .overflow-y-hidden { overflow-y: hidden !important; } 16 | .overflow-y-visible { overflow-y: visible !important; } 17 | .overflow-y-scroll { overflow-y: scroll !important; } 18 | .f-w-100 { font-weight: 100 !important; } 19 | .f-w-200 { font-weight: 200 !important; } 20 | .f-w-300 { font-weight: 300 !important; } 21 | .f-w-400 { font-weight: 400 !important; } 22 | .f-w-500 { font-weight: 500 !important; } 23 | .f-w-600 { font-weight: 600 !important; } 24 | .f-w-700 { font-weight: 700 !important; } 25 | .text-center { text-align: center !important; } 26 | .text-left { text-align: left !important; } 27 | .text-right { text-align: right !important; } 28 | .pull-left { float: left !important; } 29 | .pull-right { float: right !important; } 30 | .pull-none { float: none !important; } 31 | 32 | /* LOOP - Margin & Padding */ 33 | 34 | .margin-padding-css-generator(@counter) when (@counter > -1) { 35 | .m-@{counter} { margin: (@counter * 1px) !important; } 36 | .m-t-@{counter} { margin-top: (@counter * 1px) !important; } 37 | .m-r-@{counter} { margin-right: (@counter * 1px) !important; } 38 | .m-b-@{counter} { margin-bottom: (@counter * 1px) !important; } 39 | .m-l-@{counter} { margin-left: (@counter * 1px) !important; } 40 | 41 | .p-@{counter} { padding: (@counter * 1px) !important; } 42 | .p-t-@{counter} { padding-top: (@counter * 1px) !important; } 43 | .p-r-@{counter} { padding-right: (@counter * 1px) !important; } 44 | .p-b-@{counter} { padding-bottom: (@counter * 1px) !important; } 45 | .p-l-@{counter} { padding-left: (@counter * 1px) !important; } 46 | 47 | .margin-padding-css-generator((@counter - 1)); 48 | } 49 | .margin-padding-css-generator(40); 50 | 51 | 52 | /* LOOP - Font Size */ 53 | 54 | .font-size-css-generator(@counter) when (@counter > 7) { 55 | .f-s-@{counter} { font-size: (@counter * 1px) !important; } 56 | 57 | .font-size-css-generator((@counter - 1)); 58 | } 59 | .font-size-css-generator(20); 60 | 61 | 62 | .table-valign-middle th, 63 | .table-valign-middle td { 64 | vertical-align: middle !important; 65 | } 66 | .table-th-valign-middle th, 67 | .table-td-valign-middle td { 68 | vertical-align: middle !important; 69 | } 70 | .table-valign-top th, 71 | .table-valign-top td { 72 | vertical-align: top !important; 73 | } 74 | .table-th-valign-top th, 75 | .table-td-valign-top td { 76 | vertical-align: top !important; 77 | } 78 | .table-valign-bottom th, 79 | .table-valign-bottom td { 80 | vertical-align: bottom !important; 81 | } 82 | .table-th-valign-bottom th, 83 | .table-td-valign-bottom td { 84 | vertical-align: bottom !important; 85 | } 86 | .text-inverse { color: @black !important; } 87 | a.text-inverse:hover, 88 | a.text-inverse:focus { 89 | color: @light_black !important; 90 | } 91 | .text-success { color: @green !important; } 92 | a.text-success:hover, 93 | a.text-success:focus { 94 | color: @light_green !important; 95 | } 96 | .text-info { color: @aqua !important; } 97 | a.text-info:hover, 98 | a.text-info:focus { 99 | color: @light_aqua !important; 100 | } 101 | .text-primary { color: @blue !important; } 102 | a.text-primary:hover, 103 | a.text-primary:focus { 104 | color: @light_blue !important; 105 | } 106 | .text-warning { color: @yellow !important; } 107 | a.text-warning:hover, 108 | a.text-warning:focus { 109 | color: @light_yellow !important; 110 | } 111 | .text-danger { color: @red !important; } 112 | a.text-danger:hover, 113 | a.text-danger:focus { 114 | color: @light_red !important; 115 | } 116 | .text-white { color: #fff !important; } 117 | a.text-white:hover, 118 | a.text-white:focus { 119 | color: #f0f3f4 !important; 120 | } 121 | 122 | .bg-white { background: #ffffff !important; } 123 | .bg-silver-lighter { background: @light_silver !important; } 124 | .bg-silver { background: @silver !important; } 125 | .bg-silver-darker { background: @dark_silver !important; } 126 | 127 | .bg-black { background: @black !important; } 128 | .bg-black-darker { background: @dark_black !important; } 129 | .bg-black-lighter { background: @light_black !important; } 130 | 131 | .bg-grey { background: @grey !important; } 132 | .bg-grey-darker { background: @dark_grey !important; } 133 | .bg-grey-lighter { background: @light_grey !important; } 134 | 135 | .bg-red { background: @red !important; } 136 | .bg-red-darker { background: @dark_red !important; } 137 | .bg-red-lighter { background: @light_red !important; } 138 | 139 | .bg-orange { background: @orange !important; } 140 | .bg-orange-darker { background: @dark_orange !important; } 141 | .bg-orange-lighter { background: @light_orange !important; } 142 | 143 | .bg-yellow { background: @yellow !important; } 144 | .bg-yellow-darker { background: @dark_yellow !important; } 145 | .bg-yellow-lighter { background: @light_yellow !important; } 146 | 147 | .bg-green { background: @green !important; } 148 | .bg-green-darker { background: @dark_green !important; } 149 | .bg-green-lighter { background: @light_green !important; } 150 | 151 | .bg-blue { background: @blue !important; } 152 | .bg-blue-darker { background: @dark_blue !important; } 153 | .bg-blue-lighter { background: @light_blue !important; } 154 | 155 | .bg-aqua { background: @aqua !important; } 156 | .bg-aqua-darker { background: @dark_aqua !important; } 157 | .bg-aqua-lighter { background: @light_aqua !important; } 158 | 159 | .bg-purple { background: @purple !important; } 160 | .bg-purple-darker { background: @dark_purple !important; } 161 | .bg-purple-lighter { background: @light_purple !important; } 162 | 163 | .no-bg { background: none !important; } 164 | 165 | .height-xs { height: 150px !important; } 166 | .height-sm { height: 300px !important; } 167 | .height-md { height: 450px !important; } 168 | .height-lg { height: 600px !important; } 169 | .height-full { height: 100% !important; } 170 | .height-50 { height: 50px !important; } 171 | .height-100 { height: 100px !important; } 172 | .height-150 { height: 150px !important; } 173 | .height-200 { height: 200px !important; } 174 | .height-250 { height: 250px !important; } 175 | .height-300 { height: 300px !important; } 176 | .height-350 { height: 350px !important; } 177 | .height-400 { height: 400px !important; } 178 | .height-450 { height: 450px !important; } 179 | .height-500 { height: 500px !important; } 180 | .height-550 { height: 550px !important; } 181 | .height-600 { height: 600px !important; } 182 | 183 | .width-xs { width: 150px !important; } 184 | .width-sm { width: 300px !important; } 185 | .width-md { width: 450px !important; } 186 | .width-lg { width: 600px !important; } 187 | .width-full { width: 100% !important; } 188 | .width-50 { width: 50px !important; } 189 | .width-100 { width: 100px !important; } 190 | .width-150 { width: 150px !important; } 191 | .width-200 { width: 200px !important; } 192 | .width-250 { width: 250px !important; } 193 | .width-300 { width: 300px !important; } 194 | .width-350 { width: 350px !important; } 195 | .width-400 { width: 400px !important; } 196 | .width-450 { width: 450px !important; } 197 | .width-500 { width: 500px !important; } 198 | .width-550 { width: 550px !important; } 199 | .width-600 { width: 600px !important; } 200 | 201 | .text-ellipsis { 202 | white-space: nowrap !important; 203 | overflow: hidden !important; 204 | text-overflow: ellipsis !important; 205 | } 206 | .underline { 207 | border-bottom: 1px solid #e2e7eb !important; 208 | } 209 | .inline { 210 | display: inline; 211 | } -------------------------------------------------------------------------------- /assets/less/themes/a/_mixins.less: -------------------------------------------------------------------------------- 1 | /* Mixins */ 2 | 3 | .border-radius(@radius) { 4 | -webkit-border-radius: @radius; 5 | -moz-border-radius: @radius; 6 | border-radius: @radius; 7 | } 8 | .box-shadow(@shadow) { 9 | -webkit-box-shadow: @shadow; 10 | -moz-box-shadow: @shadow; 11 | box-shadow: @shadow; 12 | } 13 | .opacity(@opacity) { 14 | opacity: @opacity; 15 | } 16 | .clearfix() { 17 | content: ''; 18 | clear: both; 19 | display: table; 20 | } 21 | .generate-button-styling(@buttonClassName; @defaultColor; @hoverColor;) { 22 | .btn.@{buttonClassName} { 23 | color: #fff; 24 | background: @defaultColor; 25 | border-color: @defaultColor; 26 | 27 | &:hover, 28 | &:focus, 29 | &:active, 30 | &.active { 31 | background: @hoverColor; 32 | border-color: @hoverColor; 33 | } 34 | 35 | } 36 | .open .dropdown-toggle.@{buttonClassName} { 37 | background: @hoverColor; 38 | border-color: @hoverColor; 39 | } 40 | .btn-group .btn.@{buttonClassName}:not(.active) + .btn.@{buttonClassName}, 41 | .input-group-btn .btn.@{buttonClassName}:not(.active) + .btn.@{buttonClassName} { 42 | border-left-color: @hoverColor; 43 | } 44 | } -------------------------------------------------------------------------------- /assets/less/themes/a/_responsive.less: -------------------------------------------------------------------------------- 1 | /* Responsive Setting */ 2 | 3 | @media(max-width: 979px) { 4 | .form-horizontal.form-bordered .form-group { 5 | border-bottom: 1px solid #eee; 6 | 7 | & .control-label { 8 | padding: 15px; 9 | line-height: 34px; 10 | } 11 | & > div { 12 | padding: 15px; 13 | } 14 | &, 15 | & > div, 16 | & > .control-label { 17 | border: none; 18 | } 19 | } 20 | } 21 | 22 | @media (max-width: 767px) { 23 | .table-responsive .table > thead > tr > th, 24 | .table-responsive .table > tbody > tr > th, 25 | .table-responsive .table > tfoot > tr > th, 26 | .table-responsive .table > thead > tr > td, 27 | .table-responsive .table > tbody > tr > td, 28 | .table-responsive .table > tfoot > tr > td { 29 | white-space: nowrap; 30 | } 31 | .form-horizontal.form-bordered .form-group > .control-label { 32 | padding: 15px 15px 0; 33 | line-height: inherit; 34 | } 35 | .form-horizontal.form-bordered .form-group > div { 36 | padding: 5px 15px 15px; 37 | } 38 | .theme-panel { 39 | top: 0; 40 | bottom: 0; 41 | } 42 | .theme-panel .theme-collapse-btn { 43 | top: 150px; 44 | } 45 | .theme-panel .theme-panel-content { 46 | position: absolute; 47 | top: 0; 48 | bottom: 0; 49 | left: 0; 50 | right: 0; 51 | margin: 0; 52 | overflow: scroll; 53 | } 54 | } -------------------------------------------------------------------------------- /assets/less/themes/a/_variable.less: -------------------------------------------------------------------------------- 1 | /* Variable */ 2 | 3 | @bg_body: #d9e0e7; 4 | 5 | @green: #00acac; 6 | @dark_green: #008a8a; 7 | @light_green: #33bdbd; 8 | 9 | @blue: #348fe2; 10 | @dark_blue: #2a72b5; 11 | @light_blue: #5da5e8; 12 | 13 | @aqua: #49b6d6; 14 | @dark_aqua: #3a92ab; 15 | @light_aqua: #6dc5de; 16 | 17 | @purple: #727cb6; 18 | @dark_purple: #5b6392; 19 | @light_purple: #8e96c5; 20 | 21 | @orange: #f59c1a; 22 | @dark_orange: #c47d15; 23 | @light_orange: #f7b048; 24 | 25 | @yellow: #e3fa3e; 26 | @dark_yellow: #b6c832; 27 | @light_yellow: #e9fb65; 28 | 29 | @red: #ff5b57; 30 | @dark_red: #cc4946; 31 | @light_red: #ff7c79; 32 | 33 | @black: #2d353c; 34 | @dark_black: #242a30; 35 | @darker_black: #1a2229; 36 | @light_black: #575d63; 37 | 38 | @grey: #b6c2c9; 39 | @dark_grey: #929ba1; 40 | @light_grey: #c5ced4; 41 | 42 | @silver: #f0f3f4; 43 | @dark_silver: #b4b6b7; 44 | @light_silver: #f4f6f7; 45 | 46 | @white: #ffffff; -------------------------------------------------------------------------------- /assets/less/themes/a/components/_btn.less: -------------------------------------------------------------------------------- 1 | /* Button */ 2 | 3 | .btn { 4 | font-weight: 300; 5 | .border-radius(3px); 6 | 7 | &:focus, 8 | &:active:focus, 9 | &.active:focus { 10 | outline: none; 11 | } 12 | &:active, 13 | &.active { 14 | .box-shadow(inset 0 3px 5px rgba(0, 0, 0, 0.1)); 15 | } 16 | } 17 | .btn-icon, 18 | .btn.btn-icon { 19 | display: inline-block; 20 | width: 28px; 21 | height: 28px; 22 | padding: 0; 23 | border: none; 24 | line-height: 28px; 25 | text-align: center; 26 | font-size: 14px; 27 | 28 | &.btn-xs { 29 | width: 16px; 30 | height: 16px; 31 | font-size: 8px; 32 | line-height: 16px; 33 | } 34 | &.btn-sm { 35 | width: 22px; 36 | height: 22px; 37 | font-size: 11px; 38 | line-height: 22px; 39 | } 40 | &.btn-lg { 41 | width: 34px; 42 | height: 34px; 43 | font-size: 17px; 44 | line-height: 34px; 45 | } 46 | & > .pull-left, 47 | & > .pull-right { 48 | line-height: 1.428571429; 49 | } 50 | } 51 | 52 | .btn-circle, 53 | .btn.btn-circle { 54 | .border-radius(50%); 55 | } 56 | .btn-scroll-to-top { 57 | position: fixed; 58 | bottom: 20px; 59 | right: 25px; 60 | z-index: 1020; 61 | } 62 | .btn-block { 63 | padding-left: 12px; 64 | padding-right: 12px; 65 | } 66 | 67 | 68 | /* 69 | Button Generator (inside _mixins.less) 70 | ---------------- 71 | .generate-button-styling(@buttonClassName; @defaultColor; @hoverColor;); 72 | */ 73 | 74 | // .btn-default 75 | .generate-button-styling(btn-default; @grey; @dark_grey); 76 | 77 | // .btn-inverse 78 | .generate-button-styling(btn-inverse; @black; @dark_black); 79 | 80 | // .btn-primary 81 | .generate-button-styling(btn-primary; @blue; @dark_blue); 82 | 83 | // .btn-success 84 | .generate-button-styling(btn-success; @green; @dark_green); 85 | 86 | // .btn-warning 87 | .generate-button-styling(btn-warning; @orange; @dark_orange); 88 | 89 | // .btn-danger 90 | .generate-button-styling(btn-danger; @red; @dark_red); 91 | 92 | // .btn-info 93 | .generate-button-styling(btn-info; @aqua; @dark_aqua); 94 | 95 | // .btn-white 96 | .btn.btn-white { 97 | font-weight: normal; 98 | color: #333; 99 | background: @white; 100 | border-color: #e2e7eb; 101 | 102 | &:hover, 103 | &:focus, 104 | &:active, 105 | &.active { 106 | background: #e2e7eb; 107 | border-color: #d8dde1; 108 | } 109 | 110 | &.btn-white-without-border { 111 | border-color: @white; 112 | 113 | &.active, 114 | &.active:hover, 115 | &.active:focus { 116 | border-color: #ddd; 117 | } 118 | &:hover, 119 | &focus { 120 | border-color: #eee; 121 | } 122 | } 123 | } 124 | .open .dropdown-toggle.btn-white { 125 | background: #e2e7eb; 126 | border-color: #d8dde1; 127 | } 128 | .btn-group .btn.btn-white:not(.active) + .btn.btn-white, 129 | .input-group-btn .btn.btn-white:not(.active) + .btn.btn-white { 130 | border-left-color: #eee; 131 | } 132 | 133 | 134 | -------------------------------------------------------------------------------- /assets/less/themes/a/components/_form.less: -------------------------------------------------------------------------------- 1 | /* Form Elements */ 2 | 3 | .form-control { 4 | border: 1px solid #ccd0d4; 5 | font-size: 12px; 6 | .border-radius(3px); 7 | .box-shadow(none); 8 | } 9 | .form-control.input-white { 10 | background: #fff; 11 | border-color: #fff; 12 | } 13 | .form-control.input-white:focus { 14 | .box-shadow(none); 15 | } 16 | .form-control[disabled], 17 | .form-control[readonly], 18 | fieldset[disabled] .form-control { 19 | background: #e5e9ed; 20 | .opacity(0.6); 21 | } 22 | .form-control[disabled]:focus, 23 | .form-control[readonly]:focus, 24 | fieldset[disabled] .form-control:focus { 25 | .box-shadow(none); 26 | border: 1px solid #ccd0d4; 27 | } 28 | .form-control:focus { 29 | border-color: #9fa2a5; 30 | .box-shadow(none); 31 | } 32 | .form-horizontal.form-bordered .form-group { 33 | border-bottom: 1px solid #eee; 34 | margin: 0; 35 | } 36 | .form-horizontal.form-bordered .form-group:last-child { 37 | border-bottom: 0; 38 | } 39 | .form-horizontal.form-bordered .form-group > .control-label { 40 | padding: 22px 15px 15px; 41 | } 42 | .form-horizontal.form-bordered .form-group > div { 43 | padding: 15px; 44 | } 45 | .form-horizontal.form-bordered .form-group > div { 46 | border-left: 1px solid #eee; 47 | } 48 | .form-horizontal.form-bordered .form-group > .control-label { 49 | border-right: 1px solid #eee; 50 | margin-right: -1px; 51 | } 52 | .form-horizontal.form-bordered .has-feedback .form-control-feedback { 53 | top: 15px; 54 | } 55 | select.form-control { 56 | border-color: #ccd0d4; 57 | } 58 | select[multiple].form-control { 59 | border-color: #ccd0d4; 60 | } 61 | label { 62 | font-weight: 500; 63 | } 64 | .input-group-addon { 65 | background: #e2e7eb; 66 | border: none; 67 | } 68 | legend { 69 | padding-bottom: 3px; 70 | border-bottom: 1px solid #e2e7eb; 71 | } 72 | 73 | #cancel-search-btn { 74 | margin-top: 8px; 75 | position: absolute; 76 | right: 75px; 77 | } 78 | .per-page-dropdown, 79 | .search-form-input { 80 | border: 1px solid #ccd0d4; 81 | background: #fff; 82 | font-size: 12px; 83 | padding: 6px 12px; 84 | line-height: 1.42857143; 85 | color: #555; 86 | -webkit-border-radius: 3px; 87 | -moz-border-radius: 3px; 88 | border-radius: 3px; 89 | } 90 | .per-page-dropdown { 91 | margin-right: 10px; 92 | height: 34px !important; 93 | width: auto !important; 94 | } 95 | .search-form-input { 96 | border-color: #ccd0d4; 97 | height: 34px; 98 | margin-left: 10px; 99 | } 100 | .search-form-input:focus { 101 | outline: 0; 102 | border-color: #9fa2a5; 103 | -webkit-box-shadow: none; 104 | box-shadow: none; 105 | } -------------------------------------------------------------------------------- /assets/less/themes/a/components/_pagination.less: -------------------------------------------------------------------------------- 1 | /* Pagination & pager */ 2 | 3 | .pager li > a, 4 | .pager li > span, 5 | .pagination > li > a { 6 | border-color: #e2e7eb; 7 | color: @dark_black; 8 | } 9 | .pager.pager-without-border li > a, 10 | .pager.pager-without-border li > span, 11 | .pagination.pagination-without-border > li > a { 12 | border-color: @white; 13 | } 14 | .pagination > .disabled > span, 15 | .pagination > .disabled > span:hover, 16 | .pagination > .disabled > span:focus, 17 | .pagination > .disabled > a, 18 | .pagination > .disabled > a:hover, 19 | .pagination > .disabled > a:focus, 20 | .pager > .disabled > span, 21 | .pager > .disabled > a { 22 | .opacity(0.6); 23 | border-color: #ddd; 24 | } 25 | .pagination > li > a { 26 | color: @dark_black; 27 | margin-left: 5px; 28 | .border-radius(3px) !important; 29 | } 30 | .pagination > li:first-child > a { 31 | margin-left: 0; 32 | } 33 | .pagination-sm > li > a, 34 | .pagination-sm > li > span { 35 | font-size: 10px; 36 | margin-left: 4px; 37 | } 38 | .pagination-lg > li > a, 39 | .pagination-lg > li > span { 40 | font-size: 14px; 41 | margin-left: 6px; 42 | } 43 | .pager li > a:hover, 44 | .pager li > a:focus, 45 | .pager li > span:hover, 46 | .pager li > span:focus, 47 | .pagination > li > a:hover, 48 | .pagination > li > a:focus { 49 | color: @dark_black; 50 | background: #e2e7eb; 51 | border-color: #d8dde1; 52 | } 53 | .pagination > .active > a, 54 | .pagination > .active > span, 55 | .pagination > .active > a:hover, 56 | .pagination > .active > span:hover, 57 | .pagination > .active > a:focus, 58 | .pagination > .active > span:focus { 59 | background: @dark_black !important; 60 | border-color: @dark_black !important; 61 | } -------------------------------------------------------------------------------- /assets/less/themes/a/components/_panel.less: -------------------------------------------------------------------------------- 1 | /* Panel */ 2 | 3 | .panel { 4 | border: none; 5 | .box-shadow(none); 6 | .border-radius(3px); 7 | 8 | &.panel-no-rounded-corner .panel-heading, 9 | &.panel-no-rounded-corner .panel-body, 10 | &.panel-no-rounded-corner .panel-footer { 11 | .border-radius(0) !important; 12 | } 13 | & .tab-content { 14 | .border-radius(0 0 3px 3px); 15 | } 16 | } 17 | .panel-heading { 18 | padding: 10px 15px; 19 | border: none; 20 | 21 | &+ .table, 22 | &+ .slimScrollDiv { 23 | border-top: 1px solid #eee; 24 | } 25 | & .panel-heading-btn { 26 | float: right; 27 | } 28 | & .panel-heading-btn > a { 29 | margin-left: 8px; 30 | } 31 | & .btn-group .btn { 32 | margin-top: -7px; 33 | } 34 | & .btn-group .btn.btn-sm { 35 | margin-top: -5px; 36 | } 37 | & .btn-group .btn.btn-xs { 38 | margin-top: -1px; 39 | } 40 | & .label.pull-left, 41 | & .label.pull-right { 42 | line-height: 15px; 43 | } 44 | & .progress.pull-right, 45 | & .progress.pull-left { 46 | width: 40%; 47 | min-width: 120px; 48 | } 49 | & + .alert { 50 | margin-bottom: 0; 51 | -webkit-border-radius: 0; 52 | -moz-border-radius: 0; 53 | border-radius: 0; 54 | } 55 | & .nav-tabs { 56 | margin-top: -10px; 57 | margin-right: -15px; 58 | } 59 | & .nav-tabs > li > a { 60 | padding: 10px 15px; 61 | line-height: 20px; 62 | } 63 | } 64 | .panel-with-tabs.panel-default .panel-heading { 65 | background: #c1ccd1; 66 | color: #333; 67 | } 68 | .panel-title { 69 | line-height: 20px; 70 | font-size: 12px; 71 | 72 | & .accordion-toggle { 73 | margin: -10px -15px; 74 | padding: 10px 15px; 75 | } 76 | & .accordion-toggle.accordion-toggle-styled .fa:before { 77 | content: '\f056'; 78 | } 79 | & .accordion-toggle.accordion-toggle-styled.collapsed .fa:before { 80 | content: '\f055'; 81 | } 82 | & .pull-right { 83 | line-height: 20px; 84 | } 85 | } 86 | .panel-group .panel { 87 | .border-radius(3px); 88 | } 89 | .form-control + .panel-footer { 90 | border-top: none; 91 | } 92 | .panel-body { 93 | padding: 15px; 94 | 95 | &.no-border { 96 | border: none !important; 97 | } 98 | &.panel-table, 99 | &.panel-form, 100 | &.no-padding, 101 | &.panel-full-width { 102 | padding: 0 !important; 103 | } 104 | &.with-table > .table { 105 | border: 0; 106 | margin: 0; 107 | } 108 | &.with-table > .table tr:last-child th, 109 | &.with-table > .table tr:last-child td{ 110 | border-bottom: 0; 111 | } 112 | } 113 | .panel-default > .panel-heading + .panel-collapse .panel-body { 114 | border-top: 1px solid #eee; 115 | } 116 | .panel-footer { 117 | background: #fff; 118 | border-top: 1px solid #eee; 119 | } 120 | .panel-default > .panel-heading { 121 | background: #fafafa; 122 | } 123 | .panel-inverse > .panel-heading, 124 | .panel-success > .panel-heading, 125 | .panel-warning > .panel-heading, 126 | .panel-danger > .panel-heading, 127 | .panel-primary > .panel-heading, 128 | .panel-info > .panel-heading { 129 | color: #fff; 130 | } 131 | .panel-inverse > .panel-heading { background: @dark_black; } 132 | .panel-success > .panel-heading { background: @dark_green; } 133 | .panel-warning > .panel-heading { background: @dark_orange; } 134 | .panel-danger > .panel-heading { background: @dark_red; } 135 | .panel-primary > .panel-heading { background: @dark_blue; } 136 | .panel-info > .panel-heading { background: @dark_aqua; } 137 | 138 | 139 | /* Panel Expand */ 140 | 141 | .panel.panel-expand { 142 | position: fixed; 143 | top: 0; 144 | left: 0; 145 | right: 0; 146 | bottom: 0; 147 | margin: 0; 148 | overflow: hidden; 149 | z-index: 1080; 150 | .border-radius(0); 151 | 152 | & .height-xs, 153 | & .height-sm, 154 | & .height-md, 155 | & .height-lg, 156 | & .height-full { 157 | height: 100% !important; 158 | } 159 | 160 | & > .panel-heading .fa.fa-expand:before { 161 | content: '\f066'; 162 | } 163 | & > .panel-heading, 164 | & > .panel-body { 165 | .border-radius(0); 166 | } 167 | & > .panel-body { 168 | position: absolute; 169 | right: 0; 170 | left: 0; 171 | bottom: 0; 172 | top: 40px; 173 | overflow-y: scroll; 174 | z-index: 1020; 175 | } 176 | & > .panel-footer { 177 | position: absolute; 178 | left: 0; 179 | right: 0; 180 | bottom: 0; 181 | } 182 | } 183 | @keyframes panelExpand { 184 | from { top: 50%; left: 50%; right: 50%; bottom: 50%; } 185 | to { top: 0; left: 0; right: 0; bottom: 0; } 186 | } 187 | @-webkit-keyframes panelExpand { 188 | from { top: 50%; left: 50%; right: 50%; bottom: 50%; } 189 | to { top: 0; left: 0; right: 0; bottom: 0; } 190 | } 191 | -------------------------------------------------------------------------------- /assets/less/themes/a/components/_table.less: -------------------------------------------------------------------------------- 1 | /* Table */ 2 | 3 | .table { 4 | border-color: #e2e7eb; 5 | .border-radius(3px); 6 | } 7 | .table > thead > tr > th { 8 | color: @dark_black; 9 | font-weight: 600; 10 | border-bottom: 2px solid #e2e7eb !important; 11 | } 12 | .table > thead > tr > th, 13 | .table > tbody > tr > th, 14 | .table > tfoot > tr > th, 15 | .table > thead > tr > td, 16 | .table > tbody > tr > td, 17 | .table > tfoot > tr > td { 18 | border-color: #e2e7eb; 19 | padding: 10px 15px; 20 | } 21 | .table-condensed > thead > tr > th, 22 | .table-condensed > tbody > tr > th, 23 | .table-condensed > tfoot > tr > th, 24 | .table-condensed > thead > tr > td, 25 | .table-condensed > tbody > tr > td, 26 | .table-condensed > tfoot > tr > td { 27 | padding: 7px 15px; 28 | } 29 | .table-hover > tbody > tr:hover > td, 30 | .table-hover > tbody > tr:hover > th { 31 | background: #e8ecf1 !important; 32 | } 33 | .table-striped > tbody > tr:nth-child(odd) > td, 34 | .table-striped > tbody > tr:nth-child(odd) > th { 35 | background: #f0f3f5; 36 | } 37 | .table.table-inverse > thead > tr > th, 38 | .table.table-inverse > tbody > tr > th, 39 | .table.table-inverse > tfoot > tr > th, 40 | .table.table-inverse > thead > tr > td, 41 | .table.table-inverse > tbody > tr > td, 42 | .table.table-inverse > tfoot > tr > td { 43 | border-color: #999 !important; 44 | border-color: rgba(0,0,0,0.2) !important; 45 | } 46 | .table.table-inverse, 47 | .table.table-inverse > thead > tr > th, 48 | .table.table-inverse > tbody > tr > th, 49 | .table.table-inverse > tfoot > tr > th { 50 | color: @white; 51 | } 52 | .table > thead > tr > td.info, 53 | .table > tbody > tr > td.info, 54 | .table > tfoot > tr > td.info, 55 | .table > thead > tr > th.info, 56 | .table > tbody > tr > th.info, 57 | .table > tfoot > tr > th.info, 58 | .table > thead > tr.info > td, 59 | .table > tbody > tr.info > td, 60 | .table > tfoot > tr.info > td, 61 | .table > thead > tr.info > th, 62 | .table > tbody > tr.info > th, 63 | .table > tfoot > tr.info > th { 64 | background: #dbf0f7; 65 | border-color: #b6e2ef; 66 | } 67 | .table > thead > tr > td.success, 68 | .table > tbody > tr > td.success, 69 | .table > tfoot > tr > td.success, 70 | .table > thead > tr > th.success, 71 | .table > tbody > tr > th.success, 72 | .table > tfoot > tr > th.success, 73 | .table > thead > tr.success > td, 74 | .table > tbody > tr.success > td, 75 | .table > tfoot > tr.success > td, 76 | .table > thead > tr.success > th, 77 | .table > tbody > tr.success > th, 78 | .table > tfoot > tr.success > th { 79 | background: #cceeee; 80 | border-color: #99dede; 81 | } 82 | .table > thead > tr > td.danger, 83 | .table > tbody > tr > td.danger, 84 | .table > tfoot > tr > td.danger, 85 | .table > thead > tr > th.danger, 86 | .table > tbody > tr > th.danger, 87 | .table > tfoot > tr > th.danger, 88 | .table > thead > tr.danger > td, 89 | .table > tbody > tr.danger > td, 90 | .table > tfoot > tr.danger > td, 91 | .table > thead > tr.danger > th, 92 | .table > tbody > tr.danger > th, 93 | .table > tfoot > tr.danger > th { 94 | background: #ffdedd; 95 | border-color: #ffbdbc; 96 | } 97 | .table > thead > tr > td.warning, 98 | .table > tbody > tr > td.warning, 99 | .table > tfoot > tr > td.warning, 100 | .table > thead > tr > th.warning, 101 | .table > tbody > tr > th.warning, 102 | .table > tfoot > tr > th.warning, 103 | .table > thead > tr.warning > td, 104 | .table > tbody > tr.warning > td, 105 | .table > tfoot > tr.warning > td, 106 | .table > thead > tr.warning > th, 107 | .table > tbody > tr.warning > th, 108 | .table > tfoot > tr.warning > th { 109 | background: #fdebd1; 110 | border-color: #fbd7a3; 111 | } 112 | .table > thead > tr > td.active, 113 | .table > tbody > tr > td.active, 114 | .table > tfoot > tr > td.active, 115 | .table > thead > tr > th.active, 116 | .table > tbody > tr > th.active, 117 | .table > tfoot > tr > th.active, 118 | .table > thead > tr.active > td, 119 | .table > tbody > tr.active > td, 120 | .table > tfoot > tr.active > td, 121 | .table > thead > tr.active > th, 122 | .table > tbody > tr.active > th, 123 | .table > tfoot > tr.active > th { 124 | background: #f0f3f5; 125 | border-color: #e2e7e9; 126 | } -------------------------------------------------------------------------------- /assets/less/themes/a/style.less: -------------------------------------------------------------------------------- 1 | 2 | @import '_variable'; 3 | @import '_mixins'; 4 | @import '_components'; 5 | @import '_helper'; 6 | @import '_responsive'; -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "witty/laravel-table-view", 3 | "description": "Laravel 5 Package for easily displaying table views for Eloquent Collections with search and sort functionality built in.", 4 | "keywords": ["search", "sort", "pagination", "data table", "table view", "laravel", "laravel 5"], 5 | "license": "MIT", 6 | "autoload": { 7 | "psr-4": { 8 | "Witty\\LaravelTableView\\": "src/" 9 | } 10 | }, 11 | "require": { 12 | "php": ">=5.4.0", 13 | "illuminate/support": "5.0.* | 5.1.* | 5.2.* | 5.3.* | 5.4.* | 5.5.*" 14 | }, 15 | "require-dev": { 16 | "phpunit/phpunit": "4.*", 17 | "phpspec/phpspec": "~2.0" 18 | }, 19 | "autoload-dev": { 20 | "psr-4": { 21 | "Witty\\LaravelTableView\\Tests\\": "tests/" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /phpspec.yml: -------------------------------------------------------------------------------- 1 | suites: 2 | library_suite: 3 | namespace: Witty\LaravelTableView 4 | psr4_prefix: Witty\LaravelTableView 5 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | 16 | ./tests/ 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/CookieStorage/LookInStorage.php: -------------------------------------------------------------------------------- 1 | has('q') 41 | && $request->input('q') !== '' 42 | && $request->cookie($currentPath . '_searchQuery') ) 43 | { 44 | return $request->cookie($currentPath . '_searchQuery'); 45 | } 46 | 47 | return false; 48 | } 49 | 50 | /** 51 | * @param \Illuminate\Http\Request $request 52 | * @param string $currentPath 53 | * @return mixed 54 | */ 55 | public static function forPage($request, $currentPath) 56 | { 57 | if ( ! $request->has('page') 58 | && $request->input('page') !== '0' 59 | && $request->cookie($currentPath . '_currentPage') ) 60 | { 61 | return $request->cookie($currentPath . '_currentPage'); 62 | } 63 | 64 | return false; 65 | } 66 | 67 | /** 68 | * @param \Illuminate\Http\Request $request 69 | * @param string $currentPath 70 | * @return mixed 71 | */ 72 | public static function forLimit($request, $currentPath) 73 | { 74 | if ( ! $request->has('limit') 75 | && $request->cookie($currentPath . '_perPage') ) 76 | { 77 | return $request->cookie($currentPath . '_perPage'); 78 | } 79 | 80 | return false; 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /src/CookieStorage/UpdateStorage.php: -------------------------------------------------------------------------------- 1 | withCookie( $tableViewSearchCookie ); 17 | 18 | $tableViewPageCookie = self::findValueOrForget($request, $currentPath . '.currentPage', 'page'); 19 | $response = $response->withCookie( $tableViewPageCookie ); 20 | 21 | return $response; 22 | } 23 | 24 | /** 25 | * @param \Illuminate\Http\Response $response 26 | * @param \Illuminate\Http\Request $request 27 | * @param string $currentPath 28 | * @return \Illuminate\Http\Response 29 | */ 30 | public static function forever($response, $request, $currentPath) 31 | { 32 | if ( $request->has('sortedBy') ) 33 | { 34 | $response = $response 35 | ->withCookie( cookie()->forever( $currentPath . '.sortedBy', $request->input('sortedBy') ) ) 36 | ->withCookie( cookie()->forever( $currentPath . '.sortAscending', $request->input('asc') ) ); 37 | } 38 | 39 | if ( $request->has('limit') ) 40 | { 41 | $response = $response 42 | ->withCookie( cookie()->forever( $currentPath . '.perPage', $request->input('limit') ) ); 43 | } 44 | 45 | return $response; 46 | } 47 | 48 | /** 49 | * @param \Illuminate\Http\Request $request 50 | * @param string $cookieName 51 | * @param string $requestKeyName 52 | * @return \Illuminate\Support\Facades\Cookie 53 | */ 54 | private static function findValueOrForget($request, $cookieName, $requestKeyName) 55 | { 56 | if ( ! $request->has( $requestKeyName ) ) 57 | { 58 | return cookie()->forget( $cookieName ); 59 | } 60 | 61 | return cookie( $cookieName, $request->input( $requestKeyName ) ); 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /src/Facades/TableView.php: -------------------------------------------------------------------------------- 1 | path = ltrim( Request::path(), '/'); 69 | 70 | // sorting 71 | $this->sortRepo = new SortRepository; 72 | 73 | // pagination 74 | $this->perPage = $this->limitPerPage( $this->path ); 75 | 76 | // search 77 | $this->searchRepo = new SearchRepository; 78 | } 79 | 80 | /** 81 | * Create a new table instance with Eloquent\Collection data and column mapping 82 | * 83 | * @param mixed $dataCollection - Illuminate\Database\Eloquent\Builder or (string) Eloquent Model Class Name 84 | * @param array $columns 85 | * @return Witty\LaravelTableView\LaravelTableView 86 | */ 87 | public static function collection($dataCollection, $tableName = '') 88 | { 89 | $dataTable = new static; 90 | 91 | if ( is_string($dataCollection) ) 92 | { 93 | $dataCollection = new $dataCollection(); 94 | } 95 | 96 | $dataTable->tableName = $tableName ? $tableName 97 | : class_basename( $dataCollection->getModel() ); 98 | 99 | $dataTable->dataCollection = $dataCollection; 100 | $dataTable->columns = []; 101 | 102 | return $dataTable; 103 | } 104 | 105 | /** 106 | * Add additonal search fields 107 | * 108 | * @param array $searchFields 109 | * @return Witty\LaravelTableView\LaravelTableView 110 | */ 111 | public function search($searchFields) 112 | { 113 | $this->searchRepo->field( $searchFields ); 114 | 115 | return $this; 116 | } 117 | 118 | /** 119 | * Add a column to the table 120 | * 121 | * @param mixed $title 122 | * @param mixed $value 123 | * @return Witty\LaravelTableView\LaravelTableView 124 | */ 125 | public function column($title, $value = null) 126 | { 127 | $newColumn = new LaravelTableViewColumn($title, $value); 128 | 129 | $this->columns[] = $newColumn; 130 | 131 | if ( $newColumn->isSearchable() ) 132 | { 133 | $this->searchRepo->field( $newColumn->propertyName() ); 134 | } 135 | if ( $newColumn->isDefaultSort() ) 136 | { 137 | $this->sortRepo->setDefault($newColumn); 138 | } 139 | 140 | return $this; 141 | } 142 | 143 | /** 144 | * @return string 145 | */ 146 | public function name() 147 | { 148 | return $this->tableName; 149 | } 150 | 151 | /** 152 | * Add a column to the table 153 | * 154 | * @param string $view 155 | * @param string $collectionAlias 156 | * @return Witty\LaravelTableView\LaravelTableView 157 | */ 158 | public function headerControl($viewPath, $viewParams = []) 159 | { 160 | $this->headerControlView = view($viewPath, $viewParams)->render(); 161 | 162 | return $this; 163 | } 164 | 165 | /** 166 | * @return \Illuminate\Database\Eloquent\Collection 167 | */ 168 | public function data() 169 | { 170 | return $this->dataCollection; 171 | } 172 | 173 | /** 174 | * @return int 175 | */ 176 | public function dataSize() 177 | { 178 | return $this->collectionSize; 179 | } 180 | 181 | /** 182 | * @return array 183 | */ 184 | public function columns() 185 | { 186 | return $this->columns; 187 | } 188 | 189 | /** 190 | * @return array 191 | */ 192 | public function hasHeaderView() 193 | { 194 | return $this->headerControlView !== null; 195 | } 196 | 197 | /** 198 | * @return array 199 | */ 200 | public function headerView() 201 | { 202 | return $this->headerControlView; 203 | } 204 | 205 | /** 206 | * @return boolean 207 | */ 208 | public function searchEnabled() 209 | { 210 | return $this->searchRepo->isEnabled(); 211 | } 212 | 213 | /** 214 | * @return string 215 | */ 216 | public function sortedBy() 217 | { 218 | return $this->sortRepo->sortedBy(); 219 | } 220 | 221 | /** 222 | * @return boolean 223 | */ 224 | public function sortAscending() 225 | { 226 | return $this->sortRepo->sortAscending(); 227 | } 228 | 229 | /** 230 | * @return string 231 | */ 232 | public function currentPath() 233 | { 234 | return $this->path; 235 | } 236 | 237 | /** 238 | * Paginate and build tableview for view 239 | * 240 | * @return Witty\LaravelTableView\LaravelTableView 241 | */ 242 | public function build() 243 | { 244 | $this->dataCollection = $this->filteredAndSorted( 245 | $this->path, 246 | $this->dataCollection, 247 | $this->searchRepo, 248 | $this->sortRepo, 249 | $this->columns 250 | )->paginate( $this->perPage ); 251 | 252 | $this->collectionSize = $this->dataCollection->total(); 253 | 254 | return $this; 255 | } 256 | 257 | /** 258 | * Return helper class for subviews 259 | * 260 | * @return Witty\LaravelTableView\Presenters\LaravelTableViewPresenter 261 | */ 262 | public function present() 263 | { 264 | return new LaravelTableViewPresenter($this); 265 | } 266 | 267 | /** 268 | * Filter collection by search query and order collection 269 | * 270 | * @param string $path 271 | * @param Illuminate\Database\Eloquent\Collection $dataCollection 272 | * @param Witty\LaravelTableView\Repositories\SearchRepository $searchRepo 273 | * @return Witty\LaravelTableView\Repositories\SortRepository $sortRepo 274 | * @return array $tableViewColumns 275 | * @return Illuminate\Database\Eloquent\Collection 276 | */ 277 | private function filteredAndSorted( $path, $dataCollection, $searchRepo, $sortRepo, $tableViewColumns ) 278 | { 279 | $dataCollection = $searchRepo->addSearch($dataCollection); 280 | 281 | if ( Cookie::has($path . '_sortedBy') ) 282 | { 283 | $sortRepo->setDefaultFromCookie( 284 | Cookie::get($path . '_sortedBy'), 285 | Cookie::get($path . '_sortAscending') 286 | ); 287 | } 288 | 289 | $dataCollection = $sortRepo->addOrder($dataCollection, $tableViewColumns); 290 | 291 | return $dataCollection; 292 | } 293 | 294 | /** 295 | * @param string $path 296 | * @return int 297 | */ 298 | private function limitPerPage( $path ) 299 | { 300 | $perPage = 10; 301 | 302 | if ( Request::has('limit') ) 303 | { 304 | $perPage = Request::input('limit'); 305 | } 306 | else if ( Cookie::has($path . '_perPage') ) 307 | { 308 | $perPage = Cookie::get($path . '_perPage'); 309 | } 310 | 311 | return $perPage; 312 | } 313 | 314 | } 315 | 316 | 317 | -------------------------------------------------------------------------------- /src/LaravelTableViewColumn.php: -------------------------------------------------------------------------------- 1 | sortable = false; 47 | $this->sortDefault = false; 48 | $this->searchable = false; 49 | 50 | if ( is_null($value) ) 51 | { 52 | $value = $title; 53 | $title = ''; 54 | } 55 | 56 | $this->title = ( $title === false ) ? '' : $title; 57 | 58 | $this->debunkInputValue($value); 59 | } 60 | 61 | /** 62 | * Get the title for the column header 63 | * 64 | * @return string 65 | */ 66 | public function title() 67 | { 68 | return $this->title; 69 | } 70 | 71 | /** 72 | * Get the property name for the corresponding column and data model->property 73 | * 74 | * @return string 75 | */ 76 | public function propertyName() 77 | { 78 | return $this->propertyName; 79 | } 80 | 81 | /** 82 | * Get the value for a specific row in the table 83 | * 84 | * @param \Illuminate\Database\Eloquent\Model 85 | * @return string 86 | */ 87 | public function rowValue($model) 88 | { 89 | if ( ! isset($this->customValue) ) 90 | { 91 | return $model->{$this->propertyName}; 92 | } 93 | else 94 | { 95 | $closure = $this->customValue; 96 | return $closure($model); 97 | } 98 | } 99 | 100 | /** 101 | * Get whether or not the column is sortable by its property 102 | * 103 | * @return boolean 104 | */ 105 | public function isSortable() 106 | { 107 | return $this->sortable; 108 | } 109 | 110 | /** 111 | * Get whether or not the column contains the default property for sorting 112 | * 113 | * @return mixed 114 | */ 115 | public function isDefaultSort() 116 | { 117 | return $this->sortDefault; 118 | } 119 | 120 | /** 121 | * Get whether or not the column containing the default property for sorting is ascending 122 | * 123 | * @return mixed 124 | */ 125 | public function defaultSortingDirectionIsAscending() 126 | { 127 | return $this->defaultSortIsAscending; 128 | } 129 | 130 | /** 131 | * Get whether or not the column is searchable by its property 132 | * 133 | * @return boolean 134 | */ 135 | public function isSearchable() 136 | { 137 | return $this->searchable; 138 | } 139 | 140 | /** 141 | * Get various column attributes from the input value 142 | * 143 | * @param mixed $value 144 | * @return void 145 | */ 146 | private function debunkInputValue($value) 147 | { 148 | if ( is_string($value) ) 149 | { 150 | $this->parseValueStringForOptions($value); 151 | } 152 | else if ( is_array($value) ) 153 | { 154 | foreach ($value as $propertyWithOptions => $columnValue) 155 | { 156 | $this->parseValueStringForOptions($propertyWithOptions); 157 | $this->customValue = $columnValue; 158 | } 159 | } 160 | else 161 | { 162 | $this->customValue = $value; 163 | } 164 | } 165 | 166 | /** 167 | * Get the property name and options from the input value 168 | * 169 | * @param string $value 170 | * @return void 171 | */ 172 | private function parseValueStringForOptions($value) 173 | { 174 | $optionsStart = strpos($value, ':'); 175 | $this->propertyName = $optionsStart !== false ? substr($value, 0, $optionsStart) : $value; 176 | 177 | $options = explode(",", substr($value, $optionsStart+1)); 178 | 179 | foreach ($options as $option) 180 | { 181 | switch ($option) 182 | { 183 | case 'sort': 184 | $this->sortable = true; break; 185 | case 'sort*': 186 | case 'sort*:asc': 187 | $this->sortable = true; $this->sortDefault = true; $this->defaultSortIsAscending = true; break; 188 | case 'sort*:desc': 189 | $this->sortable = true; $this->sortDefault = true; $this->defaultSortIsAscending = false; break; 190 | case 'search': 191 | $this->searchable = true; break; 192 | } 193 | } 194 | } 195 | } -------------------------------------------------------------------------------- /src/LaravelTableViewServiceProvider.php: -------------------------------------------------------------------------------- 1 | loadViewsFrom(__DIR__ . '/../views', 'table-view'); 25 | 26 | $this->publishes([ 27 | __DIR__ . '/../views' => base_path('resources/views/vendor/table-view'), 28 | ]); 29 | 30 | $this->publishes([ 31 | __DIR__ . '/../assets' => public_path('vendor/table-view'), 32 | ], 'public'); 33 | } 34 | 35 | /** 36 | * Register the service provider. 37 | * 38 | * @return void 39 | */ 40 | public function register() 41 | { 42 | $this->app['laravelTableView'] = $this->app->share(function($app) 43 | { 44 | return new LaravelTableView; 45 | }); 46 | } 47 | 48 | } -------------------------------------------------------------------------------- /src/Middleware/TableViewCookieStorage.php: -------------------------------------------------------------------------------- 1 | path(); 28 | 29 | $shouldRedirectWithViewParamsFromCookieStorage = $this->beforeMiddleware($request, $currentPath); 30 | 31 | if ( $shouldRedirectWithViewParamsFromCookieStorage ) 32 | { 33 | return redirect( $this->redirectRoute ); 34 | } 35 | 36 | $response = $next($request); 37 | 38 | return $this->afterMiddleware($request, $response, $currentPath); 39 | } 40 | 41 | /** 42 | * @param \Illuminate\Http\Request $request 43 | * @param string $currentPath 44 | * @return boolean 45 | */ 46 | private function beforeMiddleware($request, $currentPath) 47 | { 48 | $storedSearchQuery = LookInStorage::forSearch($request, $currentPath); 49 | $storedPageNumber = LookInStorage::forPage($request, $currentPath); 50 | $storedPerPage = LookInStorage::forLimit($request, $currentPath); 51 | 52 | $shouldRedirect = ( (bool) $storedSearchQuery || (bool) $storedPageNumber || (bool) $storedPerPage ); 53 | 54 | if ( $shouldRedirect ) 55 | { 56 | $redirectParameters = LookInStorage::forRedirectParameters($request->all(), $storedSearchQuery, $storedPageNumber, $storedPerPage); 57 | $this->redirectRoute = RoutePresenter::withParam( $currentPath, $redirectParameters ); 58 | } 59 | 60 | return $shouldRedirect; 61 | } 62 | 63 | /** 64 | * @param \Illuminate\Http\Request $request 65 | * @param \Illuminate\Http\Response $response 66 | * @param string $currentPath 67 | * @return \Illuminate\Http\Response 68 | */ 69 | private function afterMiddleware($request, $response, $currentPath) 70 | { 71 | $response = UpdateStorage::forResponse($response, $request, $currentPath); 72 | 73 | $response = UpdateStorage::forever($response, $request, $currentPath); 74 | 75 | return $response; 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /src/Presenters/LaravelTableViewPresenter.php: -------------------------------------------------------------------------------- 1 | laravelTableView = $laravelTableView; 27 | } 28 | 29 | /** 30 | * Returns title for tableview panel header 31 | * 32 | * @return string 33 | */ 34 | public function title() 35 | { 36 | $dataCollectionSize = $this->laravelTableView->dataSize(); 37 | 38 | return TableViewTitlePresenter::formattedTitle( $this->laravelTableView, $dataCollectionSize ); 39 | } 40 | 41 | /** 42 | * Returns view file name for given dataset: empty or filled 43 | * 44 | * @return string 45 | */ 46 | public function table() 47 | { 48 | $tableViewFileName = $this->laravelTableView->dataSize() ? '_filled' : '_empty'; 49 | 50 | return 'table-view::partials.' . $tableViewFileName; 51 | } 52 | 53 | /** 54 | * Per Page Dropdown 55 | * Returns Options for table view row count 56 | * 57 | * @return array 58 | */ 59 | public function perPageOptions() 60 | { 61 | return PerPageDropdownPresenter::pageLimitOptions( 62 | $this->laravelTableView->dataSize() 63 | ); 64 | } 65 | 66 | /** 67 | * Per Page Dropdown 68 | * Returns '; 74 | } 75 | } -------------------------------------------------------------------------------- /src/Presenters/RoutePresenter.php: -------------------------------------------------------------------------------- 1 | $columnName, 27 | 'asc' => $linkSortsAscending 28 | ], Request::except('sortedBy', 'asc') 29 | ); 30 | 31 | return RoutePresenter::withParam($currentPath, $routeParameters); 32 | } 33 | 34 | /** 35 | * Returns font awesome icon class name : fa-sort,fa-sort-asc,fa-sort-desc 36 | * 37 | * @param string $currentSortFieldName 38 | * @param boolean $currentSortIsAscending 39 | * @param string $columnName 40 | * @return string 41 | */ 42 | public static function iconClassName($currentSortFieldName, $currentSortIsAscending, $columnName) 43 | { 44 | $className = "fa fa-sort"; 45 | 46 | if ( $currentSortFieldName === $columnName ) 47 | { 48 | $directionName = $currentSortIsAscending ? 'asc' : 'desc'; 49 | $className .= "-" . $directionName; 50 | } 51 | 52 | return $className; 53 | } 54 | } -------------------------------------------------------------------------------- /src/Presenters/TableViewTitlePresenter.php: -------------------------------------------------------------------------------- 1 | name(); 17 | 18 | if ( $dataCollectionSize !== 1 ) 19 | { 20 | $modelName = str_plural( $modelName ); 21 | } 22 | 23 | return self::titleWithTableFilters( $modelName, $dataCollectionSize ); 24 | } 25 | 26 | /** 27 | * @param string $modelName 28 | * @param int $dataCollectionSize 29 | * @return string 30 | */ 31 | private static function titleWithTableFilters( $modelName, $dataCollectionSize ) 32 | { 33 | $title = $dataCollectionSize > 0 ? number_format($dataCollectionSize) : 'No'; 34 | 35 | if ( ! Request::has('q') ) 36 | { 37 | return $title . ' Total ' . $modelName; 38 | } 39 | 40 | return $title . ' ' . $modelName . ' found by searching ' . Request::get('q'); 41 | } 42 | } -------------------------------------------------------------------------------- /src/Repositories/SearchRepository.php: -------------------------------------------------------------------------------- 1 | searchQuery = Request::input('q', ''); 30 | $this->searchValues = explode(' ', $this->searchQuery); 31 | $this->searchValues[] = $this->searchQuery; 32 | } 33 | 34 | /** 35 | * @param mixed $searchField 36 | * @return void 37 | */ 38 | public function field($searchField) 39 | { 40 | if ( is_string($searchField) ) 41 | { 42 | $this->searchFields[] = $searchField; 43 | } 44 | else if ( is_array($searchField) ) 45 | { 46 | $this->searchFields = array_merge( 47 | $this->searchFields, $searchField 48 | ); 49 | } 50 | } 51 | 52 | /** 53 | * @return boolean 54 | */ 55 | public function isEnabled() 56 | { 57 | return (bool) count($this->searchFields); 58 | } 59 | 60 | /** 61 | * @return string 62 | */ 63 | public function queryString() 64 | { 65 | return $this->searchQuery; 66 | } 67 | 68 | /** 69 | * Filter data collection for search query if there is one 70 | * 71 | * @param \Illuminate\Database\Eloquent\Collection $dataCollection 72 | * @param array 73 | * @return \Illuminate\Database\Eloquent\Collection 74 | */ 75 | public function addSearch($dataCollection) 76 | { 77 | if ( ! $this->searchQuery ) { 78 | return $dataCollection; 79 | } 80 | 81 | $searchableFields = $this->searchFields; 82 | return $dataCollection->where(function($data) use ($searchableFields) 83 | { 84 | $i = 0; 85 | foreach ($searchableFields as $searchableProperty) { 86 | $whereClause = ($i === 0) ? 'where' : 'orWhere'; 87 | 88 | if (strpos($searchableProperty, '{') !== false) { 89 | $searchableProperty = str_replace('{', '', $searchableProperty); 90 | $searchableProperty = str_replace('}', '', $searchableProperty); 91 | 92 | $searchableProperty = \DB::raw($searchableProperty); 93 | } 94 | 95 | $data->{$whereClause}( 96 | $searchableProperty, 'LIKE', "%{$this->searchQuery}%" 97 | ); 98 | 99 | $i++; 100 | } 101 | }); 102 | } 103 | } -------------------------------------------------------------------------------- /src/Repositories/SortRepository.php: -------------------------------------------------------------------------------- 1 | newDefaults( 32 | $column->propertyName(), 33 | $column->defaultSortingDirectionIsAscending() 34 | ); 35 | } 36 | 37 | /** 38 | * @param string $propertyName 39 | * @param boolean $isAscending 40 | * @return void 41 | */ 42 | public function setDefaultFromCookie($propertyName, $isAscending) 43 | { 44 | $this->newDefaults($propertyName, $isAscending); 45 | } 46 | 47 | /** 48 | * @return string 49 | */ 50 | public function sortedBy() 51 | { 52 | return $this->sortedBy; 53 | } 54 | 55 | /** 56 | * @return string 57 | */ 58 | public function sortAscending() 59 | { 60 | return $this->sortAscending; 61 | } 62 | 63 | /** 64 | * @param \Illuminate\Database\Eloquent\Collection $dataCollection 65 | * @param array $columns 66 | * @return \Illuminate\Database\Eloquent\Collection 67 | */ 68 | public function addOrder($dataCollection, $columns) 69 | { 70 | if ( ! isset($this->defaultSort['property']) ) 71 | { 72 | $this->defaultSort = $this->findADefault($columns); 73 | } 74 | 75 | $this->sortedBy = Request::input('sortedBy', $this->defaultSort['property']); 76 | $this->sortAscending = Request::input('asc', $this->defaultSort['isAscending']); 77 | 78 | if ( ! $this->sortedBy) { 79 | return $dataCollection; 80 | } 81 | 82 | $sortField = $this->sortedBy; 83 | if (strpos($sortField, '{') !== false) { 84 | $sortField = str_replace('{', '', $sortField); 85 | $sortField = str_replace('}', '', $sortField); 86 | 87 | $sortField = \DB::raw($sortField); 88 | } 89 | 90 | return $dataCollection->orderBy( $sortField, $this->sortAscending ? 'ASC' : 'DESC'); 91 | } 92 | 93 | /** 94 | * @param string $propertyName 95 | * @param boolean $isAscending 96 | * @return void 97 | */ 98 | private function newDefaults($propertyName, $isAscending) 99 | { 100 | $this->defaultSort = [ 101 | 'property' => $propertyName, 102 | 'isAscending' => $isAscending 103 | ]; 104 | } 105 | 106 | /** 107 | * @param array $columns 108 | * @return array 109 | */ 110 | private function findADefault($columns) 111 | { 112 | foreach($columns as $column) 113 | { 114 | if ( $column->isSortable() ) 115 | { 116 | return [ 117 | 'property' => $column->propertyName(), 118 | 'isAscending' => true 119 | ]; 120 | } 121 | } 122 | } 123 | } -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 |
6 |

7 | {{ $tableView->present()->title() }} 8 |

9 |
10 | 11 |
12 | 13 |
14 | 15 | @include('table-view::elements._per_page_dropdown') 16 | 17 | @include('table-view::elements._search_form') 18 | 19 | @if ( $tableView->hasHeaderView() ) 20 |
21 | {{ $tableView->headerView() }} 22 |
23 | @endif 24 |
25 | 26 |
27 | 28 | @include( $tableView->present()->table() ) 29 | 30 |
31 |
32 |
33 | 34 |
35 | data()->appends( Request::except('page') )->render(); ?> 36 |
37 | 38 |
39 | -------------------------------------------------------------------------------- /views/elements/_per_page_dropdown.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 13 |
-------------------------------------------------------------------------------- /views/elements/_search_form.blade.php: -------------------------------------------------------------------------------- 1 | 2 | @if ( $tableView->searchEnabled() !== false ) 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 17 | 18 |
19 | 22 |
23 |
24 | 25 | @endif -------------------------------------------------------------------------------- /views/elements/_sort_arrows.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /views/partials/_empty.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |

No Results...

4 |
-------------------------------------------------------------------------------- /views/partials/_filled.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | @foreach($tableView->columns() as $column) 8 | 17 | @endforeach 18 | 19 | 20 | 21 | 22 | 23 | @foreach($tableView->data() as $dataModel) 24 | 25 | 26 | @foreach($tableView->columns() as $column) 27 | 30 | @endforeach 31 | 32 | 33 | @endforeach 34 | 35 | 36 |
9 | {{ $column->title() }} 10 | 11 | @if ( $column->isSortable() ) 12 | 13 | @include('table-view::elements._sort_arrows', ['columnName' => $column->propertyName()]) 14 | 15 | @endif 16 |
28 | rowValue($dataModel); ?> 29 |
-------------------------------------------------------------------------------- /views/scripts.blade.php: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------