localtower 1.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +133 -33
- data/app/assets/javascripts/localtower/application.js +30830 -0
- data/app/assets/javascripts/localtower/application.js.map +7 -0
- data/app/assets/stylesheets/localtower/application.css +1179 -0
- data/app/assets/stylesheets/src/application.css +68 -0
- data/app/controllers/localtower/pages_controller.rb +20 -35
- data/app/javascript/application.js +46 -0
- data/app/javascript/components/DarkSelect.js +115 -0
- data/app/javascript/components/ModernTooltip.js +26 -0
- data/app/javascript/components/NewMigrationForm.js +687 -0
- data/app/javascript/components/NewModelForm.js +432 -0
- data/app/javascript/components/data/Stores.js +294 -0
- data/app/views/layouts/localtower/application.html.erb +80 -66
- data/app/views/localtower/_migration.html.erb +30 -0
- data/app/views/localtower/pages/_alert_no_models.html.erb +1 -1
- data/app/views/localtower/pages/migrations.html.erb +24 -55
- data/app/views/localtower/pages/new_migration.html.erb +33 -96
- data/app/views/localtower/pages/new_model.html.erb +17 -83
- data/config/routes.rb +1 -1
- data/lib/localtower/engine.rb +9 -2
- data/lib/localtower/generators/migration.rb +218 -91
- data/lib/localtower/generators/model.rb +29 -20
- data/lib/localtower/generators/service_objects/insert_array.rb +5 -3
- data/lib/localtower/generators/service_objects/insert_defaults.rb +73 -3
- data/lib/localtower/generators/service_objects/insert_foreign_keys.rb +35 -0
- data/lib/localtower/generators/service_objects/insert_indexes.rb +41 -18
- data/lib/localtower/generators/service_objects/insert_nullable.rb +5 -3
- data/lib/localtower/status.rb +3 -1
- data/lib/localtower/tools.rb +20 -9
- data/lib/localtower/version.rb +1 -1
- data/lib/localtower.rb +0 -6
- data/public/com/favicon-64.png +0 -0
- data/public/com/twitter-cover-1.png +0 -0
- data/public/com/twitter-cover-2.png +0 -0
- data/public/fonts/Circular/CircularStd-Black.otf +0 -0
- data/public/fonts/Circular/CircularStd-BlackItalic.otf +0 -0
- data/public/fonts/Circular/CircularStd-Bold.otf +0 -0
- data/public/fonts/Circular/CircularStd-BoldItalic.otf +0 -0
- data/public/fonts/Circular/CircularStd-Book.otf +0 -0
- data/public/fonts/Circular/CircularStd-BookItalic.otf +0 -0
- data/public/fonts/Circular/CircularStd-Light Italic.otf +0 -0
- data/public/fonts/Circular/CircularStd-Light.otf +0 -0
- data/public/fonts/Circular/CircularStd-Medium.otf +0 -0
- data/public/fonts/Circular/CircularStd-MediumItalic.otf +0 -0
- data/public/fonts/Circular/Read Me.txt +5 -0
- data/public/fonts/Circular/www.dfonts.org.url +2 -0
- data/public/screenshots/v0.1.1/1_schema.png +0 -0
- data/public/screenshots/v0.1.1/2_models_1.png +0 -0
- data/public/screenshots/v0.1.1/2_models_2.png +0 -0
- data/public/screenshots/v0.1.1/3_relations.png +0 -0
- data/public/screenshots/v0.1.1/4_migrations.png +0 -0
- data/public/screenshots/v0.1.6/1_schema.png +0 -0
- data/public/screenshots/v0.1.6/2_models_1.png +0 -0
- data/public/screenshots/v0.1.6/3_relations.png +0 -0
- data/public/screenshots/v0.1.6/4_migrations.png +0 -0
- data/public/screenshots/v0.1.6/5_capture.png +0 -0
- data/public/screenshots/v1.0.0/migrations.png +0 -0
- data/public/screenshots/v1.0.0/models.png +0 -0
- data/public/screenshots/v1.0.0/new_migration.png +0 -0
- data/public/screenshots/v1.0.0/new_model.png +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.44.30.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.44.42.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.44.54.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.48.21.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.48.28.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.48.51.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.49.09.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.50.04.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.50.11.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.50.19.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.51.47.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.51.48.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.02.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.18.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.26.jpg +0 -0
- data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.38.jpg +0 -0
- data/public/screenshots/v2.0.0/migrations.png +0 -0
- data/public/screenshots/v2.0.0/new_migration.png +0 -0
- data/public/screenshots/v2.0.0/new_model.png +0 -0
- data/public/vendor/jquery-3.7.1.min.js +2 -0
- data/public/vendor/lucide.min.js +12 -0
- data/public/vendor/monokai-sublime.css +80 -0
- data/public/vendor/rails-ujs.min.js +8 -0
- data/spec/dummy/Gemfile +1 -1
- data/spec/dummy/Gemfile.lock +146 -104
- data/spec/dummy/config/database.yml +4 -6
- data/spec/dummy/config/puma.rb +1 -1
- data/spec/dummy/db/schema.rb +2 -39
- data/spec/dummy/lib/tasks/reset.rake +16 -0
- data/spec/dummy/log/development.log +22746 -15994
- data/spec/dummy/log/localtower.log +747 -1891
- data/spec/dummy/log/test.log +1145 -0
- data/spec/dummy/tmp/cache/sessions/localtower/726/FE1/_session_id%3A2%3A%3A69d6764784f832ea25700ea2f242210f3f8d94b48912b0f09ffc44311f0376eb +0 -0
- data/spec/dummy/tmp/cache/sessions/localtower/77E/121/_session_id%3A2%3A%3A0b3c1fe7154461ba023ba6c81dd1b999348757880b505f4b082faed263a627f9 +1 -0
- data/spec/dummy/tmp/cache/sessions/localtower/7EB/8A1/_session_id%3A2%3A%3Af88237c1d157546a5dcde894fd6c1410162a8eba318748d4ac573ee75e40df16 +0 -0
- data/spec/dummy/tmp/local_secret.txt +1 -0
- data/spec/factories/migration.rb +77 -40
- data/spec/factories/model.rb +46 -26
- data/spec/lib/localtower/generators/migration_spec.rb +16 -24
- data/spec/lib/localtower/generators/model_spec.rb +71 -8
- data/spec/lib/localtower/generators/service_objects/insert_array_spec.rb +1 -1
- data/spec/lib/localtower/generators/service_objects/insert_defaults_spec.rb +1 -1
- data/spec/lib/localtower/generators/service_objects/insert_foreign_keys_spec.rb +101 -0
- data/spec/lib/localtower/generators/service_objects/insert_indexes_spec.rb +1 -1
- data/spec/lib/localtower/generators/service_objects/insert_nullable_spec.rb +2 -2
- data/spec/spec_helper.rb +2 -3
- metadata +107 -238
- data/app/views/localtower/pages/models.html.erb +0 -63
- data/public/css/app.css +0 -55
- data/public/js/app.js +0 -337
- data/public/light-bootstrap-dashboard-master/assets/css/animate.min.css +0 -6
- data/public/light-bootstrap-dashboard-master/assets/css/bootstrap.min.css +0 -5
- data/public/light-bootstrap-dashboard-master/assets/css/demo.css +0 -61
- data/public/light-bootstrap-dashboard-master/assets/css/light-bootstrap-dashboard.css +0 -2789
- data/public/light-bootstrap-dashboard-master/assets/css/pe-icon-7-stroke.css +0 -632
- data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.eot +0 -0
- data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.svg +0 -212
- data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.ttf +0 -0
- data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.woff +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/default-avatar.png +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/faces/face-0.jpg +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/faces/face-1.jpg +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/faces/face-2.jpg +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/faces/face-3.jpg +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/faces/face-4.jpg +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/faces/face-5.jpg +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/faces/face-6.jpg +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/faces/face-7.jpg +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/faces/tim_vector.jpe +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/favicon.ico +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/loading-bubbles.svg +0 -14
- data/public/light-bootstrap-dashboard-master/assets/img/mask.png +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/new_logo.png +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/sidebar-1.jpg +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/sidebar-2.jpg +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/sidebar-3.jpg +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/sidebar-4.jpg +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/sidebar-5.jpg +0 -0
- data/public/light-bootstrap-dashboard-master/assets/img/tim_80x80.png +0 -0
- data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-checkbox-radio-switch.js +0 -502
- data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-notify.js +0 -404
- data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-select.js +0 -438
- data/public/light-bootstrap-dashboard-master/assets/js/bootstrap.min.js +0 -7
- data/public/light-bootstrap-dashboard-master/assets/js/chartist.min.js +0 -9
- data/public/light-bootstrap-dashboard-master/assets/js/demo.js +0 -152
- data/public/light-bootstrap-dashboard-master/assets/js/jquery-1.10.2.js +0 -9789
- data/public/light-bootstrap-dashboard-master/assets/js/light-bootstrap-dashboard.js +0 -179
- data/public/logo-localtower-white-300.png +0 -0
- data/public/logo-localtower-white.png +0 -0
- data/public/logo-localtower.png +0 -0
- data/public/vendor/font-awesome.min.css +0 -4
- data/public/vendor/highlight-js-default.min.css +0 -9
- data/spec/dummy/app/models/post.rb +0 -3
- data/spec/dummy/app/models/user.rb +0 -3
- data/spec/dummy/db/migrate/20230119221452_create_users.rb +0 -14
- data/spec/dummy/db/migrate/20230119221751_change_users_at1674166670.rb +0 -7
- data/spec/dummy/db/migrate/20230119222054_create_posts.rb +0 -11
- data/spec/dummy/db/migrate/20230119222106_change_posts_at1674166865.rb +0 -5
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/-Y/-YOiiBKqc2UODHFjctm8xc7xFoZaL7zOjWQj6qQ2wyE.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/-d/-dwueM4vmPt8L51S3jeSyg_AjGDcj0GUN6pDpCA1gCg.cache +0 -3
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/0g/0gaJnJQdtd2ACbihXxn8OnjLWlDjnQ_WxfgOpbiLzhg.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/0r/0rFCsCV9kZnEYtZZ6sfig8329OU31bqjecDFqSVank8.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/1J/1J2k_CpnQE3d-PZAQwOVGQALGkta4qVvhdsKjgG0e4Q.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/2p/2pYVH2Z_syqh6ok8QYxJNKxXpx1Iwppf6JGElZI0gpw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/3W/3WBmqd-2V6q5N-jvbyp-tlcfn3aHYMwBppbOUm7x4qg.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/4K/4KFPlHkhdDW0riGUmlbaR-kmDz6JUnQvY6fwW8qsdaE.cache +0 -3
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/6x/6xMeRWmLpNK_flx6-JA3KazvUxSCxyPxHv9Zm3eC26Q.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/7d/7dNqI_dCDJLJmI1oM4xwFp9nRRNOem-4P4OD7PMyz2E.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/8X/8XquhxVcp5A8QquLtxO8NgKTMJch0eqQmzFmRGIZP6I.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Ah/AhdfXXtU63kXS4TnsH2Vi1yWgVkIEeV8Z8XA68hrNQc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Bt/BtAePnwLSGw82xUGI7wuhWDfuwarOQVS91YqCsweMcs.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Bx/BxzoG0KxeNLac4xTNeJv3qfeytbNBw58xj2zD-xdbrE.cache +0 -2
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/CC/CCD0ROPX0yxHwNpVZmuP8ZNtgQpaVCMXpdzC0Wb5n24.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/DS/DS43oxBg6K5PMWLn2mTy_4EnxI03ehHkxpjV7NCi8yM.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Do/Do83AoOat5W-c1g7piDGy2GMmffsY6JY0Qfuh5PY3GM.cache +0 -2
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/EI/EI0Nxk-VRATWstMuVCVc0_GdYlQ-a0dx6n2g0l3vIik.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/EN/ENhJnzJAU2IK-7aHqubj9N8Jo_UTmjG_VEQqyIkolQ8.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Fc/FcS6VUHN3Bd4pHGqd5NHA8jA4OLwWrU94s3b4GGxX9c.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/G0/G0kukI-r0q0Vbrg6e_jnYJoYcOX8K__h-mwKbCf4twE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/I1/I1Jw08-mz8xzgrgi6giCzpf1UmzGTSbl4eJEw4DAoJM.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/IV/IVOO1dXBmgjieDk__g57p6aYt0Z3CmfTa32jhegoyko.cache +0 -3
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/JY/JYPmv5WP4wxdI9EKEEPkK_fVtqeSLfmint_5E8fQLQ8.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/MX/MXI3KxaQPZGImSvCNZ_TbQVruWCJ3E0xiVxza1ZCAjM.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/OU/OUoioCqXALK909jXPV3VSyCJIdNC7bsogUfdnRTpc5o.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/PH/PHjtqNLUPAUDiSlu5AbPjlIo20mOGNm0uNjMLhX2NvM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/RC/RC9vfALY5K634pTeau0BAhTHl7d5_5yA3tM-QTLiKtI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/RG/RG1PrmlixwaUlG8BV0kcm_3F7OQekxsrLYjBdf403-k.cache +0 -2
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Ut/UtoMO6n6FHTpRCGk9VfxlfTI2Ao2GYJ_6kMzx3B9VH8.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/VE/VExnbpDk3LxYdPk3htUrZQXPI8NK_zlKtSFfVXJlxU4.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Wm/WmKTjykiU-Tx_Faf5zduEeEQ-DozAs5omKToM2l1cZM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/X-/X-KjhDPd0nI155N_FaxFSgaOiYo0_ytqlmkBlLM7ayw.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/XX/XXVhj-O91tJ5c8pz7DQlTABOv8TIRVg5haw9VOq9HuI.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/YC/YCiifo5NCMwDChFqYFiV4EaYEx8hy3Efle1PsGbIdak.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Ya/YayMISAqD-Y3vBFywwKrXbUovGf5o77HUF5s8mnQgO0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Zl/Zl-NEb0aDLmZ9gN4gdY1OYlbUXD4JhkFY_y23m55zmo.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/_h/_hnjPptBeD3GP5B0iJR6pvyVkiMiq-o2TxaYmGf9KJo.cache +0 -3
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/_p/_poEF6QbTPYJiQCFGoXxIXjmvcn6T0I87ElzJGHguk0.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/aa/aaSj2zt8ddc87nZqTpOI9gRCKVnoalXKFBww7t4t3Kg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/bZ/bZHWUkrOLp0WM_Ogo36Qjt4cxDt-rOFgtcj4LNB-BVE.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/cP/cPSNG_663TNT944Rke919luRS6FtpMwVc_7aDph645w.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/ce/ceq8fcZGIoqWrCl9vrCRrywEdx42iy9PrGG9CwFSIF4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/cl/cljhP0Jc018nLnG1rpdg-FUf6mlIqrQYvXTNXTNG9Bw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/dm/dmod3fTZdoKso2FGM5RTQtb4kTB6vywsiXLWDygYFN4.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/dy/dySDGcUTqlKx2MTvOmIEP-WzhyhCfU5xhN9qgxbz3rI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/gQ/gQYdmEzbLjTcFCnsfzXzEmeminOchF263snAk3IvXM0.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/gh/ghvuMAqccBGljlmEaI3Gt5tH5rEg6hseKYMYfRMkHdY.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/gt/gt8QC7k92A4hXA3HlCpQulW73tqd6x63I3uT-YrGMj0.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/hf/hfVg-y7dPSQKbb7V3I7M5w7IpOhDiIB2H31d2tmbZMU.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/iF/iFLwyhZIu1Jxm77NUT2qWeTDMmyELW4U85t9rGE_KVg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/kF/kFlIcBBnSyKE00OjpM90pqSn93mLMUv9esz86nrO-Cs.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/ma/MazNt_5OaYexRuZnccZZ_7AONlxn1a4W3KdWyHyBdws.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/ma/ma3w08gnDTeqwY2-C9BlToxA6-AS8bvXlu-nBiz0UYs.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +0 -2
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +0 -2
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/pv/pv6tV3CDkIAmLXdU8EPLlNEkXAKJPufVD4VP30o4fWo.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/qP/qPmv5snMrDw830S6hSICDcnIy7kVEWoFKXhGKT38lG4.cache +0 -2
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/sY/sYvTb1uPWWmnHJNXKuW_xSco-aUb-rN2f0J35zSIzuc.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/su/suQ_jjDxRiIn4VEqFJYKaBWJILaeGKBvoTv49XNX0vo.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/u8/u8IrW5IIQ7espwk2Vpk23zheL9YZA0tnbKq9X7E-WA0.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/wh/whzETExjcZCkn4msasD2aylgfhfpKPZrNxTkY-SOIDg.cache +0 -2
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/x7/x7PYh8DJvPykcEqpVab2vcY9-GFz-3cqtoMlRAu94Uc.cache +0 -2
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/y6/y6oxsJD3pAY9ph1_5M-77uiEjTVw8BheLZNygCKPm1g.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/yH/yHZ-a1J23ZCf2n5mEHINMz23Iec2cLGTKauW7k4yGTE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/z7/z7KfUWYoSaGq8tQ5mbHwyfXyT3Pa4FWKJswHcIdJuds.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/zu/zuExWc5WHxeOUPZUKHl9a9ZRmN50g7jMOD28macn6M0.cache +0 -0
- data/spec/dummy/tmp/pids/server.pid +0 -1
@@ -1,632 +0,0 @@
|
|
1
|
-
@font-face {
|
2
|
-
font-family: 'Pe-icon-7-stroke';
|
3
|
-
src:url('../fonts/Pe-icon-7-stroke.eot?d7yf1v');
|
4
|
-
src:url('../fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v') format('embedded-opentype'),
|
5
|
-
url('../fonts/Pe-icon-7-stroke.woff?d7yf1v') format('woff'),
|
6
|
-
url('../fonts/Pe-icon-7-stroke.ttf?d7yf1v') format('truetype'),
|
7
|
-
url('../fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke') format('svg');
|
8
|
-
font-weight: normal;
|
9
|
-
font-style: normal;
|
10
|
-
}
|
11
|
-
|
12
|
-
[class^="pe-7s-"], [class*=" pe-7s-"] {
|
13
|
-
display: inline-block;
|
14
|
-
font-family: 'Pe-icon-7-stroke';
|
15
|
-
speak: none;
|
16
|
-
font-style: normal;
|
17
|
-
font-weight: normal;
|
18
|
-
font-variant: normal;
|
19
|
-
text-transform: none;
|
20
|
-
line-height: 1;
|
21
|
-
|
22
|
-
/* Better Font Rendering =========== */
|
23
|
-
-webkit-font-smoothing: antialiased;
|
24
|
-
-moz-osx-font-smoothing: grayscale;
|
25
|
-
}
|
26
|
-
|
27
|
-
.pe-7s-album:before {
|
28
|
-
content: "\e6aa";
|
29
|
-
}
|
30
|
-
.pe-7s-arc:before {
|
31
|
-
content: "\e6ab";
|
32
|
-
}
|
33
|
-
.pe-7s-back-2:before {
|
34
|
-
content: "\e6ac";
|
35
|
-
}
|
36
|
-
.pe-7s-bandaid:before {
|
37
|
-
content: "\e6ad";
|
38
|
-
}
|
39
|
-
.pe-7s-car:before {
|
40
|
-
content: "\e6ae";
|
41
|
-
}
|
42
|
-
.pe-7s-diamond:before {
|
43
|
-
content: "\e6af";
|
44
|
-
}
|
45
|
-
.pe-7s-door-lock:before {
|
46
|
-
content: "\e6b0";
|
47
|
-
}
|
48
|
-
.pe-7s-eyedropper:before {
|
49
|
-
content: "\e6b1";
|
50
|
-
}
|
51
|
-
.pe-7s-female:before {
|
52
|
-
content: "\e6b2";
|
53
|
-
}
|
54
|
-
.pe-7s-gym:before {
|
55
|
-
content: "\e6b3";
|
56
|
-
}
|
57
|
-
.pe-7s-hammer:before {
|
58
|
-
content: "\e6b4";
|
59
|
-
}
|
60
|
-
.pe-7s-headphones:before {
|
61
|
-
content: "\e6b5";
|
62
|
-
}
|
63
|
-
.pe-7s-helm:before {
|
64
|
-
content: "\e6b6";
|
65
|
-
}
|
66
|
-
.pe-7s-hourglass:before {
|
67
|
-
content: "\e6b7";
|
68
|
-
}
|
69
|
-
.pe-7s-leaf:before {
|
70
|
-
content: "\e6b8";
|
71
|
-
}
|
72
|
-
.pe-7s-magic-wand:before {
|
73
|
-
content: "\e6b9";
|
74
|
-
}
|
75
|
-
.pe-7s-male:before {
|
76
|
-
content: "\e6ba";
|
77
|
-
}
|
78
|
-
.pe-7s-map-2:before {
|
79
|
-
content: "\e6bb";
|
80
|
-
}
|
81
|
-
.pe-7s-next-2:before {
|
82
|
-
content: "\e6bc";
|
83
|
-
}
|
84
|
-
.pe-7s-paint-bucket:before {
|
85
|
-
content: "\e6bd";
|
86
|
-
}
|
87
|
-
.pe-7s-pendrive:before {
|
88
|
-
content: "\e6be";
|
89
|
-
}
|
90
|
-
.pe-7s-photo:before {
|
91
|
-
content: "\e6bf";
|
92
|
-
}
|
93
|
-
.pe-7s-piggy:before {
|
94
|
-
content: "\e6c0";
|
95
|
-
}
|
96
|
-
.pe-7s-plugin:before {
|
97
|
-
content: "\e6c1";
|
98
|
-
}
|
99
|
-
.pe-7s-refresh-2:before {
|
100
|
-
content: "\e6c2";
|
101
|
-
}
|
102
|
-
.pe-7s-rocket:before {
|
103
|
-
content: "\e6c3";
|
104
|
-
}
|
105
|
-
.pe-7s-settings:before {
|
106
|
-
content: "\e6c4";
|
107
|
-
}
|
108
|
-
.pe-7s-shield:before {
|
109
|
-
content: "\e6c5";
|
110
|
-
}
|
111
|
-
.pe-7s-smile:before {
|
112
|
-
content: "\e6c6";
|
113
|
-
}
|
114
|
-
.pe-7s-usb:before {
|
115
|
-
content: "\e6c7";
|
116
|
-
}
|
117
|
-
.pe-7s-vector:before {
|
118
|
-
content: "\e6c8";
|
119
|
-
}
|
120
|
-
.pe-7s-wine:before {
|
121
|
-
content: "\e6c9";
|
122
|
-
}
|
123
|
-
.pe-7s-cloud-upload:before {
|
124
|
-
content: "\e68a";
|
125
|
-
}
|
126
|
-
.pe-7s-cash:before {
|
127
|
-
content: "\e68c";
|
128
|
-
}
|
129
|
-
.pe-7s-close:before {
|
130
|
-
content: "\e680";
|
131
|
-
}
|
132
|
-
.pe-7s-bluetooth:before {
|
133
|
-
content: "\e68d";
|
134
|
-
}
|
135
|
-
.pe-7s-cloud-download:before {
|
136
|
-
content: "\e68b";
|
137
|
-
}
|
138
|
-
.pe-7s-way:before {
|
139
|
-
content: "\e68e";
|
140
|
-
}
|
141
|
-
.pe-7s-close-circle:before {
|
142
|
-
content: "\e681";
|
143
|
-
}
|
144
|
-
.pe-7s-id:before {
|
145
|
-
content: "\e68f";
|
146
|
-
}
|
147
|
-
.pe-7s-angle-up:before {
|
148
|
-
content: "\e682";
|
149
|
-
}
|
150
|
-
.pe-7s-wristwatch:before {
|
151
|
-
content: "\e690";
|
152
|
-
}
|
153
|
-
.pe-7s-angle-up-circle:before {
|
154
|
-
content: "\e683";
|
155
|
-
}
|
156
|
-
.pe-7s-world:before {
|
157
|
-
content: "\e691";
|
158
|
-
}
|
159
|
-
.pe-7s-angle-right:before {
|
160
|
-
content: "\e684";
|
161
|
-
}
|
162
|
-
.pe-7s-volume:before {
|
163
|
-
content: "\e692";
|
164
|
-
}
|
165
|
-
.pe-7s-angle-right-circle:before {
|
166
|
-
content: "\e685";
|
167
|
-
}
|
168
|
-
.pe-7s-users:before {
|
169
|
-
content: "\e693";
|
170
|
-
}
|
171
|
-
.pe-7s-angle-left:before {
|
172
|
-
content: "\e686";
|
173
|
-
}
|
174
|
-
.pe-7s-user-female:before {
|
175
|
-
content: "\e694";
|
176
|
-
}
|
177
|
-
.pe-7s-angle-left-circle:before {
|
178
|
-
content: "\e687";
|
179
|
-
}
|
180
|
-
.pe-7s-up-arrow:before {
|
181
|
-
content: "\e695";
|
182
|
-
}
|
183
|
-
.pe-7s-angle-down:before {
|
184
|
-
content: "\e688";
|
185
|
-
}
|
186
|
-
.pe-7s-switch:before {
|
187
|
-
content: "\e696";
|
188
|
-
}
|
189
|
-
.pe-7s-angle-down-circle:before {
|
190
|
-
content: "\e689";
|
191
|
-
}
|
192
|
-
.pe-7s-scissors:before {
|
193
|
-
content: "\e697";
|
194
|
-
}
|
195
|
-
.pe-7s-wallet:before {
|
196
|
-
content: "\e600";
|
197
|
-
}
|
198
|
-
.pe-7s-safe:before {
|
199
|
-
content: "\e698";
|
200
|
-
}
|
201
|
-
.pe-7s-volume2:before {
|
202
|
-
content: "\e601";
|
203
|
-
}
|
204
|
-
.pe-7s-volume1:before {
|
205
|
-
content: "\e602";
|
206
|
-
}
|
207
|
-
.pe-7s-voicemail:before {
|
208
|
-
content: "\e603";
|
209
|
-
}
|
210
|
-
.pe-7s-video:before {
|
211
|
-
content: "\e604";
|
212
|
-
}
|
213
|
-
.pe-7s-user:before {
|
214
|
-
content: "\e605";
|
215
|
-
}
|
216
|
-
.pe-7s-upload:before {
|
217
|
-
content: "\e606";
|
218
|
-
}
|
219
|
-
.pe-7s-unlock:before {
|
220
|
-
content: "\e607";
|
221
|
-
}
|
222
|
-
.pe-7s-umbrella:before {
|
223
|
-
content: "\e608";
|
224
|
-
}
|
225
|
-
.pe-7s-trash:before {
|
226
|
-
content: "\e609";
|
227
|
-
}
|
228
|
-
.pe-7s-tools:before {
|
229
|
-
content: "\e60a";
|
230
|
-
}
|
231
|
-
.pe-7s-timer:before {
|
232
|
-
content: "\e60b";
|
233
|
-
}
|
234
|
-
.pe-7s-ticket:before {
|
235
|
-
content: "\e60c";
|
236
|
-
}
|
237
|
-
.pe-7s-target:before {
|
238
|
-
content: "\e60d";
|
239
|
-
}
|
240
|
-
.pe-7s-sun:before {
|
241
|
-
content: "\e60e";
|
242
|
-
}
|
243
|
-
.pe-7s-study:before {
|
244
|
-
content: "\e60f";
|
245
|
-
}
|
246
|
-
.pe-7s-stopwatch:before {
|
247
|
-
content: "\e610";
|
248
|
-
}
|
249
|
-
.pe-7s-star:before {
|
250
|
-
content: "\e611";
|
251
|
-
}
|
252
|
-
.pe-7s-speaker:before {
|
253
|
-
content: "\e612";
|
254
|
-
}
|
255
|
-
.pe-7s-signal:before {
|
256
|
-
content: "\e613";
|
257
|
-
}
|
258
|
-
.pe-7s-shuffle:before {
|
259
|
-
content: "\e614";
|
260
|
-
}
|
261
|
-
.pe-7s-shopbag:before {
|
262
|
-
content: "\e615";
|
263
|
-
}
|
264
|
-
.pe-7s-share:before {
|
265
|
-
content: "\e616";
|
266
|
-
}
|
267
|
-
.pe-7s-server:before {
|
268
|
-
content: "\e617";
|
269
|
-
}
|
270
|
-
.pe-7s-search:before {
|
271
|
-
content: "\e618";
|
272
|
-
}
|
273
|
-
.pe-7s-film:before {
|
274
|
-
content: "\e6a5";
|
275
|
-
}
|
276
|
-
.pe-7s-science:before {
|
277
|
-
content: "\e619";
|
278
|
-
}
|
279
|
-
.pe-7s-disk:before {
|
280
|
-
content: "\e6a6";
|
281
|
-
}
|
282
|
-
.pe-7s-ribbon:before {
|
283
|
-
content: "\e61a";
|
284
|
-
}
|
285
|
-
.pe-7s-repeat:before {
|
286
|
-
content: "\e61b";
|
287
|
-
}
|
288
|
-
.pe-7s-refresh:before {
|
289
|
-
content: "\e61c";
|
290
|
-
}
|
291
|
-
.pe-7s-add-user:before {
|
292
|
-
content: "\e6a9";
|
293
|
-
}
|
294
|
-
.pe-7s-refresh-cloud:before {
|
295
|
-
content: "\e61d";
|
296
|
-
}
|
297
|
-
.pe-7s-paperclip:before {
|
298
|
-
content: "\e69c";
|
299
|
-
}
|
300
|
-
.pe-7s-radio:before {
|
301
|
-
content: "\e61e";
|
302
|
-
}
|
303
|
-
.pe-7s-note2:before {
|
304
|
-
content: "\e69d";
|
305
|
-
}
|
306
|
-
.pe-7s-print:before {
|
307
|
-
content: "\e61f";
|
308
|
-
}
|
309
|
-
.pe-7s-network:before {
|
310
|
-
content: "\e69e";
|
311
|
-
}
|
312
|
-
.pe-7s-prev:before {
|
313
|
-
content: "\e620";
|
314
|
-
}
|
315
|
-
.pe-7s-mute:before {
|
316
|
-
content: "\e69f";
|
317
|
-
}
|
318
|
-
.pe-7s-power:before {
|
319
|
-
content: "\e621";
|
320
|
-
}
|
321
|
-
.pe-7s-medal:before {
|
322
|
-
content: "\e6a0";
|
323
|
-
}
|
324
|
-
.pe-7s-portfolio:before {
|
325
|
-
content: "\e622";
|
326
|
-
}
|
327
|
-
.pe-7s-like2:before {
|
328
|
-
content: "\e6a1";
|
329
|
-
}
|
330
|
-
.pe-7s-plus:before {
|
331
|
-
content: "\e623";
|
332
|
-
}
|
333
|
-
.pe-7s-left-arrow:before {
|
334
|
-
content: "\e6a2";
|
335
|
-
}
|
336
|
-
.pe-7s-play:before {
|
337
|
-
content: "\e624";
|
338
|
-
}
|
339
|
-
.pe-7s-key:before {
|
340
|
-
content: "\e6a3";
|
341
|
-
}
|
342
|
-
.pe-7s-plane:before {
|
343
|
-
content: "\e625";
|
344
|
-
}
|
345
|
-
.pe-7s-joy:before {
|
346
|
-
content: "\e6a4";
|
347
|
-
}
|
348
|
-
.pe-7s-photo-gallery:before {
|
349
|
-
content: "\e626";
|
350
|
-
}
|
351
|
-
.pe-7s-pin:before {
|
352
|
-
content: "\e69b";
|
353
|
-
}
|
354
|
-
.pe-7s-phone:before {
|
355
|
-
content: "\e627";
|
356
|
-
}
|
357
|
-
.pe-7s-plug:before {
|
358
|
-
content: "\e69a";
|
359
|
-
}
|
360
|
-
.pe-7s-pen:before {
|
361
|
-
content: "\e628";
|
362
|
-
}
|
363
|
-
.pe-7s-right-arrow:before {
|
364
|
-
content: "\e699";
|
365
|
-
}
|
366
|
-
.pe-7s-paper-plane:before {
|
367
|
-
content: "\e629";
|
368
|
-
}
|
369
|
-
.pe-7s-delete-user:before {
|
370
|
-
content: "\e6a7";
|
371
|
-
}
|
372
|
-
.pe-7s-paint:before {
|
373
|
-
content: "\e62a";
|
374
|
-
}
|
375
|
-
.pe-7s-bottom-arrow:before {
|
376
|
-
content: "\e6a8";
|
377
|
-
}
|
378
|
-
.pe-7s-notebook:before {
|
379
|
-
content: "\e62b";
|
380
|
-
}
|
381
|
-
.pe-7s-note:before {
|
382
|
-
content: "\e62c";
|
383
|
-
}
|
384
|
-
.pe-7s-next:before {
|
385
|
-
content: "\e62d";
|
386
|
-
}
|
387
|
-
.pe-7s-news-paper:before {
|
388
|
-
content: "\e62e";
|
389
|
-
}
|
390
|
-
.pe-7s-musiclist:before {
|
391
|
-
content: "\e62f";
|
392
|
-
}
|
393
|
-
.pe-7s-music:before {
|
394
|
-
content: "\e630";
|
395
|
-
}
|
396
|
-
.pe-7s-mouse:before {
|
397
|
-
content: "\e631";
|
398
|
-
}
|
399
|
-
.pe-7s-more:before {
|
400
|
-
content: "\e632";
|
401
|
-
}
|
402
|
-
.pe-7s-moon:before {
|
403
|
-
content: "\e633";
|
404
|
-
}
|
405
|
-
.pe-7s-monitor:before {
|
406
|
-
content: "\e634";
|
407
|
-
}
|
408
|
-
.pe-7s-micro:before {
|
409
|
-
content: "\e635";
|
410
|
-
}
|
411
|
-
.pe-7s-menu:before {
|
412
|
-
content: "\e636";
|
413
|
-
}
|
414
|
-
.pe-7s-map:before {
|
415
|
-
content: "\e637";
|
416
|
-
}
|
417
|
-
.pe-7s-map-marker:before {
|
418
|
-
content: "\e638";
|
419
|
-
}
|
420
|
-
.pe-7s-mail:before {
|
421
|
-
content: "\e639";
|
422
|
-
}
|
423
|
-
.pe-7s-mail-open:before {
|
424
|
-
content: "\e63a";
|
425
|
-
}
|
426
|
-
.pe-7s-mail-open-file:before {
|
427
|
-
content: "\e63b";
|
428
|
-
}
|
429
|
-
.pe-7s-magnet:before {
|
430
|
-
content: "\e63c";
|
431
|
-
}
|
432
|
-
.pe-7s-loop:before {
|
433
|
-
content: "\e63d";
|
434
|
-
}
|
435
|
-
.pe-7s-look:before {
|
436
|
-
content: "\e63e";
|
437
|
-
}
|
438
|
-
.pe-7s-lock:before {
|
439
|
-
content: "\e63f";
|
440
|
-
}
|
441
|
-
.pe-7s-lintern:before {
|
442
|
-
content: "\e640";
|
443
|
-
}
|
444
|
-
.pe-7s-link:before {
|
445
|
-
content: "\e641";
|
446
|
-
}
|
447
|
-
.pe-7s-like:before {
|
448
|
-
content: "\e642";
|
449
|
-
}
|
450
|
-
.pe-7s-light:before {
|
451
|
-
content: "\e643";
|
452
|
-
}
|
453
|
-
.pe-7s-less:before {
|
454
|
-
content: "\e644";
|
455
|
-
}
|
456
|
-
.pe-7s-keypad:before {
|
457
|
-
content: "\e645";
|
458
|
-
}
|
459
|
-
.pe-7s-junk:before {
|
460
|
-
content: "\e646";
|
461
|
-
}
|
462
|
-
.pe-7s-info:before {
|
463
|
-
content: "\e647";
|
464
|
-
}
|
465
|
-
.pe-7s-home:before {
|
466
|
-
content: "\e648";
|
467
|
-
}
|
468
|
-
.pe-7s-help2:before {
|
469
|
-
content: "\e649";
|
470
|
-
}
|
471
|
-
.pe-7s-help1:before {
|
472
|
-
content: "\e64a";
|
473
|
-
}
|
474
|
-
.pe-7s-graph3:before {
|
475
|
-
content: "\e64b";
|
476
|
-
}
|
477
|
-
.pe-7s-graph2:before {
|
478
|
-
content: "\e64c";
|
479
|
-
}
|
480
|
-
.pe-7s-graph1:before {
|
481
|
-
content: "\e64d";
|
482
|
-
}
|
483
|
-
.pe-7s-graph:before {
|
484
|
-
content: "\e64e";
|
485
|
-
}
|
486
|
-
.pe-7s-global:before {
|
487
|
-
content: "\e64f";
|
488
|
-
}
|
489
|
-
.pe-7s-gleam:before {
|
490
|
-
content: "\e650";
|
491
|
-
}
|
492
|
-
.pe-7s-glasses:before {
|
493
|
-
content: "\e651";
|
494
|
-
}
|
495
|
-
.pe-7s-gift:before {
|
496
|
-
content: "\e652";
|
497
|
-
}
|
498
|
-
.pe-7s-folder:before {
|
499
|
-
content: "\e653";
|
500
|
-
}
|
501
|
-
.pe-7s-flag:before {
|
502
|
-
content: "\e654";
|
503
|
-
}
|
504
|
-
.pe-7s-filter:before {
|
505
|
-
content: "\e655";
|
506
|
-
}
|
507
|
-
.pe-7s-file:before {
|
508
|
-
content: "\e656";
|
509
|
-
}
|
510
|
-
.pe-7s-expand1:before {
|
511
|
-
content: "\e657";
|
512
|
-
}
|
513
|
-
.pe-7s-exapnd2:before {
|
514
|
-
content: "\e658";
|
515
|
-
}
|
516
|
-
.pe-7s-edit:before {
|
517
|
-
content: "\e659";
|
518
|
-
}
|
519
|
-
.pe-7s-drop:before {
|
520
|
-
content: "\e65a";
|
521
|
-
}
|
522
|
-
.pe-7s-drawer:before {
|
523
|
-
content: "\e65b";
|
524
|
-
}
|
525
|
-
.pe-7s-download:before {
|
526
|
-
content: "\e65c";
|
527
|
-
}
|
528
|
-
.pe-7s-display2:before {
|
529
|
-
content: "\e65d";
|
530
|
-
}
|
531
|
-
.pe-7s-display1:before {
|
532
|
-
content: "\e65e";
|
533
|
-
}
|
534
|
-
.pe-7s-diskette:before {
|
535
|
-
content: "\e65f";
|
536
|
-
}
|
537
|
-
.pe-7s-date:before {
|
538
|
-
content: "\e660";
|
539
|
-
}
|
540
|
-
.pe-7s-cup:before {
|
541
|
-
content: "\e661";
|
542
|
-
}
|
543
|
-
.pe-7s-culture:before {
|
544
|
-
content: "\e662";
|
545
|
-
}
|
546
|
-
.pe-7s-crop:before {
|
547
|
-
content: "\e663";
|
548
|
-
}
|
549
|
-
.pe-7s-credit:before {
|
550
|
-
content: "\e664";
|
551
|
-
}
|
552
|
-
.pe-7s-copy-file:before {
|
553
|
-
content: "\e665";
|
554
|
-
}
|
555
|
-
.pe-7s-config:before {
|
556
|
-
content: "\e666";
|
557
|
-
}
|
558
|
-
.pe-7s-compass:before {
|
559
|
-
content: "\e667";
|
560
|
-
}
|
561
|
-
.pe-7s-comment:before {
|
562
|
-
content: "\e668";
|
563
|
-
}
|
564
|
-
.pe-7s-coffee:before {
|
565
|
-
content: "\e669";
|
566
|
-
}
|
567
|
-
.pe-7s-cloud:before {
|
568
|
-
content: "\e66a";
|
569
|
-
}
|
570
|
-
.pe-7s-clock:before {
|
571
|
-
content: "\e66b";
|
572
|
-
}
|
573
|
-
.pe-7s-check:before {
|
574
|
-
content: "\e66c";
|
575
|
-
}
|
576
|
-
.pe-7s-chat:before {
|
577
|
-
content: "\e66d";
|
578
|
-
}
|
579
|
-
.pe-7s-cart:before {
|
580
|
-
content: "\e66e";
|
581
|
-
}
|
582
|
-
.pe-7s-camera:before {
|
583
|
-
content: "\e66f";
|
584
|
-
}
|
585
|
-
.pe-7s-call:before {
|
586
|
-
content: "\e670";
|
587
|
-
}
|
588
|
-
.pe-7s-calculator:before {
|
589
|
-
content: "\e671";
|
590
|
-
}
|
591
|
-
.pe-7s-browser:before {
|
592
|
-
content: "\e672";
|
593
|
-
}
|
594
|
-
.pe-7s-box2:before {
|
595
|
-
content: "\e673";
|
596
|
-
}
|
597
|
-
.pe-7s-box1:before {
|
598
|
-
content: "\e674";
|
599
|
-
}
|
600
|
-
.pe-7s-bookmarks:before {
|
601
|
-
content: "\e675";
|
602
|
-
}
|
603
|
-
.pe-7s-bicycle:before {
|
604
|
-
content: "\e676";
|
605
|
-
}
|
606
|
-
.pe-7s-bell:before {
|
607
|
-
content: "\e677";
|
608
|
-
}
|
609
|
-
.pe-7s-battery:before {
|
610
|
-
content: "\e678";
|
611
|
-
}
|
612
|
-
.pe-7s-ball:before {
|
613
|
-
content: "\e679";
|
614
|
-
}
|
615
|
-
.pe-7s-back:before {
|
616
|
-
content: "\e67a";
|
617
|
-
}
|
618
|
-
.pe-7s-attention:before {
|
619
|
-
content: "\e67b";
|
620
|
-
}
|
621
|
-
.pe-7s-anchor:before {
|
622
|
-
content: "\e67c";
|
623
|
-
}
|
624
|
-
.pe-7s-albums:before {
|
625
|
-
content: "\e67d";
|
626
|
-
}
|
627
|
-
.pe-7s-alarm:before {
|
628
|
-
content: "\e67e";
|
629
|
-
}
|
630
|
-
.pe-7s-airplay:before {
|
631
|
-
content: "\e67f";
|
632
|
-
}
|
Binary file
|