├── .gitignore ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── draw.html ├── egal ├── __init__.py ├── egal.py ├── handler.py └── static │ ├── bootstrap │ ├── css │ │ ├── bootstrap-flex.css │ │ ├── bootstrap-flex.css.map │ │ ├── bootstrap-flex.min.css │ │ ├── bootstrap-flex.min.css.map │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── egal.js │ ├── jquery-2.0.3.js │ ├── jquery-3.1.1.js │ ├── main.js │ ├── menu.html │ ├── require.js │ ├── snap.svg.js │ └── text.js ├── example.ipynb ├── noisy-channel-animation.gif ├── screenshot.png ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | env/ 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | *.egg-info/ 24 | .installed.cfg 25 | *.egg 26 | 27 | # PyInstaller 28 | # Usually these files are written by a python script from a template 29 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 30 | *.manifest 31 | *.spec 32 | 33 | # Installer logs 34 | pip-log.txt 35 | pip-delete-this-directory.txt 36 | 37 | # Unit test / coverage reports 38 | htmlcov/ 39 | .tox/ 40 | .coverage 41 | .coverage.* 42 | .cache 43 | nosetests.xml 44 | coverage.xml 45 | *,cover 46 | .hypothesis/ 47 | 48 | # Translations 49 | *.mo 50 | *.pot 51 | 52 | # Django stuff: 53 | *.log 54 | local_settings.py 55 | 56 | # Flask stuff: 57 | instance/ 58 | .webassets-cache 59 | 60 | # Scrapy stuff: 61 | .scrapy 62 | 63 | # Sphinx documentation 64 | docs/_build/ 65 | 66 | # PyBuilder 67 | target/ 68 | 69 | # IPython Notebook 70 | .ipynb_checkpoints 71 | 72 | # pyenv 73 | .python-version 74 | 75 | # celery beat schedule file 76 | celerybeat-schedule 77 | 78 | # dotenv 79 | .env 80 | 81 | # virtualenv 82 | venv/ 83 | ENV/ 84 | 85 | # Spyder project settings 86 | .spyderproject 87 | 88 | # Rope project settings 89 | .ropeproject 90 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM jupyter/minimal-notebook 2 | 3 | MAINTAINER Sebastian Riedel 4 | 5 | RUN pip install \ 6 | git+git://github.com/uclmr/egal.git@0.1.3 7 | 8 | RUN jupyter nbextension install egal --py --sys-prefix 9 | 10 | RUN jupyter nbextension enable egal --py --sys-prefix 11 | 12 | RUN jupyter serverextension enable egal --py 13 | 14 | COPY example.ipynb . -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include egal/static * -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # egal 2 | easy SVG drawing in jupyter and elsewhere... 3 | 4 | ## Example 5 | ![](screenshot.png) 6 | 7 | ## Instructions 8 | Click on the "brush" icon in the jupyter toolbar to create an SVG cell below the current selection. 9 | 10 | ### Labels and Latex 11 | To change the label of a shape, double-click on it and type. Hit enter to finish. To use **latex**, start and finish the label 12 | with `$$` as in `$$\sum_i i$$`. 13 | 14 | ### Animation 15 | The egal canvas shows/overlays a window of frames. This window is specified by the two numbers between the left and right arrow icons. The left number is the first frame included in the window, the right number the last frame. Each object (circles, boxes, freestyle shapes etc.) is associated with its own frame window which appears on the right when selecting the object. An object is rendered on the egal canvas when the egal frame window overlaps with the object frame window. 16 | 17 | Using this setup, to generate an animate build-in sequence you can: 18 | * set the window of the first object to appear to `(1,100)` 19 | * set the window of the second object to appear to `(2,100)` 20 | * etc. 21 | 22 | To click through the animation, set the egal window to `(1,1)`. Then click on the right arrow which will move the frame window to `(2,2)`, and so on. 23 | It will look something like this: 24 | 25 | ![](noisy-channel-animation.gif) 26 | 27 | ## Features 28 | 29 | egal's focus is on drawing simple graphs: 30 | 31 | * Basic Shapes (circles, rectangles, lines) 32 | * Freestyle Drawing 33 | * Connectors 34 | * Labels, with support for Latex 35 | * Alignment hints when dragging and resizing 36 | * Multiple Selection 37 | * Animation (Build-in & Build-out) 38 | * Copy & Paste 39 | 40 | ## How Does it Work? 41 | egal creates a `raw` jupyter cell and stores the edited SVG in the source code field of that cell. 42 | 43 | ## Installation 44 | 45 | ### Get the Python Package 46 | 47 | Manually by cloning and changing the python path: 48 | ```bash 49 | git clone https://github.com/uclmr/egal.git 50 | cd egal 51 | export PYTHONPATH=. 52 | ``` 53 | 54 | **or** (experimental) install python package directly: 55 | ```bash 56 | pip3 install git+https://github.com/uclmr/egal.git 57 | ``` 58 | 59 | ### Install and Enable Extension 60 | ```bash 61 | jupyter nbextension install --py egal 62 | jupyter nbextension enable --py egal 63 | ``` 64 | 65 | ### Optional: Server Extension 66 | If you want to use egal outside of a notebook you need to install the server extensions (which allows clients to 67 | save the SVG on the jupyter server): 68 | 69 | ```bash 70 | jupyter serverextension enable --py egal 71 | ``` 72 | 73 | Then you can edit an SVG on the server via accessing http://localhost:8888/files/draw.html (assuming you run 74 | `jupyter notebook` locally). 75 | 76 | -------------------------------------------------------------------------------- /draw.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Drawing 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 34 | 45 | 46 | 47 | 48 | 49 | 50 |
51 | 52 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /egal/__init__.py: -------------------------------------------------------------------------------- 1 | from egal.handler import * 2 | from notebook.utils import url_path_join 3 | 4 | 5 | def _jupyter_server_extension_paths(): 6 | return [{ 7 | "module": "egal" 8 | }] 9 | 10 | 11 | # Jupyter Extension points 12 | def _jupyter_nbextension_paths(): 13 | return [dict( 14 | section="notebook", 15 | # the path is relative to the `my_fancy_module` directory 16 | src="static", 17 | # directory in the `nbextension/` namespace 18 | dest="egal", 19 | # _also_ in the `nbextension/` namespace 20 | require="egal/main")] 21 | 22 | 23 | def load_jupyter_server_extension(nb_server_app): 24 | """ 25 | Called when the extension is loaded. 26 | 27 | Args: 28 | nb_server_app (NotebookWebApplication): handle to the Notebook webserver instance. 29 | """ 30 | web_app = nb_server_app.web_app 31 | # web_app.log.info('My Extension Loaded') 32 | nb_server_app.log.info("egal enabled!") 33 | host_pattern = '.*$' 34 | download_pattern = url_path_join(web_app.settings['base_url'], '/draw/(.+)') 35 | web_app.add_handlers(host_pattern, [(download_pattern, DrawHandler)]) 36 | print("Called") 37 | 38 | # https://github.com/ipython-contrib/jupyter_contrib_nbextensions/blob/8eb3f5fa24d37b4a20c25f08af39c481357b1150/src/jupyter_contrib_nbextensions/nbextensions/keyboard_shortcut_editor/main.js 39 | # https://github.com/ipython-contrib/jupyter_contrib_nbextensions/tree/master/src/jupyter_contrib_nbextensions/nbextensions 40 | # http://jupyter-notebook.readthedocs.io/en/latest/examples/Notebook/Distributing%20Jupyter%20Extensions%20as%20Python%20Packages.html 41 | -------------------------------------------------------------------------------- /egal/egal.py: -------------------------------------------------------------------------------- 1 | from IPython.core.display import HTML 2 | 3 | import uuid 4 | 5 | 6 | def edit_svg(filename, height="400"): 7 | svg_id = str(uuid.uuid1()) 8 | 9 | # load the file 10 | # populate svg element on page 11 | # javascript code that edits svg 12 | # trigger that stores current svg element in original file 13 | html = """ 14 |
15 | 21 | """ 22 | return HTML(html) 23 | -------------------------------------------------------------------------------- /egal/handler.py: -------------------------------------------------------------------------------- 1 | from notebook.base.handlers import IPythonHandler 2 | import os 3 | import os.path 4 | 5 | __UPLOADS__ = ".drawings" 6 | 7 | def filename_for_drawing(drawing_name): 8 | filename = __UPLOADS__ + '/' + drawing_name + '.svg' 9 | return filename 10 | 11 | 12 | class DrawHandler(IPythonHandler): 13 | def get(self, draw_name): 14 | filename = filename_for_drawing(draw_name) 15 | if os.path.isfile(filename): 16 | f = open(filename, 'rb') 17 | content = f.read() 18 | self.finish(content) 19 | else: 20 | result = """""" 21 | self.finish(result) 22 | 23 | def post(self, draw_name): 24 | os.makedirs(__UPLOADS__, exist_ok=True) 25 | body = self.request.body 26 | f = open(filename_for_drawing(draw_name), 'wb') 27 | # f.write(str(body)) 28 | f.write(body) 29 | f.close() 30 | self.finish('Saved as {file}'.format(file=f.name)) 31 | -------------------------------------------------------------------------------- /egal/static/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- 1 | .container { 2 | margin-left: auto; 3 | margin-right: auto; 4 | padding-left: 15px; 5 | padding-right: 15px; 6 | } 7 | 8 | .container::after { 9 | content: ""; 10 | display: table; 11 | clear: both; 12 | } 13 | 14 | @media (min-width: 576px) { 15 | .container { 16 | width: 540px; 17 | max-width: 100%; 18 | } 19 | } 20 | 21 | @media (min-width: 768px) { 22 | .container { 23 | width: 720px; 24 | max-width: 100%; 25 | } 26 | } 27 | 28 | @media (min-width: 992px) { 29 | .container { 30 | width: 960px; 31 | max-width: 100%; 32 | } 33 | } 34 | 35 | @media (min-width: 1200px) { 36 | .container { 37 | width: 1140px; 38 | max-width: 100%; 39 | } 40 | } 41 | 42 | .container-fluid { 43 | margin-left: auto; 44 | margin-right: auto; 45 | padding-left: 15px; 46 | padding-right: 15px; 47 | } 48 | 49 | .container-fluid::after { 50 | content: ""; 51 | display: table; 52 | clear: both; 53 | } 54 | 55 | .row { 56 | margin-right: -15px; 57 | margin-left: -15px; 58 | } 59 | 60 | .row::after { 61 | content: ""; 62 | display: table; 63 | clear: both; 64 | } 65 | 66 | @media (min-width: 576px) { 67 | .row { 68 | margin-right: -15px; 69 | margin-left: -15px; 70 | } 71 | } 72 | 73 | @media (min-width: 768px) { 74 | .row { 75 | margin-right: -15px; 76 | margin-left: -15px; 77 | } 78 | } 79 | 80 | @media (min-width: 992px) { 81 | .row { 82 | margin-right: -15px; 83 | margin-left: -15px; 84 | } 85 | } 86 | 87 | @media (min-width: 1200px) { 88 | .row { 89 | margin-right: -15px; 90 | margin-left: -15px; 91 | } 92 | } 93 | 94 | .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { 95 | position: relative; 96 | min-height: 1px; 97 | padding-right: 15px; 98 | padding-left: 15px; 99 | } 100 | 101 | @media (min-width: 576px) { 102 | .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { 103 | padding-right: 15px; 104 | padding-left: 15px; 105 | } 106 | } 107 | 108 | @media (min-width: 768px) { 109 | .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { 110 | padding-right: 15px; 111 | padding-left: 15px; 112 | } 113 | } 114 | 115 | @media (min-width: 992px) { 116 | .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { 117 | padding-right: 15px; 118 | padding-left: 15px; 119 | } 120 | } 121 | 122 | @media (min-width: 1200px) { 123 | .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { 124 | padding-right: 15px; 125 | padding-left: 15px; 126 | } 127 | } 128 | 129 | .col-xs-1 { 130 | float: left; 131 | width: 8.333333%; 132 | } 133 | 134 | .col-xs-2 { 135 | float: left; 136 | width: 16.666667%; 137 | } 138 | 139 | .col-xs-3 { 140 | float: left; 141 | width: 25%; 142 | } 143 | 144 | .col-xs-4 { 145 | float: left; 146 | width: 33.333333%; 147 | } 148 | 149 | .col-xs-5 { 150 | float: left; 151 | width: 41.666667%; 152 | } 153 | 154 | .col-xs-6 { 155 | float: left; 156 | width: 50%; 157 | } 158 | 159 | .col-xs-7 { 160 | float: left; 161 | width: 58.333333%; 162 | } 163 | 164 | .col-xs-8 { 165 | float: left; 166 | width: 66.666667%; 167 | } 168 | 169 | .col-xs-9 { 170 | float: left; 171 | width: 75%; 172 | } 173 | 174 | .col-xs-10 { 175 | float: left; 176 | width: 83.333333%; 177 | } 178 | 179 | .col-xs-11 { 180 | float: left; 181 | width: 91.666667%; 182 | } 183 | 184 | .col-xs-12 { 185 | float: left; 186 | width: 100%; 187 | } 188 | 189 | .pull-xs-0 { 190 | right: auto; 191 | } 192 | 193 | .pull-xs-1 { 194 | right: 8.333333%; 195 | } 196 | 197 | .pull-xs-2 { 198 | right: 16.666667%; 199 | } 200 | 201 | .pull-xs-3 { 202 | right: 25%; 203 | } 204 | 205 | .pull-xs-4 { 206 | right: 33.333333%; 207 | } 208 | 209 | .pull-xs-5 { 210 | right: 41.666667%; 211 | } 212 | 213 | .pull-xs-6 { 214 | right: 50%; 215 | } 216 | 217 | .pull-xs-7 { 218 | right: 58.333333%; 219 | } 220 | 221 | .pull-xs-8 { 222 | right: 66.666667%; 223 | } 224 | 225 | .pull-xs-9 { 226 | right: 75%; 227 | } 228 | 229 | .pull-xs-10 { 230 | right: 83.333333%; 231 | } 232 | 233 | .pull-xs-11 { 234 | right: 91.666667%; 235 | } 236 | 237 | .pull-xs-12 { 238 | right: 100%; 239 | } 240 | 241 | .push-xs-0 { 242 | left: auto; 243 | } 244 | 245 | .push-xs-1 { 246 | left: 8.333333%; 247 | } 248 | 249 | .push-xs-2 { 250 | left: 16.666667%; 251 | } 252 | 253 | .push-xs-3 { 254 | left: 25%; 255 | } 256 | 257 | .push-xs-4 { 258 | left: 33.333333%; 259 | } 260 | 261 | .push-xs-5 { 262 | left: 41.666667%; 263 | } 264 | 265 | .push-xs-6 { 266 | left: 50%; 267 | } 268 | 269 | .push-xs-7 { 270 | left: 58.333333%; 271 | } 272 | 273 | .push-xs-8 { 274 | left: 66.666667%; 275 | } 276 | 277 | .push-xs-9 { 278 | left: 75%; 279 | } 280 | 281 | .push-xs-10 { 282 | left: 83.333333%; 283 | } 284 | 285 | .push-xs-11 { 286 | left: 91.666667%; 287 | } 288 | 289 | .push-xs-12 { 290 | left: 100%; 291 | } 292 | 293 | .offset-xs-1 { 294 | margin-left: 8.333333%; 295 | } 296 | 297 | .offset-xs-2 { 298 | margin-left: 16.666667%; 299 | } 300 | 301 | .offset-xs-3 { 302 | margin-left: 25%; 303 | } 304 | 305 | .offset-xs-4 { 306 | margin-left: 33.333333%; 307 | } 308 | 309 | .offset-xs-5 { 310 | margin-left: 41.666667%; 311 | } 312 | 313 | .offset-xs-6 { 314 | margin-left: 50%; 315 | } 316 | 317 | .offset-xs-7 { 318 | margin-left: 58.333333%; 319 | } 320 | 321 | .offset-xs-8 { 322 | margin-left: 66.666667%; 323 | } 324 | 325 | .offset-xs-9 { 326 | margin-left: 75%; 327 | } 328 | 329 | .offset-xs-10 { 330 | margin-left: 83.333333%; 331 | } 332 | 333 | .offset-xs-11 { 334 | margin-left: 91.666667%; 335 | } 336 | 337 | @media (min-width: 576px) { 338 | .col-sm-1 { 339 | float: left; 340 | width: 8.333333%; 341 | } 342 | .col-sm-2 { 343 | float: left; 344 | width: 16.666667%; 345 | } 346 | .col-sm-3 { 347 | float: left; 348 | width: 25%; 349 | } 350 | .col-sm-4 { 351 | float: left; 352 | width: 33.333333%; 353 | } 354 | .col-sm-5 { 355 | float: left; 356 | width: 41.666667%; 357 | } 358 | .col-sm-6 { 359 | float: left; 360 | width: 50%; 361 | } 362 | .col-sm-7 { 363 | float: left; 364 | width: 58.333333%; 365 | } 366 | .col-sm-8 { 367 | float: left; 368 | width: 66.666667%; 369 | } 370 | .col-sm-9 { 371 | float: left; 372 | width: 75%; 373 | } 374 | .col-sm-10 { 375 | float: left; 376 | width: 83.333333%; 377 | } 378 | .col-sm-11 { 379 | float: left; 380 | width: 91.666667%; 381 | } 382 | .col-sm-12 { 383 | float: left; 384 | width: 100%; 385 | } 386 | .pull-sm-0 { 387 | right: auto; 388 | } 389 | .pull-sm-1 { 390 | right: 8.333333%; 391 | } 392 | .pull-sm-2 { 393 | right: 16.666667%; 394 | } 395 | .pull-sm-3 { 396 | right: 25%; 397 | } 398 | .pull-sm-4 { 399 | right: 33.333333%; 400 | } 401 | .pull-sm-5 { 402 | right: 41.666667%; 403 | } 404 | .pull-sm-6 { 405 | right: 50%; 406 | } 407 | .pull-sm-7 { 408 | right: 58.333333%; 409 | } 410 | .pull-sm-8 { 411 | right: 66.666667%; 412 | } 413 | .pull-sm-9 { 414 | right: 75%; 415 | } 416 | .pull-sm-10 { 417 | right: 83.333333%; 418 | } 419 | .pull-sm-11 { 420 | right: 91.666667%; 421 | } 422 | .pull-sm-12 { 423 | right: 100%; 424 | } 425 | .push-sm-0 { 426 | left: auto; 427 | } 428 | .push-sm-1 { 429 | left: 8.333333%; 430 | } 431 | .push-sm-2 { 432 | left: 16.666667%; 433 | } 434 | .push-sm-3 { 435 | left: 25%; 436 | } 437 | .push-sm-4 { 438 | left: 33.333333%; 439 | } 440 | .push-sm-5 { 441 | left: 41.666667%; 442 | } 443 | .push-sm-6 { 444 | left: 50%; 445 | } 446 | .push-sm-7 { 447 | left: 58.333333%; 448 | } 449 | .push-sm-8 { 450 | left: 66.666667%; 451 | } 452 | .push-sm-9 { 453 | left: 75%; 454 | } 455 | .push-sm-10 { 456 | left: 83.333333%; 457 | } 458 | .push-sm-11 { 459 | left: 91.666667%; 460 | } 461 | .push-sm-12 { 462 | left: 100%; 463 | } 464 | .offset-sm-0 { 465 | margin-left: 0%; 466 | } 467 | .offset-sm-1 { 468 | margin-left: 8.333333%; 469 | } 470 | .offset-sm-2 { 471 | margin-left: 16.666667%; 472 | } 473 | .offset-sm-3 { 474 | margin-left: 25%; 475 | } 476 | .offset-sm-4 { 477 | margin-left: 33.333333%; 478 | } 479 | .offset-sm-5 { 480 | margin-left: 41.666667%; 481 | } 482 | .offset-sm-6 { 483 | margin-left: 50%; 484 | } 485 | .offset-sm-7 { 486 | margin-left: 58.333333%; 487 | } 488 | .offset-sm-8 { 489 | margin-left: 66.666667%; 490 | } 491 | .offset-sm-9 { 492 | margin-left: 75%; 493 | } 494 | .offset-sm-10 { 495 | margin-left: 83.333333%; 496 | } 497 | .offset-sm-11 { 498 | margin-left: 91.666667%; 499 | } 500 | } 501 | 502 | @media (min-width: 768px) { 503 | .col-md-1 { 504 | float: left; 505 | width: 8.333333%; 506 | } 507 | .col-md-2 { 508 | float: left; 509 | width: 16.666667%; 510 | } 511 | .col-md-3 { 512 | float: left; 513 | width: 25%; 514 | } 515 | .col-md-4 { 516 | float: left; 517 | width: 33.333333%; 518 | } 519 | .col-md-5 { 520 | float: left; 521 | width: 41.666667%; 522 | } 523 | .col-md-6 { 524 | float: left; 525 | width: 50%; 526 | } 527 | .col-md-7 { 528 | float: left; 529 | width: 58.333333%; 530 | } 531 | .col-md-8 { 532 | float: left; 533 | width: 66.666667%; 534 | } 535 | .col-md-9 { 536 | float: left; 537 | width: 75%; 538 | } 539 | .col-md-10 { 540 | float: left; 541 | width: 83.333333%; 542 | } 543 | .col-md-11 { 544 | float: left; 545 | width: 91.666667%; 546 | } 547 | .col-md-12 { 548 | float: left; 549 | width: 100%; 550 | } 551 | .pull-md-0 { 552 | right: auto; 553 | } 554 | .pull-md-1 { 555 | right: 8.333333%; 556 | } 557 | .pull-md-2 { 558 | right: 16.666667%; 559 | } 560 | .pull-md-3 { 561 | right: 25%; 562 | } 563 | .pull-md-4 { 564 | right: 33.333333%; 565 | } 566 | .pull-md-5 { 567 | right: 41.666667%; 568 | } 569 | .pull-md-6 { 570 | right: 50%; 571 | } 572 | .pull-md-7 { 573 | right: 58.333333%; 574 | } 575 | .pull-md-8 { 576 | right: 66.666667%; 577 | } 578 | .pull-md-9 { 579 | right: 75%; 580 | } 581 | .pull-md-10 { 582 | right: 83.333333%; 583 | } 584 | .pull-md-11 { 585 | right: 91.666667%; 586 | } 587 | .pull-md-12 { 588 | right: 100%; 589 | } 590 | .push-md-0 { 591 | left: auto; 592 | } 593 | .push-md-1 { 594 | left: 8.333333%; 595 | } 596 | .push-md-2 { 597 | left: 16.666667%; 598 | } 599 | .push-md-3 { 600 | left: 25%; 601 | } 602 | .push-md-4 { 603 | left: 33.333333%; 604 | } 605 | .push-md-5 { 606 | left: 41.666667%; 607 | } 608 | .push-md-6 { 609 | left: 50%; 610 | } 611 | .push-md-7 { 612 | left: 58.333333%; 613 | } 614 | .push-md-8 { 615 | left: 66.666667%; 616 | } 617 | .push-md-9 { 618 | left: 75%; 619 | } 620 | .push-md-10 { 621 | left: 83.333333%; 622 | } 623 | .push-md-11 { 624 | left: 91.666667%; 625 | } 626 | .push-md-12 { 627 | left: 100%; 628 | } 629 | .offset-md-0 { 630 | margin-left: 0%; 631 | } 632 | .offset-md-1 { 633 | margin-left: 8.333333%; 634 | } 635 | .offset-md-2 { 636 | margin-left: 16.666667%; 637 | } 638 | .offset-md-3 { 639 | margin-left: 25%; 640 | } 641 | .offset-md-4 { 642 | margin-left: 33.333333%; 643 | } 644 | .offset-md-5 { 645 | margin-left: 41.666667%; 646 | } 647 | .offset-md-6 { 648 | margin-left: 50%; 649 | } 650 | .offset-md-7 { 651 | margin-left: 58.333333%; 652 | } 653 | .offset-md-8 { 654 | margin-left: 66.666667%; 655 | } 656 | .offset-md-9 { 657 | margin-left: 75%; 658 | } 659 | .offset-md-10 { 660 | margin-left: 83.333333%; 661 | } 662 | .offset-md-11 { 663 | margin-left: 91.666667%; 664 | } 665 | } 666 | 667 | @media (min-width: 992px) { 668 | .col-lg-1 { 669 | float: left; 670 | width: 8.333333%; 671 | } 672 | .col-lg-2 { 673 | float: left; 674 | width: 16.666667%; 675 | } 676 | .col-lg-3 { 677 | float: left; 678 | width: 25%; 679 | } 680 | .col-lg-4 { 681 | float: left; 682 | width: 33.333333%; 683 | } 684 | .col-lg-5 { 685 | float: left; 686 | width: 41.666667%; 687 | } 688 | .col-lg-6 { 689 | float: left; 690 | width: 50%; 691 | } 692 | .col-lg-7 { 693 | float: left; 694 | width: 58.333333%; 695 | } 696 | .col-lg-8 { 697 | float: left; 698 | width: 66.666667%; 699 | } 700 | .col-lg-9 { 701 | float: left; 702 | width: 75%; 703 | } 704 | .col-lg-10 { 705 | float: left; 706 | width: 83.333333%; 707 | } 708 | .col-lg-11 { 709 | float: left; 710 | width: 91.666667%; 711 | } 712 | .col-lg-12 { 713 | float: left; 714 | width: 100%; 715 | } 716 | .pull-lg-0 { 717 | right: auto; 718 | } 719 | .pull-lg-1 { 720 | right: 8.333333%; 721 | } 722 | .pull-lg-2 { 723 | right: 16.666667%; 724 | } 725 | .pull-lg-3 { 726 | right: 25%; 727 | } 728 | .pull-lg-4 { 729 | right: 33.333333%; 730 | } 731 | .pull-lg-5 { 732 | right: 41.666667%; 733 | } 734 | .pull-lg-6 { 735 | right: 50%; 736 | } 737 | .pull-lg-7 { 738 | right: 58.333333%; 739 | } 740 | .pull-lg-8 { 741 | right: 66.666667%; 742 | } 743 | .pull-lg-9 { 744 | right: 75%; 745 | } 746 | .pull-lg-10 { 747 | right: 83.333333%; 748 | } 749 | .pull-lg-11 { 750 | right: 91.666667%; 751 | } 752 | .pull-lg-12 { 753 | right: 100%; 754 | } 755 | .push-lg-0 { 756 | left: auto; 757 | } 758 | .push-lg-1 { 759 | left: 8.333333%; 760 | } 761 | .push-lg-2 { 762 | left: 16.666667%; 763 | } 764 | .push-lg-3 { 765 | left: 25%; 766 | } 767 | .push-lg-4 { 768 | left: 33.333333%; 769 | } 770 | .push-lg-5 { 771 | left: 41.666667%; 772 | } 773 | .push-lg-6 { 774 | left: 50%; 775 | } 776 | .push-lg-7 { 777 | left: 58.333333%; 778 | } 779 | .push-lg-8 { 780 | left: 66.666667%; 781 | } 782 | .push-lg-9 { 783 | left: 75%; 784 | } 785 | .push-lg-10 { 786 | left: 83.333333%; 787 | } 788 | .push-lg-11 { 789 | left: 91.666667%; 790 | } 791 | .push-lg-12 { 792 | left: 100%; 793 | } 794 | .offset-lg-0 { 795 | margin-left: 0%; 796 | } 797 | .offset-lg-1 { 798 | margin-left: 8.333333%; 799 | } 800 | .offset-lg-2 { 801 | margin-left: 16.666667%; 802 | } 803 | .offset-lg-3 { 804 | margin-left: 25%; 805 | } 806 | .offset-lg-4 { 807 | margin-left: 33.333333%; 808 | } 809 | .offset-lg-5 { 810 | margin-left: 41.666667%; 811 | } 812 | .offset-lg-6 { 813 | margin-left: 50%; 814 | } 815 | .offset-lg-7 { 816 | margin-left: 58.333333%; 817 | } 818 | .offset-lg-8 { 819 | margin-left: 66.666667%; 820 | } 821 | .offset-lg-9 { 822 | margin-left: 75%; 823 | } 824 | .offset-lg-10 { 825 | margin-left: 83.333333%; 826 | } 827 | .offset-lg-11 { 828 | margin-left: 91.666667%; 829 | } 830 | } 831 | 832 | @media (min-width: 1200px) { 833 | .col-xl-1 { 834 | float: left; 835 | width: 8.333333%; 836 | } 837 | .col-xl-2 { 838 | float: left; 839 | width: 16.666667%; 840 | } 841 | .col-xl-3 { 842 | float: left; 843 | width: 25%; 844 | } 845 | .col-xl-4 { 846 | float: left; 847 | width: 33.333333%; 848 | } 849 | .col-xl-5 { 850 | float: left; 851 | width: 41.666667%; 852 | } 853 | .col-xl-6 { 854 | float: left; 855 | width: 50%; 856 | } 857 | .col-xl-7 { 858 | float: left; 859 | width: 58.333333%; 860 | } 861 | .col-xl-8 { 862 | float: left; 863 | width: 66.666667%; 864 | } 865 | .col-xl-9 { 866 | float: left; 867 | width: 75%; 868 | } 869 | .col-xl-10 { 870 | float: left; 871 | width: 83.333333%; 872 | } 873 | .col-xl-11 { 874 | float: left; 875 | width: 91.666667%; 876 | } 877 | .col-xl-12 { 878 | float: left; 879 | width: 100%; 880 | } 881 | .pull-xl-0 { 882 | right: auto; 883 | } 884 | .pull-xl-1 { 885 | right: 8.333333%; 886 | } 887 | .pull-xl-2 { 888 | right: 16.666667%; 889 | } 890 | .pull-xl-3 { 891 | right: 25%; 892 | } 893 | .pull-xl-4 { 894 | right: 33.333333%; 895 | } 896 | .pull-xl-5 { 897 | right: 41.666667%; 898 | } 899 | .pull-xl-6 { 900 | right: 50%; 901 | } 902 | .pull-xl-7 { 903 | right: 58.333333%; 904 | } 905 | .pull-xl-8 { 906 | right: 66.666667%; 907 | } 908 | .pull-xl-9 { 909 | right: 75%; 910 | } 911 | .pull-xl-10 { 912 | right: 83.333333%; 913 | } 914 | .pull-xl-11 { 915 | right: 91.666667%; 916 | } 917 | .pull-xl-12 { 918 | right: 100%; 919 | } 920 | .push-xl-0 { 921 | left: auto; 922 | } 923 | .push-xl-1 { 924 | left: 8.333333%; 925 | } 926 | .push-xl-2 { 927 | left: 16.666667%; 928 | } 929 | .push-xl-3 { 930 | left: 25%; 931 | } 932 | .push-xl-4 { 933 | left: 33.333333%; 934 | } 935 | .push-xl-5 { 936 | left: 41.666667%; 937 | } 938 | .push-xl-6 { 939 | left: 50%; 940 | } 941 | .push-xl-7 { 942 | left: 58.333333%; 943 | } 944 | .push-xl-8 { 945 | left: 66.666667%; 946 | } 947 | .push-xl-9 { 948 | left: 75%; 949 | } 950 | .push-xl-10 { 951 | left: 83.333333%; 952 | } 953 | .push-xl-11 { 954 | left: 91.666667%; 955 | } 956 | .push-xl-12 { 957 | left: 100%; 958 | } 959 | .offset-xl-0 { 960 | margin-left: 0%; 961 | } 962 | .offset-xl-1 { 963 | margin-left: 8.333333%; 964 | } 965 | .offset-xl-2 { 966 | margin-left: 16.666667%; 967 | } 968 | .offset-xl-3 { 969 | margin-left: 25%; 970 | } 971 | .offset-xl-4 { 972 | margin-left: 33.333333%; 973 | } 974 | .offset-xl-5 { 975 | margin-left: 41.666667%; 976 | } 977 | .offset-xl-6 { 978 | margin-left: 50%; 979 | } 980 | .offset-xl-7 { 981 | margin-left: 58.333333%; 982 | } 983 | .offset-xl-8 { 984 | margin-left: 66.666667%; 985 | } 986 | .offset-xl-9 { 987 | margin-left: 75%; 988 | } 989 | .offset-xl-10 { 990 | margin-left: 83.333333%; 991 | } 992 | .offset-xl-11 { 993 | margin-left: 91.666667%; 994 | } 995 | } 996 | /*# sourceMappingURL=bootstrap-grid.css.map */ -------------------------------------------------------------------------------- /egal/static/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_clearfix.scss","../../scss/mixins/_breakpoints.scss","../../scss/_variables.scss","bootstrap-grid.css","../../scss/mixins/_grid-framework.scss"],"names":[],"mappings":"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","file":"bootstrap-grid.css","sourcesContent":[null,null,null,null,null,".container {\n margin-left: auto;\n margin-right: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n\n.container::after {\n content: \"\";\n display: table;\n clear: both;\n}\n\n@media (min-width: 576px) {\n .container {\n width: 540px;\n max-width: 100%;\n }\n}\n\n@media (min-width: 768px) {\n .container {\n width: 720px;\n max-width: 100%;\n }\n}\n\n@media (min-width: 992px) {\n .container {\n width: 960px;\n max-width: 100%;\n }\n}\n\n@media (min-width: 1200px) {\n .container {\n width: 1140px;\n max-width: 100%;\n }\n}\n\n.container-fluid {\n margin-left: auto;\n margin-right: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n\n.container-fluid::after {\n content: \"\";\n display: table;\n clear: both;\n}\n\n.row {\n margin-right: -15px;\n margin-left: -15px;\n}\n\n.row::after {\n content: \"\";\n display: table;\n clear: both;\n}\n\n@media (min-width: 576px) {\n .row {\n margin-right: -15px;\n margin-left: -15px;\n }\n}\n\n@media (min-width: 768px) {\n .row {\n margin-right: -15px;\n margin-left: -15px;\n }\n}\n\n@media (min-width: 992px) {\n .row {\n margin-right: -15px;\n margin-left: -15px;\n }\n}\n\n@media (min-width: 1200px) {\n .row {\n margin-right: -15px;\n margin-left: -15px;\n }\n}\n\n.col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {\n position: relative;\n min-height: 1px;\n padding-right: 15px;\n padding-left: 15px;\n}\n\n@media (min-width: 576px) {\n .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {\n padding-right: 15px;\n padding-left: 15px;\n }\n}\n\n@media (min-width: 768px) {\n .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {\n padding-right: 15px;\n padding-left: 15px;\n }\n}\n\n@media (min-width: 992px) {\n .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {\n padding-right: 15px;\n padding-left: 15px;\n }\n}\n\n@media (min-width: 1200px) {\n .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {\n padding-right: 15px;\n padding-left: 15px;\n }\n}\n\n.col-xs-1 {\n float: left;\n width: 8.333333%;\n}\n\n.col-xs-2 {\n float: left;\n width: 16.666667%;\n}\n\n.col-xs-3 {\n float: left;\n width: 25%;\n}\n\n.col-xs-4 {\n float: left;\n width: 33.333333%;\n}\n\n.col-xs-5 {\n float: left;\n width: 41.666667%;\n}\n\n.col-xs-6 {\n float: left;\n width: 50%;\n}\n\n.col-xs-7 {\n float: left;\n width: 58.333333%;\n}\n\n.col-xs-8 {\n float: left;\n width: 66.666667%;\n}\n\n.col-xs-9 {\n float: left;\n width: 75%;\n}\n\n.col-xs-10 {\n float: left;\n width: 83.333333%;\n}\n\n.col-xs-11 {\n float: left;\n width: 91.666667%;\n}\n\n.col-xs-12 {\n float: left;\n width: 100%;\n}\n\n.pull-xs-0 {\n right: auto;\n}\n\n.pull-xs-1 {\n right: 8.333333%;\n}\n\n.pull-xs-2 {\n right: 16.666667%;\n}\n\n.pull-xs-3 {\n right: 25%;\n}\n\n.pull-xs-4 {\n right: 33.333333%;\n}\n\n.pull-xs-5 {\n right: 41.666667%;\n}\n\n.pull-xs-6 {\n right: 50%;\n}\n\n.pull-xs-7 {\n right: 58.333333%;\n}\n\n.pull-xs-8 {\n right: 66.666667%;\n}\n\n.pull-xs-9 {\n right: 75%;\n}\n\n.pull-xs-10 {\n right: 83.333333%;\n}\n\n.pull-xs-11 {\n right: 91.666667%;\n}\n\n.pull-xs-12 {\n right: 100%;\n}\n\n.push-xs-0 {\n left: auto;\n}\n\n.push-xs-1 {\n left: 8.333333%;\n}\n\n.push-xs-2 {\n left: 16.666667%;\n}\n\n.push-xs-3 {\n left: 25%;\n}\n\n.push-xs-4 {\n left: 33.333333%;\n}\n\n.push-xs-5 {\n left: 41.666667%;\n}\n\n.push-xs-6 {\n left: 50%;\n}\n\n.push-xs-7 {\n left: 58.333333%;\n}\n\n.push-xs-8 {\n left: 66.666667%;\n}\n\n.push-xs-9 {\n left: 75%;\n}\n\n.push-xs-10 {\n left: 83.333333%;\n}\n\n.push-xs-11 {\n left: 91.666667%;\n}\n\n.push-xs-12 {\n left: 100%;\n}\n\n.offset-xs-1 {\n margin-left: 8.333333%;\n}\n\n.offset-xs-2 {\n margin-left: 16.666667%;\n}\n\n.offset-xs-3 {\n margin-left: 25%;\n}\n\n.offset-xs-4 {\n margin-left: 33.333333%;\n}\n\n.offset-xs-5 {\n margin-left: 41.666667%;\n}\n\n.offset-xs-6 {\n margin-left: 50%;\n}\n\n.offset-xs-7 {\n margin-left: 58.333333%;\n}\n\n.offset-xs-8 {\n margin-left: 66.666667%;\n}\n\n.offset-xs-9 {\n margin-left: 75%;\n}\n\n.offset-xs-10 {\n margin-left: 83.333333%;\n}\n\n.offset-xs-11 {\n margin-left: 91.666667%;\n}\n\n@media (min-width: 576px) {\n .col-sm-1 {\n float: left;\n width: 8.333333%;\n }\n .col-sm-2 {\n float: left;\n width: 16.666667%;\n }\n .col-sm-3 {\n float: left;\n width: 25%;\n }\n .col-sm-4 {\n float: left;\n width: 33.333333%;\n }\n .col-sm-5 {\n float: left;\n width: 41.666667%;\n }\n .col-sm-6 {\n float: left;\n width: 50%;\n }\n .col-sm-7 {\n float: left;\n width: 58.333333%;\n }\n .col-sm-8 {\n float: left;\n width: 66.666667%;\n }\n .col-sm-9 {\n float: left;\n width: 75%;\n }\n .col-sm-10 {\n float: left;\n width: 83.333333%;\n }\n .col-sm-11 {\n float: left;\n width: 91.666667%;\n }\n .col-sm-12 {\n float: left;\n width: 100%;\n }\n .pull-sm-0 {\n right: auto;\n }\n .pull-sm-1 {\n right: 8.333333%;\n }\n .pull-sm-2 {\n right: 16.666667%;\n }\n .pull-sm-3 {\n right: 25%;\n }\n .pull-sm-4 {\n right: 33.333333%;\n }\n .pull-sm-5 {\n right: 41.666667%;\n }\n .pull-sm-6 {\n right: 50%;\n }\n .pull-sm-7 {\n right: 58.333333%;\n }\n .pull-sm-8 {\n right: 66.666667%;\n }\n .pull-sm-9 {\n right: 75%;\n }\n .pull-sm-10 {\n right: 83.333333%;\n }\n .pull-sm-11 {\n right: 91.666667%;\n }\n .pull-sm-12 {\n right: 100%;\n }\n .push-sm-0 {\n left: auto;\n }\n .push-sm-1 {\n left: 8.333333%;\n }\n .push-sm-2 {\n left: 16.666667%;\n }\n .push-sm-3 {\n left: 25%;\n }\n .push-sm-4 {\n left: 33.333333%;\n }\n .push-sm-5 {\n left: 41.666667%;\n }\n .push-sm-6 {\n left: 50%;\n }\n .push-sm-7 {\n left: 58.333333%;\n }\n .push-sm-8 {\n left: 66.666667%;\n }\n .push-sm-9 {\n left: 75%;\n }\n .push-sm-10 {\n left: 83.333333%;\n }\n .push-sm-11 {\n left: 91.666667%;\n }\n .push-sm-12 {\n left: 100%;\n }\n .offset-sm-0 {\n margin-left: 0%;\n }\n .offset-sm-1 {\n margin-left: 8.333333%;\n }\n .offset-sm-2 {\n margin-left: 16.666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.333333%;\n }\n .offset-sm-5 {\n margin-left: 41.666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.333333%;\n }\n .offset-sm-8 {\n margin-left: 66.666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.333333%;\n }\n .offset-sm-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 768px) {\n .col-md-1 {\n float: left;\n width: 8.333333%;\n }\n .col-md-2 {\n float: left;\n width: 16.666667%;\n }\n .col-md-3 {\n float: left;\n width: 25%;\n }\n .col-md-4 {\n float: left;\n width: 33.333333%;\n }\n .col-md-5 {\n float: left;\n width: 41.666667%;\n }\n .col-md-6 {\n float: left;\n width: 50%;\n }\n .col-md-7 {\n float: left;\n width: 58.333333%;\n }\n .col-md-8 {\n float: left;\n width: 66.666667%;\n }\n .col-md-9 {\n float: left;\n width: 75%;\n }\n .col-md-10 {\n float: left;\n width: 83.333333%;\n }\n .col-md-11 {\n float: left;\n width: 91.666667%;\n }\n .col-md-12 {\n float: left;\n width: 100%;\n }\n .pull-md-0 {\n right: auto;\n }\n .pull-md-1 {\n right: 8.333333%;\n }\n .pull-md-2 {\n right: 16.666667%;\n }\n .pull-md-3 {\n right: 25%;\n }\n .pull-md-4 {\n right: 33.333333%;\n }\n .pull-md-5 {\n right: 41.666667%;\n }\n .pull-md-6 {\n right: 50%;\n }\n .pull-md-7 {\n right: 58.333333%;\n }\n .pull-md-8 {\n right: 66.666667%;\n }\n .pull-md-9 {\n right: 75%;\n }\n .pull-md-10 {\n right: 83.333333%;\n }\n .pull-md-11 {\n right: 91.666667%;\n }\n .pull-md-12 {\n right: 100%;\n }\n .push-md-0 {\n left: auto;\n }\n .push-md-1 {\n left: 8.333333%;\n }\n .push-md-2 {\n left: 16.666667%;\n }\n .push-md-3 {\n left: 25%;\n }\n .push-md-4 {\n left: 33.333333%;\n }\n .push-md-5 {\n left: 41.666667%;\n }\n .push-md-6 {\n left: 50%;\n }\n .push-md-7 {\n left: 58.333333%;\n }\n .push-md-8 {\n left: 66.666667%;\n }\n .push-md-9 {\n left: 75%;\n }\n .push-md-10 {\n left: 83.333333%;\n }\n .push-md-11 {\n left: 91.666667%;\n }\n .push-md-12 {\n left: 100%;\n }\n .offset-md-0 {\n margin-left: 0%;\n }\n .offset-md-1 {\n margin-left: 8.333333%;\n }\n .offset-md-2 {\n margin-left: 16.666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.333333%;\n }\n .offset-md-5 {\n margin-left: 41.666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.333333%;\n }\n .offset-md-8 {\n margin-left: 66.666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.333333%;\n }\n .offset-md-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 992px) {\n .col-lg-1 {\n float: left;\n width: 8.333333%;\n }\n .col-lg-2 {\n float: left;\n width: 16.666667%;\n }\n .col-lg-3 {\n float: left;\n width: 25%;\n }\n .col-lg-4 {\n float: left;\n width: 33.333333%;\n }\n .col-lg-5 {\n float: left;\n width: 41.666667%;\n }\n .col-lg-6 {\n float: left;\n width: 50%;\n }\n .col-lg-7 {\n float: left;\n width: 58.333333%;\n }\n .col-lg-8 {\n float: left;\n width: 66.666667%;\n }\n .col-lg-9 {\n float: left;\n width: 75%;\n }\n .col-lg-10 {\n float: left;\n width: 83.333333%;\n }\n .col-lg-11 {\n float: left;\n width: 91.666667%;\n }\n .col-lg-12 {\n float: left;\n width: 100%;\n }\n .pull-lg-0 {\n right: auto;\n }\n .pull-lg-1 {\n right: 8.333333%;\n }\n .pull-lg-2 {\n right: 16.666667%;\n }\n .pull-lg-3 {\n right: 25%;\n }\n .pull-lg-4 {\n right: 33.333333%;\n }\n .pull-lg-5 {\n right: 41.666667%;\n }\n .pull-lg-6 {\n right: 50%;\n }\n .pull-lg-7 {\n right: 58.333333%;\n }\n .pull-lg-8 {\n right: 66.666667%;\n }\n .pull-lg-9 {\n right: 75%;\n }\n .pull-lg-10 {\n right: 83.333333%;\n }\n .pull-lg-11 {\n right: 91.666667%;\n }\n .pull-lg-12 {\n right: 100%;\n }\n .push-lg-0 {\n left: auto;\n }\n .push-lg-1 {\n left: 8.333333%;\n }\n .push-lg-2 {\n left: 16.666667%;\n }\n .push-lg-3 {\n left: 25%;\n }\n .push-lg-4 {\n left: 33.333333%;\n }\n .push-lg-5 {\n left: 41.666667%;\n }\n .push-lg-6 {\n left: 50%;\n }\n .push-lg-7 {\n left: 58.333333%;\n }\n .push-lg-8 {\n left: 66.666667%;\n }\n .push-lg-9 {\n left: 75%;\n }\n .push-lg-10 {\n left: 83.333333%;\n }\n .push-lg-11 {\n left: 91.666667%;\n }\n .push-lg-12 {\n left: 100%;\n }\n .offset-lg-0 {\n margin-left: 0%;\n }\n .offset-lg-1 {\n margin-left: 8.333333%;\n }\n .offset-lg-2 {\n margin-left: 16.666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.333333%;\n }\n .offset-lg-5 {\n margin-left: 41.666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.333333%;\n }\n .offset-lg-8 {\n margin-left: 66.666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.333333%;\n }\n .offset-lg-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 1200px) {\n .col-xl-1 {\n float: left;\n width: 8.333333%;\n }\n .col-xl-2 {\n float: left;\n width: 16.666667%;\n }\n .col-xl-3 {\n float: left;\n width: 25%;\n }\n .col-xl-4 {\n float: left;\n width: 33.333333%;\n }\n .col-xl-5 {\n float: left;\n width: 41.666667%;\n }\n .col-xl-6 {\n float: left;\n width: 50%;\n }\n .col-xl-7 {\n float: left;\n width: 58.333333%;\n }\n .col-xl-8 {\n float: left;\n width: 66.666667%;\n }\n .col-xl-9 {\n float: left;\n width: 75%;\n }\n .col-xl-10 {\n float: left;\n width: 83.333333%;\n }\n .col-xl-11 {\n float: left;\n width: 91.666667%;\n }\n .col-xl-12 {\n float: left;\n width: 100%;\n }\n .pull-xl-0 {\n right: auto;\n }\n .pull-xl-1 {\n right: 8.333333%;\n }\n .pull-xl-2 {\n right: 16.666667%;\n }\n .pull-xl-3 {\n right: 25%;\n }\n .pull-xl-4 {\n right: 33.333333%;\n }\n .pull-xl-5 {\n right: 41.666667%;\n }\n .pull-xl-6 {\n right: 50%;\n }\n .pull-xl-7 {\n right: 58.333333%;\n }\n .pull-xl-8 {\n right: 66.666667%;\n }\n .pull-xl-9 {\n right: 75%;\n }\n .pull-xl-10 {\n right: 83.333333%;\n }\n .pull-xl-11 {\n right: 91.666667%;\n }\n .pull-xl-12 {\n right: 100%;\n }\n .push-xl-0 {\n left: auto;\n }\n .push-xl-1 {\n left: 8.333333%;\n }\n .push-xl-2 {\n left: 16.666667%;\n }\n .push-xl-3 {\n left: 25%;\n }\n .push-xl-4 {\n left: 33.333333%;\n }\n .push-xl-5 {\n left: 41.666667%;\n }\n .push-xl-6 {\n left: 50%;\n }\n .push-xl-7 {\n left: 58.333333%;\n }\n .push-xl-8 {\n left: 66.666667%;\n }\n .push-xl-9 {\n left: 75%;\n }\n .push-xl-10 {\n left: 83.333333%;\n }\n .push-xl-11 {\n left: 91.666667%;\n }\n .push-xl-12 {\n left: 100%;\n }\n .offset-xl-0 {\n margin-left: 0%;\n }\n .offset-xl-1 {\n margin-left: 8.333333%;\n }\n .offset-xl-2 {\n margin-left: 16.666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.333333%;\n }\n .offset-xl-5 {\n margin-left: 41.666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.333333%;\n }\n .offset-xl-8 {\n margin-left: 66.666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.333333%;\n }\n .offset-xl-11 {\n margin-left: 91.666667%;\n }\n}\n\n/*# sourceMappingURL=bootstrap-grid.css.map */",null]} -------------------------------------------------------------------------------- /egal/static/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- 1 | .container{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.container::after{content:"";display:table;clear:both}@media (min-width:576px){.container{width:540px;max-width:100%}}@media (min-width:768px){.container{width:720px;max-width:100%}}@media (min-width:992px){.container{width:960px;max-width:100%}}@media (min-width:1200px){.container{width:1140px;max-width:100%}}.container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.container-fluid::after{content:"";display:table;clear:both}.row{margin-right:-15px;margin-left:-15px}.row::after{content:"";display:table;clear:both}@media (min-width:576px){.row{margin-right:-15px;margin-left:-15px}}@media (min-width:768px){.row{margin-right:-15px;margin-left:-15px}}@media (min-width:992px){.row{margin-right:-15px;margin-left:-15px}}@media (min-width:1200px){.row{margin-right:-15px;margin-left:-15px}}.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xs,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}@media (min-width:576px){.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xs,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{padding-right:15px;padding-left:15px}}@media (min-width:768px){.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xs,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{padding-right:15px;padding-left:15px}}@media (min-width:992px){.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xs,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{padding-right:15px;padding-left:15px}}@media (min-width:1200px){.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xs,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{padding-right:15px;padding-left:15px}}.col-xs-1{float:left;width:8.333333%}.col-xs-2{float:left;width:16.666667%}.col-xs-3{float:left;width:25%}.col-xs-4{float:left;width:33.333333%}.col-xs-5{float:left;width:41.666667%}.col-xs-6{float:left;width:50%}.col-xs-7{float:left;width:58.333333%}.col-xs-8{float:left;width:66.666667%}.col-xs-9{float:left;width:75%}.col-xs-10{float:left;width:83.333333%}.col-xs-11{float:left;width:91.666667%}.col-xs-12{float:left;width:100%}.pull-xs-0{right:auto}.pull-xs-1{right:8.333333%}.pull-xs-2{right:16.666667%}.pull-xs-3{right:25%}.pull-xs-4{right:33.333333%}.pull-xs-5{right:41.666667%}.pull-xs-6{right:50%}.pull-xs-7{right:58.333333%}.pull-xs-8{right:66.666667%}.pull-xs-9{right:75%}.pull-xs-10{right:83.333333%}.pull-xs-11{right:91.666667%}.pull-xs-12{right:100%}.push-xs-0{left:auto}.push-xs-1{left:8.333333%}.push-xs-2{left:16.666667%}.push-xs-3{left:25%}.push-xs-4{left:33.333333%}.push-xs-5{left:41.666667%}.push-xs-6{left:50%}.push-xs-7{left:58.333333%}.push-xs-8{left:66.666667%}.push-xs-9{left:75%}.push-xs-10{left:83.333333%}.push-xs-11{left:91.666667%}.push-xs-12{left:100%}.offset-xs-1{margin-left:8.333333%}.offset-xs-2{margin-left:16.666667%}.offset-xs-3{margin-left:25%}.offset-xs-4{margin-left:33.333333%}.offset-xs-5{margin-left:41.666667%}.offset-xs-6{margin-left:50%}.offset-xs-7{margin-left:58.333333%}.offset-xs-8{margin-left:66.666667%}.offset-xs-9{margin-left:75%}.offset-xs-10{margin-left:83.333333%}.offset-xs-11{margin-left:91.666667%}@media (min-width:576px){.col-sm-1{float:left;width:8.333333%}.col-sm-2{float:left;width:16.666667%}.col-sm-3{float:left;width:25%}.col-sm-4{float:left;width:33.333333%}.col-sm-5{float:left;width:41.666667%}.col-sm-6{float:left;width:50%}.col-sm-7{float:left;width:58.333333%}.col-sm-8{float:left;width:66.666667%}.col-sm-9{float:left;width:75%}.col-sm-10{float:left;width:83.333333%}.col-sm-11{float:left;width:91.666667%}.col-sm-12{float:left;width:100%}.pull-sm-0{right:auto}.pull-sm-1{right:8.333333%}.pull-sm-2{right:16.666667%}.pull-sm-3{right:25%}.pull-sm-4{right:33.333333%}.pull-sm-5{right:41.666667%}.pull-sm-6{right:50%}.pull-sm-7{right:58.333333%}.pull-sm-8{right:66.666667%}.pull-sm-9{right:75%}.pull-sm-10{right:83.333333%}.pull-sm-11{right:91.666667%}.pull-sm-12{right:100%}.push-sm-0{left:auto}.push-sm-1{left:8.333333%}.push-sm-2{left:16.666667%}.push-sm-3{left:25%}.push-sm-4{left:33.333333%}.push-sm-5{left:41.666667%}.push-sm-6{left:50%}.push-sm-7{left:58.333333%}.push-sm-8{left:66.666667%}.push-sm-9{left:75%}.push-sm-10{left:83.333333%}.push-sm-11{left:91.666667%}.push-sm-12{left:100%}.offset-sm-0{margin-left:0%}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md-1{float:left;width:8.333333%}.col-md-2{float:left;width:16.666667%}.col-md-3{float:left;width:25%}.col-md-4{float:left;width:33.333333%}.col-md-5{float:left;width:41.666667%}.col-md-6{float:left;width:50%}.col-md-7{float:left;width:58.333333%}.col-md-8{float:left;width:66.666667%}.col-md-9{float:left;width:75%}.col-md-10{float:left;width:83.333333%}.col-md-11{float:left;width:91.666667%}.col-md-12{float:left;width:100%}.pull-md-0{right:auto}.pull-md-1{right:8.333333%}.pull-md-2{right:16.666667%}.pull-md-3{right:25%}.pull-md-4{right:33.333333%}.pull-md-5{right:41.666667%}.pull-md-6{right:50%}.pull-md-7{right:58.333333%}.pull-md-8{right:66.666667%}.pull-md-9{right:75%}.pull-md-10{right:83.333333%}.pull-md-11{right:91.666667%}.pull-md-12{right:100%}.push-md-0{left:auto}.push-md-1{left:8.333333%}.push-md-2{left:16.666667%}.push-md-3{left:25%}.push-md-4{left:33.333333%}.push-md-5{left:41.666667%}.push-md-6{left:50%}.push-md-7{left:58.333333%}.push-md-8{left:66.666667%}.push-md-9{left:75%}.push-md-10{left:83.333333%}.push-md-11{left:91.666667%}.push-md-12{left:100%}.offset-md-0{margin-left:0%}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg-1{float:left;width:8.333333%}.col-lg-2{float:left;width:16.666667%}.col-lg-3{float:left;width:25%}.col-lg-4{float:left;width:33.333333%}.col-lg-5{float:left;width:41.666667%}.col-lg-6{float:left;width:50%}.col-lg-7{float:left;width:58.333333%}.col-lg-8{float:left;width:66.666667%}.col-lg-9{float:left;width:75%}.col-lg-10{float:left;width:83.333333%}.col-lg-11{float:left;width:91.666667%}.col-lg-12{float:left;width:100%}.pull-lg-0{right:auto}.pull-lg-1{right:8.333333%}.pull-lg-2{right:16.666667%}.pull-lg-3{right:25%}.pull-lg-4{right:33.333333%}.pull-lg-5{right:41.666667%}.pull-lg-6{right:50%}.pull-lg-7{right:58.333333%}.pull-lg-8{right:66.666667%}.pull-lg-9{right:75%}.pull-lg-10{right:83.333333%}.pull-lg-11{right:91.666667%}.pull-lg-12{right:100%}.push-lg-0{left:auto}.push-lg-1{left:8.333333%}.push-lg-2{left:16.666667%}.push-lg-3{left:25%}.push-lg-4{left:33.333333%}.push-lg-5{left:41.666667%}.push-lg-6{left:50%}.push-lg-7{left:58.333333%}.push-lg-8{left:66.666667%}.push-lg-9{left:75%}.push-lg-10{left:83.333333%}.push-lg-11{left:91.666667%}.push-lg-12{left:100%}.offset-lg-0{margin-left:0%}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl-1{float:left;width:8.333333%}.col-xl-2{float:left;width:16.666667%}.col-xl-3{float:left;width:25%}.col-xl-4{float:left;width:33.333333%}.col-xl-5{float:left;width:41.666667%}.col-xl-6{float:left;width:50%}.col-xl-7{float:left;width:58.333333%}.col-xl-8{float:left;width:66.666667%}.col-xl-9{float:left;width:75%}.col-xl-10{float:left;width:83.333333%}.col-xl-11{float:left;width:91.666667%}.col-xl-12{float:left;width:100%}.pull-xl-0{right:auto}.pull-xl-1{right:8.333333%}.pull-xl-2{right:16.666667%}.pull-xl-3{right:25%}.pull-xl-4{right:33.333333%}.pull-xl-5{right:41.666667%}.pull-xl-6{right:50%}.pull-xl-7{right:58.333333%}.pull-xl-8{right:66.666667%}.pull-xl-9{right:75%}.pull-xl-10{right:83.333333%}.pull-xl-11{right:91.666667%}.pull-xl-12{right:100%}.push-xl-0{left:auto}.push-xl-1{left:8.333333%}.push-xl-2{left:16.666667%}.push-xl-3{left:25%}.push-xl-4{left:33.333333%}.push-xl-5{left:41.666667%}.push-xl-6{left:50%}.push-xl-7{left:58.333333%}.push-xl-8{left:66.666667%}.push-xl-9{left:75%}.push-xl-10{left:83.333333%}.push-xl-11{left:91.666667%}.push-xl-12{left:100%}.offset-xl-0{margin-left:0%}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}} 2 | /*# sourceMappingURL=bootstrap-grid.min.css.map */ -------------------------------------------------------------------------------- /egal/static/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_clearfix.scss","../../scss/mixins/_breakpoints.scss","../../scss/mixins/_grid-framework.scss"],"names":[],"mappings":"AAKE,WCAA,YAAA,KACA,aAAA,KACA,aAAA,KACA,cAAA,KDHA,kBEHE,QAAY,GACZ,QAAA,MACA,MAAA,KCyCA,yBHxCF,WCcI,MAAA,MACA,UAAA,MEyBF,yBHxCF,WCcI,MAAA,MACA,UAAA,MEyBF,yBHxCF,WCcI,MAAA,MACA,UAAA,MEyBF,0BHxCF,WCcI,MAAA,OACA,UAAA,MDHJ,iBCZA,YAAA,KACA,aAAA,KACA,aAAA,KACA,cAAA,KDSA,wBEfE,QAAY,GACZ,QAAA,MACA,MAAA,KFuBF,KCmBI,aAAA,MACA,YAAA,MDpBJ,YEzBE,QAAY,GACZ,QAAA,MACA,MAAA,KCyCA,yBHlBF,KCmBI,aAAA,MACA,YAAA,OEFF,yBHlBF,KCmBI,aAAA,MACA,YAAA,OEFF,yBHlBF,KCmBI,aAAA,MACA,YAAA,OEFF,0BHlBF,KCmBI,aAAA,MACA,YAAA,OGxCJ,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,SAAA,SAEA,WAAA,IHmBE,cAAA,KACA,aAAA,KEeF,yBCtCF,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UHsBI,cAAA,KACA,aAAA,MEeF,yBCtCF,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UHsBI,cAAA,KACA,aAAA,MEeF,yBCtCF,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UHsBI,cAAA,KACA,aAAA,MEeF,0BCtCF,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,QAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UHsBI,cAAA,KACA,aAAA,MGeE,UHmCJ,MAAA,KACA,MAAA,UGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,WHmCJ,MAAA,KACA,MAAA,WGpCI,WHmCJ,MAAA,KACA,MAAA,WGpCI,WHmCJ,MAAA,KACA,MAAA,KG7BM,WH0CR,MAAA,KG1CQ,WH0CR,MAAA,UG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,YH0CR,MAAA,WG1CQ,YH0CR,MAAA,WG1CQ,YH0CR,MAAA,KG1CQ,WHsCR,KAAA,KGtCQ,WHsCR,KAAA,UGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,YHsCR,KAAA,WGtCQ,YHsCR,KAAA,WGtCQ,YHsCR,KAAA,KG7BQ,aHyBR,YAAA,UGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,cHyBR,YAAA,WGzBQ,cHyBR,YAAA,WEzCE,yBCAI,UHmCJ,MAAA,KACA,MAAA,UGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,WHmCJ,MAAA,KACA,MAAA,WGpCI,WHmCJ,MAAA,KACA,MAAA,WGpCI,WHmCJ,MAAA,KACA,MAAA,KG7BM,WH0CR,MAAA,KG1CQ,WH0CR,MAAA,UG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,YH0CR,MAAA,WG1CQ,YH0CR,MAAA,WG1CQ,YH0CR,MAAA,KG1CQ,WHsCR,KAAA,KGtCQ,WHsCR,KAAA,UGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,YHsCR,KAAA,WGtCQ,YHsCR,KAAA,WGtCQ,YHsCR,KAAA,KG7BQ,aHyBR,YAAA,GGzBQ,aHyBR,YAAA,UGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,cHyBR,YAAA,WGzBQ,cHyBR,YAAA,YEzCE,yBCAI,UHmCJ,MAAA,KACA,MAAA,UGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,WHmCJ,MAAA,KACA,MAAA,WGpCI,WHmCJ,MAAA,KACA,MAAA,WGpCI,WHmCJ,MAAA,KACA,MAAA,KG7BM,WH0CR,MAAA,KG1CQ,WH0CR,MAAA,UG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,YH0CR,MAAA,WG1CQ,YH0CR,MAAA,WG1CQ,YH0CR,MAAA,KG1CQ,WHsCR,KAAA,KGtCQ,WHsCR,KAAA,UGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,YHsCR,KAAA,WGtCQ,YHsCR,KAAA,WGtCQ,YHsCR,KAAA,KG7BQ,aHyBR,YAAA,GGzBQ,aHyBR,YAAA,UGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,cHyBR,YAAA,WGzBQ,cHyBR,YAAA,YEzCE,yBCAI,UHmCJ,MAAA,KACA,MAAA,UGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,WHmCJ,MAAA,KACA,MAAA,WGpCI,WHmCJ,MAAA,KACA,MAAA,WGpCI,WHmCJ,MAAA,KACA,MAAA,KG7BM,WH0CR,MAAA,KG1CQ,WH0CR,MAAA,UG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,YH0CR,MAAA,WG1CQ,YH0CR,MAAA,WG1CQ,YH0CR,MAAA,KG1CQ,WHsCR,KAAA,KGtCQ,WHsCR,KAAA,UGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,YHsCR,KAAA,WGtCQ,YHsCR,KAAA,WGtCQ,YHsCR,KAAA,KG7BQ,aHyBR,YAAA,GGzBQ,aHyBR,YAAA,UGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,cHyBR,YAAA,WGzBQ,cHyBR,YAAA,YEzCE,0BCAI,UHmCJ,MAAA,KACA,MAAA,UGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,WGpCI,UHmCJ,MAAA,KACA,MAAA,IGpCI,WHmCJ,MAAA,KACA,MAAA,WGpCI,WHmCJ,MAAA,KACA,MAAA,WGpCI,WHmCJ,MAAA,KACA,MAAA,KG7BM,WH0CR,MAAA,KG1CQ,WH0CR,MAAA,UG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,WG1CQ,WH0CR,MAAA,IG1CQ,YH0CR,MAAA,WG1CQ,YH0CR,MAAA,WG1CQ,YH0CR,MAAA,KG1CQ,WHsCR,KAAA,KGtCQ,WHsCR,KAAA,UGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,WGtCQ,WHsCR,KAAA,IGtCQ,YHsCR,KAAA,WGtCQ,YHsCR,KAAA,WGtCQ,YHsCR,KAAA,KG7BQ,aHyBR,YAAA,GGzBQ,aHyBR,YAAA,UGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,WGzBQ,aHyBR,YAAA,IGzBQ,cHyBR,YAAA,WGzBQ,cHyBR,YAAA"} -------------------------------------------------------------------------------- /egal/static/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- 1 | /*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */ 2 | html { 3 | font-family: sans-serif; 4 | line-height: 1.15; 5 | -ms-text-size-adjust: 100%; 6 | -webkit-text-size-adjust: 100%; 7 | } 8 | 9 | body { 10 | margin: 0; 11 | } 12 | 13 | article, 14 | aside, 15 | details, 16 | figcaption, 17 | figure, 18 | footer, 19 | header, 20 | main, 21 | menu, 22 | nav, 23 | section, 24 | summary { 25 | display: block; 26 | } 27 | 28 | audio, 29 | canvas, 30 | progress, 31 | video { 32 | display: inline-block; 33 | } 34 | 35 | audio:not([controls]) { 36 | display: none; 37 | height: 0; 38 | } 39 | 40 | progress { 41 | vertical-align: baseline; 42 | } 43 | 44 | template, 45 | [hidden] { 46 | display: none; 47 | } 48 | 49 | a { 50 | background-color: transparent; 51 | -webkit-text-decoration-skip: objects; 52 | } 53 | 54 | a:active, 55 | a:hover { 56 | outline-width: 0; 57 | } 58 | 59 | abbr[title] { 60 | border-bottom: none; 61 | text-decoration: underline; 62 | text-decoration: underline dotted; 63 | } 64 | 65 | b, 66 | strong { 67 | font-weight: inherit; 68 | } 69 | 70 | b, 71 | strong { 72 | font-weight: bolder; 73 | } 74 | 75 | dfn { 76 | font-style: italic; 77 | } 78 | 79 | h1 { 80 | font-size: 2em; 81 | margin: 0.67em 0; 82 | } 83 | 84 | mark { 85 | background-color: #ff0; 86 | color: #000; 87 | } 88 | 89 | small { 90 | font-size: 80%; 91 | } 92 | 93 | sub, 94 | sup { 95 | font-size: 75%; 96 | line-height: 0; 97 | position: relative; 98 | vertical-align: baseline; 99 | } 100 | 101 | sub { 102 | bottom: -0.25em; 103 | } 104 | 105 | sup { 106 | top: -0.5em; 107 | } 108 | 109 | img { 110 | border-style: none; 111 | } 112 | 113 | svg:not(:root) { 114 | overflow: hidden; 115 | } 116 | 117 | code, 118 | kbd, 119 | pre, 120 | samp { 121 | font-family: monospace, monospace; 122 | font-size: 1em; 123 | } 124 | 125 | figure { 126 | margin: 1em 40px; 127 | } 128 | 129 | hr { 130 | -webkit-box-sizing: content-box; 131 | box-sizing: content-box; 132 | height: 0; 133 | overflow: visible; 134 | } 135 | 136 | button, 137 | input, 138 | optgroup, 139 | select, 140 | textarea { 141 | font: inherit; 142 | margin: 0; 143 | } 144 | 145 | optgroup { 146 | font-weight: bold; 147 | } 148 | 149 | button, 150 | input { 151 | overflow: visible; 152 | } 153 | 154 | button, 155 | select { 156 | text-transform: none; 157 | } 158 | 159 | button, 160 | html [type="button"], 161 | [type="reset"], 162 | [type="submit"] { 163 | -webkit-appearance: button; 164 | } 165 | 166 | button::-moz-focus-inner, 167 | [type="button"]::-moz-focus-inner, 168 | [type="reset"]::-moz-focus-inner, 169 | [type="submit"]::-moz-focus-inner { 170 | border-style: none; 171 | padding: 0; 172 | } 173 | 174 | button:-moz-focusring, 175 | [type="button"]:-moz-focusring, 176 | [type="reset"]:-moz-focusring, 177 | [type="submit"]:-moz-focusring { 178 | outline: 1px dotted ButtonText; 179 | } 180 | 181 | fieldset { 182 | border: 1px solid #c0c0c0; 183 | margin: 0 2px; 184 | padding: 0.35em 0.625em 0.75em; 185 | } 186 | 187 | legend { 188 | -webkit-box-sizing: border-box; 189 | box-sizing: border-box; 190 | color: inherit; 191 | display: table; 192 | max-width: 100%; 193 | padding: 0; 194 | white-space: normal; 195 | } 196 | 197 | textarea { 198 | overflow: auto; 199 | } 200 | 201 | [type="checkbox"], 202 | [type="radio"] { 203 | -webkit-box-sizing: border-box; 204 | box-sizing: border-box; 205 | padding: 0; 206 | } 207 | 208 | [type="number"]::-webkit-inner-spin-button, 209 | [type="number"]::-webkit-outer-spin-button { 210 | height: auto; 211 | } 212 | 213 | [type="search"] { 214 | -webkit-appearance: textfield; 215 | outline-offset: -2px; 216 | } 217 | 218 | [type="search"]::-webkit-search-cancel-button, 219 | [type="search"]::-webkit-search-decoration { 220 | -webkit-appearance: none; 221 | } 222 | 223 | ::-webkit-input-placeholder { 224 | color: inherit; 225 | opacity: 0.54; 226 | } 227 | 228 | ::-webkit-file-upload-button { 229 | -webkit-appearance: button; 230 | font: inherit; 231 | } 232 | 233 | html { 234 | -webkit-box-sizing: border-box; 235 | box-sizing: border-box; 236 | } 237 | 238 | *, 239 | *::before, 240 | *::after { 241 | -webkit-box-sizing: inherit; 242 | box-sizing: inherit; 243 | } 244 | 245 | @-ms-viewport { 246 | width: device-width; 247 | } 248 | 249 | html { 250 | font-size: 16px; 251 | -ms-overflow-style: scrollbar; 252 | -webkit-tap-highlight-color: transparent; 253 | } 254 | 255 | body { 256 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 257 | font-size: 1rem; 258 | line-height: 1.5; 259 | color: #373a3c; 260 | background-color: #fff; 261 | } 262 | 263 | [tabindex="-1"]:focus { 264 | outline: none !important; 265 | } 266 | 267 | h1, h2, h3, h4, h5, h6 { 268 | margin-top: 0; 269 | margin-bottom: .5rem; 270 | } 271 | 272 | p { 273 | margin-top: 0; 274 | margin-bottom: 1rem; 275 | } 276 | 277 | abbr[title], 278 | abbr[data-original-title] { 279 | cursor: help; 280 | border-bottom: 1px dotted #818a91; 281 | } 282 | 283 | address { 284 | margin-bottom: 1rem; 285 | font-style: normal; 286 | line-height: inherit; 287 | } 288 | 289 | ol, 290 | ul, 291 | dl { 292 | margin-top: 0; 293 | margin-bottom: 1rem; 294 | } 295 | 296 | ol ol, 297 | ul ul, 298 | ol ul, 299 | ul ol { 300 | margin-bottom: 0; 301 | } 302 | 303 | dt { 304 | font-weight: bold; 305 | } 306 | 307 | dd { 308 | margin-bottom: .5rem; 309 | margin-left: 0; 310 | } 311 | 312 | blockquote { 313 | margin: 0 0 1rem; 314 | } 315 | 316 | a { 317 | color: #0275d8; 318 | text-decoration: none; 319 | } 320 | 321 | a:focus, a:hover { 322 | color: #014c8c; 323 | text-decoration: underline; 324 | } 325 | 326 | a:focus { 327 | outline: 5px auto -webkit-focus-ring-color; 328 | outline-offset: -2px; 329 | } 330 | 331 | a:not([href]):not([tabindex]) { 332 | color: inherit; 333 | text-decoration: none; 334 | } 335 | 336 | a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover { 337 | color: inherit; 338 | text-decoration: none; 339 | } 340 | 341 | a:not([href]):not([tabindex]):focus { 342 | outline: none; 343 | } 344 | 345 | pre { 346 | margin-top: 0; 347 | margin-bottom: 1rem; 348 | overflow: auto; 349 | } 350 | 351 | figure { 352 | margin: 0 0 1rem; 353 | } 354 | 355 | img { 356 | vertical-align: middle; 357 | } 358 | 359 | [role="button"] { 360 | cursor: pointer; 361 | } 362 | 363 | a, 364 | area, 365 | button, 366 | [role="button"], 367 | input, 368 | label, 369 | select, 370 | summary, 371 | textarea { 372 | -ms-touch-action: manipulation; 373 | touch-action: manipulation; 374 | } 375 | 376 | table { 377 | border-collapse: collapse; 378 | background-color: transparent; 379 | } 380 | 381 | caption { 382 | padding-top: 0.75rem; 383 | padding-bottom: 0.75rem; 384 | color: #818a91; 385 | text-align: left; 386 | caption-side: bottom; 387 | } 388 | 389 | th { 390 | text-align: left; 391 | } 392 | 393 | label { 394 | display: inline-block; 395 | margin-bottom: .5rem; 396 | } 397 | 398 | button:focus { 399 | outline: 1px dotted; 400 | outline: 5px auto -webkit-focus-ring-color; 401 | } 402 | 403 | input, 404 | button, 405 | select, 406 | textarea { 407 | line-height: inherit; 408 | } 409 | 410 | input[type="radio"]:disabled, 411 | input[type="checkbox"]:disabled { 412 | cursor: not-allowed; 413 | } 414 | 415 | input[type="date"], 416 | input[type="time"], 417 | input[type="datetime-local"], 418 | input[type="month"] { 419 | -webkit-appearance: listbox; 420 | } 421 | 422 | textarea { 423 | resize: vertical; 424 | } 425 | 426 | fieldset { 427 | min-width: 0; 428 | padding: 0; 429 | margin: 0; 430 | border: 0; 431 | } 432 | 433 | legend { 434 | display: block; 435 | width: 100%; 436 | padding: 0; 437 | margin-bottom: .5rem; 438 | font-size: 1.5rem; 439 | line-height: inherit; 440 | } 441 | 442 | input[type="search"] { 443 | -webkit-appearance: none; 444 | } 445 | 446 | output { 447 | display: inline-block; 448 | } 449 | 450 | [hidden] { 451 | display: none !important; 452 | } 453 | /*# sourceMappingURL=bootstrap-reboot.css.map */ -------------------------------------------------------------------------------- /egal/static/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["../../scss/_normalize.scss","bootstrap-reboot.css","../../scss/_reboot.scss","../../scss/_variables.scss","../../scss/mixins/_hover.scss","../../scss/mixins/_tab-focus.scss"],"names":[],"mappings":"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","file":"bootstrap-reboot.css","sourcesContent":[null,"/*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n}\n\nbody {\n margin: 0;\n}\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block;\n}\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\ntemplate,\n[hidden] {\n display: none;\n}\n\na {\n background-color: transparent;\n -webkit-text-decoration-skip: objects;\n}\n\na:active,\na:hover {\n outline-width: 0;\n}\n\nabbr[title] {\n border-bottom: none;\n text-decoration: underline;\n text-decoration: underline dotted;\n}\n\nb,\nstrong {\n font-weight: inherit;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\ndfn {\n font-style: italic;\n}\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\nmark {\n background-color: #ff0;\n color: #000;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\nimg {\n border-style: none;\n}\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\nfigure {\n margin: 1em 40px;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font: inherit;\n margin: 0;\n}\n\noptgroup {\n font-weight: bold;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\nlegend {\n box-sizing: border-box;\n color: inherit;\n display: table;\n max-width: 100%;\n padding: 0;\n white-space: normal;\n}\n\ntextarea {\n overflow: auto;\n}\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n box-sizing: border-box;\n padding: 0;\n}\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n -webkit-appearance: textfield;\n outline-offset: -2px;\n}\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-input-placeholder {\n color: inherit;\n opacity: 0.54;\n}\n\n::-webkit-file-upload-button {\n -webkit-appearance: button;\n font: inherit;\n}\n\nhtml {\n box-sizing: border-box;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: inherit;\n}\n\n@-ms-viewport {\n width: device-width;\n}\n\nhtml {\n font-size: 16px;\n -ms-overflow-style: scrollbar;\n -webkit-tap-highlight-color: transparent;\n}\n\nbody {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif;\n font-size: 1rem;\n line-height: 1.5;\n color: #373a3c;\n background-color: #fff;\n}\n\n[tabindex=\"-1\"]:focus {\n outline: none !important;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: .5rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted #818a91;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: bold;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\na {\n color: #0275d8;\n text-decoration: none;\n}\n\na:focus, a:hover {\n color: #014c8c;\n text-decoration: underline;\n}\n\na:focus {\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus {\n outline: none;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg {\n vertical-align: middle;\n}\n\n[role=\"button\"] {\n cursor: pointer;\n}\n\na,\narea,\nbutton,\n[role=\"button\"],\ninput,\nlabel,\nselect,\nsummary,\ntextarea {\n touch-action: manipulation;\n}\n\ntable {\n border-collapse: collapse;\n background-color: transparent;\n}\n\ncaption {\n padding-top: 0.75rem;\n padding-bottom: 0.75rem;\n color: #818a91;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: left;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: .5rem;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\ntextarea {\n line-height: inherit;\n}\n\ninput[type=\"radio\"]:disabled,\ninput[type=\"checkbox\"]:disabled {\n cursor: not-allowed;\n}\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n -webkit-appearance: listbox;\n}\n\ntextarea {\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n}\n\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n\noutput {\n display: inline-block;\n}\n\n[hidden] {\n display: none !important;\n}\n\n/*# sourceMappingURL=bootstrap-reboot.css.map */",null,null,null,null]} -------------------------------------------------------------------------------- /egal/static/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- 1 | /*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress{vertical-align:baseline}[hidden],template{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}button,input,optgroup,select,textarea{font:inherit;margin:0}optgroup{font-weight:700}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}html{-webkit-box-sizing:border-box;box-sizing:border-box}*,::after,::before{-webkit-box-sizing:inherit;box-sizing:inherit}@-ms-viewport{width:device-width}html{font-size:16px;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:1rem;line-height:1.5;color:#373a3c;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #818a91}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}a{color:#0275d8;text-decoration:none}a:focus,a:hover{color:#014c8c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle}[role=button]{cursor:pointer}[role=button],a,area,button,input,label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}table{border-collapse:collapse;background-color:transparent}caption{padding-top:.75rem;padding-bottom:.75rem;color:#818a91;text-align:left;caption-side:bottom}th{text-align:left}label{display:inline-block;margin-bottom:.5rem}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,select,textarea{line-height:inherit}input[type=checkbox]:disabled,input[type=radio]:disabled{cursor:not-allowed}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{-webkit-appearance:listbox}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit}input[type=search]{-webkit-appearance:none}output{display:inline-block}[hidden]{display:none!important} 2 | /*# sourceMappingURL=bootstrap-reboot.min.css.map */ -------------------------------------------------------------------------------- /egal/static/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["../../scss/_normalize.scss","bootstrap-reboot.css","../../scss/_reboot.scss","../../scss/_variables.scss","../../scss/mixins/_tab-focus.scss"],"names":[],"mappings":"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"} -------------------------------------------------------------------------------- /egal/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v4.0.0-alpha.5 (https://getbootstrap.com) 3 | * Copyright 2011-2016 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}(jQuery),+function(){function a(a,b){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!b||"object"!=typeof b&&"function"!=typeof b?a:b}function b(a,b){if("function"!=typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=b)}function c(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function")}var d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a},e=function(){function a(a,b){for(var c=0;cthis._items.length-1||b<0)){if(this._isSliding)return void a(this._element).one(r.SLID,function(){return c.to(b)});if(d===b)return this.pause(),void this.cycle();var e=b>d?q.NEXT:q.PREVIOUS;this._slide(e,this._items[b])}},j.prototype.dispose=function(){a(this._element).off(i),a.removeData(this._element,h),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},j.prototype._getConfig=function(c){return c=a.extend({},o,c),f.typeCheckConfig(b,c,p),c},j.prototype._addEventListeners=function(){this._config.keyboard&&a(this._element).on(r.KEYDOWN,a.proxy(this._keydown,this)),"hover"!==this._config.pause||"ontouchstart"in document.documentElement||a(this._element).on(r.MOUSEENTER,a.proxy(this.pause,this)).on(r.MOUSELEAVE,a.proxy(this.cycle,this))},j.prototype._keydown=function(a){if(a.preventDefault(),!/input|textarea/i.test(a.target.tagName))switch(a.which){case m:this.prev();break;case n:this.next();break;default:return}},j.prototype._getItemIndex=function(b){return this._items=a.makeArray(a(b).parent().find(t.ITEM)),this._items.indexOf(b)},j.prototype._getItemByDirection=function(a,b){var c=a===q.NEXT,d=a===q.PREVIOUS,e=this._getItemIndex(b),f=this._items.length-1,g=d&&0===e||c&&e===f;if(g&&!this._config.wrap)return b;var h=a===q.PREVIOUS?-1:1,i=(e+h)%this._items.length;return i===-1?this._items[this._items.length-1]:this._items[i]},j.prototype._triggerSlideEvent=function(b,c){var d=a.Event(r.SLIDE,{relatedTarget:b,direction:c});return a(this._element).trigger(d),d},j.prototype._setActiveIndicatorElement=function(b){if(this._indicatorsElement){a(this._indicatorsElement).find(t.ACTIVE).removeClass(s.ACTIVE);var c=this._indicatorsElement.children[this._getItemIndex(b)];c&&a(c).addClass(s.ACTIVE)}},j.prototype._slide=function(b,c){var d=this,e=a(this._element).find(t.ACTIVE_ITEM)[0],g=c||e&&this._getItemByDirection(b,e),h=Boolean(this._interval),i=b===q.NEXT?s.LEFT:s.RIGHT;if(g&&a(g).hasClass(s.ACTIVE))return void(this._isSliding=!1);var j=this._triggerSlideEvent(g,i);if(!j.isDefaultPrevented()&&e&&g){this._isSliding=!0,h&&this.pause(),this._setActiveIndicatorElement(g);var k=a.Event(r.SLID,{relatedTarget:g,direction:i});f.supportsTransitionEnd()&&a(this._element).hasClass(s.SLIDE)?(a(g).addClass(b),f.reflow(g),a(e).addClass(i),a(g).addClass(i),a(e).one(f.TRANSITION_END,function(){a(g).removeClass(i).removeClass(b),a(g).addClass(s.ACTIVE),a(e).removeClass(s.ACTIVE).removeClass(b).removeClass(i),d._isSliding=!1,setTimeout(function(){return a(d._element).trigger(k)},0)}).emulateTransitionEnd(l)):(a(e).removeClass(s.ACTIVE),a(g).addClass(s.ACTIVE),this._isSliding=!1,a(this._element).trigger(k)),h&&this.cycle()}},j._jQueryInterface=function(b){return this.each(function(){var c=a(this).data(h),e=a.extend({},o,a(this).data());"object"===("undefined"==typeof b?"undefined":d(b))&&a.extend(e,b);var f="string"==typeof b?b:e.slide;if(c||(c=new j(this,e),a(this).data(h,c)),"number"==typeof b)c.to(b);else if("string"==typeof f){if(void 0===c[f])throw new Error('No method named "'+f+'"');c[f]()}else e.interval&&(c.pause(),c.cycle())})},j._dataApiClickHandler=function(b){var c=f.getSelectorFromElement(this);if(c){var d=a(c)[0];if(d&&a(d).hasClass(s.CAROUSEL)){var e=a.extend({},a(d).data(),a(this).data()),g=this.getAttribute("data-slide-to");g&&(e.interval=!1),j._jQueryInterface.call(a(d),e),g&&a(d).data(h).to(g),b.preventDefault()}}},e(j,null,[{key:"VERSION",get:function(){return g}},{key:"Default",get:function(){return o}}]),j}();return a(document).on(r.CLICK_DATA_API,t.DATA_SLIDE,u._dataApiClickHandler),a(window).on(r.LOAD_DATA_API,function(){a(t.DATA_RIDE).each(function(){var b=a(this);u._jQueryInterface.call(b,b.data())})}),a.fn[b]=u._jQueryInterface,a.fn[b].Constructor=u,a.fn[b].noConflict=function(){return a.fn[b]=k,u._jQueryInterface},u}(jQuery),function(a){var b="collapse",g="4.0.0-alpha.5",h="bs.collapse",i="."+h,j=".data-api",k=a.fn[b],l=600,m={toggle:!0,parent:""},n={toggle:"boolean",parent:"string"},o={SHOW:"show"+i,SHOWN:"shown"+i,HIDE:"hide"+i,HIDDEN:"hidden"+i,CLICK_DATA_API:"click"+i+j},p={IN:"in",COLLAPSE:"collapse",COLLAPSING:"collapsing",COLLAPSED:"collapsed"},q={WIDTH:"width",HEIGHT:"height"},r={ACTIVES:".card > .in, .card > .collapsing",DATA_TOGGLE:'[data-toggle="collapse"]'},s=function(){function i(b,d){c(this,i),this._isTransitioning=!1,this._element=b,this._config=this._getConfig(d),this._triggerArray=a.makeArray(a('[data-toggle="collapse"][href="#'+b.id+'"],'+('[data-toggle="collapse"][data-target="#'+b.id+'"]'))),this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}return i.prototype.toggle=function(){a(this._element).hasClass(p.IN)?this.hide():this.show()},i.prototype.show=function(){var b=this;if(!this._isTransitioning&&!a(this._element).hasClass(p.IN)){var c=void 0,d=void 0;if(this._parent&&(c=a.makeArray(a(r.ACTIVES)),c.length||(c=null)),!(c&&(d=a(c).data(h),d&&d._isTransitioning))){var e=a.Event(o.SHOW);if(a(this._element).trigger(e),!e.isDefaultPrevented()){c&&(i._jQueryInterface.call(a(c),"hide"),d||a(c).data(h,null));var g=this._getDimension();a(this._element).removeClass(p.COLLAPSE).addClass(p.COLLAPSING),this._element.style[g]=0,this._element.setAttribute("aria-expanded",!0),this._triggerArray.length&&a(this._triggerArray).removeClass(p.COLLAPSED).attr("aria-expanded",!0),this.setTransitioning(!0);var j=function(){a(b._element).removeClass(p.COLLAPSING).addClass(p.COLLAPSE).addClass(p.IN),b._element.style[g]="",b.setTransitioning(!1),a(b._element).trigger(o.SHOWN)};if(!f.supportsTransitionEnd())return void j();var k=g[0].toUpperCase()+g.slice(1),m="scroll"+k;a(this._element).one(f.TRANSITION_END,j).emulateTransitionEnd(l),this._element.style[g]=this._element[m]+"px"}}}},i.prototype.hide=function(){var b=this;if(!this._isTransitioning&&a(this._element).hasClass(p.IN)){var c=a.Event(o.HIDE);if(a(this._element).trigger(c),!c.isDefaultPrevented()){var d=this._getDimension(),e=d===q.WIDTH?"offsetWidth":"offsetHeight";this._element.style[d]=this._element[e]+"px",f.reflow(this._element),a(this._element).addClass(p.COLLAPSING).removeClass(p.COLLAPSE).removeClass(p.IN),this._element.setAttribute("aria-expanded",!1),this._triggerArray.length&&a(this._triggerArray).addClass(p.COLLAPSED).attr("aria-expanded",!1),this.setTransitioning(!0);var g=function(){b.setTransitioning(!1),a(b._element).removeClass(p.COLLAPSING).addClass(p.COLLAPSE).trigger(o.HIDDEN)};return this._element.style[d]="",f.supportsTransitionEnd()?void a(this._element).one(f.TRANSITION_END,g).emulateTransitionEnd(l):void g()}}},i.prototype.setTransitioning=function(a){this._isTransitioning=a},i.prototype.dispose=function(){a.removeData(this._element,h),this._config=null,this._parent=null,this._element=null,this._triggerArray=null,this._isTransitioning=null},i.prototype._getConfig=function(c){return c=a.extend({},m,c),c.toggle=Boolean(c.toggle),f.typeCheckConfig(b,c,n),c},i.prototype._getDimension=function(){var b=a(this._element).hasClass(q.WIDTH);return b?q.WIDTH:q.HEIGHT},i.prototype._getParent=function(){var b=this,c=a(this._config.parent)[0],d='[data-toggle="collapse"][data-parent="'+this._config.parent+'"]';return a(c).find(d).each(function(a,c){b._addAriaAndCollapsedClass(i._getTargetFromElement(c),[c])}),c},i.prototype._addAriaAndCollapsedClass=function(b,c){if(b){var d=a(b).hasClass(p.IN);b.setAttribute("aria-expanded",d),c.length&&a(c).toggleClass(p.COLLAPSED,!d).attr("aria-expanded",d)}},i._getTargetFromElement=function(b){var c=f.getSelectorFromElement(b);return c?a(c)[0]:null},i._jQueryInterface=function(b){return this.each(function(){var c=a(this),e=c.data(h),f=a.extend({},m,c.data(),"object"===("undefined"==typeof b?"undefined":d(b))&&b);if(!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||(e=new i(this,f),c.data(h,e)),"string"==typeof b){if(void 0===e[b])throw new Error('No method named "'+b+'"');e[b]()}})},e(i,null,[{key:"VERSION",get:function(){return g}},{key:"Default",get:function(){return m}}]),i}();return a(document).on(o.CLICK_DATA_API,r.DATA_TOGGLE,function(b){b.preventDefault();var c=s._getTargetFromElement(this),d=a(c).data(h),e=d?"toggle":a(this).data();s._jQueryInterface.call(a(c),e)}),a.fn[b]=s._jQueryInterface,a.fn[b].Constructor=s,a.fn[b].noConflict=function(){return a.fn[b]=k,s._jQueryInterface},s}(jQuery),function(a){var b="dropdown",d="4.0.0-alpha.5",g="bs.dropdown",h="."+g,i=".data-api",j=a.fn[b],k=27,l=38,m=40,n=3,o={HIDE:"hide"+h,HIDDEN:"hidden"+h,SHOW:"show"+h,SHOWN:"shown"+h,CLICK:"click"+h,CLICK_DATA_API:"click"+h+i,KEYDOWN_DATA_API:"keydown"+h+i},p={BACKDROP:"dropdown-backdrop",DISABLED:"disabled",OPEN:"open"},q={BACKDROP:".dropdown-backdrop",DATA_TOGGLE:'[data-toggle="dropdown"]',FORM_CHILD:".dropdown form",ROLE_MENU:'[role="menu"]',ROLE_LISTBOX:'[role="listbox"]',NAVBAR_NAV:".navbar-nav",VISIBLE_ITEMS:'[role="menu"] li:not(.disabled) a, [role="listbox"] li:not(.disabled) a'},r=function(){function b(a){c(this,b),this._element=a,this._addEventListeners()}return b.prototype.toggle=function(){if(this.disabled||a(this).hasClass(p.DISABLED))return!1;var c=b._getParentFromElement(this),d=a(c).hasClass(p.OPEN);if(b._clearMenus(),d)return!1;if("ontouchstart"in document.documentElement&&!a(c).closest(q.NAVBAR_NAV).length){var e=document.createElement("div");e.className=p.BACKDROP,a(e).insertBefore(this),a(e).on("click",b._clearMenus)}var f={relatedTarget:this},g=a.Event(o.SHOW,f);return a(c).trigger(g),!g.isDefaultPrevented()&&(this.focus(),this.setAttribute("aria-expanded","true"),a(c).toggleClass(p.OPEN),a(c).trigger(a.Event(o.SHOWN,f)),!1)},b.prototype.dispose=function(){a.removeData(this._element,g),a(this._element).off(h),this._element=null},b.prototype._addEventListeners=function(){a(this._element).on(o.CLICK,this.toggle)},b._jQueryInterface=function(c){return this.each(function(){var d=a(this).data(g);if(d||a(this).data(g,d=new b(this)),"string"==typeof c){if(void 0===d[c])throw new Error('No method named "'+c+'"');d[c].call(this)}})},b._clearMenus=function(c){if(!c||c.which!==n){var d=a(q.BACKDROP)[0];d&&d.parentNode.removeChild(d);for(var e=a.makeArray(a(q.DATA_TOGGLE)),f=0;f0&&h--,c.which===m&&hdocument.documentElement.clientHeight;!this._isBodyOverflowing&&a&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!a&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},j.prototype._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},j.prototype._checkScrollbar=function(){this._isBodyOverflowing=document.body.clientWidth=c){var d=this._targets[this._targets.length-1];this._activeTarget!==d&&this._activate(d)}if(this._activeTarget&&a=this._offsets[e]&&(void 0===this._offsets[e+1]||a .nav-item .fade, > .fade",ACTIVE:".active",ACTIVE_CHILD:"> .nav-item > .active, > .active",DATA_TOGGLE:'[data-toggle="tab"], [data-toggle="pill"]', 7 | DROPDOWN_TOGGLE:".dropdown-toggle",DROPDOWN_ACTIVE_CHILD:"> .dropdown-menu .active"},o=function(){function b(a){c(this,b),this._element=a}return b.prototype.show=function(){var b=this;if(!this._element.parentNode||this._element.parentNode.nodeType!==Node.ELEMENT_NODE||!a(this._element).hasClass(m.ACTIVE)){var c=void 0,d=void 0,e=a(this._element).closest(n.UL)[0],g=f.getSelectorFromElement(this._element);e&&(d=a.makeArray(a(e).find(n.ACTIVE)),d=d[d.length-1]);var h=a.Event(l.HIDE,{relatedTarget:this._element}),i=a.Event(l.SHOW,{relatedTarget:d});if(d&&a(d).trigger(h),a(this._element).trigger(i),!i.isDefaultPrevented()&&!h.isDefaultPrevented()){g&&(c=a(g)[0]),this._activate(this._element,e);var j=function(){var c=a.Event(l.HIDDEN,{relatedTarget:b._element}),e=a.Event(l.SHOWN,{relatedTarget:d});a(d).trigger(c),a(b._element).trigger(e)};c?this._activate(c,c.parentNode,j):j()}}},b.prototype.dispose=function(){a.removeClass(this._element,g),this._element=null},b.prototype._activate=function(b,c,d){var e=a(c).find(n.ACTIVE_CHILD)[0],g=d&&f.supportsTransitionEnd()&&(e&&a(e).hasClass(m.FADE)||Boolean(a(c).find(n.FADE_CHILD)[0])),h=a.proxy(this._transitionComplete,this,b,e,g,d);e&&g?a(e).one(f.TRANSITION_END,h).emulateTransitionEnd(k):h(),e&&a(e).removeClass(m.IN)},b.prototype._transitionComplete=function(b,c,d,e){if(c){a(c).removeClass(m.ACTIVE);var g=a(c).find(n.DROPDOWN_ACTIVE_CHILD)[0];g&&a(g).removeClass(m.ACTIVE),c.setAttribute("aria-expanded",!1)}if(a(b).addClass(m.ACTIVE),b.setAttribute("aria-expanded",!0),d?(f.reflow(b),a(b).addClass(m.IN)):a(b).removeClass(m.FADE),b.parentNode&&a(b.parentNode).hasClass(m.DROPDOWN_MENU)){var h=a(b).closest(n.DROPDOWN)[0];h&&a(h).find(n.DROPDOWN_TOGGLE).addClass(m.ACTIVE),b.setAttribute("aria-expanded",!0)}e&&e()},b._jQueryInterface=function(c){return this.each(function(){var d=a(this),e=d.data(g);if(e||(e=e=new b(this),d.data(g,e)),"string"==typeof c){if(void 0===e[c])throw new Error('No method named "'+c+'"');e[c]()}})},e(b,null,[{key:"VERSION",get:function(){return d}}]),b}();return a(document).on(l.CLICK_DATA_API,n.DATA_TOGGLE,function(b){b.preventDefault(),o._jQueryInterface.call(a(this),"show")}),a.fn[b]=o._jQueryInterface,a.fn[b].Constructor=o,a.fn[b].noConflict=function(){return a.fn[b]=j,o._jQueryInterface},o}(jQuery),function(a){if(void 0===window.Tether)throw new Error("Bootstrap tooltips require Tether (http://tether.io/)");var b="tooltip",g="4.0.0-alpha.5",h="bs.tooltip",i="."+h,j=a.fn[b],k=150,l="bs-tether",m={animation:!0,template:'',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:"0 0",constraints:[]},n={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"string",constraints:"array"},o={TOP:"bottom center",RIGHT:"middle left",BOTTOM:"top center",LEFT:"middle right"},p={IN:"in",OUT:"out"},q={HIDE:"hide"+i,HIDDEN:"hidden"+i,SHOW:"show"+i,SHOWN:"shown"+i,INSERTED:"inserted"+i,CLICK:"click"+i,FOCUSIN:"focusin"+i,FOCUSOUT:"focusout"+i,MOUSEENTER:"mouseenter"+i,MOUSELEAVE:"mouseleave"+i},r={FADE:"fade",IN:"in"},s={TOOLTIP:".tooltip",TOOLTIP_INNER:".tooltip-inner"},t={element:!1,enabled:!1},u={HOVER:"hover",FOCUS:"focus",CLICK:"click",MANUAL:"manual"},v=function(){function j(a,b){c(this,j),this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._tether=null,this.element=a,this.config=this._getConfig(b),this.tip=null,this._setListeners()}return j.prototype.enable=function(){this._isEnabled=!0},j.prototype.disable=function(){this._isEnabled=!1},j.prototype.toggleEnabled=function(){this._isEnabled=!this._isEnabled},j.prototype.toggle=function(b){if(b){var c=this.constructor.DATA_KEY,d=a(b.currentTarget).data(c);d||(d=new this.constructor(b.currentTarget,this._getDelegateConfig()),a(b.currentTarget).data(c,d)),d._activeTrigger.click=!d._activeTrigger.click,d._isWithActiveTrigger()?d._enter(null,d):d._leave(null,d)}else{if(a(this.getTipElement()).hasClass(r.IN))return void this._leave(null,this);this._enter(null,this)}},j.prototype.dispose=function(){clearTimeout(this._timeout),this.cleanupTether(),a.removeData(this.element,this.constructor.DATA_KEY),a(this.element).off(this.constructor.EVENT_KEY),this.tip&&a(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._tether=null,this.element=null,this.config=null,this.tip=null},j.prototype.show=function(){var b=this,c=a.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){a(this.element).trigger(c);var d=a.contains(this.element.ownerDocument.documentElement,this.element);if(c.isDefaultPrevented()||!d)return;var e=this.getTipElement(),g=f.getUID(this.constructor.NAME);e.setAttribute("id",g),this.element.setAttribute("aria-describedby",g),this.setContent(),this.config.animation&&a(e).addClass(r.FADE);var h="function"==typeof this.config.placement?this.config.placement.call(this,e,this.element):this.config.placement,i=this._getAttachment(h);a(e).data(this.constructor.DATA_KEY,this).appendTo(document.body),a(this.element).trigger(this.constructor.Event.INSERTED),this._tether=new Tether({attachment:i,element:e,target:this.element,classes:t,classPrefix:l,offset:this.config.offset,constraints:this.config.constraints,addTargetClasses:!1}),f.reflow(e),this._tether.position(),a(e).addClass(r.IN);var k=function(){var c=b._hoverState;b._hoverState=null,a(b.element).trigger(b.constructor.Event.SHOWN),c===p.OUT&&b._leave(null,b)};if(f.supportsTransitionEnd()&&a(this.tip).hasClass(r.FADE))return void a(this.tip).one(f.TRANSITION_END,k).emulateTransitionEnd(j._TRANSITION_DURATION);k()}},j.prototype.hide=function(b){var c=this,d=this.getTipElement(),e=a.Event(this.constructor.Event.HIDE),g=function(){c._hoverState!==p.IN&&d.parentNode&&d.parentNode.removeChild(d),c.element.removeAttribute("aria-describedby"),a(c.element).trigger(c.constructor.Event.HIDDEN),c.cleanupTether(),b&&b()};a(this.element).trigger(e),e.isDefaultPrevented()||(a(d).removeClass(r.IN),f.supportsTransitionEnd()&&a(this.tip).hasClass(r.FADE)?a(d).one(f.TRANSITION_END,g).emulateTransitionEnd(k):g(),this._hoverState="")},j.prototype.isWithContent=function(){return Boolean(this.getTitle())},j.prototype.getTipElement=function(){return this.tip=this.tip||a(this.config.template)[0]},j.prototype.setContent=function(){var b=a(this.getTipElement());this.setElementContent(b.find(s.TOOLTIP_INNER),this.getTitle()),b.removeClass(r.FADE).removeClass(r.IN),this.cleanupTether()},j.prototype.setElementContent=function(b,c){var e=this.config.html;"object"===("undefined"==typeof c?"undefined":d(c))&&(c.nodeType||c.jquery)?e?a(c).parent().is(b)||b.empty().append(c):b.text(a(c).text()):b[e?"html":"text"](c)},j.prototype.getTitle=function(){var a=this.element.getAttribute("data-original-title");return a||(a="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),a},j.prototype.cleanupTether=function(){this._tether&&this._tether.destroy()},j.prototype._getAttachment=function(a){return o[a.toUpperCase()]},j.prototype._setListeners=function(){var b=this,c=this.config.trigger.split(" ");c.forEach(function(c){if("click"===c)a(b.element).on(b.constructor.Event.CLICK,b.config.selector,a.proxy(b.toggle,b));else if(c!==u.MANUAL){var d=c===u.HOVER?b.constructor.Event.MOUSEENTER:b.constructor.Event.FOCUSIN,e=c===u.HOVER?b.constructor.Event.MOUSELEAVE:b.constructor.Event.FOCUSOUT;a(b.element).on(d,b.config.selector,a.proxy(b._enter,b)).on(e,b.config.selector,a.proxy(b._leave,b))}}),this.config.selector?this.config=a.extend({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},j.prototype._fixTitle=function(){var a=d(this.element.getAttribute("data-original-title"));(this.element.getAttribute("title")||"string"!==a)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},j.prototype._enter=function(b,c){var d=this.constructor.DATA_KEY;return c=c||a(b.currentTarget).data(d),c||(c=new this.constructor(b.currentTarget,this._getDelegateConfig()),a(b.currentTarget).data(d,c)),b&&(c._activeTrigger["focusin"===b.type?u.FOCUS:u.HOVER]=!0),a(c.getTipElement()).hasClass(r.IN)||c._hoverState===p.IN?void(c._hoverState=p.IN):(clearTimeout(c._timeout),c._hoverState=p.IN,c.config.delay&&c.config.delay.show?void(c._timeout=setTimeout(function(){c._hoverState===p.IN&&c.show()},c.config.delay.show)):void c.show())},j.prototype._leave=function(b,c){var d=this.constructor.DATA_KEY;if(c=c||a(b.currentTarget).data(d),c||(c=new this.constructor(b.currentTarget,this._getDelegateConfig()),a(b.currentTarget).data(d,c)),b&&(c._activeTrigger["focusout"===b.type?u.FOCUS:u.HOVER]=!1),!c._isWithActiveTrigger())return clearTimeout(c._timeout),c._hoverState=p.OUT,c.config.delay&&c.config.delay.hide?void(c._timeout=setTimeout(function(){c._hoverState===p.OUT&&c.hide()},c.config.delay.hide)):void c.hide()},j.prototype._isWithActiveTrigger=function(){for(var a in this._activeTrigger)if(this._activeTrigger[a])return!0;return!1},j.prototype._getConfig=function(c){return c=a.extend({},this.constructor.Default,a(this.element).data(),c),c.delay&&"number"==typeof c.delay&&(c.delay={show:c.delay,hide:c.delay}),f.typeCheckConfig(b,c,this.constructor.DefaultType),c},j.prototype._getDelegateConfig=function(){var a={};if(this.config)for(var b in this.config)this.constructor.Default[b]!==this.config[b]&&(a[b]=this.config[b]);return a},j._jQueryInterface=function(b){return this.each(function(){var c=a(this).data(h),e="object"===("undefined"==typeof b?"undefined":d(b))?b:null;if((c||!/dispose|hide/.test(b))&&(c||(c=new j(this,e),a(this).data(h,c)),"string"==typeof b)){if(void 0===c[b])throw new Error('No method named "'+b+'"');c[b]()}})},e(j,null,[{key:"VERSION",get:function(){return g}},{key:"Default",get:function(){return m}},{key:"NAME",get:function(){return b}},{key:"DATA_KEY",get:function(){return h}},{key:"Event",get:function(){return q}},{key:"EVENT_KEY",get:function(){return i}},{key:"DefaultType",get:function(){return n}}]),j}();return a.fn[b]=v._jQueryInterface,a.fn[b].Constructor=v,a.fn[b].noConflict=function(){return a.fn[b]=j,v._jQueryInterface},v}(jQuery));(function(f){var h="popover",i="4.0.0-alpha.5",j="bs.popover",k="."+j,l=f.fn[h],m=f.extend({},g.Default,{placement:"right",trigger:"click",content:"",template:''}),n=f.extend({},g.DefaultType,{content:"(string|element|function)"}),o={FADE:"fade",IN:"in"},p={TITLE:".popover-title",CONTENT:".popover-content"},q={HIDE:"hide"+k,HIDDEN:"hidden"+k,SHOW:"show"+k,SHOWN:"shown"+k,INSERTED:"inserted"+k,CLICK:"click"+k,FOCUSIN:"focusin"+k,FOCUSOUT:"focusout"+k,MOUSEENTER:"mouseenter"+k,MOUSELEAVE:"mouseleave"+k},r=function(g){function l(){return c(this,l),a(this,g.apply(this,arguments))}return b(l,g),l.prototype.isWithContent=function(){return this.getTitle()||this._getContent()},l.prototype.getTipElement=function(){return this.tip=this.tip||f(this.config.template)[0]},l.prototype.setContent=function(){var a=f(this.getTipElement());this.setElementContent(a.find(p.TITLE),this.getTitle()),this.setElementContent(a.find(p.CONTENT),this._getContent()),a.removeClass(o.FADE).removeClass(o.IN),this.cleanupTether()},l.prototype._getContent=function(){return this.element.getAttribute("data-content")||("function"==typeof this.config.content?this.config.content.call(this.element):this.config.content)},l._jQueryInterface=function(a){return this.each(function(){var b=f(this).data(j),c="object"===("undefined"==typeof a?"undefined":d(a))?a:null;if((b||!/destroy|hide/.test(a))&&(b||(b=new l(this,c),f(this).data(j,b)),"string"==typeof a)){if(void 0===b[a])throw new Error('No method named "'+a+'"');b[a]()}})},e(l,null,[{key:"VERSION",get:function(){return i}},{key:"Default",get:function(){return m}},{key:"NAME",get:function(){return h}},{key:"DATA_KEY",get:function(){return j}},{key:"Event",get:function(){return q}},{key:"EVENT_KEY",get:function(){return k}},{key:"DefaultType",get:function(){return n}}]),l}(g);return f.fn[h]=r._jQueryInterface,f.fn[h].Constructor=r,f.fn[h].noConflict=function(){return f.fn[h]=l,r._jQueryInterface},r})(jQuery)}(); -------------------------------------------------------------------------------- /egal/static/main.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by riedel on 29/12/2016. 3 | */ 4 | define(['./egal', 'base/js/namespace', 'jquery'], function (egal, Jupyter, $) { 5 | 6 | "use strict"; 7 | 8 | var old_color = null; 9 | 10 | var setup_egal_cell = function (cell) { 11 | var divId = 'egal_' + cell.cell_id; 12 | var hasBeenSetup = cell.element.find("div div.input_area #" + divId).length > 0; 13 | var inputArea = cell.element.find("div div.input_area"); 14 | var cellToolBar = cell.element.find(".celltoolbar"); 15 | if (!hasBeenSetup) { 16 | // console.log(cellToolBar); 17 | // console.log(divId); 18 | // console.log(cell.element.find("div div.input_area #" + divId)); 19 | // console.log(hasBeenSetup); 20 | if (cell.metadata.is_egal && cell.cell_type === "raw") { 21 | cell.element.find("div div.input_area > *").toggle(); 22 | old_color = inputArea.css("background-color"); 23 | inputArea.append($("
")); 24 | 25 | var canvas = new egal.Egal('#' + divId, { 26 | width: '100%', 27 | content: cell.get_text() 28 | }); 29 | if (cell.metadata.hide_egal) canvas.toggleMenuBar(); 30 | canvas.onMenuBarToggle(function () { 31 | console.log("Toggled!"); 32 | cell.metadata.hide_egal = !cell.metadata.hide_egal; 33 | }); 34 | canvas.onSaveContent(function (content) { 35 | cell.set_text(content); 36 | }); 37 | inputArea.css("background-color", "white"); 38 | inputArea.css("border-style", "none"); 39 | cellToolBar.css("border-bottom", "thin solid #CFCFCF"); 40 | cell.element.click(function () { 41 | // console.log("Clicked on Egal!"); 42 | cell.keyboard_manager.disable(); 43 | 44 | cell.edit_mode(); 45 | // console.log(cell.mode); 46 | // cell.element.get(0).focus(); 47 | }); 48 | // cell.cell_type = "raw"; 49 | } 50 | 51 | } else if (!(cell.metadata.is_egal && cell.cell_type === "raw")) { 52 | cell.element.find("div div.input_area #" + divId).remove(); 53 | inputArea.css("background-color", old_color); 54 | inputArea.css("border-style", "solid"); 55 | cellToolBar.css("border-bottom", "none"); 56 | } 57 | }; 58 | 59 | var toggle_egal = function () { 60 | // Find the selected cell 61 | var cell = Jupyter.notebook.get_selected_cell(); 62 | cell.metadata.is_egal = !cell.metadata.is_egal; 63 | setup_egal_cell(cell); 64 | }; 65 | 66 | var create_egal = function () { 67 | // Find the selected cell 68 | var cell = Jupyter.notebook.insert_cell_below("raw"); 69 | cell.set_text(""); 70 | cell.metadata.is_egal = true; 71 | setup_egal_cell(cell); 72 | }; 73 | 74 | 75 | var update_egal_cells = function () { 76 | Jupyter.notebook.get_cells().forEach(function (cell) { 77 | if (cell.metadata.is_egal) { 78 | setup_egal_cell(cell); 79 | } 80 | }); 81 | }; 82 | 83 | var load_ipython_extension = function () { 84 | // console.log("Loading egal ..."); 85 | Jupyter.toolbar.add_buttons_group([{ 86 | id: 'btn-hide-input', 87 | label: 'Insert Egal Cell', 88 | icon: 'fa-paint-brush', 89 | callback: function () { 90 | create_egal(); 91 | // toggle_egal(); 92 | setTimeout(function () { 93 | $('#btn-hide-input').blur(); 94 | }, 500); 95 | } 96 | }]); 97 | // Collapse all cells that are marked as hidden 98 | if (typeof Jupyter.notebook === 'undefined') { 99 | // notebook not loaded yet. add callback for when it's loaded. 100 | require(['base/js/events'], function (events) { 101 | events.on("notebook_loaded.Notebook", update_egal_cells); 102 | events.on("pre_run_cell", function () { 103 | console.log("Cell created!"); 104 | }); 105 | }); 106 | } else { 107 | // notebook already loaded. Update directly 108 | // console.log("Already loaded! "); 109 | require(['base/js/events'], function (events) { 110 | events.on("create.Cell", function (e, cell) { 111 | // console.log("Cell created!"); 112 | // console.log(cell); 113 | // console.log(e); 114 | // console.log(cell.cell.metadata); 115 | // console.log(cell.cell._metadata); 116 | if (cell.cell.metadata.is_egal) { 117 | setup_egal_cell(cell.cell); 118 | } 119 | }); 120 | events.on("select.Cell", function (e, cell) { 121 | // console.log("Select edit mode!"); 122 | // console.log(cell); 123 | // console.log(e); 124 | // console.log(cell.cell.metadata); 125 | // console.log(cell.cell._metadata); 126 | if (cell.cell.metadata.is_egal) { 127 | setup_egal_cell(cell.cell); 128 | } 129 | }) 130 | }); 131 | update_egal_cells(); 132 | } 133 | }; 134 | return { 135 | load_ipython_extension: load_ipython_extension 136 | }; 137 | }); -------------------------------------------------------------------------------- /egal/static/menu.html: -------------------------------------------------------------------------------- 1 | 70 |
71 |
72 |
    73 |
  • 75 |
76 |
    77 |
  • 78 | 79 |
  • 80 | 81 |
  • 82 | 83 |
  • 84 |
  • 85 | 86 |
  • 87 |
  • 88 | 89 |
  • 90 |
  • 91 | 92 |
  • 93 | 94 | 95 | 96 | 97 |
  • 98 | 99 |
  • 100 | 101 | 102 |
  • 103 | 104 |
  • 105 | 106 | 107 | 108 | 109 |
  • 110 | 111 | 112 | 113 |
  • 114 |
  • 115 | 116 | 117 | 118 |
  • 119 |
  • 120 | 121 | 122 | 123 |
  • 124 |
  • 125 | 126 | 128 | 129 |
  • 130 |
  • 131 | 132 | 133 | 134 | 135 |
  • 136 |
  • 137 | 138 | 139 | A 140 | 141 | 142 |
  • 143 | 144 |
145 |
146 |
147 |
    148 |
  • 149 | 150 |
  • 151 |
  • 152 | 153 |
  • 154 |
  • 155 | 156 |
  • 157 |
  • 158 | 159 |
  • 160 |
  • 161 | fg 162 |
  • 163 |
  • 164 | bg 165 |
  • 166 |
  • 167 | wi 168 |
  • 169 |
  • 170 | 171 |
  • 172 |
  • 173 | 174 |
  • 175 |
  • 176 | 177 |
  • 178 |
  • 179 | 180 |
  • 181 | 182 | 183 |
184 |
185 |
186 |
    187 |
  • 188 | Start 189 |
  • 190 |
  • 191 | End 192 |
  • 193 | 194 |
195 |
196 |
197 | 198 | -------------------------------------------------------------------------------- /egal/static/require.js: -------------------------------------------------------------------------------- 1 | /** vim: et:ts=4:sw=4:sts=4 2 | * @license RequireJS 2.3.2 Copyright jQuery Foundation and other contributors. 3 | * Released under MIT license, https://github.com/requirejs/requirejs/blob/master/LICENSE 4 | */ 5 | var requirejs,require,define;!function(global,setTimeout){function commentReplace(e,t){return t||""}function isFunction(e){return"[object Function]"===ostring.call(e)}function isArray(e){return"[object Array]"===ostring.call(e)}function each(e,t){if(e){var i;for(i=0;i-1&&(!e[i]||!t(e[i],i,e));i-=1);}}function hasProp(e,t){return hasOwn.call(e,t)}function getOwn(e,t){return hasProp(e,t)&&e[t]}function eachProp(e,t){var i;for(i in e)if(hasProp(e,i)&&t(e[i],i))break}function mixin(e,t,i,r){return t&&eachProp(t,function(t,n){!i&&hasProp(e,n)||(!r||"object"!=typeof t||!t||isArray(t)||isFunction(t)||t instanceof RegExp?e[n]=t:(e[n]||(e[n]={}),mixin(e[n],t,i,r)))}),e}function bind(e,t){return function(){return t.apply(e,arguments)}}function scripts(){return document.getElementsByTagName("script")}function defaultOnError(e){throw e}function getGlobal(e){if(!e)return e;var t=global;return each(e.split("."),function(e){t=t[e]}),t}function makeError(e,t,i,r){var n=new Error(t+"\nhttp://requirejs.org/docs/errors.html#"+e);return n.requireType=e,n.requireModules=r,i&&(n.originalError=i),n}function newContext(e){function t(e){var t,i;for(t=0;t0&&(e.splice(t-1,2),t-=2)}}function i(e,i,r){var n,o,a,s,u,c,d,p,f,l,h,m,g=i&&i.split("/"),v=y.map,x=v&&v["*"];if(e&&(e=e.split("/"),d=e.length-1,y.nodeIdCompat&&jsSuffixRegExp.test(e[d])&&(e[d]=e[d].replace(jsSuffixRegExp,"")),"."===e[0].charAt(0)&&g&&(m=g.slice(0,g.length-1),e=m.concat(e)),t(e),e=e.join("/")),r&&v&&(g||x)){a=e.split("/");e:for(s=a.length;s>0;s-=1){if(c=a.slice(0,s).join("/"),g)for(u=g.length;u>0;u-=1)if(o=getOwn(v,g.slice(0,u).join("/")),o&&(o=getOwn(o,c))){p=o,f=s;break e}!l&&x&&getOwn(x,c)&&(l=getOwn(x,c),h=s)}!p&&l&&(p=l,f=h),p&&(a.splice(0,f,p),e=a.join("/"))}return n=getOwn(y.pkgs,e),n?n:e}function r(e){isBrowser&&each(scripts(),function(t){if(t.getAttribute("data-requiremodule")===e&&t.getAttribute("data-requirecontext")===q.contextName)return t.parentNode.removeChild(t),!0})}function n(e){var t=getOwn(y.paths,e);if(t&&isArray(t)&&t.length>1)return t.shift(),q.require.undef(e),q.makeRequire(null,{skipMap:!0})([e]),!0}function o(e){var t,i=e?e.indexOf("!"):-1;return i>-1&&(t=e.substring(0,i),e=e.substring(i+1,e.length)),[t,e]}function a(e,t,r,n){var a,s,u,c,d=null,p=t?t.name:null,f=e,l=!0,h="";return e||(l=!1,e="_@r"+(T+=1)),c=o(e),d=c[0],e=c[1],d&&(d=i(d,p,n),s=getOwn(j,d)),e&&(d?h=s&&s.normalize?s.normalize(e,function(e){return i(e,p,n)}):e.indexOf("!")===-1?i(e,p,n):e:(h=i(e,p,n),c=o(h),d=c[0],h=c[1],r=!0,a=q.nameToUrl(h))),u=!d||s||r?"":"_unnormalized"+(A+=1),{prefix:d,name:h,parentMap:t,unnormalized:!!u,url:a,originalName:f,isDefine:l,id:(d?d+"!"+h:h)+u}}function s(e){var t=e.id,i=getOwn(S,t);return i||(i=S[t]=new q.Module(e)),i}function u(e,t,i){var r=e.id,n=getOwn(S,r);!hasProp(j,r)||n&&!n.defineEmitComplete?(n=s(e),n.error&&"error"===t?i(n.error):n.on(t,i)):"defined"===t&&i(j[r])}function c(e,t){var i=e.requireModules,r=!1;t?t(e):(each(i,function(t){var i=getOwn(S,t);i&&(i.error=e,i.events.error&&(r=!0,i.emit("error",e)))}),r||req.onError(e))}function d(){globalDefQueue.length&&(each(globalDefQueue,function(e){var t=e[0];"string"==typeof t&&(q.defQueueMap[t]=!0),O.push(e)}),globalDefQueue=[])}function p(e){delete S[e],delete k[e]}function f(e,t,i){var r=e.map.id;e.error?e.emit("error",e.error):(t[r]=!0,each(e.depMaps,function(r,n){var o=r.id,a=getOwn(S,o);!a||e.depMatched[n]||i[o]||(getOwn(t,o)?(e.defineDep(n,j[o]),e.check()):f(a,t,i))}),i[r]=!0)}function l(){var e,t,i=1e3*y.waitSeconds,o=i&&q.startTime+i<(new Date).getTime(),a=[],s=[],u=!1,d=!0;if(!x){if(x=!0,eachProp(k,function(e){var i=e.map,c=i.id;if(e.enabled&&(i.isDefine||s.push(e),!e.error))if(!e.inited&&o)n(c)?(t=!0,u=!0):(a.push(c),r(c));else if(!e.inited&&e.fetched&&i.isDefine&&(u=!0,!i.prefix))return d=!1}),o&&a.length)return e=makeError("timeout","Load timeout for modules: "+a,null,a),e.contextName=q.contextName,c(e);d&&each(s,function(e){f(e,{},{})}),o&&!t||!u||!isBrowser&&!isWebWorker||w||(w=setTimeout(function(){w=0,l()},50)),x=!1}}function h(e){hasProp(j,e[0])||s(a(e[0],null,!0)).init(e[1],e[2])}function m(e,t,i,r){e.detachEvent&&!isOpera?r&&e.detachEvent(r,t):e.removeEventListener(i,t,!1)}function g(e){var t=e.currentTarget||e.srcElement;return m(t,q.onScriptLoad,"load","onreadystatechange"),m(t,q.onScriptError,"error"),{node:t,id:t&&t.getAttribute("data-requiremodule")}}function v(){var e;for(d();O.length;){if(e=O.shift(),null===e[0])return c(makeError("mismatch","Mismatched anonymous define() module: "+e[e.length-1]));h(e)}q.defQueueMap={}}var x,b,q,E,w,y={waitSeconds:7,baseUrl:"./",paths:{},bundles:{},pkgs:{},shim:{},config:{}},S={},k={},M={},O=[],j={},P={},R={},T=1,A=1;return E={require:function(e){return e.require?e.require:e.require=q.makeRequire(e.map)},exports:function(e){if(e.usingExports=!0,e.map.isDefine)return e.exports?j[e.map.id]=e.exports:e.exports=j[e.map.id]={}},module:function(e){return e.module?e.module:e.module={id:e.map.id,uri:e.map.url,config:function(){return getOwn(y.config,e.map.id)||{}},exports:e.exports||(e.exports={})}}},b=function(e){this.events=getOwn(M,e.id)||{},this.map=e,this.shim=getOwn(y.shim,e.id),this.depExports=[],this.depMaps=[],this.depMatched=[],this.pluginMaps={},this.depCount=0},b.prototype={init:function(e,t,i,r){r=r||{},this.inited||(this.factory=t,i?this.on("error",i):this.events.error&&(i=bind(this,function(e){this.emit("error",e)})),this.depMaps=e&&e.slice(0),this.errback=i,this.inited=!0,this.ignore=r.ignore,r.enabled||this.enabled?this.enable():this.check())},defineDep:function(e,t){this.depMatched[e]||(this.depMatched[e]=!0,this.depCount-=1,this.depExports[e]=t)},fetch:function(){if(!this.fetched){this.fetched=!0,q.startTime=(new Date).getTime();var e=this.map;return this.shim?void q.makeRequire(this.map,{enableBuildCallback:!0})(this.shim.deps||[],bind(this,function(){return e.prefix?this.callPlugin():this.load()})):e.prefix?this.callPlugin():this.load()}},load:function(){var e=this.map.url;P[e]||(P[e]=!0,q.load(this.map.id,e))},check:function(){if(this.enabled&&!this.enabling){var e,t,i=this.map.id,r=this.depExports,n=this.exports,o=this.factory;if(this.inited){if(this.error)this.emit("error",this.error);else if(!this.defining){if(this.defining=!0,this.depCount<1&&!this.defined){if(isFunction(o)){if(this.events.error&&this.map.isDefine||req.onError!==defaultOnError)try{n=q.execCb(i,o,r,n)}catch(t){e=t}else n=q.execCb(i,o,r,n);if(this.map.isDefine&&void 0===n&&(t=this.module,t?n=t.exports:this.usingExports&&(n=this.exports)),e)return e.requireMap=this.map,e.requireModules=this.map.isDefine?[this.map.id]:null,e.requireType=this.map.isDefine?"define":"require",c(this.error=e)}else n=o;if(this.exports=n,this.map.isDefine&&!this.ignore&&(j[i]=n,req.onResourceLoad)){var a=[];each(this.depMaps,function(e){a.push(e.normalizedMap||e)}),req.onResourceLoad(q,this.map,a)}p(i),this.defined=!0}this.defining=!1,this.defined&&!this.defineEmitted&&(this.defineEmitted=!0,this.emit("defined",this.exports),this.defineEmitComplete=!0)}}else hasProp(q.defQueueMap,i)||this.fetch()}},callPlugin:function(){var e=this.map,t=e.id,r=a(e.prefix);this.depMaps.push(r),u(r,"defined",bind(this,function(r){var n,o,d,f=getOwn(R,this.map.id),l=this.map.name,h=this.map.parentMap?this.map.parentMap.name:null,m=q.makeRequire(e.parentMap,{enableBuildCallback:!0});return this.map.unnormalized?(r.normalize&&(l=r.normalize(l,function(e){return i(e,h,!0)})||""),o=a(e.prefix+"!"+l,this.map.parentMap),u(o,"defined",bind(this,function(e){this.map.normalizedMap=o,this.init([],function(){return e},null,{enabled:!0,ignore:!0})})),d=getOwn(S,o.id),void(d&&(this.depMaps.push(o),this.events.error&&d.on("error",bind(this,function(e){this.emit("error",e)})),d.enable()))):f?(this.map.url=q.nameToUrl(f),void this.load()):(n=bind(this,function(e){this.init([],function(){return e},null,{enabled:!0})}),n.error=bind(this,function(e){this.inited=!0,this.error=e,e.requireModules=[t],eachProp(S,function(e){0===e.map.id.indexOf(t+"_unnormalized")&&p(e.map.id)}),c(e)}),n.fromText=bind(this,function(i,r){var o=e.name,u=a(o),d=useInteractive;r&&(i=r),d&&(useInteractive=!1),s(u),hasProp(y.config,t)&&(y.config[o]=y.config[t]);try{req.exec(i)}catch(e){return c(makeError("fromtexteval","fromText eval for "+t+" failed: "+e,e,[t]))}d&&(useInteractive=!0),this.depMaps.push(u),q.completeLoad(o),m([o],n)}),void r.load(e.name,m,n,y))})),q.enable(r,this),this.pluginMaps[r.id]=r},enable:function(){k[this.map.id]=this,this.enabled=!0,this.enabling=!0,each(this.depMaps,bind(this,function(e,t){var i,r,n;if("string"==typeof e){if(e=a(e,this.map.isDefine?this.map:this.map.parentMap,!1,!this.skipMap),this.depMaps[t]=e,n=getOwn(E,e.id))return void(this.depExports[t]=n(this));this.depCount+=1,u(e,"defined",bind(this,function(e){this.undefed||(this.defineDep(t,e),this.check())})),this.errback?u(e,"error",bind(this,this.errback)):this.events.error&&u(e,"error",bind(this,function(e){this.emit("error",e)}))}i=e.id,r=S[i],hasProp(E,i)||!r||r.enabled||q.enable(e,this)})),eachProp(this.pluginMaps,bind(this,function(e){var t=getOwn(S,e.id);t&&!t.enabled&&q.enable(e,this)})),this.enabling=!1,this.check()},on:function(e,t){var i=this.events[e];i||(i=this.events[e]=[]),i.push(t)},emit:function(e,t){each(this.events[e],function(e){e(t)}),"error"===e&&delete this.events[e]}},q={config:y,contextName:e,registry:S,defined:j,urlFetched:P,defQueue:O,defQueueMap:{},Module:b,makeModuleMap:a,nextTick:req.nextTick,onError:c,configure:function(e){if(e.baseUrl&&"/"!==e.baseUrl.charAt(e.baseUrl.length-1)&&(e.baseUrl+="/"),"string"==typeof e.urlArgs){var t=e.urlArgs;e.urlArgs=function(e,i){return(i.indexOf("?")===-1?"?":"&")+t}}var i=y.shim,r={paths:!0,bundles:!0,config:!0,map:!0};eachProp(e,function(e,t){r[t]?(y[t]||(y[t]={}),mixin(y[t],e,!0,!0)):y[t]=e}),e.bundles&&eachProp(e.bundles,function(e,t){each(e,function(e){e!==t&&(R[e]=t)})}),e.shim&&(eachProp(e.shim,function(e,t){isArray(e)&&(e={deps:e}),!e.exports&&!e.init||e.exportsFn||(e.exportsFn=q.makeShimExports(e)),i[t]=e}),y.shim=i),e.packages&&each(e.packages,function(e){var t,i;e="string"==typeof e?{name:e}:e,i=e.name,t=e.location,t&&(y.paths[i]=e.location),y.pkgs[i]=e.name+"/"+(e.main||"main").replace(currDirRegExp,"").replace(jsSuffixRegExp,"")}),eachProp(S,function(e,t){e.inited||e.map.unnormalized||(e.map=a(t,null,!0))}),(e.deps||e.callback)&&q.require(e.deps||[],e.callback)},makeShimExports:function(e){function t(){var t;return e.init&&(t=e.init.apply(global,arguments)),t||e.exports&&getGlobal(e.exports)}return t},makeRequire:function(t,n){function o(i,r,u){var d,p,f;return n.enableBuildCallback&&r&&isFunction(r)&&(r.__requireJsBuild=!0),"string"==typeof i?isFunction(r)?c(makeError("requireargs","Invalid require call"),u):t&&hasProp(E,i)?E[i](S[t.id]):req.get?req.get(q,i,t,o):(p=a(i,t,!1,!0),d=p.id,hasProp(j,d)?j[d]:c(makeError("notloaded",'Module name "'+d+'" has not been loaded yet for context: '+e+(t?"":". Use require([])")))):(v(),q.nextTick(function(){v(),f=s(a(null,t)),f.skipMap=n.skipMap,f.init(i,r,u,{enabled:!0}),l()}),o)}return n=n||{},mixin(o,{isBrowser:isBrowser,toUrl:function(e){var r,n=e.lastIndexOf("."),o=e.split("/")[0],a="."===o||".."===o;return n!==-1&&(!a||n>1)&&(r=e.substring(n,e.length),e=e.substring(0,n)),q.nameToUrl(i(e,t&&t.id,!0),r,!0)},defined:function(e){return hasProp(j,a(e,t,!1,!0).id)},specified:function(e){return e=a(e,t,!1,!0).id,hasProp(j,e)||hasProp(S,e)}}),t||(o.undef=function(e){d();var i=a(e,t,!0),n=getOwn(S,e);n.undefed=!0,r(e),delete j[e],delete P[i.url],delete M[e],eachReverse(O,function(t,i){t[0]===e&&O.splice(i,1)}),delete q.defQueueMap[e],n&&(n.events.defined&&(M[e]=n.events),p(e))}),o},enable:function(e){var t=getOwn(S,e.id);t&&s(e).enable()},completeLoad:function(e){var t,i,r,o=getOwn(y.shim,e)||{},a=o.exports;for(d();O.length;){if(i=O.shift(),null===i[0]){if(i[0]=e,t)break;t=!0}else i[0]===e&&(t=!0);h(i)}if(q.defQueueMap={},r=getOwn(S,e),!t&&!hasProp(j,e)&&r&&!r.inited){if(!(!y.enforceDefine||a&&getGlobal(a)))return n(e)?void 0:c(makeError("nodefine","No define call for "+e,null,[e]));h([e,o.deps||[],o.exportsFn])}l()},nameToUrl:function(e,t,i){var r,n,o,a,s,u,c,d=getOwn(y.pkgs,e);if(d&&(e=d),c=getOwn(R,e))return q.nameToUrl(c,t,i);if(req.jsExtRegExp.test(e))s=e+(t||"");else{for(r=y.paths,n=e.split("/"),o=n.length;o>0;o-=1)if(a=n.slice(0,o).join("/"),u=getOwn(r,a)){isArray(u)&&(u=u[0]),n.splice(0,o,u);break}s=n.join("/"),s+=t||(/^data\:|^blob\:|\?/.test(s)||i?"":".js"),s=("/"===s.charAt(0)||s.match(/^[\w\+\.\-]+:/)?"":y.baseUrl)+s}return y.urlArgs&&!/^blob\:/.test(s)?s+y.urlArgs(e,s):s},load:function(e,t){req.load(q,e,t)},execCb:function(e,t,i,r){return t.apply(r,i)},onScriptLoad:function(e){if("load"===e.type||readyRegExp.test((e.currentTarget||e.srcElement).readyState)){interactiveScript=null;var t=g(e);q.completeLoad(t.id)}},onScriptError:function(e){var t=g(e);if(!n(t.id)){var i=[];return eachProp(S,function(e,r){0!==r.indexOf("_@r")&&each(e.depMaps,function(e){if(e.id===t.id)return i.push(r),!0})}),c(makeError("scripterror",'Script error for "'+t.id+(i.length?'", needed by: '+i.join(", "):'"'),e,[t.id]))}}},q.require=q.makeRequire(),q}function getInteractiveScript(){return interactiveScript&&"interactive"===interactiveScript.readyState?interactiveScript:(eachReverse(scripts(),function(e){if("interactive"===e.readyState)return interactiveScript=e}),interactiveScript)}var req,s,head,baseElement,dataMain,src,interactiveScript,currentlyAddingScript,mainScript,subPath,version="2.3.2",commentRegExp=/\/\*[\s\S]*?\*\/|([^:"'=]|^)\/\/.*$/gm,cjsRequireRegExp=/[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,jsSuffixRegExp=/\.js$/,currDirRegExp=/^\.\//,op=Object.prototype,ostring=op.toString,hasOwn=op.hasOwnProperty,isBrowser=!("undefined"==typeof window||"undefined"==typeof navigator||!window.document),isWebWorker=!isBrowser&&"undefined"!=typeof importScripts,readyRegExp=isBrowser&&"PLAYSTATION 3"===navigator.platform?/^complete$/:/^(complete|loaded)$/,defContextName="_",isOpera="undefined"!=typeof opera&&"[object Opera]"===opera.toString(),contexts={},cfg={},globalDefQueue=[],useInteractive=!1;if("undefined"==typeof define){if("undefined"!=typeof requirejs){if(isFunction(requirejs))return;cfg=requirejs,requirejs=void 0}"undefined"==typeof require||isFunction(require)||(cfg=require,require=void 0),req=requirejs=function(e,t,i,r){var n,o,a=defContextName;return isArray(e)||"string"==typeof e||(o=e,isArray(t)?(e=t,t=i,i=r):e=[]),o&&o.context&&(a=o.context),n=getOwn(contexts,a),n||(n=contexts[a]=req.s.newContext(a)),o&&n.configure(o),n.require(e,t,i)},req.config=function(e){return req(e)},req.nextTick="undefined"!=typeof setTimeout?function(e){setTimeout(e,4)}:function(e){e()},require||(require=req),req.version=version,req.jsExtRegExp=/^\/|:|\?|\.js$/,req.isBrowser=isBrowser,s=req.s={contexts:contexts,newContext:newContext},req({}),each(["toUrl","undef","defined","specified"],function(e){req[e]=function(){var t=contexts[defContextName];return t.require[e].apply(t,arguments)}}),isBrowser&&(head=s.head=document.getElementsByTagName("head")[0],baseElement=document.getElementsByTagName("base")[0],baseElement&&(head=s.head=baseElement.parentNode)),req.onError=defaultOnError,req.createNode=function(e,t,i){var r=e.xhtml?document.createElementNS("http://www.w3.org/1999/xhtml","html:script"):document.createElement("script");return r.type=e.scriptType||"text/javascript",r.charset="utf-8",r.async=!0,r},req.load=function(e,t,i){var r,n=e&&e.config||{};if(isBrowser)return r=req.createNode(n,t,i),r.setAttribute("data-requirecontext",e.contextName),r.setAttribute("data-requiremodule",t),!r.attachEvent||r.attachEvent.toString&&r.attachEvent.toString().indexOf("[native code")<0||isOpera?(r.addEventListener("load",e.onScriptLoad,!1),r.addEventListener("error",e.onScriptError,!1)):(useInteractive=!0,r.attachEvent("onreadystatechange",e.onScriptLoad)),r.src=i,n.onNodeCreated&&n.onNodeCreated(r,n,t,i),currentlyAddingScript=r,baseElement?head.insertBefore(r,baseElement):head.appendChild(r),currentlyAddingScript=null,r;if(isWebWorker)try{setTimeout(function(){},0),importScripts(i),e.completeLoad(t)}catch(r){e.onError(makeError("importscripts","importScripts failed for "+t+" at "+i,r,[t]))}},isBrowser&&!cfg.skipDataMain&&eachReverse(scripts(),function(e){if(head||(head=e.parentNode),dataMain=e.getAttribute("data-main"))return mainScript=dataMain,cfg.baseUrl||mainScript.indexOf("!")!==-1||(src=mainScript.split("/"),mainScript=src.pop(),subPath=src.length?src.join("/")+"/":"./",cfg.baseUrl=subPath),mainScript=mainScript.replace(jsSuffixRegExp,""),req.jsExtRegExp.test(mainScript)&&(mainScript=dataMain),cfg.deps=cfg.deps?cfg.deps.concat(mainScript):[mainScript],!0}),define=function(e,t,i){var r,n;"string"!=typeof e&&(i=t,t=e,e=null),isArray(t)||(i=t,t=null),!t&&isFunction(i)&&(t=[],i.length&&(i.toString().replace(commentRegExp,commentReplace).replace(cjsRequireRegExp,function(e,i){t.push(i)}),t=(1===i.length?["require"]:["require","exports","module"]).concat(t))),useInteractive&&(r=currentlyAddingScript||getInteractiveScript(),r&&(e||(e=r.getAttribute("data-requiremodule")),n=contexts[r.getAttribute("data-requirecontext")])),n?(n.defQueue.push([e,t,i]),n.defQueueMap[e]=!0):globalDefQueue.push([e,t,i])},define.amd={jQuery:!0},req.exec=function(text){return eval(text)},req(cfg)}}(this,"undefined"==typeof setTimeout?void 0:setTimeout); -------------------------------------------------------------------------------- /egal/static/text.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license text 2.0.15 Copyright jQuery Foundation and other contributors. 3 | * Released under MIT license, http://github.com/requirejs/text/LICENSE 4 | */ 5 | /*jslint regexp: true */ 6 | /*global require, XMLHttpRequest, ActiveXObject, 7 | define, window, process, Packages, 8 | java, location, Components, FileUtils */ 9 | 10 | define(['module'], function (module) { 11 | 'use strict'; 12 | 13 | var text, fs, Cc, Ci, xpcIsWindows, 14 | progIds = ['Msxml2.XMLHTTP', 'Microsoft.XMLHTTP', 'Msxml2.XMLHTTP.4.0'], 15 | xmlRegExp = /^\s*<\?xml(\s)+version=[\'\"](\d)*.(\d)*[\'\"](\s)*\?>/im, 16 | bodyRegExp = /]*>\s*([\s\S]+)\s*<\/body>/im, 17 | hasLocation = typeof location !== 'undefined' && location.href, 18 | defaultProtocol = hasLocation && location.protocol && location.protocol.replace(/\:/, ''), 19 | defaultHostName = hasLocation && location.hostname, 20 | defaultPort = hasLocation && (location.port || undefined), 21 | buildMap = {}, 22 | masterConfig = (module.config && module.config()) || {}; 23 | 24 | function useDefault(value, defaultValue) { 25 | return value === undefined || value === '' ? defaultValue : value; 26 | } 27 | 28 | //Allow for default ports for http and https. 29 | function isSamePort(protocol1, port1, protocol2, port2) { 30 | if (port1 === port2) { 31 | return true; 32 | } else if (protocol1 === protocol2) { 33 | if (protocol1 === 'http') { 34 | return useDefault(port1, '80') === useDefault(port2, '80'); 35 | } else if (protocol1 === 'https') { 36 | return useDefault(port1, '443') === useDefault(port2, '443'); 37 | } 38 | } 39 | return false; 40 | } 41 | 42 | text = { 43 | version: '2.0.15', 44 | 45 | strip: function (content) { 46 | //Strips declarations so that external SVG and XML 47 | //documents can be added to a document without worry. Also, if the string 48 | //is an HTML document, only the part inside the body tag is returned. 49 | if (content) { 50 | content = content.replace(xmlRegExp, ""); 51 | var matches = content.match(bodyRegExp); 52 | if (matches) { 53 | content = matches[1]; 54 | } 55 | } else { 56 | content = ""; 57 | } 58 | return content; 59 | }, 60 | 61 | jsEscape: function (content) { 62 | return content.replace(/(['\\])/g, '\\$1') 63 | .replace(/[\f]/g, "\\f") 64 | .replace(/[\b]/g, "\\b") 65 | .replace(/[\n]/g, "\\n") 66 | .replace(/[\t]/g, "\\t") 67 | .replace(/[\r]/g, "\\r") 68 | .replace(/[\u2028]/g, "\\u2028") 69 | .replace(/[\u2029]/g, "\\u2029"); 70 | }, 71 | 72 | createXhr: masterConfig.createXhr || function () { 73 | //Would love to dump the ActiveX crap in here. Need IE 6 to die first. 74 | var xhr, i, progId; 75 | if (typeof XMLHttpRequest !== "undefined") { 76 | return new XMLHttpRequest(); 77 | } else if (typeof ActiveXObject !== "undefined") { 78 | for (i = 0; i < 3; i += 1) { 79 | progId = progIds[i]; 80 | try { 81 | xhr = new ActiveXObject(progId); 82 | } catch (e) {} 83 | 84 | if (xhr) { 85 | progIds = [progId]; // so faster next time 86 | break; 87 | } 88 | } 89 | } 90 | 91 | return xhr; 92 | }, 93 | 94 | /** 95 | * Parses a resource name into its component parts. Resource names 96 | * look like: module/name.ext!strip, where the !strip part is 97 | * optional. 98 | * @param {String} name the resource name 99 | * @returns {Object} with properties "moduleName", "ext" and "strip" 100 | * where strip is a boolean. 101 | */ 102 | parseName: function (name) { 103 | var modName, ext, temp, 104 | strip = false, 105 | index = name.lastIndexOf("."), 106 | isRelative = name.indexOf('./') === 0 || 107 | name.indexOf('../') === 0; 108 | 109 | if (index !== -1 && (!isRelative || index > 1)) { 110 | modName = name.substring(0, index); 111 | ext = name.substring(index + 1); 112 | } else { 113 | modName = name; 114 | } 115 | 116 | temp = ext || modName; 117 | index = temp.indexOf("!"); 118 | if (index !== -1) { 119 | //Pull off the strip arg. 120 | strip = temp.substring(index + 1) === "strip"; 121 | temp = temp.substring(0, index); 122 | if (ext) { 123 | ext = temp; 124 | } else { 125 | modName = temp; 126 | } 127 | } 128 | 129 | return { 130 | moduleName: modName, 131 | ext: ext, 132 | strip: strip 133 | }; 134 | }, 135 | 136 | xdRegExp: /^((\w+)\:)?\/\/([^\/\\]+)/, 137 | 138 | /** 139 | * Is an URL on another domain. Only works for browser use, returns 140 | * false in non-browser environments. Only used to know if an 141 | * optimized .js version of a text resource should be loaded 142 | * instead. 143 | * @param {String} url 144 | * @returns Boolean 145 | */ 146 | useXhr: function (url, protocol, hostname, port) { 147 | var uProtocol, uHostName, uPort, 148 | match = text.xdRegExp.exec(url); 149 | if (!match) { 150 | return true; 151 | } 152 | uProtocol = match[2]; 153 | uHostName = match[3]; 154 | 155 | uHostName = uHostName.split(':'); 156 | uPort = uHostName[1]; 157 | uHostName = uHostName[0]; 158 | 159 | return (!uProtocol || uProtocol === protocol) && 160 | (!uHostName || uHostName.toLowerCase() === hostname.toLowerCase()) && 161 | ((!uPort && !uHostName) || isSamePort(uProtocol, uPort, protocol, port)); 162 | }, 163 | 164 | finishLoad: function (name, strip, content, onLoad) { 165 | content = strip ? text.strip(content) : content; 166 | if (masterConfig.isBuild) { 167 | buildMap[name] = content; 168 | } 169 | onLoad(content); 170 | }, 171 | 172 | load: function (name, req, onLoad, config) { 173 | //Name has format: some.module.filext!strip 174 | //The strip part is optional. 175 | //if strip is present, then that means only get the string contents 176 | //inside a body tag in an HTML string. For XML/SVG content it means 177 | //removing the declarations so the content can be inserted 178 | //into the current doc without problems. 179 | 180 | // Do not bother with the work if a build and text will 181 | // not be inlined. 182 | if (config && config.isBuild && !config.inlineText) { 183 | onLoad(); 184 | return; 185 | } 186 | 187 | masterConfig.isBuild = config && config.isBuild; 188 | 189 | var parsed = text.parseName(name), 190 | nonStripName = parsed.moduleName + 191 | (parsed.ext ? '.' + parsed.ext : ''), 192 | url = req.toUrl(nonStripName), 193 | useXhr = (masterConfig.useXhr) || 194 | text.useXhr; 195 | 196 | // Do not load if it is an empty: url 197 | if (url.indexOf('empty:') === 0) { 198 | onLoad(); 199 | return; 200 | } 201 | 202 | //Load the text. Use XHR if possible and in a browser. 203 | if (!hasLocation || useXhr(url, defaultProtocol, defaultHostName, defaultPort)) { 204 | text.get(url, function (content) { 205 | text.finishLoad(name, parsed.strip, content, onLoad); 206 | }, function (err) { 207 | if (onLoad.error) { 208 | onLoad.error(err); 209 | } 210 | }); 211 | } else { 212 | //Need to fetch the resource across domains. Assume 213 | //the resource has been optimized into a JS module. Fetch 214 | //by the module name + extension, but do not include the 215 | //!strip part to avoid file system issues. 216 | req([nonStripName], function (content) { 217 | text.finishLoad(parsed.moduleName + '.' + parsed.ext, 218 | parsed.strip, content, onLoad); 219 | }); 220 | } 221 | }, 222 | 223 | write: function (pluginName, moduleName, write, config) { 224 | if (buildMap.hasOwnProperty(moduleName)) { 225 | var content = text.jsEscape(buildMap[moduleName]); 226 | write.asModule(pluginName + "!" + moduleName, 227 | "define(function () { return '" + 228 | content + 229 | "';});\n"); 230 | } 231 | }, 232 | 233 | writeFile: function (pluginName, moduleName, req, write, config) { 234 | var parsed = text.parseName(moduleName), 235 | extPart = parsed.ext ? '.' + parsed.ext : '', 236 | nonStripName = parsed.moduleName + extPart, 237 | //Use a '.js' file name so that it indicates it is a 238 | //script that can be loaded across domains. 239 | fileName = req.toUrl(parsed.moduleName + extPart) + '.js'; 240 | 241 | //Leverage own load() method to load plugin value, but only 242 | //write out values that do not have the strip argument, 243 | //to avoid any potential issues with ! in file names. 244 | text.load(nonStripName, req, function (value) { 245 | //Use own write() method to construct full module value. 246 | //But need to create shell that translates writeFile's 247 | //write() to the right interface. 248 | var textWrite = function (contents) { 249 | return write(fileName, contents); 250 | }; 251 | textWrite.asModule = function (moduleName, contents) { 252 | return write.asModule(moduleName, fileName, contents); 253 | }; 254 | 255 | text.write(pluginName, nonStripName, textWrite, config); 256 | }, config); 257 | } 258 | }; 259 | 260 | if (masterConfig.env === 'node' || (!masterConfig.env && 261 | typeof process !== "undefined" && 262 | process.versions && 263 | !!process.versions.node && 264 | !process.versions['node-webkit'] && 265 | !process.versions['atom-shell'])) { 266 | //Using special require.nodeRequire, something added by r.js. 267 | fs = require.nodeRequire('fs'); 268 | 269 | text.get = function (url, callback, errback) { 270 | try { 271 | var file = fs.readFileSync(url, 'utf8'); 272 | //Remove BOM (Byte Mark Order) from utf8 files if it is there. 273 | if (file[0] === '\uFEFF') { 274 | file = file.substring(1); 275 | } 276 | callback(file); 277 | } catch (e) { 278 | if (errback) { 279 | errback(e); 280 | } 281 | } 282 | }; 283 | } else if (masterConfig.env === 'xhr' || (!masterConfig.env && 284 | text.createXhr())) { 285 | text.get = function (url, callback, errback, headers) { 286 | var xhr = text.createXhr(), header; 287 | xhr.open('GET', url, true); 288 | 289 | //Allow plugins direct access to xhr headers 290 | if (headers) { 291 | for (header in headers) { 292 | if (headers.hasOwnProperty(header)) { 293 | xhr.setRequestHeader(header.toLowerCase(), headers[header]); 294 | } 295 | } 296 | } 297 | 298 | //Allow overrides specified in config 299 | if (masterConfig.onXhr) { 300 | masterConfig.onXhr(xhr, url); 301 | } 302 | 303 | xhr.onreadystatechange = function (evt) { 304 | var status, err; 305 | //Do not explicitly handle errors, those should be 306 | //visible via console output in the browser. 307 | if (xhr.readyState === 4) { 308 | status = xhr.status || 0; 309 | if (status > 399 && status < 600) { 310 | //An http 4xx or 5xx error. Signal an error. 311 | err = new Error(url + ' HTTP status: ' + status); 312 | err.xhr = xhr; 313 | if (errback) { 314 | errback(err); 315 | } 316 | } else { 317 | callback(xhr.responseText); 318 | } 319 | 320 | if (masterConfig.onXhrComplete) { 321 | masterConfig.onXhrComplete(xhr, url); 322 | } 323 | } 324 | }; 325 | xhr.send(null); 326 | }; 327 | } else if (masterConfig.env === 'rhino' || (!masterConfig.env && 328 | typeof Packages !== 'undefined' && typeof java !== 'undefined')) { 329 | //Why Java, why is this so awkward? 330 | text.get = function (url, callback) { 331 | var stringBuffer, line, 332 | encoding = "utf-8", 333 | file = new java.io.File(url), 334 | lineSeparator = java.lang.System.getProperty("line.separator"), 335 | input = new java.io.BufferedReader(new java.io.InputStreamReader(new java.io.FileInputStream(file), encoding)), 336 | content = ''; 337 | try { 338 | stringBuffer = new java.lang.StringBuffer(); 339 | line = input.readLine(); 340 | 341 | // Byte Order Mark (BOM) - The Unicode Standard, version 3.0, page 324 342 | // http://www.unicode.org/faq/utf_bom.html 343 | 344 | // Note that when we use utf-8, the BOM should appear as "EF BB BF", but it doesn't due to this bug in the JDK: 345 | // http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4508058 346 | if (line && line.length() && line.charAt(0) === 0xfeff) { 347 | // Eat the BOM, since we've already found the encoding on this file, 348 | // and we plan to concatenating this buffer with others; the BOM should 349 | // only appear at the top of a file. 350 | line = line.substring(1); 351 | } 352 | 353 | if (line !== null) { 354 | stringBuffer.append(line); 355 | } 356 | 357 | while ((line = input.readLine()) !== null) { 358 | stringBuffer.append(lineSeparator); 359 | stringBuffer.append(line); 360 | } 361 | //Make sure we return a JavaScript string and not a Java string. 362 | content = String(stringBuffer.toString()); //String 363 | } finally { 364 | input.close(); 365 | } 366 | callback(content); 367 | }; 368 | } else if (masterConfig.env === 'xpconnect' || (!masterConfig.env && 369 | typeof Components !== 'undefined' && Components.classes && 370 | Components.interfaces)) { 371 | //Avert your gaze! 372 | Cc = Components.classes; 373 | Ci = Components.interfaces; 374 | Components.utils['import']('resource://gre/modules/FileUtils.jsm'); 375 | xpcIsWindows = ('@mozilla.org/windows-registry-key;1' in Cc); 376 | 377 | text.get = function (url, callback) { 378 | var inStream, convertStream, fileObj, 379 | readData = {}; 380 | 381 | if (xpcIsWindows) { 382 | url = url.replace(/\//g, '\\'); 383 | } 384 | 385 | fileObj = new FileUtils.File(url); 386 | 387 | //XPCOM, you so crazy 388 | try { 389 | inStream = Cc['@mozilla.org/network/file-input-stream;1'] 390 | .createInstance(Ci.nsIFileInputStream); 391 | inStream.init(fileObj, 1, 0, false); 392 | 393 | convertStream = Cc['@mozilla.org/intl/converter-input-stream;1'] 394 | .createInstance(Ci.nsIConverterInputStream); 395 | convertStream.init(inStream, "utf-8", inStream.available(), 396 | Ci.nsIConverterInputStream.DEFAULT_REPLACEMENT_CHARACTER); 397 | 398 | convertStream.readString(inStream.available(), readData); 399 | convertStream.close(); 400 | inStream.close(); 401 | callback(readData.value); 402 | } catch (e) { 403 | throw new Error((fileObj && fileObj.path || '') + ': ' + e); 404 | } 405 | }; 406 | } 407 | return text; 408 | }); 409 | -------------------------------------------------------------------------------- /noisy-channel-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uclnlp/egal/4d8da2045dab3ae4d86fea5a60e5cca8fa6b3387/noisy-channel-animation.gif -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uclnlp/egal/4d8da2045dab3ae4d86fea5a60e5cca8fa6b3387/screenshot.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup, find_packages 2 | import os 3 | 4 | 5 | setup( 6 | name='egal', # This is the name of your PyPI-package. 7 | version='0.1.4', # Update the version number for new releases 8 | scripts=[], # The name of your script, and also the command you'll be using for calling it 9 | packages=['egal'], 10 | author='Sebastian Riedel', 11 | long_description="A jupyter extension to draw SVG images inline, within cells.", 12 | url='https://github.com/uclmr/egal', 13 | author_email='sebastian.riedel@gmail.com', 14 | include_package_data=True, 15 | # package_data={'egal': ['egal/static']}, 16 | ) 17 | --------------------------------------------------------------------------------