mm_os 1.3.4 → 1.3.6
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.
- package/README.en.md +36 -0
- package/README.md +25 -166
- package/conf.json +3 -0
- package/core/base/index.js +29 -0
- package/core/base/mqtt/index.js +268 -0
- package/core/base/mqtt/lib.js +40 -0
- package/core/base/web/index.js +110 -0
- package/core/com/api/com.json +4 -0
- package/{bin → core}/com/api/config.tpl.json +9 -7
- package/{bin → core}/com/api/drive.js +239 -64
- package/{bin → core}/com/api/index.js +8 -9
- package/{bin → core}/com/api/oauth.js +23 -14
- package/core/com/api/script.js +32 -0
- package/core/com/db/com.json +4 -0
- package/{bin → core}/com/db/drive.js +99 -65
- package/{bin → core}/com/db/index.js +2 -2
- package/core/com/event/com.json +4 -0
- package/{bin → core}/com/event/config.tpl.json +2 -2
- package/core/com/event/drive.js +125 -0
- package/{bin → core}/com/event/index.js +5 -10
- package/core/com/event/script.js +26 -0
- package/core/com/eventer/com.js +450 -0
- package/core/com/eventer/com.json +4 -0
- package/core/com/middleware/com.js +128 -0
- package/core/com/middleware/com.json +4 -0
- package/core/com/middleware/config.tpl.json +8 -0
- package/core/com/middleware/script.js +9 -0
- package/core/com/mqtt/com.json +4 -0
- package/core/com/mqtt/config.tpl.json +12 -0
- package/core/com/mqtt/drive.js +139 -0
- package/core/com/mqtt/index.js +138 -0
- package/core/com/mqtt/script.js +33 -0
- package/core/com/msg/com.js +296 -0
- package/core/com/msg/com.json +4 -0
- package/{bin → core}/com/nav/drive.js +42 -17
- package/{bin → core}/com/nav/index.js +4 -4
- package/core/com/nav/tpl/admin_pc/page_channel.vue +299 -0
- package/core/com/nav/tpl/admin_pc/page_config.vue +279 -0
- package/core/com/nav/tpl/admin_pc/page_config_form.vue +194 -0
- package/core/com/nav/tpl/admin_pc/page_default.vue +287 -0
- package/core/com/nav/tpl/admin_pc/page_form.vue +180 -0
- package/core/com/nav/tpl/admin_pc/page_lang.vue +265 -0
- package/core/com/nav/tpl/admin_pc/page_nav.vue +313 -0
- package/core/com/nav/tpl/admin_pc/page_table.vue +285 -0
- package/core/com/nav/tpl/admin_pc/page_type.vue +313 -0
- package/core/com/nav/tpl/dev_pc/page_channel.vue +253 -0
- package/core/com/nav/tpl/dev_pc/page_config.vue +253 -0
- package/core/com/nav/tpl/dev_pc/page_default.vue +247 -0
- package/core/com/nav/tpl/dev_pc/page_form.vue +162 -0
- package/core/com/nav/tpl/dev_pc/page_nav.vue +253 -0
- package/core/com/nav/tpl/dev_pc/page_table.vue +247 -0
- package/core/com/nav/tpl/dev_pc/page_type.vue +253 -0
- package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_channel.vue +231 -231
- package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_default.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_pc/page_form.vue +9 -9
- package/{bin → core}/com/nav/tpl/home_pc/page_list.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_pc/page_nav.vue +221 -221
- package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_type.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_pc/page_view.vue +8 -8
- package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_channel.vue +231 -231
- package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_default.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_phone/page_form.vue +9 -9
- package/{bin → core}/com/nav/tpl/home_phone/page_list.vue +231 -231
- package/{bin/com/nav/tpl/admin_pc → core/com/nav/tpl/home_phone}/page_nav.vue +236 -220
- package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_type.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_phone/page_view.vue +8 -8
- package/core/com/nav/viewmodel.js +296 -0
- package/{bin → core}/com/param/config.tpl.json +24 -0
- package/{bin → core}/com/param/drive.js +47 -15
- package/core/com/plugin/com.json +4 -0
- package/core/com/plugin/config.tpl.json +20 -0
- package/{bin → core}/com/plugin/drive.js +5 -8
- package/{bin → core}/com/plugin/index.js +11 -56
- package/core/com/socket/README.md +47 -0
- package/core/com/socket/com.json +4 -0
- package/core/com/socket/config.tpl.json +14 -0
- package/{bin → core}/com/socket/drive.js +74 -51
- package/{bin → core}/com/socket/index.js +4 -2
- package/{bin → core}/com/socket/script.js +8 -6
- package/core/com/sql/config.tpl.json +70 -0
- package/{bin → core}/com/sql/drive.js +281 -58
- package/core/com/static/com.json +4 -0
- package/core/com/static/config.tpl.json +20 -0
- package/{bin → core}/com/static/drive.js +6 -4
- package/{bin → core}/com/static/index.js +5 -1
- package/core/com/task/com.json +4 -0
- package/core/com/task/config.tpl.json +24 -0
- package/core/com/task/drive.js +374 -0
- package/{bin → core}/com/task/index.js +14 -20
- package/core/com/task/script.js +37 -0
- package/core/com/timer/com.js +217 -0
- package/core/com/timer/com.json +4 -0
- package/core/com/tpl/com.js +19 -0
- package/core/com/tpl/com.json +4 -0
- package/index.js +161 -740
- package/lib/actions.js +50 -0
- package/lib/app.js +73 -0
- package/lib/base.js +355 -0
- package/lib/com.js +31 -0
- package/lib/game.js +31 -0
- package/lib/ref.js +121 -0
- package/middleware/cors/index.js +57 -0
- package/middleware/cors/middleware.json +7 -0
- package/middleware/mqtt_base/index.js +10 -0
- package/middleware/mqtt_base/middleware.json +8 -0
- package/{waf.js → middleware/waf/index.js} +12 -2
- package/middleware/waf/middleware.json +9 -0
- package/middleware/web_base/index.js +67 -0
- package/middleware/web_base/middleware.json +9 -0
- package/middleware/web_event/index.js +411 -0
- package/middleware/web_event/middleware.json +10 -0
- package/middleware/web_proxy/index.js +24 -0
- package/middleware/web_proxy/middleware.json +9 -0
- package/middleware/web_router/index.js +33 -0
- package/middleware/web_router/middleware.json +10 -0
- package/middleware/web_socket/index.js +21 -0
- package/middleware/web_socket/middleware.json +9 -0
- package/middleware/web_static/index.js +26 -0
- package/middleware/web_static/middleware.json +9 -0
- package/nodemon.json +12 -2
- package/package.json +56 -66
- package/.gitattributes +0 -5
- package/bin/com/README.md +0 -2
- package/bin/com/api/script.js +0 -14
- package/bin/com/cmd/README.md +0 -3
- package/bin/com/cmd/config.tpl.json +0 -41
- package/bin/com/cmd/drive.js +0 -512
- package/bin/com/cmd/index.js +0 -213
- package/bin/com/cmd/old/5w2h.js +0 -54
- package/bin/com/cmd/old/drive.js +0 -423
- package/bin/com/cmd/script.js +0 -11
- package/bin/com/event/drive.js +0 -69
- package/bin/com/event/script.js +0 -12
- package/bin/com/nav/tpl/admin_pc/page_channel.vue +0 -234
- package/bin/com/nav/tpl/admin_pc/page_default.vue +0 -236
- package/bin/com/nav/tpl/admin_pc/page_form.vue +0 -152
- package/bin/com/nav/tpl/admin_pc/page_table.vue +0 -236
- package/bin/com/nav/tpl/admin_pc/page_type.vue +0 -234
- package/bin/com/nav/tpl/home_phone/page_nav.vue +0 -221
- package/bin/com/nav/viewmodel.js +0 -161
- package/bin/com/plugin/config.tpl.json +0 -11
- package/bin/com/socket/config.tpl.json +0 -8
- package/bin/com/sql/config.tpl.json +0 -34
- package/bin/com/static/config.tpl.json +0 -11
- package/bin/com/task/config.tpl.json +0 -13
- package/bin/com/task/drive.js +0 -288
- package/bin/com/task/script.js +0 -38
- package/bin/com.js +0 -74
- package/bin/mm.conf +0 -48
- package/bin/static/404.html +0 -52
- package/bin/static/README.md +0 -1
- package/bin/static/css/font-awesome.min.css +0 -7
- package/bin/static/css/mm_base.css +0 -220
- package/bin/static/css/mm_common.css +0 -518
- package/bin/static/css/mm_component.css +0 -307
- package/bin/static/css/mm_expand.css +0 -634
- package/bin/static/css/mm_theme.css +0 -291
- package/bin/static/css/new_file.css +0 -79
- package/bin/static/css/swiper.min.css +0 -12
- package/bin/static/favicon.ico +0 -0
- package/bin/static/font/FontAwesome.otf +0 -0
- package/bin/static/font/HelveticaNeue.eot +0 -0
- package/bin/static/font/HelveticaNeue.otf +0 -0
- package/bin/static/font/HelveticaNeue.svg +0 -1273
- package/bin/static/font/HelveticaNeue.woff +0 -0
- package/bin/static/font/HelveticaNeue.woff2 +0 -0
- package/bin/static/font/fontawesome-webfont.eot +0 -0
- package/bin/static/font/fontawesome-webfont.svg +0 -2671
- package/bin/static/font/fontawesome-webfont.ttf +0 -0
- package/bin/static/font/fontawesome-webfont.woff +0 -0
- package/bin/static/font/fontawesome-webfont.woff2 +0 -0
- package/bin/static/h5.html +0 -325
- package/bin/static/highlight/highlight.pack.js +0 -2
- package/bin/static/highlight/styles/a11y-dark.css +0 -99
- package/bin/static/highlight/styles/a11y-light.css +0 -99
- package/bin/static/highlight/styles/agate.css +0 -108
- package/bin/static/highlight/styles/an-old-hope.css +0 -89
- package/bin/static/highlight/styles/androidstudio.css +0 -66
- package/bin/static/highlight/styles/arduino-light.css +0 -88
- package/bin/static/highlight/styles/arta.css +0 -73
- package/bin/static/highlight/styles/ascetic.css +0 -45
- package/bin/static/highlight/styles/atelier-cave-dark.css +0 -83
- package/bin/static/highlight/styles/atelier-cave-light.css +0 -85
- package/bin/static/highlight/styles/atelier-dune-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-dune-light.css +0 -69
- package/bin/static/highlight/styles/atelier-estuary-dark.css +0 -84
- package/bin/static/highlight/styles/atelier-estuary-light.css +0 -84
- package/bin/static/highlight/styles/atelier-forest-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-forest-light.css +0 -69
- package/bin/static/highlight/styles/atelier-heath-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-heath-light.css +0 -69
- package/bin/static/highlight/styles/atelier-lakeside-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-lakeside-light.css +0 -69
- package/bin/static/highlight/styles/atelier-plateau-dark.css +0 -84
- package/bin/static/highlight/styles/atelier-plateau-light.css +0 -84
- package/bin/static/highlight/styles/atelier-savanna-dark.css +0 -84
- package/bin/static/highlight/styles/atelier-savanna-light.css +0 -84
- package/bin/static/highlight/styles/atelier-seaside-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-seaside-light.css +0 -69
- package/bin/static/highlight/styles/atelier-sulphurpool-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-sulphurpool-light.css +0 -69
- package/bin/static/highlight/styles/atom-one-dark-reasonable.css +0 -77
- package/bin/static/highlight/styles/atom-one-dark.css +0 -96
- package/bin/static/highlight/styles/atom-one-light.css +0 -96
- package/bin/static/highlight/styles/brown-paper.css +0 -64
- package/bin/static/highlight/styles/brown-papersq.png +0 -0
- package/bin/static/highlight/styles/codepen-embed.css +0 -60
- package/bin/static/highlight/styles/color-brewer.css +0 -71
- package/bin/static/highlight/styles/darcula.css +0 -77
- package/bin/static/highlight/styles/dark.css +0 -63
- package/bin/static/highlight/styles/darkula.css +0 -6
- package/bin/static/highlight/styles/default.css +0 -99
- package/bin/static/highlight/styles/docco.css +0 -97
- package/bin/static/highlight/styles/dracula.css +0 -76
- package/bin/static/highlight/styles/far.css +0 -71
- package/bin/static/highlight/styles/foundation.css +0 -88
- package/bin/static/highlight/styles/github-gist.css +0 -79
- package/bin/static/highlight/styles/github.css +0 -99
- package/bin/static/highlight/styles/gml.css +0 -78
- package/bin/static/highlight/styles/googlecode.css +0 -89
- package/bin/static/highlight/styles/grayscale.css +0 -101
- package/bin/static/highlight/styles/gruvbox-dark.css +0 -108
- package/bin/static/highlight/styles/gruvbox-light.css +0 -108
- package/bin/static/highlight/styles/hopscotch.css +0 -83
- package/bin/static/highlight/styles/hybrid.css +0 -102
- package/bin/static/highlight/styles/idea.css +0 -97
- package/bin/static/highlight/styles/ir-black.css +0 -73
- package/bin/static/highlight/styles/isbl-editor-dark.css +0 -112
- package/bin/static/highlight/styles/isbl-editor-light.css +0 -112
- package/bin/static/highlight/styles/kimbie.dark.css +0 -74
- package/bin/static/highlight/styles/kimbie.light.css +0 -74
- package/bin/static/highlight/styles/lightfair.css +0 -87
- package/bin/static/highlight/styles/magula.css +0 -70
- package/bin/static/highlight/styles/mono-blue.css +0 -59
- package/bin/static/highlight/styles/monokai-sublime.css +0 -83
- package/bin/static/highlight/styles/monokai.css +0 -70
- package/bin/static/highlight/styles/nord.css +0 -309
- package/bin/static/highlight/styles/obsidian.css +0 -88
- package/bin/static/highlight/styles/ocean.css +0 -74
- package/bin/static/highlight/styles/paraiso-dark.css +0 -72
- package/bin/static/highlight/styles/paraiso-light.css +0 -72
- package/bin/static/highlight/styles/pojoaque.css +0 -83
- package/bin/static/highlight/styles/pojoaque.jpg +0 -0
- package/bin/static/highlight/styles/purebasic.css +0 -96
- package/bin/static/highlight/styles/qtcreator_dark.css +0 -83
- package/bin/static/highlight/styles/qtcreator_light.css +0 -83
- package/bin/static/highlight/styles/railscasts.css +0 -106
- package/bin/static/highlight/styles/rainbow.css +0 -85
- package/bin/static/highlight/styles/routeros.css +0 -108
- package/bin/static/highlight/styles/school-book.css +0 -69
- package/bin/static/highlight/styles/school-book.png +0 -0
- package/bin/static/highlight/styles/shades-of-purple.css +0 -97
- package/bin/static/highlight/styles/solarized-dark.css +0 -84
- package/bin/static/highlight/styles/solarized-light.css +0 -84
- package/bin/static/highlight/styles/sunburst.css +0 -102
- package/bin/static/highlight/styles/tomorrow-night-blue.css +0 -75
- package/bin/static/highlight/styles/tomorrow-night-bright.css +0 -74
- package/bin/static/highlight/styles/tomorrow-night-eighties.css +0 -74
- package/bin/static/highlight/styles/tomorrow-night.css +0 -75
- package/bin/static/highlight/styles/tomorrow.css +0 -72
- package/bin/static/highlight/styles/vs.css +0 -68
- package/bin/static/highlight/styles/vs2015.css +0 -115
- package/bin/static/highlight/styles/xcode.css +0 -104
- package/bin/static/highlight/styles/xt256.css +0 -92
- package/bin/static/highlight/styles/zenburn.css +0 -80
- package/bin/static/highlight/vue-highlight.js +0 -29
- package/bin/static/ifame.html +0 -24
- package/bin/static/img/add.png +0 -0
- package/bin/static/img/avatar.png +0 -0
- package/bin/static/img/banner_2.png +0 -0
- package/bin/static/img/default.png +0 -0
- package/bin/static/img/loading.svg +0 -1
- package/bin/static/img/logo.png +0 -0
- package/bin/static/img/logo1.png +0 -0
- package/bin/static/img/logo_gray.png +0 -0
- package/bin/static/img/logo_round.png +0 -0
- package/bin/static/img/mm.ico +0 -0
- package/bin/static/img/mm.jpg +0 -0
- package/bin/static/img/select.png +0 -0
- package/bin/static/img/web.png +0 -0
- package/bin/static/index.html +0 -12
- package/bin/static/js/clipboard.min.js +0 -257
- package/bin/static/js/css.min.js +0 -1
- package/bin/static/js/echarts.js +0 -22
- package/bin/static/js/html5.min.js +0 -1
- package/bin/static/js/jquery.lazyload.min.js +0 -2
- package/bin/static/js/jquery.min.js +0 -4189
- package/bin/static/js/jquery.scrollstop.min.js +0 -2
- package/bin/static/js/mm-requirejs-vue.js +0 -283
- package/bin/static/js/mm_check.js +0 -490
- package/bin/static/js/mm_flexble.js +0 -112
- package/bin/static/js/mm_picker.js +0 -1417
- package/bin/static/js/mm_pinyinlite.js +0 -873
- package/bin/static/js/mm_sdk.js +0 -2841
- package/bin/static/js/mm_ui_expand.js +0 -468
- package/bin/static/js/mm_vue.js +0 -376
- package/bin/static/js/mm_vue_ui.js +0 -2375
- package/bin/static/js/mm_websocket.js +0 -145
- package/bin/static/js/require.js +0 -5
- package/bin/static/js/sortable.min.js +0 -3
- package/bin/static/js/swiper.min.js +0 -13
- package/bin/static/js/text.min.js +0 -1
- package/bin/static/js/vue-router.min.js +0 -6
- package/bin/static/js/vue.js +0 -12338
- package/bin/static/js/vuedraggable.min.js +0 -2
- package/bin/static/js/vuex.min.js +0 -6
- package/bin/static/src/components/bar/mm_action.vue +0 -19
- package/bin/static/src/components/bar/mm_buy.vue +0 -19
- package/bin/static/src/components/bar/mm_chat.vue +0 -18
- package/bin/static/src/components/bar/mm_count.vue +0 -18
- package/bin/static/src/components/bar/mm_filter.vue +0 -18
- package/bin/static/src/components/bar/mm_search.vue +0 -18
- package/bin/static/src/components/bar/mm_sort.vue +0 -18
- package/bin/static/src/components/bar/mm_tag.vue +0 -18
- package/bin/static/src/components/bar/mm_title.vue +0 -19
- package/bin/static/src/components/content/mm_pre.vue +0 -70
- package/bin/static/src/components/expand/mm_drag.vue +0 -39
- package/bin/static/src/components/item/mm_article.vue +0 -115
- package/bin/static/src/components/item/mm_base.vue +0 -26
- package/bin/static/src/components/item/mm_contact.vue +0 -25
- package/bin/static/src/components/item/mm_goods.vue +0 -23
- package/bin/static/src/components/item/mm_img.vue +0 -21
- package/bin/static/src/components/item/mm_media.vue +0 -18
- package/bin/static/src/components/item/mm_message.vue +0 -18
- package/bin/static/src/components/item/mm_music.vue +0 -95
- package/bin/static/src/components/item/mm_news.vue +0 -22
- package/bin/static/src/components/item/mm_number.vue +0 -26
- package/bin/static/src/components/item/mm_question.vue +0 -35
- package/bin/static/src/components/item/mm_user.vue +0 -22
- package/bin/static/src/components/item/mm_video.vue +0 -95
- package/bin/static/src/components/slide/mm_slide_card.vue +0 -64
- package/bin/static/src/components/slide/mm_slide_img.vue +0 -47
- package/bin/static/src/components/slide/mm_slide_page.vue +0 -8
- package/bin/static/src/components/slide/mm_slide_text.vue +0 -54
- package/bin/static/src/main.js +0 -84
- package/bin/static/src/mixins/form.js +0 -223
- package/bin/static/src/mixins/item.js +0 -242
- package/bin/static/src/mixins/list.js +0 -244
- package/bin/static/src/mixins/page.js +0 -1011
- package/bin/static/src/mm_component.js +0 -74
- package/bin/static/src/router.js +0 -72
- package/bin/static/src/store/user.js +0 -75
- package/bin/static/src/store/web.js +0 -50
- package/bin/static/user/1/number_info.xlsx +0 -0
- package/bin/static/w3c.html +0 -94
- package/init.js +0 -55
- package/update.md +0 -1
- /package/{bin → core}/com/api/README.md +0 -0
- /package/{bin → core}/com/api/rpc.js +0 -0
- /package/{bin → core}/com/db/README.md +0 -0
- /package/{bin → core}/com/event/README.md +0 -0
- /package/{bin/com/socket → core/com/mqtt}/README.md +0 -0
- /package/{bin → core}/com/nav/README.md +0 -0
- /package/{bin → core}/com/nav/config.tpl.json +0 -0
- /package/{bin → core}/com/param/README.md +0 -0
- /package/{bin → core}/com/param/index.js +0 -0
- /package/{bin → core}/com/param/script.js +0 -0
- /package/{bin → core}/com/param/test.js +0 -0
- /package/{bin → core}/com/plugin/README.md +0 -0
- /package/{bin → core}/com/plugin/script.js +0 -0
- /package/{bin → core}/com/sql/README.md +0 -0
- /package/{bin → core}/com/sql/index.js +0 -0
- /package/{bin → core}/com/sql/script.js +0 -0
- /package/{bin → core}/com/static/README.md +0 -0
- /package/{bin → core}/com/static/script.js +0 -0
- /package/{bin → core}/com/task/README.md +0 -0
- /package/{bin/rps.bat → rps.bat} +0 -0
- /package/{bin/tps.bat → tps.bat} +0 -0
|
@@ -1,634 +0,0 @@
|
|
|
1
|
-
@charset "utf-8";
|
|
2
|
-
|
|
3
|
-
.picker-modal header {
|
|
4
|
-
min-height: initial;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.picker-modal .bar {
|
|
8
|
-
-webkit-backface-visibility: hidden;
|
|
9
|
-
backface-visibility: hidden;
|
|
10
|
-
background-color: #FEFEFE;
|
|
11
|
-
height: 2.75rem;
|
|
12
|
-
left: 0;
|
|
13
|
-
position: relative;
|
|
14
|
-
right: 0;
|
|
15
|
-
top: 0;
|
|
16
|
-
z-index: 10;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.modal-overlay,
|
|
20
|
-
.preloader-indicator-overlay {
|
|
21
|
-
-webkit-transition-duration: .4s;
|
|
22
|
-
background: rgba(0, 0, 0, .6);
|
|
23
|
-
height: 100%;
|
|
24
|
-
left: 0;
|
|
25
|
-
opacity: 0;
|
|
26
|
-
position: fixed;
|
|
27
|
-
top: 0;
|
|
28
|
-
transition-duration: .4s;
|
|
29
|
-
visibility: hidden;
|
|
30
|
-
width: 100%;
|
|
31
|
-
z-index: 10600;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.modal-overlay.modal-overlay-visible,
|
|
35
|
-
.popup-overlay.modal-overlay-visible,
|
|
36
|
-
.preloader-indicator-overlay.modal-overlay-visible {
|
|
37
|
-
opacity: 1;
|
|
38
|
-
visibility: visible;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.popup-overlay {
|
|
42
|
-
z-index: 9800;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.modal {
|
|
46
|
-
-webkit-transform: translate3d(0, 0, 0) scale(1.185);
|
|
47
|
-
-webkit-transition-property: 0;
|
|
48
|
-
border-radius: .25rem;
|
|
49
|
-
color: #333;
|
|
50
|
-
display: none;
|
|
51
|
-
left: 50%;
|
|
52
|
-
margin-top: 0;
|
|
53
|
-
opacity: 0;
|
|
54
|
-
position: fixed;
|
|
55
|
-
text-align: center;
|
|
56
|
-
top: 50%;
|
|
57
|
-
transform: translate3d(-50%, 0, 0) scale(1.185);
|
|
58
|
-
transition-property: transform, opacity;
|
|
59
|
-
z-index: 11000;
|
|
60
|
-
max-width: 25rem;
|
|
61
|
-
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.modal .modal-in {
|
|
65
|
-
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
66
|
-
opacity: 1;
|
|
67
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.modal .modal-out {
|
|
71
|
-
-webkit-transform: translate3d(0, 0, 0) scale(.815);
|
|
72
|
-
opacity: 0;
|
|
73
|
-
transform: translate3d(0, 0, 0) scale(.815);
|
|
74
|
-
z-index: 10999;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.modal-inner {
|
|
78
|
-
background: #fff;
|
|
79
|
-
border-radius: .25rem .25rem 0 0;
|
|
80
|
-
padding: .75rem;
|
|
81
|
-
position: relative;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.modal-title {
|
|
85
|
-
font-size: 1rem;
|
|
86
|
-
font-weight: 500;
|
|
87
|
-
padding: .25rem;
|
|
88
|
-
text-align: center;
|
|
89
|
-
border-bottom: 1px solid rgba(125,125,125,0.25);
|
|
90
|
-
margin-bottom: 0.5rem;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.modal-buttons {
|
|
94
|
-
-webkit-box-pack: center;
|
|
95
|
-
display: flex;
|
|
96
|
-
height: 2.2rem;
|
|
97
|
-
justify-content: center;
|
|
98
|
-
overflow: hidden;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.modal-buttons.modal-buttons-vertical {
|
|
102
|
-
display: block;
|
|
103
|
-
height: auto;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.modal-button {
|
|
107
|
-
-ms-flex: 1;
|
|
108
|
-
-webkit-box-flex: 1;
|
|
109
|
-
background: #fff;
|
|
110
|
-
border-right: 1px solid #e5e5e5;
|
|
111
|
-
box-sizing: border-box;
|
|
112
|
-
color: #353535;
|
|
113
|
-
cursor: pointer;
|
|
114
|
-
display: block;
|
|
115
|
-
font-size: .85rem;
|
|
116
|
-
height: 2.2rem;
|
|
117
|
-
line-height: 2.2rem;
|
|
118
|
-
overflow: hidden;
|
|
119
|
-
padding: 0 .25rem;
|
|
120
|
-
position: relative;
|
|
121
|
-
text-align: center;
|
|
122
|
-
text-overflow: ellipsis;
|
|
123
|
-
white-space: nowrap;
|
|
124
|
-
width: 100%;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.modal-button::after {
|
|
128
|
-
-webkit-transform-origin: 100% 50%;
|
|
129
|
-
background-color: #fff;
|
|
130
|
-
bottom: auto;
|
|
131
|
-
content: '';
|
|
132
|
-
display: block;
|
|
133
|
-
height: 100%;
|
|
134
|
-
left: auto;
|
|
135
|
-
position: absolute;
|
|
136
|
-
right: 0;
|
|
137
|
-
top: 0;
|
|
138
|
-
transform-origin: 100% 50%;
|
|
139
|
-
z-index: 15;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.modal-button:first-child {
|
|
143
|
-
border-radius: 0 0 0 .25rem;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.modal-button:last-child {
|
|
147
|
-
border-radius: 0 0 .25rem 0;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.modal-button.active-state,
|
|
151
|
-
html:not(.watch-active-state) .modal-button:active {
|
|
152
|
-
background: #d4d4d4;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.modal-buttons-vertical .modal-button {
|
|
156
|
-
border-radius: 0;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
.modal-no-buttons .modal-inner {
|
|
160
|
-
border-radius: .25rem;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.actions-modal {
|
|
164
|
-
-webkit-transform: translate3d(0, 100%, 0);
|
|
165
|
-
bottom: 0;
|
|
166
|
-
left: 0;
|
|
167
|
-
position: fixed;
|
|
168
|
-
transform: translate3d(0, 100%, 0);
|
|
169
|
-
width: 100%;
|
|
170
|
-
z-index: 11000;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.actions-modal.modal-in,
|
|
174
|
-
.actions-modal.modal-out {
|
|
175
|
-
-webkit-transition-duration: .3s;
|
|
176
|
-
transition-duration: .3s;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
.actions-modal.modal-out {
|
|
180
|
-
-webkit-transform: translate3d(0, 100%, 0);
|
|
181
|
-
transform: translate3d(0, 100%, 0);
|
|
182
|
-
z-index: 10999;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.actions-modal-group {
|
|
186
|
-
margin: .4rem;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
.actions-modal-button,
|
|
190
|
-
.actions-modal-label {
|
|
191
|
-
background: #fff;
|
|
192
|
-
box-sizing: border-box;
|
|
193
|
-
display: block;
|
|
194
|
-
font-weight: 400;
|
|
195
|
-
margin: 0;
|
|
196
|
-
position: relative;
|
|
197
|
-
text-align: center;
|
|
198
|
-
width: 100%;
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
.actions-modal-button::after,
|
|
202
|
-
.actions-modal-label::after {
|
|
203
|
-
-webkit-transform-origin: 50% 100%;
|
|
204
|
-
background-color: #d2d2d6;
|
|
205
|
-
bottom: 0;
|
|
206
|
-
content: '';
|
|
207
|
-
display: block;
|
|
208
|
-
height: 1px;
|
|
209
|
-
left: 0;
|
|
210
|
-
position: absolute;
|
|
211
|
-
right: auto;
|
|
212
|
-
top: auto;
|
|
213
|
-
transform-origin: 50% 100%;
|
|
214
|
-
width: 100%;
|
|
215
|
-
z-index: 15;
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
.actions-modal-button a,
|
|
219
|
-
.actions-modal-label a {
|
|
220
|
-
color: inherit;
|
|
221
|
-
text-decoration: none;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
.actions-modal-button.actions-modal-button-danger,
|
|
225
|
-
.actions-modal-button.color-danger,
|
|
226
|
-
.actions-modal-label.actions-modal-button-danger,
|
|
227
|
-
.actions-modal-label.color-danger {
|
|
228
|
-
color: #f6383a;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.actions-modal-button.bg-danger,
|
|
232
|
-
.actions-modal-label.bg-danger {
|
|
233
|
-
background: #f6383a;
|
|
234
|
-
color: #fff;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
.actions-modal-button.bg-danger:active,
|
|
238
|
-
.actions-modal-label.bg-danger:active {
|
|
239
|
-
background: #f00b0d;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
.actions-modal-button:first-child,
|
|
243
|
-
.actions-modal-label:first-child {
|
|
244
|
-
border-radius: .25rem .25rem 0 0;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.actions-modal-button:last-child,
|
|
248
|
-
.actions-modal-label:last-child {
|
|
249
|
-
border-radius: 0 0 .25rem .25rem;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.actions-modal-button:first-child:last-child,
|
|
253
|
-
.actions-modal-label:first-child:last-child {
|
|
254
|
-
border-radius: .25rem;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
.actions-modal-button.disabled,
|
|
258
|
-
.actions-modal-label.disabled {
|
|
259
|
-
color: #8e8e93;
|
|
260
|
-
opacity: .95;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
.actions-modal-button {
|
|
264
|
-
color: #333;
|
|
265
|
-
cursor: pointer;
|
|
266
|
-
font-size: 1rem;
|
|
267
|
-
line-height: 2.15rem;
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
.actions-modal-button.active-state,
|
|
271
|
-
.actions-modal-button:active {
|
|
272
|
-
background: #dcdcdc;
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
.actions-modal-label {
|
|
276
|
-
-webkit-box-align: center;
|
|
277
|
-
-webkit-box-pack: center;
|
|
278
|
-
align-items: center;
|
|
279
|
-
color: #999;
|
|
280
|
-
display: flex;
|
|
281
|
-
font-size: 1rem;
|
|
282
|
-
justify-content: center;
|
|
283
|
-
line-height: 1.3;
|
|
284
|
-
min-height: 2.2rem;
|
|
285
|
-
padding: .4rem .5rem;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
input.modal-text-input {
|
|
289
|
-
-moz-appearance: none;
|
|
290
|
-
-webkit-appearance: none;
|
|
291
|
-
appearance: none;
|
|
292
|
-
background: #fff;
|
|
293
|
-
border: 1px solid #a0a0a0;
|
|
294
|
-
border-radius: .25rem;
|
|
295
|
-
box-shadow: 0 0 0 transparent;
|
|
296
|
-
box-sizing: border-box;
|
|
297
|
-
display: block;
|
|
298
|
-
font-family: inherit;
|
|
299
|
-
font-size: .7rem;
|
|
300
|
-
height: 1.5rem;
|
|
301
|
-
margin: .75rem 0 0;
|
|
302
|
-
padding: 0 .25rem;
|
|
303
|
-
width: 100%;
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
input.modal-text-input.modal-text-input-double {
|
|
307
|
-
border-radius: .25rem .25rem 0 0;
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
input.modal-text-input.modal-text-input-double+input.modal-text-input {
|
|
311
|
-
border-radius: 0 0 .25rem .25rem;
|
|
312
|
-
border-top: 0;
|
|
313
|
-
margin-top: 0;
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
.login-screen,
|
|
317
|
-
.popup {
|
|
318
|
-
-webkit-overflow-scrolling: touch;
|
|
319
|
-
-webkit-transform: translate3d(0, 100%, 0);
|
|
320
|
-
-webkit-transition-property: 0;
|
|
321
|
-
background: #fff;
|
|
322
|
-
box-sizing: border-box;
|
|
323
|
-
display: none;
|
|
324
|
-
height: 100%;
|
|
325
|
-
left: 0;
|
|
326
|
-
overflow: auto;
|
|
327
|
-
position: absolute;
|
|
328
|
-
top: 0;
|
|
329
|
-
transform: translate3d(0, 100%, 0);
|
|
330
|
-
transition-property: transform;
|
|
331
|
-
width: 100%;
|
|
332
|
-
z-index: 10400;
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
.login-screen.modal-in,
|
|
336
|
-
.login-screen.modal-out {
|
|
337
|
-
display: block;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
html.with-statusbar-overlay .popup-overlay {
|
|
341
|
-
z-index: 9800;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
.modal .preloader {
|
|
345
|
-
height: 1.7rem;
|
|
346
|
-
width: 1.7rem;
|
|
347
|
-
margin: auto;
|
|
348
|
-
background: ;
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
.preloader-indicator-overlay {
|
|
352
|
-
background: 0 0;
|
|
353
|
-
opacity: 0;
|
|
354
|
-
visibility: visible;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
.preloader-indicator-modal {
|
|
358
|
-
background: rgba(17, 17, 17, 0.7);
|
|
359
|
-
border-radius: .25rem;
|
|
360
|
-
color: #FFF;
|
|
361
|
-
left: 50%;
|
|
362
|
-
margin-left: -1.25rem;
|
|
363
|
-
margin-top: -1.25rem;
|
|
364
|
-
padding: .4rem;
|
|
365
|
-
position: absolute;
|
|
366
|
-
top: 50%;
|
|
367
|
-
z-index: 11000;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
.preloader-indicator-modal .preloader {
|
|
371
|
-
display: block;
|
|
372
|
-
height: 1.7rem;
|
|
373
|
-
width: 1.7rem;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
.pull-right {
|
|
377
|
-
float: right;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
.modal-inner::after,
|
|
381
|
-
.modal-buttons-vertical .modal-button::after {
|
|
382
|
-
-webkit-transform-origin: 50% 100%;
|
|
383
|
-
background-color: #fff;
|
|
384
|
-
bottom: 0;
|
|
385
|
-
content: '';
|
|
386
|
-
display: block;
|
|
387
|
-
height: 1px;
|
|
388
|
-
left: 0;
|
|
389
|
-
position: absolute;
|
|
390
|
-
right: auto;
|
|
391
|
-
top: auto;
|
|
392
|
-
transform-origin: 50% 100%;
|
|
393
|
-
width: 100%;
|
|
394
|
-
z-index: 15;
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
.login-screen.modal-out,
|
|
398
|
-
.popup.modal-out,
|
|
399
|
-
.picker-modal.modal-out {
|
|
400
|
-
-webkit-transform: translate3d(0, 100%, 0);
|
|
401
|
-
transform: translate3d(0, 100%, 0);
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
html.with-statusbar-overlay .popup,
|
|
405
|
-
html.with-statusbar-overlay .login-screen,
|
|
406
|
-
html.with-statusbar-overlay .popup.tablet-fullscreen {
|
|
407
|
-
height: calc(100%-1rem);
|
|
408
|
-
top: 1rem;
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
.modal.modal-in {
|
|
412
|
-
width: calc(100% - 4rem);
|
|
413
|
-
-webkit-transform: translate3d(-50%, -50%, 0) scale(1);
|
|
414
|
-
opacity: 1;
|
|
415
|
-
transform: translate3d(-50%, -50%, 0) scale(1);
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
.modal.modal-out {
|
|
419
|
-
width: calc(100% - 4rem);
|
|
420
|
-
-webkit-transform: translate3d(-50%, 0, 0) scale(.815);
|
|
421
|
-
opacity: 0;
|
|
422
|
-
transform: translate3d(-50%, 0, 0) scale(.815);
|
|
423
|
-
z-index: 10999;
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
.modal-inner::after {
|
|
427
|
-
-webkit-transform-origin: 50% 100%;
|
|
428
|
-
background-color: #e5e5e5;
|
|
429
|
-
bottom: 0;
|
|
430
|
-
content: '';
|
|
431
|
-
display: block;
|
|
432
|
-
height: 1px;
|
|
433
|
-
left: 0;
|
|
434
|
-
position: absolute;
|
|
435
|
-
right: auto;
|
|
436
|
-
top: auto;
|
|
437
|
-
transform-origin: 50% 100%;
|
|
438
|
-
width: 100%;
|
|
439
|
-
z-index: 15;
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
.modal-button:first-child:last-child {
|
|
443
|
-
border-radius: 0 0 .25rem .25rem;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
.modal-button.modal-button-bold {
|
|
447
|
-
color: #0BB20C;
|
|
448
|
-
font-weight: 500;
|
|
449
|
-
}
|
|
450
|
-
|
|
451
|
-
.modal-buttons-vertical .modal-button::after {
|
|
452
|
-
-webkit-transform-origin: 50% 100%;
|
|
453
|
-
background-color: #b5b5b5;
|
|
454
|
-
bottom: 0;
|
|
455
|
-
content: '';
|
|
456
|
-
display: block;
|
|
457
|
-
height: 1px;
|
|
458
|
-
left: 0;
|
|
459
|
-
position: absolute;
|
|
460
|
-
right: auto;
|
|
461
|
-
top: auto;
|
|
462
|
-
transform-origin: 50% 100%;
|
|
463
|
-
width: 100%;
|
|
464
|
-
z-index: 15;
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
.pull-left {
|
|
468
|
-
float: left;
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
.modal.modal-in,
|
|
472
|
-
.modal.modal-out,
|
|
473
|
-
.login-screen.modal-in,
|
|
474
|
-
.login-screen.modal-out,
|
|
475
|
-
.popup.modal-in,
|
|
476
|
-
.popup.modal-out,
|
|
477
|
-
.picker-modal.modal-in,
|
|
478
|
-
.picker-modal.modal-out,
|
|
479
|
-
.modal.modal-in,
|
|
480
|
-
.modal.modal-out {
|
|
481
|
-
-webkit-transition-duration: .4s;
|
|
482
|
-
transition-duration: .4s;
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
.modal-title+.modal-text,
|
|
486
|
-
input.modal-text-input+input.modal-text-input,
|
|
487
|
-
.modal-title+.modal-text,
|
|
488
|
-
input.modal-text-input+input.modal-text-input {
|
|
489
|
-
margin-top: .25rem;
|
|
490
|
-
color: #666;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.modal-button:last-child::after,
|
|
494
|
-
.modal-buttons-vertical .modal-button::after,
|
|
495
|
-
.modal-buttons-vertical .modal-button::before,
|
|
496
|
-
.modal-buttons-vertical .modal-button:last-child::after,
|
|
497
|
-
.modal-no-buttons .modal-buttons,
|
|
498
|
-
.modal-no-buttons .modal-inner::after,
|
|
499
|
-
.actions-modal-button:last-child::after,
|
|
500
|
-
.actions-modal-label:last-child::after,
|
|
501
|
-
.picker-modal.picker-modal-inline .toolbar::before,
|
|
502
|
-
.picker-calendar-row:last-child::after,
|
|
503
|
-
.modal-button:last-child::after,
|
|
504
|
-
.modal-buttons-vertical .modal-button::after,
|
|
505
|
-
.modal-buttons-vertical .modal-button::before,
|
|
506
|
-
.modal-buttons-vertical .modal-button:last-child::after,
|
|
507
|
-
.modal-no-buttons .modal-buttons,
|
|
508
|
-
.modal-no-buttons .modal-inner::after,
|
|
509
|
-
.actions-modal-button:last-child::after,
|
|
510
|
-
.actions-modal-label:last-child::after {
|
|
511
|
-
display: none;
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
.modal-button:first-child:last-child,
|
|
515
|
-
.modal-buttons-vertical .modal-button:last-child,
|
|
516
|
-
.modal-buttons-vertical .modal-button:last-child {
|
|
517
|
-
border-radius: 0 0 .25rem .25rem;
|
|
518
|
-
}
|
|
519
|
-
|
|
520
|
-
.modal-button.modal-button-bold,
|
|
521
|
-
.actions-modal-button b,
|
|
522
|
-
.actions-modal-button.actions-modal-button-bold,
|
|
523
|
-
.actions-modal-label b,
|
|
524
|
-
.actions-modal-label.actions-modal-button-bold,
|
|
525
|
-
.actions-modal-button b,
|
|
526
|
-
.actions-modal-button.actions-modal-button-bold,
|
|
527
|
-
.actions-modal-label b,
|
|
528
|
-
.actions-modal-label.actions-modal-button-bold {
|
|
529
|
-
font-weight: 500;
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
.actions-modal.modal-in,
|
|
533
|
-
.login-screen.modal-in,
|
|
534
|
-
.popup.modal-in,
|
|
535
|
-
.picker-modal.modal-in,
|
|
536
|
-
.actions-modal.modal-in {
|
|
537
|
-
-webkit-transform: translate3d(0, 0, 0);
|
|
538
|
-
transform: translate3d(0, 0, 0);
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
@media only screen and -webkit-min-device-pixel-ratio2 {
|
|
542
|
-
|
|
543
|
-
.modal-inner::after,
|
|
544
|
-
.modal-button::after,
|
|
545
|
-
.modal-buttons-vertical .modal-button::after,
|
|
546
|
-
.actions-modal-button::after,
|
|
547
|
-
.actions-modal-label::after,
|
|
548
|
-
.picker-modal .toolbar::before,
|
|
549
|
-
.picker-modal.picker-modal-inline .toolbar::after,
|
|
550
|
-
.picker-calendar-week-days::after,
|
|
551
|
-
.picker-calendar-row::after,
|
|
552
|
-
.picker-center-highlight::before,
|
|
553
|
-
.picker-center-highlight::after,
|
|
554
|
-
.picker-modal .bar::before,
|
|
555
|
-
.picker-modal .bar::after {
|
|
556
|
-
-webkit-transform: scaleY(.5);
|
|
557
|
-
transform: scaleY(.5);
|
|
558
|
-
}
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
@media only screen and -webkit-min-device-pixel-ratio3 {
|
|
562
|
-
|
|
563
|
-
.modal-inner::after,
|
|
564
|
-
.modal-button::after,
|
|
565
|
-
.modal-buttons-vertical .modal-button::after,
|
|
566
|
-
.actions-modal-button::after,
|
|
567
|
-
.actions-modal-label::after,
|
|
568
|
-
.picker-modal .toolbar::before,
|
|
569
|
-
.picker-modal.picker-modal-inline .toolbar::after,
|
|
570
|
-
.picker-calendar-week-days::after,
|
|
571
|
-
.picker-calendar-row::after,
|
|
572
|
-
.picker-center-highlight::before,
|
|
573
|
-
.picker-center-highlight::after,
|
|
574
|
-
.picker-modal .bar::before,
|
|
575
|
-
.picker-modal .bar::after {
|
|
576
|
-
-webkit-transform: scaleY(.33);
|
|
577
|
-
transform: scaleY(.33);
|
|
578
|
-
}
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
@media max-height629px,
|
|
582
|
-
all and max-width629px {
|
|
583
|
-
html.with-statusbar-overlay .popup {
|
|
584
|
-
height: calc(100%-1rem);
|
|
585
|
-
top: 1rem;
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
html.with-statusbar-overlay .popup-overlay {
|
|
589
|
-
z-index: 9800;
|
|
590
|
-
}
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
@media orientationlandscape and max-height415px {
|
|
594
|
-
.picker-calendar:not(.picker-modal-inline) {
|
|
595
|
-
height: 220px;
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
.picker-columns:not(.picker-modal-inline) {
|
|
599
|
-
height: 10rem;
|
|
600
|
-
}
|
|
601
|
-
}
|
|
602
|
-
|
|
603
|
-
@media only screen and -webkit-min-device-pixel-ratio2 {
|
|
604
|
-
|
|
605
|
-
.modal-inner::after,
|
|
606
|
-
.modal-button::after,
|
|
607
|
-
.modal-buttons-vertical .modal-button::after,
|
|
608
|
-
.actions-modal-button::after,
|
|
609
|
-
.actions-modal-label::after {
|
|
610
|
-
-webkit-transform: scaleY(.5);
|
|
611
|
-
transform: scaleY(.5);
|
|
612
|
-
}
|
|
613
|
-
}
|
|
614
|
-
|
|
615
|
-
@media only screen and -webkit-min-device-pixel-ratio3 {
|
|
616
|
-
|
|
617
|
-
.modal-inner::after,
|
|
618
|
-
.modal-button::after,
|
|
619
|
-
.modal-buttons-vertical .modal-button::after,
|
|
620
|
-
.actions-modal-button::after,
|
|
621
|
-
.actions-modal-label::after {
|
|
622
|
-
-webkit-transform: scaleY(.33);
|
|
623
|
-
transform: scaleY(.33);
|
|
624
|
-
}
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
.toast {
|
|
628
|
-
top: 40%;
|
|
629
|
-
padding: 0.75rem 1.5rem;
|
|
630
|
-
min-width: 5rem;
|
|
631
|
-
background: rgba(66, 66, 66, 0.95);
|
|
632
|
-
color: #fff;
|
|
633
|
-
width: auto !important;
|
|
634
|
-
}
|