purgetss 3.0.4 → 3.1.2
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/.editorconfig +1 -1
- package/README.md +3 -3
- package/assets/fonts/bootstrap-icons.ttf +0 -0
- package/assets/fonts/tabler-icons.ttf +0 -0
- package/assets/images/blend-modes.png +0 -0
- package/assets/images/shadow.png +0 -0
- package/bin/purgetss +6 -5
- package/dist/bootstrapicons.js +1714 -0
- package/dist/bootstrapicons.tss +1692 -0
- package/dist/tablericons.js +95 -1
- package/dist/tablericons.tss +94 -0
- package/dist/tailwind.tss +3242 -411
- package/docs/configuring-guide.md +18 -5
- package/docs/glossary.md +3 -4
- package/docs/new-glossary.md +8313 -0
- package/docs/whats-new/v2.5.0.md +6 -6
- package/docs/whats-new/v3.0.4.md +7 -6
- package/docs/whats-new/v3.0.5.md +136 -0
- package/docs/whats-new/v3.1.0.md +614 -0
- package/docs/whats-new/v3.1.1.md +262 -0
- package/index.js +397 -246
- package/lib/build-bootstrap-icons-js.js +64 -0
- package/lib/build-bootstrap-icons-tss.js +50 -0
- package/lib/build-fonts-folder.js +7 -0
- package/lib/build-tailwind.js +78 -16
- package/lib/helpers.js +2027 -764
- package/lib/templates/bootstrap-icons/bootstrap-icons.css +1705 -0
- package/lib/templates/bootstrap-icons/bootstrap-icons.ttf +0 -0
- package/lib/templates/bootstrap-icons/reset.tss +6 -0
- package/lib/templates/bootstrap-icons/template.js +4 -0
- package/lib/templates/bootstrap-icons/template.tss +2 -0
- package/lib/templates/custom-template.tss +1 -1
- package/lib/templates/tablericons/template.js +1 -1
- package/lib/templates/tailwind/custom-template.tss +1 -1
- package/lib/templates/tailwind/template.tss +1 -1
- package/lib/test-function.js +9 -0
- package/package.json +8 -5
- package/purgetss.config.js +950 -0
package/dist/tailwind.tss
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Tailwind CSS v3.0.
|
|
1
|
+
// Tailwind CSS v3.0.18: A utility-first CSS framework for rapidly building custom designs. ( https://tailwindcss.com )
|
|
2
2
|
// Created by Adam Wathan ( https://twitter.com/adamwathan ).
|
|
3
3
|
|
|
4
4
|
// Custom Styles and Resets
|
|
@@ -6,7 +6,13 @@
|
|
|
6
6
|
'View': { width: Ti.UI.SIZE, height: Ti.UI.SIZE }
|
|
7
7
|
'Window': { backgroundColor: '#ffffff' }
|
|
8
8
|
|
|
9
|
-
//
|
|
9
|
+
// Component(s): Ti.UI.Tab
|
|
10
|
+
// Property(ies): activeIconIsMask - iOS Only
|
|
11
|
+
'.active-icon-is-mask[platform=ios]': { activeIconIsMask: true }
|
|
12
|
+
'.active-icon-is-not-mask[platform=ios]': { activeIconIsMask: false }
|
|
13
|
+
|
|
14
|
+
// Component(s): Ti.UI.Tab, Ti.UI.TabGroup
|
|
15
|
+
// Property(ies): activeTintColor
|
|
10
16
|
'.active-tint-transparent': { activeTintColor: 'transparent' }
|
|
11
17
|
'.active-tint-black': { activeTintColor: '#000000' }
|
|
12
18
|
'.active-tint-white': { activeTintColor: '#ffffff' }
|
|
@@ -231,7 +237,8 @@
|
|
|
231
237
|
'.active-tint-rose-800': { activeTintColor: '#9f1239' }
|
|
232
238
|
'.active-tint-rose-900': { activeTintColor: '#881337' }
|
|
233
239
|
|
|
234
|
-
//
|
|
240
|
+
// Component(s): Ti.UI.Tab, Ti.UI.TabGroup
|
|
241
|
+
// Property(ies): activeTitleColor
|
|
235
242
|
'.active-title-transparent': { activeTitleColor: 'transparent' }
|
|
236
243
|
'.active-title-black': { activeTitleColor: '#000000' }
|
|
237
244
|
'.active-title-white': { activeTitleColor: '#ffffff' }
|
|
@@ -456,17 +463,112 @@
|
|
|
456
463
|
'.active-title-rose-800': { activeTitleColor: '#9f1239' }
|
|
457
464
|
'.active-title-rose-900': { activeTitleColor: '#881337' }
|
|
458
465
|
|
|
459
|
-
//
|
|
466
|
+
// Component(s): Ti.UI.Window
|
|
467
|
+
// Property(ies): activityEnterTransition - Android Only
|
|
468
|
+
'.activity-enter-transition-explode[platform=android]': { activityEnterTransition: Ti.UI.Android.TRANSITION_EXPLODE }
|
|
469
|
+
'.activity-enter-transition-fade-in[platform=android]': { activityEnterTransition: Ti.UI.Android.TRANSITION_FADE_IN }
|
|
470
|
+
'.activity-enter-transition-fade-out[platform=android]': { activityEnterTransition: Ti.UI.Android.TRANSITION_FADE_OUT }
|
|
471
|
+
'.activity-enter-transition-none[platform=android]': { activityEnterTransition: Ti.UI.Android.TRANSITION_NONE }
|
|
472
|
+
'.activity-enter-transition-slide-bottom[platform=android]': { activityEnterTransition: Ti.UI.Android.TRANSITION_SLIDE_BOTTOM }
|
|
473
|
+
'.activity-enter-transition-slide-left[platform=android]': { activityEnterTransition: Ti.UI.Android.TRANSITION_SLIDE_LEFT }
|
|
474
|
+
'.activity-enter-transition-slide-right[platform=android]': { activityEnterTransition: Ti.UI.Android.TRANSITION_SLIDE_RIGHT }
|
|
475
|
+
'.activity-enter-transition-slide-top[platform=android]': { activityEnterTransition: Ti.UI.Android.TRANSITION_SLIDE_TOP }
|
|
476
|
+
|
|
477
|
+
// Component(s): Ti.UI.Window
|
|
478
|
+
// Property(ies): activityExitTransition - Android Only
|
|
479
|
+
'.activity-exit-transition-explode[platform=android]': { activityExitTransition: Ti.UI.Android.TRANSITION_EXPLODE }
|
|
480
|
+
'.activity-exit-transition-fade-in[platform=android]': { activityExitTransition: Ti.UI.Android.TRANSITION_FADE_IN }
|
|
481
|
+
'.activity-exit-transition-fade-out[platform=android]': { activityExitTransition: Ti.UI.Android.TRANSITION_FADE_OUT }
|
|
482
|
+
'.activity-exit-transition-none[platform=android]': { activityExitTransition: Ti.UI.Android.TRANSITION_NONE }
|
|
483
|
+
'.activity-exit-transition-slide-bottom[platform=android]': { activityExitTransition: Ti.UI.Android.TRANSITION_SLIDE_BOTTOM }
|
|
484
|
+
'.activity-exit-transition-slide-left[platform=android]': { activityExitTransition: Ti.UI.Android.TRANSITION_SLIDE_LEFT }
|
|
485
|
+
'.activity-exit-transition-slide-right[platform=android]': { activityExitTransition: Ti.UI.Android.TRANSITION_SLIDE_RIGHT }
|
|
486
|
+
'.activity-exit-transition-slide-top[platform=android]': { activityExitTransition: Ti.UI.Android.TRANSITION_SLIDE_TOP }
|
|
487
|
+
|
|
488
|
+
// Component(s): Ti.UI.ActivityIndicator
|
|
489
|
+
// Property(ies): style
|
|
490
|
+
'.activity-indicator-style-big': { style: Ti.UI.ActivityIndicatorStyle.BIG }
|
|
491
|
+
'.activity-indicator-style-dark': { style: Ti.UI.ActivityIndicatorStyle.DARK }
|
|
492
|
+
'.activity-indicator-style-big-dark': { style: Ti.UI.ActivityIndicatorStyle.BIG_DARK }
|
|
493
|
+
'.activity-indicator-style-plain': { style: Ti.UI.ActivityIndicatorStyle.PLAIN }
|
|
494
|
+
|
|
495
|
+
// Component(s): Ti.UI.Window
|
|
496
|
+
// Property(ies): activityReenterTransition - Android Only
|
|
497
|
+
'.activity-reenter-transition-explode[platform=android]': { activityReenterTransition: Ti.UI.Android.TRANSITION_EXPLODE }
|
|
498
|
+
'.activity-reenter-transition-fade-in[platform=android]': { activityReenterTransition: Ti.UI.Android.TRANSITION_FADE_IN }
|
|
499
|
+
'.activity-reenter-transition-fade-out[platform=android]': { activityReenterTransition: Ti.UI.Android.TRANSITION_FADE_OUT }
|
|
500
|
+
'.activity-reenter-transition-none[platform=android]': { activityReenterTransition: Ti.UI.Android.TRANSITION_NONE }
|
|
501
|
+
'.activity-reenter-transition-slide-bottom[platform=android]': { activityReenterTransition: Ti.UI.Android.TRANSITION_SLIDE_BOTTOM }
|
|
502
|
+
'.activity-reenter-transition-slide-left[platform=android]': { activityReenterTransition: Ti.UI.Android.TRANSITION_SLIDE_LEFT }
|
|
503
|
+
'.activity-reenter-transition-slide-right[platform=android]': { activityReenterTransition: Ti.UI.Android.TRANSITION_SLIDE_RIGHT }
|
|
504
|
+
'.activity-reenter-transition-slide-top[platform=android]': { activityReenterTransition: Ti.UI.Android.TRANSITION_SLIDE_TOP }
|
|
505
|
+
|
|
506
|
+
// Component(s): Ti.UI.Window
|
|
507
|
+
// Property(ies): activityReturnTransition - Android Only
|
|
508
|
+
'.activity-return-transition-explode[platform=android]': { activityReturnTransition: Ti.UI.Android.TRANSITION_EXPLODE }
|
|
509
|
+
'.activity-return-transition-fade-in[platform=android]': { activityReturnTransition: Ti.UI.Android.TRANSITION_FADE_IN }
|
|
510
|
+
'.activity-return-transition-fade-out[platform=android]': { activityReturnTransition: Ti.UI.Android.TRANSITION_FADE_OUT }
|
|
511
|
+
'.activity-return-transition-none[platform=android]': { activityReturnTransition: Ti.UI.Android.TRANSITION_NONE }
|
|
512
|
+
'.activity-return-transition-slide-bottom[platform=android]': { activityReturnTransition: Ti.UI.Android.TRANSITION_SLIDE_BOTTOM }
|
|
513
|
+
'.activity-return-transition-slide-left[platform=android]': { activityReturnTransition: Ti.UI.Android.TRANSITION_SLIDE_LEFT }
|
|
514
|
+
'.activity-return-transition-slide-right[platform=android]': { activityReturnTransition: Ti.UI.Android.TRANSITION_SLIDE_RIGHT }
|
|
515
|
+
'.activity-return-transition-slide-top[platform=android]': { activityReturnTransition: Ti.UI.Android.TRANSITION_SLIDE_TOP }
|
|
516
|
+
|
|
517
|
+
// Component(s): Ti.UI.Window
|
|
518
|
+
// Property(ies): activitySharedElementEnterTransition - Android Only
|
|
519
|
+
'.activity-shared-element-enter-transition-change-bounds[platform=android]': { activitySharedElementEnterTransition: Ti.UI.Android.TRANSITION_CHANGE_BOUNDS }
|
|
520
|
+
'.activity-shared-element-enter-transition-change-clip-bounds[platform=android]': { activitySharedElementEnterTransition: Ti.UI.Android.TRANSITION_CHANGE_CLIP_BOUNDS }
|
|
521
|
+
'.activity-shared-element-enter-transition-change-transform[platform=android]': { activitySharedElementEnterTransition: Ti.UI.Android.TRANSITION_CHANGE_TRANSFORM }
|
|
522
|
+
'.activity-shared-element-enter-transition-change-image-transform[platform=android]': { activitySharedElementEnterTransition: Ti.UI.Android.TRANSITION_CHANGE_IMAGE_TRANSFORM }
|
|
523
|
+
'.activity-shared-element-enter-transition-none[platform=android]': { activitySharedElementEnterTransition: Ti.UI.Android.TRANSITION_NONE }
|
|
524
|
+
|
|
525
|
+
// Component(s): Ti.UI.Window
|
|
526
|
+
// Property(ies): activitySharedElementExitTransition - Android Only
|
|
527
|
+
'.activity-shared-element-exit-transition-change-bounds[platform=android]': { activitySharedElementExitTransition: Ti.UI.Android.TRANSITION_CHANGE_BOUNDS }
|
|
528
|
+
'.activity-shared-element-exit-transition-change-clip-bounds[platform=android]': { activitySharedElementExitTransition: Ti.UI.Android.TRANSITION_CHANGE_CLIP_BOUNDS }
|
|
529
|
+
'.activity-shared-element-exit-transition-change-transform[platform=android]': { activitySharedElementExitTransition: Ti.UI.Android.TRANSITION_CHANGE_TRANSFORM }
|
|
530
|
+
'.activity-shared-element-exit-transition-change-image-transform[platform=android]': { activitySharedElementExitTransition: Ti.UI.Android.TRANSITION_CHANGE_IMAGE_TRANSFORM }
|
|
531
|
+
'.activity-shared-element-exit-transition-none[platform=android]': { activitySharedElementExitTransition: Ti.UI.Android.TRANSITION_NONE }
|
|
532
|
+
|
|
533
|
+
// Component(s): Ti.UI.Window
|
|
534
|
+
// Property(ies): activitySharedElementReenterTransition - Android Only
|
|
535
|
+
'.activity-shared-element-reenter-transition-change-bounds[platform=android]': { activitySharedElementReenterTransition: Ti.UI.Android.TRANSITION_CHANGE_BOUNDS }
|
|
536
|
+
'.activity-shared-element-reenter-transition-change-clip-bounds[platform=android]': { activitySharedElementReenterTransition: Ti.UI.Android.TRANSITION_CHANGE_CLIP_BOUNDS }
|
|
537
|
+
'.activity-shared-element-reenter-transition-change-transform[platform=android]': { activitySharedElementReenterTransition: Ti.UI.Android.TRANSITION_CHANGE_TRANSFORM }
|
|
538
|
+
'.activity-shared-element-reenter-transition-change-image-transform[platform=android]': { activitySharedElementReenterTransition: Ti.UI.Android.TRANSITION_CHANGE_IMAGE_TRANSFORM }
|
|
539
|
+
'.activity-shared-element-reenter-transition-none[platform=android]': { activitySharedElementReenterTransition: Ti.UI.Android.TRANSITION_NONE }
|
|
540
|
+
|
|
541
|
+
// Component(s): Ti.UI.Window
|
|
542
|
+
// Property(ies): activitySharedElementReturnTransition - Android Only
|
|
543
|
+
'.activity-shared-element-return-transition-change-bounds[platform=android]': { activitySharedElementReturnTransition: Ti.UI.Android.TRANSITION_CHANGE_BOUNDS }
|
|
544
|
+
'.activity-shared-element-return-transition-change-clip-bounds[platform=android]': { activitySharedElementReturnTransition: Ti.UI.Android.TRANSITION_CHANGE_CLIP_BOUNDS }
|
|
545
|
+
'.activity-shared-element-return-transition-change-transform[platform=android]': { activitySharedElementReturnTransition: Ti.UI.Android.TRANSITION_CHANGE_TRANSFORM }
|
|
546
|
+
'.activity-shared-element-return-transition-change-image-transform[platform=android]': { activitySharedElementReturnTransition: Ti.UI.Android.TRANSITION_CHANGE_IMAGE_TRANSFORM }
|
|
547
|
+
'.activity-shared-element-return-transition-none[platform=android]': { activitySharedElementReturnTransition: Ti.UI.Android.TRANSITION_NONE }
|
|
548
|
+
|
|
549
|
+
// Component(s): Ti.UI.TabGroup
|
|
550
|
+
// Property(ies): allowUserCustomization - iOS Only
|
|
551
|
+
'.allow-user-customization[platform=ios]': { allowUserCustomization: true }
|
|
552
|
+
'.dont-allow-user-customization[platform=ios]': { allowUserCustomization: false }
|
|
553
|
+
|
|
554
|
+
// Component(s): Ti.UI.Window
|
|
555
|
+
// Property(ies): autoAdjustScrollViewInsets - iOS Only
|
|
556
|
+
'.auto-adjust-scroll-view-inset[platform=ios]': { autoAdjustScrollViewInsets: true }
|
|
557
|
+
|
|
558
|
+
// Component(s): Ti.UI.SearchBar, Ti.UI.TextArea, Ti.UI.TextField
|
|
559
|
+
// Property(ies): autocapitalization
|
|
460
560
|
'.uppercase': { autocapitalization: Ti.UI.TEXT_AUTOCAPITALIZATION_ALL }
|
|
461
561
|
'.normal-case': { autocapitalization: Ti.UI.TEXT_AUTOCAPITALIZATION_NONE }
|
|
462
562
|
'.capitalize': { autocapitalization: Ti.UI.TEXT_AUTOCAPITALIZATION_WORDS }
|
|
463
563
|
'.sentences': { autocapitalization: Ti.UI.TEXT_AUTOCAPITALIZATION_SENTENCES }
|
|
464
564
|
|
|
465
|
-
//
|
|
565
|
+
// Component(s): Ti.UI.SearchBar, Ti.UI.TextArea, Ti.UI.TextField
|
|
566
|
+
// Property(ies): autocorrect
|
|
466
567
|
'.autocorrect': { autocorrect: true }
|
|
467
568
|
'.no-autocorrect': { autocorrect: false }
|
|
468
569
|
|
|
469
|
-
//
|
|
570
|
+
// Component(s): Ti.UI.TextArea, Ti.UI.TextField
|
|
571
|
+
// Property(ies): autofillType
|
|
470
572
|
'.autofill-type-url': { autofillType: Ti.UI.AUTOFILL_TYPE_URL }
|
|
471
573
|
'.autofill-type-name': { autofillType: Ti.UI.AUTOFILL_TYPE_NAME }
|
|
472
574
|
'.autofill-type-phone': { autofillType: Ti.UI.AUTOFILL_TYPE_PHONE }
|
|
@@ -500,20 +602,53 @@
|
|
|
500
602
|
'.autofill-type-card-expiration-year': { autofillType: Ti.UI.AUTOFILL_TYPE_CARD_EXPIRATION_YEAR }
|
|
501
603
|
'.autofill-type-card-expiration-month': { autofillType: Ti.UI.AUTOFILL_TYPE_CARD_EXPIRATION_MONTH }
|
|
502
604
|
|
|
503
|
-
//
|
|
504
|
-
|
|
505
|
-
'.
|
|
506
|
-
'.
|
|
507
|
-
'.
|
|
508
|
-
'.
|
|
509
|
-
'.
|
|
510
|
-
'.
|
|
605
|
+
// Component(s): Ti.UI.Label, Ti.UI.TextArea, Ti.UI.TextField
|
|
606
|
+
// Property(ies): autoLink
|
|
607
|
+
'.auto-link-all': { autoLink: Ti.UI.AUTOLINK_ALL }
|
|
608
|
+
'.auto-link-email-addresses': { autoLink: Ti.UI.AUTOLINK_EMAIL_ADDRESSES }
|
|
609
|
+
'.auto-link-map-addresses': { autoLink: Ti.UI.AUTOLINK_MAP_ADDRESSES }
|
|
610
|
+
'.auto-link-none': { autoLink: Ti.UI.AUTOLINK_NONE }
|
|
611
|
+
'.auto-link-phone-numbers': { autoLink: Ti.UI.AUTOLINK_PHONE_NUMBERS }
|
|
612
|
+
'.auto-link-urls': { autoLink: Ti.UI.AUTOLINK_URLS }
|
|
613
|
+
'.auto-link-calendar[platform=ios]': { autoLink: Ti.UI.AUTOLINK_CALENDAR }
|
|
511
614
|
|
|
512
|
-
//
|
|
615
|
+
// Component(s): Ti.UI.Animation
|
|
616
|
+
// Property(ies): autoreverse
|
|
513
617
|
'.autoreverse': { autoreverse: true }
|
|
514
|
-
'.no-autoreverse': { autoreverse: false }
|
|
515
618
|
|
|
516
|
-
//
|
|
619
|
+
// Component(s): Ti.UI.MaskedImage
|
|
620
|
+
// Property(ies): mode ( Background Blend Mode )
|
|
621
|
+
'.bg-blend-clear': { mode: Ti.UI.BLEND_MODE_CLEAR }
|
|
622
|
+
'.bg-blend-copy': { mode: Ti.UI.BLEND_MODE_COPY }
|
|
623
|
+
'.bg-blend-darken': { mode: Ti.UI.BLEND_MODE_DARKEN }
|
|
624
|
+
'.bg-blend-destination-atop': { mode: Ti.UI.BLEND_MODE_DESTINATION_ATOP }
|
|
625
|
+
'.bg-blend-destination-in': { mode: Ti.UI.BLEND_MODE_DESTINATION_IN }
|
|
626
|
+
'.bg-blend-destination-out': { mode: Ti.UI.BLEND_MODE_DESTINATION_OUT }
|
|
627
|
+
'.bg-blend-destination-over': { mode: Ti.UI.BLEND_MODE_DESTINATION_OVER }
|
|
628
|
+
'.bg-blend-lighten': { mode: Ti.UI.BLEND_MODE_LIGHTEN }
|
|
629
|
+
'.bg-blend-multiply': { mode: Ti.UI.BLEND_MODE_MULTIPLY }
|
|
630
|
+
'.bg-blend-normal': { mode: Ti.UI.BLEND_MODE_NORMAL }
|
|
631
|
+
'.bg-blend-overlay': { mode: Ti.UI.BLEND_MODE_OVERLAY }
|
|
632
|
+
'.bg-blend-plus-lighter': { mode: Ti.UI.BLEND_MODE_PLUS_LIGHTER }
|
|
633
|
+
'.bg-blend-screen': { mode: Ti.UI.BLEND_MODE_SCREEN }
|
|
634
|
+
'.bg-blend-source-atop': { mode: Ti.UI.BLEND_MODE_SOURCE_ATOP }
|
|
635
|
+
'.bg-blend-source-in': { mode: Ti.UI.BLEND_MODE_SOURCE_IN }
|
|
636
|
+
'.bg-blend-source-out': { mode: Ti.UI.BLEND_MODE_SOURCE_OUT }
|
|
637
|
+
'.bg-blend-xor': { mode: Ti.UI.BLEND_MODE_XOR }
|
|
638
|
+
'.bg-blend-color[platform=ios]': { mode: Ti.UI.BLEND_MODE_COLOR }
|
|
639
|
+
'.bg-blend-color-burn[platform=ios]': { mode: Ti.UI.BLEND_MODE_COLOR_BURN }
|
|
640
|
+
'.bg-blend-color-dodge[platform=ios]': { mode: Ti.UI.BLEND_MODE_COLOR_DODGE }
|
|
641
|
+
'.bg-blend-diference[platform=ios]': { mode: Ti.UI.BLEND_MODE_DIFFERENCE }
|
|
642
|
+
'.bg-blend-exclusion[platform=ios]': { mode: Ti.UI.BLEND_MODE_EXCLUSION }
|
|
643
|
+
'.bg-blend-hard-light[platform=ios]': { mode: Ti.UI.BLEND_MODE_HARD_LIGHT }
|
|
644
|
+
'.bg-blend-hue[platform=ios]': { mode: Ti.UI.BLEND_MODE_HUE }
|
|
645
|
+
'.bg-blend-luminosity[platform=ios]': { mode: Ti.UI.BLEND_MODE_LUMINOSITY }
|
|
646
|
+
'.bg-blend-plus-darker[platform=ios]': { mode: Ti.UI.BLEND_MODE_PLUS_DARKER }
|
|
647
|
+
'.bg-blend-saturation[platform=ios]': { mode: Ti.UI.BLEND_MODE_SATURATION }
|
|
648
|
+
'.bg-blend-soft-light[platform=ios]': { mode: Ti.UI.BLEND_MODE_SOFT_LIGHT }
|
|
649
|
+
|
|
650
|
+
// Component(s): Ti.UI, Ti.UI.Android.CardView, Ti.UI.Animation, Ti.UI.iPad.Popover, Ti.UI.ListItem, Ti.UI.Picker, Ti.UI.Tab, Ti.UI.TableView, Ti.UI.View, Ti.UI.Window
|
|
651
|
+
// Property(ies): backgroundColor
|
|
517
652
|
'.bg-transparent': { backgroundColor: 'transparent' }
|
|
518
653
|
'.bg-black': { backgroundColor: '#000000' }
|
|
519
654
|
'.bg-white': { backgroundColor: '#ffffff' }
|
|
@@ -738,7 +873,8 @@
|
|
|
738
873
|
'.bg-rose-800': { backgroundColor: '#9f1239' }
|
|
739
874
|
'.bg-rose-900': { backgroundColor: '#881337' }
|
|
740
875
|
|
|
741
|
-
//
|
|
876
|
+
// Component(s): Ti.UI.Button, Ti.UI.ListItem, Ti.UI.TableViewRow, Ti.UI.View
|
|
877
|
+
// Property(ies): backgroundSelectedColor
|
|
742
878
|
'.bg-selected-transparent': { backgroundSelectedColor: 'transparent' }
|
|
743
879
|
'.bg-selected-black': { backgroundSelectedColor: '#000000' }
|
|
744
880
|
'.bg-selected-white': { backgroundSelectedColor: '#ffffff' }
|
|
@@ -963,7 +1099,8 @@
|
|
|
963
1099
|
'.bg-selected-rose-800': { backgroundSelectedColor: '#9f1239' }
|
|
964
1100
|
'.bg-selected-rose-900': { backgroundSelectedColor: '#881337' }
|
|
965
1101
|
|
|
966
|
-
//
|
|
1102
|
+
// Component(s): Ti.UI.EmailDialog, Ti.UI.SearchBar, Ti.UI.TabGroup, Ti.UI.Toolbar, Ti.UI.Window
|
|
1103
|
+
// Property(ies): barColor
|
|
967
1104
|
'.bar-transparent': { barColor: 'transparent' }
|
|
968
1105
|
'.bar-black': { barColor: '#000000' }
|
|
969
1106
|
'.bar-white': { barColor: '#ffffff' }
|
|
@@ -1188,7 +1325,471 @@
|
|
|
1188
1325
|
'.bar-rose-800': { barColor: '#9f1239' }
|
|
1189
1326
|
'.bar-rose-900': { barColor: '#881337' }
|
|
1190
1327
|
|
|
1191
|
-
//
|
|
1328
|
+
// Component(s): Ti.UI.TabGroup, Ti.UI.Window
|
|
1329
|
+
// Property(ies): titleAttributes
|
|
1330
|
+
'.bar-title-transparent[platform=ios]': { titleAttributes: { color: 'transparent' } }
|
|
1331
|
+
'.bar-title-black[platform=ios]': { titleAttributes: { color: '#000000' } }
|
|
1332
|
+
'.bar-title-white[platform=ios]': { titleAttributes: { color: '#ffffff' } }
|
|
1333
|
+
'.bar-title-slate-50[platform=ios]': { titleAttributes: { color: '#f8fafc' } }
|
|
1334
|
+
'.bar-title-slate-100[platform=ios]': { titleAttributes: { color: '#f1f5f9' } }
|
|
1335
|
+
'.bar-title-slate-200[platform=ios]': { titleAttributes: { color: '#e2e8f0' } }
|
|
1336
|
+
'.bar-title-slate-300[platform=ios]': { titleAttributes: { color: '#cbd5e1' } }
|
|
1337
|
+
'.bar-title-slate-400[platform=ios]': { titleAttributes: { color: '#94a3b8' } }
|
|
1338
|
+
'.bar-title-slate-500[platform=ios]': { titleAttributes: { color: '#64748b' } }
|
|
1339
|
+
'.bar-title-slate-600[platform=ios]': { titleAttributes: { color: '#475569' } }
|
|
1340
|
+
'.bar-title-slate-700[platform=ios]': { titleAttributes: { color: '#334155' } }
|
|
1341
|
+
'.bar-title-slate-800[platform=ios]': { titleAttributes: { color: '#1e293b' } }
|
|
1342
|
+
'.bar-title-slate-900[platform=ios]': { titleAttributes: { color: '#0f172a' } }
|
|
1343
|
+
'.bar-title-gray-50[platform=ios]': { titleAttributes: { color: '#f9fafb' } }
|
|
1344
|
+
'.bar-title-gray-100[platform=ios]': { titleAttributes: { color: '#f3f4f6' } }
|
|
1345
|
+
'.bar-title-gray-200[platform=ios]': { titleAttributes: { color: '#e5e7eb' } }
|
|
1346
|
+
'.bar-title-gray-300[platform=ios]': { titleAttributes: { color: '#d1d5db' } }
|
|
1347
|
+
'.bar-title-gray-400[platform=ios]': { titleAttributes: { color: '#9ca3af' } }
|
|
1348
|
+
'.bar-title-gray-500[platform=ios]': { titleAttributes: { color: '#6b7280' } }
|
|
1349
|
+
'.bar-title-gray-600[platform=ios]': { titleAttributes: { color: '#4b5563' } }
|
|
1350
|
+
'.bar-title-gray-700[platform=ios]': { titleAttributes: { color: '#374151' } }
|
|
1351
|
+
'.bar-title-gray-800[platform=ios]': { titleAttributes: { color: '#1f2937' } }
|
|
1352
|
+
'.bar-title-gray-900[platform=ios]': { titleAttributes: { color: '#111827' } }
|
|
1353
|
+
'.bar-title-zinc-50[platform=ios]': { titleAttributes: { color: '#fafafa' } }
|
|
1354
|
+
'.bar-title-zinc-100[platform=ios]': { titleAttributes: { color: '#f4f4f5' } }
|
|
1355
|
+
'.bar-title-zinc-200[platform=ios]': { titleAttributes: { color: '#e4e4e7' } }
|
|
1356
|
+
'.bar-title-zinc-300[platform=ios]': { titleAttributes: { color: '#d4d4d8' } }
|
|
1357
|
+
'.bar-title-zinc-400[platform=ios]': { titleAttributes: { color: '#a1a1aa' } }
|
|
1358
|
+
'.bar-title-zinc-500[platform=ios]': { titleAttributes: { color: '#71717a' } }
|
|
1359
|
+
'.bar-title-zinc-600[platform=ios]': { titleAttributes: { color: '#52525b' } }
|
|
1360
|
+
'.bar-title-zinc-700[platform=ios]': { titleAttributes: { color: '#3f3f46' } }
|
|
1361
|
+
'.bar-title-zinc-800[platform=ios]': { titleAttributes: { color: '#27272a' } }
|
|
1362
|
+
'.bar-title-zinc-900[platform=ios]': { titleAttributes: { color: '#18181b' } }
|
|
1363
|
+
'.bar-title-neutral-50[platform=ios]': { titleAttributes: { color: '#fafafa' } }
|
|
1364
|
+
'.bar-title-neutral-100[platform=ios]': { titleAttributes: { color: '#f5f5f5' } }
|
|
1365
|
+
'.bar-title-neutral-200[platform=ios]': { titleAttributes: { color: '#e5e5e5' } }
|
|
1366
|
+
'.bar-title-neutral-300[platform=ios]': { titleAttributes: { color: '#d4d4d4' } }
|
|
1367
|
+
'.bar-title-neutral-400[platform=ios]': { titleAttributes: { color: '#a3a3a3' } }
|
|
1368
|
+
'.bar-title-neutral-500[platform=ios]': { titleAttributes: { color: '#737373' } }
|
|
1369
|
+
'.bar-title-neutral-600[platform=ios]': { titleAttributes: { color: '#525252' } }
|
|
1370
|
+
'.bar-title-neutral-700[platform=ios]': { titleAttributes: { color: '#404040' } }
|
|
1371
|
+
'.bar-title-neutral-800[platform=ios]': { titleAttributes: { color: '#262626' } }
|
|
1372
|
+
'.bar-title-neutral-900[platform=ios]': { titleAttributes: { color: '#171717' } }
|
|
1373
|
+
'.bar-title-stone-50[platform=ios]': { titleAttributes: { color: '#fafaf9' } }
|
|
1374
|
+
'.bar-title-stone-100[platform=ios]': { titleAttributes: { color: '#f5f5f4' } }
|
|
1375
|
+
'.bar-title-stone-200[platform=ios]': { titleAttributes: { color: '#e7e5e4' } }
|
|
1376
|
+
'.bar-title-stone-300[platform=ios]': { titleAttributes: { color: '#d6d3d1' } }
|
|
1377
|
+
'.bar-title-stone-400[platform=ios]': { titleAttributes: { color: '#a8a29e' } }
|
|
1378
|
+
'.bar-title-stone-500[platform=ios]': { titleAttributes: { color: '#78716c' } }
|
|
1379
|
+
'.bar-title-stone-600[platform=ios]': { titleAttributes: { color: '#57534e' } }
|
|
1380
|
+
'.bar-title-stone-700[platform=ios]': { titleAttributes: { color: '#44403c' } }
|
|
1381
|
+
'.bar-title-stone-800[platform=ios]': { titleAttributes: { color: '#292524' } }
|
|
1382
|
+
'.bar-title-stone-900[platform=ios]': { titleAttributes: { color: '#1c1917' } }
|
|
1383
|
+
'.bar-title-red-50[platform=ios]': { titleAttributes: { color: '#fef2f2' } }
|
|
1384
|
+
'.bar-title-red-100[platform=ios]': { titleAttributes: { color: '#fee2e2' } }
|
|
1385
|
+
'.bar-title-red-200[platform=ios]': { titleAttributes: { color: '#fecaca' } }
|
|
1386
|
+
'.bar-title-red-300[platform=ios]': { titleAttributes: { color: '#fca5a5' } }
|
|
1387
|
+
'.bar-title-red-400[platform=ios]': { titleAttributes: { color: '#f87171' } }
|
|
1388
|
+
'.bar-title-red-500[platform=ios]': { titleAttributes: { color: '#ef4444' } }
|
|
1389
|
+
'.bar-title-red-600[platform=ios]': { titleAttributes: { color: '#dc2626' } }
|
|
1390
|
+
'.bar-title-red-700[platform=ios]': { titleAttributes: { color: '#b91c1c' } }
|
|
1391
|
+
'.bar-title-red-800[platform=ios]': { titleAttributes: { color: '#991b1b' } }
|
|
1392
|
+
'.bar-title-red-900[platform=ios]': { titleAttributes: { color: '#7f1d1d' } }
|
|
1393
|
+
'.bar-title-orange-50[platform=ios]': { titleAttributes: { color: '#fff7ed' } }
|
|
1394
|
+
'.bar-title-orange-100[platform=ios]': { titleAttributes: { color: '#ffedd5' } }
|
|
1395
|
+
'.bar-title-orange-200[platform=ios]': { titleAttributes: { color: '#fed7aa' } }
|
|
1396
|
+
'.bar-title-orange-300[platform=ios]': { titleAttributes: { color: '#fdba74' } }
|
|
1397
|
+
'.bar-title-orange-400[platform=ios]': { titleAttributes: { color: '#fb923c' } }
|
|
1398
|
+
'.bar-title-orange-500[platform=ios]': { titleAttributes: { color: '#f97316' } }
|
|
1399
|
+
'.bar-title-orange-600[platform=ios]': { titleAttributes: { color: '#ea580c' } }
|
|
1400
|
+
'.bar-title-orange-700[platform=ios]': { titleAttributes: { color: '#c2410c' } }
|
|
1401
|
+
'.bar-title-orange-800[platform=ios]': { titleAttributes: { color: '#9a3412' } }
|
|
1402
|
+
'.bar-title-orange-900[platform=ios]': { titleAttributes: { color: '#7c2d12' } }
|
|
1403
|
+
'.bar-title-amber-50[platform=ios]': { titleAttributes: { color: '#fffbeb' } }
|
|
1404
|
+
'.bar-title-amber-100[platform=ios]': { titleAttributes: { color: '#fef3c7' } }
|
|
1405
|
+
'.bar-title-amber-200[platform=ios]': { titleAttributes: { color: '#fde68a' } }
|
|
1406
|
+
'.bar-title-amber-300[platform=ios]': { titleAttributes: { color: '#fcd34d' } }
|
|
1407
|
+
'.bar-title-amber-400[platform=ios]': { titleAttributes: { color: '#fbbf24' } }
|
|
1408
|
+
'.bar-title-amber-500[platform=ios]': { titleAttributes: { color: '#f59e0b' } }
|
|
1409
|
+
'.bar-title-amber-600[platform=ios]': { titleAttributes: { color: '#d97706' } }
|
|
1410
|
+
'.bar-title-amber-700[platform=ios]': { titleAttributes: { color: '#b45309' } }
|
|
1411
|
+
'.bar-title-amber-800[platform=ios]': { titleAttributes: { color: '#92400e' } }
|
|
1412
|
+
'.bar-title-amber-900[platform=ios]': { titleAttributes: { color: '#78350f' } }
|
|
1413
|
+
'.bar-title-yellow-50[platform=ios]': { titleAttributes: { color: '#fefce8' } }
|
|
1414
|
+
'.bar-title-yellow-100[platform=ios]': { titleAttributes: { color: '#fef9c3' } }
|
|
1415
|
+
'.bar-title-yellow-200[platform=ios]': { titleAttributes: { color: '#fef08a' } }
|
|
1416
|
+
'.bar-title-yellow-300[platform=ios]': { titleAttributes: { color: '#fde047' } }
|
|
1417
|
+
'.bar-title-yellow-400[platform=ios]': { titleAttributes: { color: '#facc15' } }
|
|
1418
|
+
'.bar-title-yellow-500[platform=ios]': { titleAttributes: { color: '#eab308' } }
|
|
1419
|
+
'.bar-title-yellow-600[platform=ios]': { titleAttributes: { color: '#ca8a04' } }
|
|
1420
|
+
'.bar-title-yellow-700[platform=ios]': { titleAttributes: { color: '#a16207' } }
|
|
1421
|
+
'.bar-title-yellow-800[platform=ios]': { titleAttributes: { color: '#854d0e' } }
|
|
1422
|
+
'.bar-title-yellow-900[platform=ios]': { titleAttributes: { color: '#713f12' } }
|
|
1423
|
+
'.bar-title-lime-50[platform=ios]': { titleAttributes: { color: '#f7fee7' } }
|
|
1424
|
+
'.bar-title-lime-100[platform=ios]': { titleAttributes: { color: '#ecfccb' } }
|
|
1425
|
+
'.bar-title-lime-200[platform=ios]': { titleAttributes: { color: '#d9f99d' } }
|
|
1426
|
+
'.bar-title-lime-300[platform=ios]': { titleAttributes: { color: '#bef264' } }
|
|
1427
|
+
'.bar-title-lime-400[platform=ios]': { titleAttributes: { color: '#a3e635' } }
|
|
1428
|
+
'.bar-title-lime-500[platform=ios]': { titleAttributes: { color: '#84cc16' } }
|
|
1429
|
+
'.bar-title-lime-600[platform=ios]': { titleAttributes: { color: '#65a30d' } }
|
|
1430
|
+
'.bar-title-lime-700[platform=ios]': { titleAttributes: { color: '#4d7c0f' } }
|
|
1431
|
+
'.bar-title-lime-800[platform=ios]': { titleAttributes: { color: '#3f6212' } }
|
|
1432
|
+
'.bar-title-lime-900[platform=ios]': { titleAttributes: { color: '#365314' } }
|
|
1433
|
+
'.bar-title-green-50[platform=ios]': { titleAttributes: { color: '#f0fdf4' } }
|
|
1434
|
+
'.bar-title-green-100[platform=ios]': { titleAttributes: { color: '#dcfce7' } }
|
|
1435
|
+
'.bar-title-green-200[platform=ios]': { titleAttributes: { color: '#bbf7d0' } }
|
|
1436
|
+
'.bar-title-green-300[platform=ios]': { titleAttributes: { color: '#86efac' } }
|
|
1437
|
+
'.bar-title-green-400[platform=ios]': { titleAttributes: { color: '#4ade80' } }
|
|
1438
|
+
'.bar-title-green-500[platform=ios]': { titleAttributes: { color: '#22c55e' } }
|
|
1439
|
+
'.bar-title-green-600[platform=ios]': { titleAttributes: { color: '#16a34a' } }
|
|
1440
|
+
'.bar-title-green-700[platform=ios]': { titleAttributes: { color: '#15803d' } }
|
|
1441
|
+
'.bar-title-green-800[platform=ios]': { titleAttributes: { color: '#166534' } }
|
|
1442
|
+
'.bar-title-green-900[platform=ios]': { titleAttributes: { color: '#14532d' } }
|
|
1443
|
+
'.bar-title-emerald-50[platform=ios]': { titleAttributes: { color: '#ecfdf5' } }
|
|
1444
|
+
'.bar-title-emerald-100[platform=ios]': { titleAttributes: { color: '#d1fae5' } }
|
|
1445
|
+
'.bar-title-emerald-200[platform=ios]': { titleAttributes: { color: '#a7f3d0' } }
|
|
1446
|
+
'.bar-title-emerald-300[platform=ios]': { titleAttributes: { color: '#6ee7b7' } }
|
|
1447
|
+
'.bar-title-emerald-400[platform=ios]': { titleAttributes: { color: '#34d399' } }
|
|
1448
|
+
'.bar-title-emerald-500[platform=ios]': { titleAttributes: { color: '#10b981' } }
|
|
1449
|
+
'.bar-title-emerald-600[platform=ios]': { titleAttributes: { color: '#059669' } }
|
|
1450
|
+
'.bar-title-emerald-700[platform=ios]': { titleAttributes: { color: '#047857' } }
|
|
1451
|
+
'.bar-title-emerald-800[platform=ios]': { titleAttributes: { color: '#065f46' } }
|
|
1452
|
+
'.bar-title-emerald-900[platform=ios]': { titleAttributes: { color: '#064e3b' } }
|
|
1453
|
+
'.bar-title-teal-50[platform=ios]': { titleAttributes: { color: '#f0fdfa' } }
|
|
1454
|
+
'.bar-title-teal-100[platform=ios]': { titleAttributes: { color: '#ccfbf1' } }
|
|
1455
|
+
'.bar-title-teal-200[platform=ios]': { titleAttributes: { color: '#99f6e4' } }
|
|
1456
|
+
'.bar-title-teal-300[platform=ios]': { titleAttributes: { color: '#5eead4' } }
|
|
1457
|
+
'.bar-title-teal-400[platform=ios]': { titleAttributes: { color: '#2dd4bf' } }
|
|
1458
|
+
'.bar-title-teal-500[platform=ios]': { titleAttributes: { color: '#14b8a6' } }
|
|
1459
|
+
'.bar-title-teal-600[platform=ios]': { titleAttributes: { color: '#0d9488' } }
|
|
1460
|
+
'.bar-title-teal-700[platform=ios]': { titleAttributes: { color: '#0f766e' } }
|
|
1461
|
+
'.bar-title-teal-800[platform=ios]': { titleAttributes: { color: '#115e59' } }
|
|
1462
|
+
'.bar-title-teal-900[platform=ios]': { titleAttributes: { color: '#134e4a' } }
|
|
1463
|
+
'.bar-title-cyan-50[platform=ios]': { titleAttributes: { color: '#ecfeff' } }
|
|
1464
|
+
'.bar-title-cyan-100[platform=ios]': { titleAttributes: { color: '#cffafe' } }
|
|
1465
|
+
'.bar-title-cyan-200[platform=ios]': { titleAttributes: { color: '#a5f3fc' } }
|
|
1466
|
+
'.bar-title-cyan-300[platform=ios]': { titleAttributes: { color: '#67e8f9' } }
|
|
1467
|
+
'.bar-title-cyan-400[platform=ios]': { titleAttributes: { color: '#22d3ee' } }
|
|
1468
|
+
'.bar-title-cyan-500[platform=ios]': { titleAttributes: { color: '#06b6d4' } }
|
|
1469
|
+
'.bar-title-cyan-600[platform=ios]': { titleAttributes: { color: '#0891b2' } }
|
|
1470
|
+
'.bar-title-cyan-700[platform=ios]': { titleAttributes: { color: '#0e7490' } }
|
|
1471
|
+
'.bar-title-cyan-800[platform=ios]': { titleAttributes: { color: '#155e75' } }
|
|
1472
|
+
'.bar-title-cyan-900[platform=ios]': { titleAttributes: { color: '#164e63' } }
|
|
1473
|
+
'.bar-title-sky-50[platform=ios]': { titleAttributes: { color: '#f0f9ff' } }
|
|
1474
|
+
'.bar-title-sky-100[platform=ios]': { titleAttributes: { color: '#e0f2fe' } }
|
|
1475
|
+
'.bar-title-sky-200[platform=ios]': { titleAttributes: { color: '#bae6fd' } }
|
|
1476
|
+
'.bar-title-sky-300[platform=ios]': { titleAttributes: { color: '#7dd3fc' } }
|
|
1477
|
+
'.bar-title-sky-400[platform=ios]': { titleAttributes: { color: '#38bdf8' } }
|
|
1478
|
+
'.bar-title-sky-500[platform=ios]': { titleAttributes: { color: '#0ea5e9' } }
|
|
1479
|
+
'.bar-title-sky-600[platform=ios]': { titleAttributes: { color: '#0284c7' } }
|
|
1480
|
+
'.bar-title-sky-700[platform=ios]': { titleAttributes: { color: '#0369a1' } }
|
|
1481
|
+
'.bar-title-sky-800[platform=ios]': { titleAttributes: { color: '#075985' } }
|
|
1482
|
+
'.bar-title-sky-900[platform=ios]': { titleAttributes: { color: '#0c4a6e' } }
|
|
1483
|
+
'.bar-title-blue-50[platform=ios]': { titleAttributes: { color: '#eff6ff' } }
|
|
1484
|
+
'.bar-title-blue-100[platform=ios]': { titleAttributes: { color: '#dbeafe' } }
|
|
1485
|
+
'.bar-title-blue-200[platform=ios]': { titleAttributes: { color: '#bfdbfe' } }
|
|
1486
|
+
'.bar-title-blue-300[platform=ios]': { titleAttributes: { color: '#93c5fd' } }
|
|
1487
|
+
'.bar-title-blue-400[platform=ios]': { titleAttributes: { color: '#60a5fa' } }
|
|
1488
|
+
'.bar-title-blue-500[platform=ios]': { titleAttributes: { color: '#3b82f6' } }
|
|
1489
|
+
'.bar-title-blue-600[platform=ios]': { titleAttributes: { color: '#2563eb' } }
|
|
1490
|
+
'.bar-title-blue-700[platform=ios]': { titleAttributes: { color: '#1d4ed8' } }
|
|
1491
|
+
'.bar-title-blue-800[platform=ios]': { titleAttributes: { color: '#1e40af' } }
|
|
1492
|
+
'.bar-title-blue-900[platform=ios]': { titleAttributes: { color: '#1e3a8a' } }
|
|
1493
|
+
'.bar-title-indigo-50[platform=ios]': { titleAttributes: { color: '#eef2ff' } }
|
|
1494
|
+
'.bar-title-indigo-100[platform=ios]': { titleAttributes: { color: '#e0e7ff' } }
|
|
1495
|
+
'.bar-title-indigo-200[platform=ios]': { titleAttributes: { color: '#c7d2fe' } }
|
|
1496
|
+
'.bar-title-indigo-300[platform=ios]': { titleAttributes: { color: '#a5b4fc' } }
|
|
1497
|
+
'.bar-title-indigo-400[platform=ios]': { titleAttributes: { color: '#818cf8' } }
|
|
1498
|
+
'.bar-title-indigo-500[platform=ios]': { titleAttributes: { color: '#6366f1' } }
|
|
1499
|
+
'.bar-title-indigo-600[platform=ios]': { titleAttributes: { color: '#4f46e5' } }
|
|
1500
|
+
'.bar-title-indigo-700[platform=ios]': { titleAttributes: { color: '#4338ca' } }
|
|
1501
|
+
'.bar-title-indigo-800[platform=ios]': { titleAttributes: { color: '#3730a3' } }
|
|
1502
|
+
'.bar-title-indigo-900[platform=ios]': { titleAttributes: { color: '#312e81' } }
|
|
1503
|
+
'.bar-title-violet-50[platform=ios]': { titleAttributes: { color: '#f5f3ff' } }
|
|
1504
|
+
'.bar-title-violet-100[platform=ios]': { titleAttributes: { color: '#ede9fe' } }
|
|
1505
|
+
'.bar-title-violet-200[platform=ios]': { titleAttributes: { color: '#ddd6fe' } }
|
|
1506
|
+
'.bar-title-violet-300[platform=ios]': { titleAttributes: { color: '#c4b5fd' } }
|
|
1507
|
+
'.bar-title-violet-400[platform=ios]': { titleAttributes: { color: '#a78bfa' } }
|
|
1508
|
+
'.bar-title-violet-500[platform=ios]': { titleAttributes: { color: '#8b5cf6' } }
|
|
1509
|
+
'.bar-title-violet-600[platform=ios]': { titleAttributes: { color: '#7c3aed' } }
|
|
1510
|
+
'.bar-title-violet-700[platform=ios]': { titleAttributes: { color: '#6d28d9' } }
|
|
1511
|
+
'.bar-title-violet-800[platform=ios]': { titleAttributes: { color: '#5b21b6' } }
|
|
1512
|
+
'.bar-title-violet-900[platform=ios]': { titleAttributes: { color: '#4c1d95' } }
|
|
1513
|
+
'.bar-title-purple-50[platform=ios]': { titleAttributes: { color: '#faf5ff' } }
|
|
1514
|
+
'.bar-title-purple-100[platform=ios]': { titleAttributes: { color: '#f3e8ff' } }
|
|
1515
|
+
'.bar-title-purple-200[platform=ios]': { titleAttributes: { color: '#e9d5ff' } }
|
|
1516
|
+
'.bar-title-purple-300[platform=ios]': { titleAttributes: { color: '#d8b4fe' } }
|
|
1517
|
+
'.bar-title-purple-400[platform=ios]': { titleAttributes: { color: '#c084fc' } }
|
|
1518
|
+
'.bar-title-purple-500[platform=ios]': { titleAttributes: { color: '#a855f7' } }
|
|
1519
|
+
'.bar-title-purple-600[platform=ios]': { titleAttributes: { color: '#9333ea' } }
|
|
1520
|
+
'.bar-title-purple-700[platform=ios]': { titleAttributes: { color: '#7e22ce' } }
|
|
1521
|
+
'.bar-title-purple-800[platform=ios]': { titleAttributes: { color: '#6b21a8' } }
|
|
1522
|
+
'.bar-title-purple-900[platform=ios]': { titleAttributes: { color: '#581c87' } }
|
|
1523
|
+
'.bar-title-fuchsia-50[platform=ios]': { titleAttributes: { color: '#fdf4ff' } }
|
|
1524
|
+
'.bar-title-fuchsia-100[platform=ios]': { titleAttributes: { color: '#fae8ff' } }
|
|
1525
|
+
'.bar-title-fuchsia-200[platform=ios]': { titleAttributes: { color: '#f5d0fe' } }
|
|
1526
|
+
'.bar-title-fuchsia-300[platform=ios]': { titleAttributes: { color: '#f0abfc' } }
|
|
1527
|
+
'.bar-title-fuchsia-400[platform=ios]': { titleAttributes: { color: '#e879f9' } }
|
|
1528
|
+
'.bar-title-fuchsia-500[platform=ios]': { titleAttributes: { color: '#d946ef' } }
|
|
1529
|
+
'.bar-title-fuchsia-600[platform=ios]': { titleAttributes: { color: '#c026d3' } }
|
|
1530
|
+
'.bar-title-fuchsia-700[platform=ios]': { titleAttributes: { color: '#a21caf' } }
|
|
1531
|
+
'.bar-title-fuchsia-800[platform=ios]': { titleAttributes: { color: '#86198f' } }
|
|
1532
|
+
'.bar-title-fuchsia-900[platform=ios]': { titleAttributes: { color: '#701a75' } }
|
|
1533
|
+
'.bar-title-pink-50[platform=ios]': { titleAttributes: { color: '#fdf2f8' } }
|
|
1534
|
+
'.bar-title-pink-100[platform=ios]': { titleAttributes: { color: '#fce7f3' } }
|
|
1535
|
+
'.bar-title-pink-200[platform=ios]': { titleAttributes: { color: '#fbcfe8' } }
|
|
1536
|
+
'.bar-title-pink-300[platform=ios]': { titleAttributes: { color: '#f9a8d4' } }
|
|
1537
|
+
'.bar-title-pink-400[platform=ios]': { titleAttributes: { color: '#f472b6' } }
|
|
1538
|
+
'.bar-title-pink-500[platform=ios]': { titleAttributes: { color: '#ec4899' } }
|
|
1539
|
+
'.bar-title-pink-600[platform=ios]': { titleAttributes: { color: '#db2777' } }
|
|
1540
|
+
'.bar-title-pink-700[platform=ios]': { titleAttributes: { color: '#be185d' } }
|
|
1541
|
+
'.bar-title-pink-800[platform=ios]': { titleAttributes: { color: '#9d174d' } }
|
|
1542
|
+
'.bar-title-pink-900[platform=ios]': { titleAttributes: { color: '#831843' } }
|
|
1543
|
+
'.bar-title-rose-50[platform=ios]': { titleAttributes: { color: '#fff1f2' } }
|
|
1544
|
+
'.bar-title-rose-100[platform=ios]': { titleAttributes: { color: '#ffe4e6' } }
|
|
1545
|
+
'.bar-title-rose-200[platform=ios]': { titleAttributes: { color: '#fecdd3' } }
|
|
1546
|
+
'.bar-title-rose-300[platform=ios]': { titleAttributes: { color: '#fda4af' } }
|
|
1547
|
+
'.bar-title-rose-400[platform=ios]': { titleAttributes: { color: '#fb7185' } }
|
|
1548
|
+
'.bar-title-rose-500[platform=ios]': { titleAttributes: { color: '#f43f5e' } }
|
|
1549
|
+
'.bar-title-rose-600[platform=ios]': { titleAttributes: { color: '#e11d48' } }
|
|
1550
|
+
'.bar-title-rose-700[platform=ios]': { titleAttributes: { color: '#be123c' } }
|
|
1551
|
+
'.bar-title-rose-800[platform=ios]': { titleAttributes: { color: '#9f1239' } }
|
|
1552
|
+
'.bar-title-rose-900[platform=ios]': { titleAttributes: { color: '#881337' } }
|
|
1553
|
+
|
|
1554
|
+
// Component(s): Ti.UI.TabGroup, Ti.UI.Window
|
|
1555
|
+
// Property(ies): titleAttributes: shadow, offset, blurRadius - Bar Title Shadow
|
|
1556
|
+
'.bar-shadow-xs': { titleAttributes: { shadow: { color: '#59000000', offset: { width: 0, height: 0 }, blurRadius: 1 } } }
|
|
1557
|
+
'.bar-shadow-sm': { titleAttributes: { shadow: { color: '#59000000', offset: { width: 0, height: 1 }, blurRadius: 1 } } }
|
|
1558
|
+
'.bar-shadow': { titleAttributes: { shadow: { color: '#59000000', offset: { width: 0, height: 2 }, blurRadius: 2 } } }
|
|
1559
|
+
'.bar-shadow-md': { titleAttributes: { shadow: { color: '#59000000', offset: { width: 0, height: 3 }, blurRadius: 3 } } }
|
|
1560
|
+
'.bar-shadow-lg': { titleAttributes: { shadow: { color: '#59000000', offset: { width: 0, height: 4 }, blurRadius: 4 } } }
|
|
1561
|
+
'.bar-shadow-xl': { titleAttributes: { shadow: { color: '#59000000', offset: { width: 0, height: 6 }, blurRadius: 6 } } }
|
|
1562
|
+
'.bar-shadow-2xl': { titleAttributes: { shadow: { color: '#59000000', offset: { width: 0, height: 8 }, blurRadius: 8 } } }
|
|
1563
|
+
'.bar-shadow-none': { titleAttributes: { shadow: { color: null, offset: { width: 0, height: 0 }, blurRadius: null } } }
|
|
1564
|
+
|
|
1565
|
+
// Component(s): Ti.UI.TabGroup, Ti.UI.Window
|
|
1566
|
+
// Property(ies): titleAttributes: shadow - Bar Title Shadow
|
|
1567
|
+
'.bar-shadow-transparent[platform=ios]': { titleAttributes: { shadow: { color: 'transparent' } } }
|
|
1568
|
+
'.bar-shadow-black[platform=ios]': { titleAttributes: { shadow: { color: '#000000' } } }
|
|
1569
|
+
'.bar-shadow-white[platform=ios]': { titleAttributes: { shadow: { color: '#ffffff' } } }
|
|
1570
|
+
'.bar-shadow-slate-50[platform=ios]': { titleAttributes: { shadow: { color: '#f8fafc' } } }
|
|
1571
|
+
'.bar-shadow-slate-100[platform=ios]': { titleAttributes: { shadow: { color: '#f1f5f9' } } }
|
|
1572
|
+
'.bar-shadow-slate-200[platform=ios]': { titleAttributes: { shadow: { color: '#e2e8f0' } } }
|
|
1573
|
+
'.bar-shadow-slate-300[platform=ios]': { titleAttributes: { shadow: { color: '#cbd5e1' } } }
|
|
1574
|
+
'.bar-shadow-slate-400[platform=ios]': { titleAttributes: { shadow: { color: '#94a3b8' } } }
|
|
1575
|
+
'.bar-shadow-slate-500[platform=ios]': { titleAttributes: { shadow: { color: '#64748b' } } }
|
|
1576
|
+
'.bar-shadow-slate-600[platform=ios]': { titleAttributes: { shadow: { color: '#475569' } } }
|
|
1577
|
+
'.bar-shadow-slate-700[platform=ios]': { titleAttributes: { shadow: { color: '#334155' } } }
|
|
1578
|
+
'.bar-shadow-slate-800[platform=ios]': { titleAttributes: { shadow: { color: '#1e293b' } } }
|
|
1579
|
+
'.bar-shadow-slate-900[platform=ios]': { titleAttributes: { shadow: { color: '#0f172a' } } }
|
|
1580
|
+
'.bar-shadow-gray-50[platform=ios]': { titleAttributes: { shadow: { color: '#f9fafb' } } }
|
|
1581
|
+
'.bar-shadow-gray-100[platform=ios]': { titleAttributes: { shadow: { color: '#f3f4f6' } } }
|
|
1582
|
+
'.bar-shadow-gray-200[platform=ios]': { titleAttributes: { shadow: { color: '#e5e7eb' } } }
|
|
1583
|
+
'.bar-shadow-gray-300[platform=ios]': { titleAttributes: { shadow: { color: '#d1d5db' } } }
|
|
1584
|
+
'.bar-shadow-gray-400[platform=ios]': { titleAttributes: { shadow: { color: '#9ca3af' } } }
|
|
1585
|
+
'.bar-shadow-gray-500[platform=ios]': { titleAttributes: { shadow: { color: '#6b7280' } } }
|
|
1586
|
+
'.bar-shadow-gray-600[platform=ios]': { titleAttributes: { shadow: { color: '#4b5563' } } }
|
|
1587
|
+
'.bar-shadow-gray-700[platform=ios]': { titleAttributes: { shadow: { color: '#374151' } } }
|
|
1588
|
+
'.bar-shadow-gray-800[platform=ios]': { titleAttributes: { shadow: { color: '#1f2937' } } }
|
|
1589
|
+
'.bar-shadow-gray-900[platform=ios]': { titleAttributes: { shadow: { color: '#111827' } } }
|
|
1590
|
+
'.bar-shadow-zinc-50[platform=ios]': { titleAttributes: { shadow: { color: '#fafafa' } } }
|
|
1591
|
+
'.bar-shadow-zinc-100[platform=ios]': { titleAttributes: { shadow: { color: '#f4f4f5' } } }
|
|
1592
|
+
'.bar-shadow-zinc-200[platform=ios]': { titleAttributes: { shadow: { color: '#e4e4e7' } } }
|
|
1593
|
+
'.bar-shadow-zinc-300[platform=ios]': { titleAttributes: { shadow: { color: '#d4d4d8' } } }
|
|
1594
|
+
'.bar-shadow-zinc-400[platform=ios]': { titleAttributes: { shadow: { color: '#a1a1aa' } } }
|
|
1595
|
+
'.bar-shadow-zinc-500[platform=ios]': { titleAttributes: { shadow: { color: '#71717a' } } }
|
|
1596
|
+
'.bar-shadow-zinc-600[platform=ios]': { titleAttributes: { shadow: { color: '#52525b' } } }
|
|
1597
|
+
'.bar-shadow-zinc-700[platform=ios]': { titleAttributes: { shadow: { color: '#3f3f46' } } }
|
|
1598
|
+
'.bar-shadow-zinc-800[platform=ios]': { titleAttributes: { shadow: { color: '#27272a' } } }
|
|
1599
|
+
'.bar-shadow-zinc-900[platform=ios]': { titleAttributes: { shadow: { color: '#18181b' } } }
|
|
1600
|
+
'.bar-shadow-neutral-50[platform=ios]': { titleAttributes: { shadow: { color: '#fafafa' } } }
|
|
1601
|
+
'.bar-shadow-neutral-100[platform=ios]': { titleAttributes: { shadow: { color: '#f5f5f5' } } }
|
|
1602
|
+
'.bar-shadow-neutral-200[platform=ios]': { titleAttributes: { shadow: { color: '#e5e5e5' } } }
|
|
1603
|
+
'.bar-shadow-neutral-300[platform=ios]': { titleAttributes: { shadow: { color: '#d4d4d4' } } }
|
|
1604
|
+
'.bar-shadow-neutral-400[platform=ios]': { titleAttributes: { shadow: { color: '#a3a3a3' } } }
|
|
1605
|
+
'.bar-shadow-neutral-500[platform=ios]': { titleAttributes: { shadow: { color: '#737373' } } }
|
|
1606
|
+
'.bar-shadow-neutral-600[platform=ios]': { titleAttributes: { shadow: { color: '#525252' } } }
|
|
1607
|
+
'.bar-shadow-neutral-700[platform=ios]': { titleAttributes: { shadow: { color: '#404040' } } }
|
|
1608
|
+
'.bar-shadow-neutral-800[platform=ios]': { titleAttributes: { shadow: { color: '#262626' } } }
|
|
1609
|
+
'.bar-shadow-neutral-900[platform=ios]': { titleAttributes: { shadow: { color: '#171717' } } }
|
|
1610
|
+
'.bar-shadow-stone-50[platform=ios]': { titleAttributes: { shadow: { color: '#fafaf9' } } }
|
|
1611
|
+
'.bar-shadow-stone-100[platform=ios]': { titleAttributes: { shadow: { color: '#f5f5f4' } } }
|
|
1612
|
+
'.bar-shadow-stone-200[platform=ios]': { titleAttributes: { shadow: { color: '#e7e5e4' } } }
|
|
1613
|
+
'.bar-shadow-stone-300[platform=ios]': { titleAttributes: { shadow: { color: '#d6d3d1' } } }
|
|
1614
|
+
'.bar-shadow-stone-400[platform=ios]': { titleAttributes: { shadow: { color: '#a8a29e' } } }
|
|
1615
|
+
'.bar-shadow-stone-500[platform=ios]': { titleAttributes: { shadow: { color: '#78716c' } } }
|
|
1616
|
+
'.bar-shadow-stone-600[platform=ios]': { titleAttributes: { shadow: { color: '#57534e' } } }
|
|
1617
|
+
'.bar-shadow-stone-700[platform=ios]': { titleAttributes: { shadow: { color: '#44403c' } } }
|
|
1618
|
+
'.bar-shadow-stone-800[platform=ios]': { titleAttributes: { shadow: { color: '#292524' } } }
|
|
1619
|
+
'.bar-shadow-stone-900[platform=ios]': { titleAttributes: { shadow: { color: '#1c1917' } } }
|
|
1620
|
+
'.bar-shadow-red-50[platform=ios]': { titleAttributes: { shadow: { color: '#fef2f2' } } }
|
|
1621
|
+
'.bar-shadow-red-100[platform=ios]': { titleAttributes: { shadow: { color: '#fee2e2' } } }
|
|
1622
|
+
'.bar-shadow-red-200[platform=ios]': { titleAttributes: { shadow: { color: '#fecaca' } } }
|
|
1623
|
+
'.bar-shadow-red-300[platform=ios]': { titleAttributes: { shadow: { color: '#fca5a5' } } }
|
|
1624
|
+
'.bar-shadow-red-400[platform=ios]': { titleAttributes: { shadow: { color: '#f87171' } } }
|
|
1625
|
+
'.bar-shadow-red-500[platform=ios]': { titleAttributes: { shadow: { color: '#ef4444' } } }
|
|
1626
|
+
'.bar-shadow-red-600[platform=ios]': { titleAttributes: { shadow: { color: '#dc2626' } } }
|
|
1627
|
+
'.bar-shadow-red-700[platform=ios]': { titleAttributes: { shadow: { color: '#b91c1c' } } }
|
|
1628
|
+
'.bar-shadow-red-800[platform=ios]': { titleAttributes: { shadow: { color: '#991b1b' } } }
|
|
1629
|
+
'.bar-shadow-red-900[platform=ios]': { titleAttributes: { shadow: { color: '#7f1d1d' } } }
|
|
1630
|
+
'.bar-shadow-orange-50[platform=ios]': { titleAttributes: { shadow: { color: '#fff7ed' } } }
|
|
1631
|
+
'.bar-shadow-orange-100[platform=ios]': { titleAttributes: { shadow: { color: '#ffedd5' } } }
|
|
1632
|
+
'.bar-shadow-orange-200[platform=ios]': { titleAttributes: { shadow: { color: '#fed7aa' } } }
|
|
1633
|
+
'.bar-shadow-orange-300[platform=ios]': { titleAttributes: { shadow: { color: '#fdba74' } } }
|
|
1634
|
+
'.bar-shadow-orange-400[platform=ios]': { titleAttributes: { shadow: { color: '#fb923c' } } }
|
|
1635
|
+
'.bar-shadow-orange-500[platform=ios]': { titleAttributes: { shadow: { color: '#f97316' } } }
|
|
1636
|
+
'.bar-shadow-orange-600[platform=ios]': { titleAttributes: { shadow: { color: '#ea580c' } } }
|
|
1637
|
+
'.bar-shadow-orange-700[platform=ios]': { titleAttributes: { shadow: { color: '#c2410c' } } }
|
|
1638
|
+
'.bar-shadow-orange-800[platform=ios]': { titleAttributes: { shadow: { color: '#9a3412' } } }
|
|
1639
|
+
'.bar-shadow-orange-900[platform=ios]': { titleAttributes: { shadow: { color: '#7c2d12' } } }
|
|
1640
|
+
'.bar-shadow-amber-50[platform=ios]': { titleAttributes: { shadow: { color: '#fffbeb' } } }
|
|
1641
|
+
'.bar-shadow-amber-100[platform=ios]': { titleAttributes: { shadow: { color: '#fef3c7' } } }
|
|
1642
|
+
'.bar-shadow-amber-200[platform=ios]': { titleAttributes: { shadow: { color: '#fde68a' } } }
|
|
1643
|
+
'.bar-shadow-amber-300[platform=ios]': { titleAttributes: { shadow: { color: '#fcd34d' } } }
|
|
1644
|
+
'.bar-shadow-amber-400[platform=ios]': { titleAttributes: { shadow: { color: '#fbbf24' } } }
|
|
1645
|
+
'.bar-shadow-amber-500[platform=ios]': { titleAttributes: { shadow: { color: '#f59e0b' } } }
|
|
1646
|
+
'.bar-shadow-amber-600[platform=ios]': { titleAttributes: { shadow: { color: '#d97706' } } }
|
|
1647
|
+
'.bar-shadow-amber-700[platform=ios]': { titleAttributes: { shadow: { color: '#b45309' } } }
|
|
1648
|
+
'.bar-shadow-amber-800[platform=ios]': { titleAttributes: { shadow: { color: '#92400e' } } }
|
|
1649
|
+
'.bar-shadow-amber-900[platform=ios]': { titleAttributes: { shadow: { color: '#78350f' } } }
|
|
1650
|
+
'.bar-shadow-yellow-50[platform=ios]': { titleAttributes: { shadow: { color: '#fefce8' } } }
|
|
1651
|
+
'.bar-shadow-yellow-100[platform=ios]': { titleAttributes: { shadow: { color: '#fef9c3' } } }
|
|
1652
|
+
'.bar-shadow-yellow-200[platform=ios]': { titleAttributes: { shadow: { color: '#fef08a' } } }
|
|
1653
|
+
'.bar-shadow-yellow-300[platform=ios]': { titleAttributes: { shadow: { color: '#fde047' } } }
|
|
1654
|
+
'.bar-shadow-yellow-400[platform=ios]': { titleAttributes: { shadow: { color: '#facc15' } } }
|
|
1655
|
+
'.bar-shadow-yellow-500[platform=ios]': { titleAttributes: { shadow: { color: '#eab308' } } }
|
|
1656
|
+
'.bar-shadow-yellow-600[platform=ios]': { titleAttributes: { shadow: { color: '#ca8a04' } } }
|
|
1657
|
+
'.bar-shadow-yellow-700[platform=ios]': { titleAttributes: { shadow: { color: '#a16207' } } }
|
|
1658
|
+
'.bar-shadow-yellow-800[platform=ios]': { titleAttributes: { shadow: { color: '#854d0e' } } }
|
|
1659
|
+
'.bar-shadow-yellow-900[platform=ios]': { titleAttributes: { shadow: { color: '#713f12' } } }
|
|
1660
|
+
'.bar-shadow-lime-50[platform=ios]': { titleAttributes: { shadow: { color: '#f7fee7' } } }
|
|
1661
|
+
'.bar-shadow-lime-100[platform=ios]': { titleAttributes: { shadow: { color: '#ecfccb' } } }
|
|
1662
|
+
'.bar-shadow-lime-200[platform=ios]': { titleAttributes: { shadow: { color: '#d9f99d' } } }
|
|
1663
|
+
'.bar-shadow-lime-300[platform=ios]': { titleAttributes: { shadow: { color: '#bef264' } } }
|
|
1664
|
+
'.bar-shadow-lime-400[platform=ios]': { titleAttributes: { shadow: { color: '#a3e635' } } }
|
|
1665
|
+
'.bar-shadow-lime-500[platform=ios]': { titleAttributes: { shadow: { color: '#84cc16' } } }
|
|
1666
|
+
'.bar-shadow-lime-600[platform=ios]': { titleAttributes: { shadow: { color: '#65a30d' } } }
|
|
1667
|
+
'.bar-shadow-lime-700[platform=ios]': { titleAttributes: { shadow: { color: '#4d7c0f' } } }
|
|
1668
|
+
'.bar-shadow-lime-800[platform=ios]': { titleAttributes: { shadow: { color: '#3f6212' } } }
|
|
1669
|
+
'.bar-shadow-lime-900[platform=ios]': { titleAttributes: { shadow: { color: '#365314' } } }
|
|
1670
|
+
'.bar-shadow-green-50[platform=ios]': { titleAttributes: { shadow: { color: '#f0fdf4' } } }
|
|
1671
|
+
'.bar-shadow-green-100[platform=ios]': { titleAttributes: { shadow: { color: '#dcfce7' } } }
|
|
1672
|
+
'.bar-shadow-green-200[platform=ios]': { titleAttributes: { shadow: { color: '#bbf7d0' } } }
|
|
1673
|
+
'.bar-shadow-green-300[platform=ios]': { titleAttributes: { shadow: { color: '#86efac' } } }
|
|
1674
|
+
'.bar-shadow-green-400[platform=ios]': { titleAttributes: { shadow: { color: '#4ade80' } } }
|
|
1675
|
+
'.bar-shadow-green-500[platform=ios]': { titleAttributes: { shadow: { color: '#22c55e' } } }
|
|
1676
|
+
'.bar-shadow-green-600[platform=ios]': { titleAttributes: { shadow: { color: '#16a34a' } } }
|
|
1677
|
+
'.bar-shadow-green-700[platform=ios]': { titleAttributes: { shadow: { color: '#15803d' } } }
|
|
1678
|
+
'.bar-shadow-green-800[platform=ios]': { titleAttributes: { shadow: { color: '#166534' } } }
|
|
1679
|
+
'.bar-shadow-green-900[platform=ios]': { titleAttributes: { shadow: { color: '#14532d' } } }
|
|
1680
|
+
'.bar-shadow-emerald-50[platform=ios]': { titleAttributes: { shadow: { color: '#ecfdf5' } } }
|
|
1681
|
+
'.bar-shadow-emerald-100[platform=ios]': { titleAttributes: { shadow: { color: '#d1fae5' } } }
|
|
1682
|
+
'.bar-shadow-emerald-200[platform=ios]': { titleAttributes: { shadow: { color: '#a7f3d0' } } }
|
|
1683
|
+
'.bar-shadow-emerald-300[platform=ios]': { titleAttributes: { shadow: { color: '#6ee7b7' } } }
|
|
1684
|
+
'.bar-shadow-emerald-400[platform=ios]': { titleAttributes: { shadow: { color: '#34d399' } } }
|
|
1685
|
+
'.bar-shadow-emerald-500[platform=ios]': { titleAttributes: { shadow: { color: '#10b981' } } }
|
|
1686
|
+
'.bar-shadow-emerald-600[platform=ios]': { titleAttributes: { shadow: { color: '#059669' } } }
|
|
1687
|
+
'.bar-shadow-emerald-700[platform=ios]': { titleAttributes: { shadow: { color: '#047857' } } }
|
|
1688
|
+
'.bar-shadow-emerald-800[platform=ios]': { titleAttributes: { shadow: { color: '#065f46' } } }
|
|
1689
|
+
'.bar-shadow-emerald-900[platform=ios]': { titleAttributes: { shadow: { color: '#064e3b' } } }
|
|
1690
|
+
'.bar-shadow-teal-50[platform=ios]': { titleAttributes: { shadow: { color: '#f0fdfa' } } }
|
|
1691
|
+
'.bar-shadow-teal-100[platform=ios]': { titleAttributes: { shadow: { color: '#ccfbf1' } } }
|
|
1692
|
+
'.bar-shadow-teal-200[platform=ios]': { titleAttributes: { shadow: { color: '#99f6e4' } } }
|
|
1693
|
+
'.bar-shadow-teal-300[platform=ios]': { titleAttributes: { shadow: { color: '#5eead4' } } }
|
|
1694
|
+
'.bar-shadow-teal-400[platform=ios]': { titleAttributes: { shadow: { color: '#2dd4bf' } } }
|
|
1695
|
+
'.bar-shadow-teal-500[platform=ios]': { titleAttributes: { shadow: { color: '#14b8a6' } } }
|
|
1696
|
+
'.bar-shadow-teal-600[platform=ios]': { titleAttributes: { shadow: { color: '#0d9488' } } }
|
|
1697
|
+
'.bar-shadow-teal-700[platform=ios]': { titleAttributes: { shadow: { color: '#0f766e' } } }
|
|
1698
|
+
'.bar-shadow-teal-800[platform=ios]': { titleAttributes: { shadow: { color: '#115e59' } } }
|
|
1699
|
+
'.bar-shadow-teal-900[platform=ios]': { titleAttributes: { shadow: { color: '#134e4a' } } }
|
|
1700
|
+
'.bar-shadow-cyan-50[platform=ios]': { titleAttributes: { shadow: { color: '#ecfeff' } } }
|
|
1701
|
+
'.bar-shadow-cyan-100[platform=ios]': { titleAttributes: { shadow: { color: '#cffafe' } } }
|
|
1702
|
+
'.bar-shadow-cyan-200[platform=ios]': { titleAttributes: { shadow: { color: '#a5f3fc' } } }
|
|
1703
|
+
'.bar-shadow-cyan-300[platform=ios]': { titleAttributes: { shadow: { color: '#67e8f9' } } }
|
|
1704
|
+
'.bar-shadow-cyan-400[platform=ios]': { titleAttributes: { shadow: { color: '#22d3ee' } } }
|
|
1705
|
+
'.bar-shadow-cyan-500[platform=ios]': { titleAttributes: { shadow: { color: '#06b6d4' } } }
|
|
1706
|
+
'.bar-shadow-cyan-600[platform=ios]': { titleAttributes: { shadow: { color: '#0891b2' } } }
|
|
1707
|
+
'.bar-shadow-cyan-700[platform=ios]': { titleAttributes: { shadow: { color: '#0e7490' } } }
|
|
1708
|
+
'.bar-shadow-cyan-800[platform=ios]': { titleAttributes: { shadow: { color: '#155e75' } } }
|
|
1709
|
+
'.bar-shadow-cyan-900[platform=ios]': { titleAttributes: { shadow: { color: '#164e63' } } }
|
|
1710
|
+
'.bar-shadow-sky-50[platform=ios]': { titleAttributes: { shadow: { color: '#f0f9ff' } } }
|
|
1711
|
+
'.bar-shadow-sky-100[platform=ios]': { titleAttributes: { shadow: { color: '#e0f2fe' } } }
|
|
1712
|
+
'.bar-shadow-sky-200[platform=ios]': { titleAttributes: { shadow: { color: '#bae6fd' } } }
|
|
1713
|
+
'.bar-shadow-sky-300[platform=ios]': { titleAttributes: { shadow: { color: '#7dd3fc' } } }
|
|
1714
|
+
'.bar-shadow-sky-400[platform=ios]': { titleAttributes: { shadow: { color: '#38bdf8' } } }
|
|
1715
|
+
'.bar-shadow-sky-500[platform=ios]': { titleAttributes: { shadow: { color: '#0ea5e9' } } }
|
|
1716
|
+
'.bar-shadow-sky-600[platform=ios]': { titleAttributes: { shadow: { color: '#0284c7' } } }
|
|
1717
|
+
'.bar-shadow-sky-700[platform=ios]': { titleAttributes: { shadow: { color: '#0369a1' } } }
|
|
1718
|
+
'.bar-shadow-sky-800[platform=ios]': { titleAttributes: { shadow: { color: '#075985' } } }
|
|
1719
|
+
'.bar-shadow-sky-900[platform=ios]': { titleAttributes: { shadow: { color: '#0c4a6e' } } }
|
|
1720
|
+
'.bar-shadow-blue-50[platform=ios]': { titleAttributes: { shadow: { color: '#eff6ff' } } }
|
|
1721
|
+
'.bar-shadow-blue-100[platform=ios]': { titleAttributes: { shadow: { color: '#dbeafe' } } }
|
|
1722
|
+
'.bar-shadow-blue-200[platform=ios]': { titleAttributes: { shadow: { color: '#bfdbfe' } } }
|
|
1723
|
+
'.bar-shadow-blue-300[platform=ios]': { titleAttributes: { shadow: { color: '#93c5fd' } } }
|
|
1724
|
+
'.bar-shadow-blue-400[platform=ios]': { titleAttributes: { shadow: { color: '#60a5fa' } } }
|
|
1725
|
+
'.bar-shadow-blue-500[platform=ios]': { titleAttributes: { shadow: { color: '#3b82f6' } } }
|
|
1726
|
+
'.bar-shadow-blue-600[platform=ios]': { titleAttributes: { shadow: { color: '#2563eb' } } }
|
|
1727
|
+
'.bar-shadow-blue-700[platform=ios]': { titleAttributes: { shadow: { color: '#1d4ed8' } } }
|
|
1728
|
+
'.bar-shadow-blue-800[platform=ios]': { titleAttributes: { shadow: { color: '#1e40af' } } }
|
|
1729
|
+
'.bar-shadow-blue-900[platform=ios]': { titleAttributes: { shadow: { color: '#1e3a8a' } } }
|
|
1730
|
+
'.bar-shadow-indigo-50[platform=ios]': { titleAttributes: { shadow: { color: '#eef2ff' } } }
|
|
1731
|
+
'.bar-shadow-indigo-100[platform=ios]': { titleAttributes: { shadow: { color: '#e0e7ff' } } }
|
|
1732
|
+
'.bar-shadow-indigo-200[platform=ios]': { titleAttributes: { shadow: { color: '#c7d2fe' } } }
|
|
1733
|
+
'.bar-shadow-indigo-300[platform=ios]': { titleAttributes: { shadow: { color: '#a5b4fc' } } }
|
|
1734
|
+
'.bar-shadow-indigo-400[platform=ios]': { titleAttributes: { shadow: { color: '#818cf8' } } }
|
|
1735
|
+
'.bar-shadow-indigo-500[platform=ios]': { titleAttributes: { shadow: { color: '#6366f1' } } }
|
|
1736
|
+
'.bar-shadow-indigo-600[platform=ios]': { titleAttributes: { shadow: { color: '#4f46e5' } } }
|
|
1737
|
+
'.bar-shadow-indigo-700[platform=ios]': { titleAttributes: { shadow: { color: '#4338ca' } } }
|
|
1738
|
+
'.bar-shadow-indigo-800[platform=ios]': { titleAttributes: { shadow: { color: '#3730a3' } } }
|
|
1739
|
+
'.bar-shadow-indigo-900[platform=ios]': { titleAttributes: { shadow: { color: '#312e81' } } }
|
|
1740
|
+
'.bar-shadow-violet-50[platform=ios]': { titleAttributes: { shadow: { color: '#f5f3ff' } } }
|
|
1741
|
+
'.bar-shadow-violet-100[platform=ios]': { titleAttributes: { shadow: { color: '#ede9fe' } } }
|
|
1742
|
+
'.bar-shadow-violet-200[platform=ios]': { titleAttributes: { shadow: { color: '#ddd6fe' } } }
|
|
1743
|
+
'.bar-shadow-violet-300[platform=ios]': { titleAttributes: { shadow: { color: '#c4b5fd' } } }
|
|
1744
|
+
'.bar-shadow-violet-400[platform=ios]': { titleAttributes: { shadow: { color: '#a78bfa' } } }
|
|
1745
|
+
'.bar-shadow-violet-500[platform=ios]': { titleAttributes: { shadow: { color: '#8b5cf6' } } }
|
|
1746
|
+
'.bar-shadow-violet-600[platform=ios]': { titleAttributes: { shadow: { color: '#7c3aed' } } }
|
|
1747
|
+
'.bar-shadow-violet-700[platform=ios]': { titleAttributes: { shadow: { color: '#6d28d9' } } }
|
|
1748
|
+
'.bar-shadow-violet-800[platform=ios]': { titleAttributes: { shadow: { color: '#5b21b6' } } }
|
|
1749
|
+
'.bar-shadow-violet-900[platform=ios]': { titleAttributes: { shadow: { color: '#4c1d95' } } }
|
|
1750
|
+
'.bar-shadow-purple-50[platform=ios]': { titleAttributes: { shadow: { color: '#faf5ff' } } }
|
|
1751
|
+
'.bar-shadow-purple-100[platform=ios]': { titleAttributes: { shadow: { color: '#f3e8ff' } } }
|
|
1752
|
+
'.bar-shadow-purple-200[platform=ios]': { titleAttributes: { shadow: { color: '#e9d5ff' } } }
|
|
1753
|
+
'.bar-shadow-purple-300[platform=ios]': { titleAttributes: { shadow: { color: '#d8b4fe' } } }
|
|
1754
|
+
'.bar-shadow-purple-400[platform=ios]': { titleAttributes: { shadow: { color: '#c084fc' } } }
|
|
1755
|
+
'.bar-shadow-purple-500[platform=ios]': { titleAttributes: { shadow: { color: '#a855f7' } } }
|
|
1756
|
+
'.bar-shadow-purple-600[platform=ios]': { titleAttributes: { shadow: { color: '#9333ea' } } }
|
|
1757
|
+
'.bar-shadow-purple-700[platform=ios]': { titleAttributes: { shadow: { color: '#7e22ce' } } }
|
|
1758
|
+
'.bar-shadow-purple-800[platform=ios]': { titleAttributes: { shadow: { color: '#6b21a8' } } }
|
|
1759
|
+
'.bar-shadow-purple-900[platform=ios]': { titleAttributes: { shadow: { color: '#581c87' } } }
|
|
1760
|
+
'.bar-shadow-fuchsia-50[platform=ios]': { titleAttributes: { shadow: { color: '#fdf4ff' } } }
|
|
1761
|
+
'.bar-shadow-fuchsia-100[platform=ios]': { titleAttributes: { shadow: { color: '#fae8ff' } } }
|
|
1762
|
+
'.bar-shadow-fuchsia-200[platform=ios]': { titleAttributes: { shadow: { color: '#f5d0fe' } } }
|
|
1763
|
+
'.bar-shadow-fuchsia-300[platform=ios]': { titleAttributes: { shadow: { color: '#f0abfc' } } }
|
|
1764
|
+
'.bar-shadow-fuchsia-400[platform=ios]': { titleAttributes: { shadow: { color: '#e879f9' } } }
|
|
1765
|
+
'.bar-shadow-fuchsia-500[platform=ios]': { titleAttributes: { shadow: { color: '#d946ef' } } }
|
|
1766
|
+
'.bar-shadow-fuchsia-600[platform=ios]': { titleAttributes: { shadow: { color: '#c026d3' } } }
|
|
1767
|
+
'.bar-shadow-fuchsia-700[platform=ios]': { titleAttributes: { shadow: { color: '#a21caf' } } }
|
|
1768
|
+
'.bar-shadow-fuchsia-800[platform=ios]': { titleAttributes: { shadow: { color: '#86198f' } } }
|
|
1769
|
+
'.bar-shadow-fuchsia-900[platform=ios]': { titleAttributes: { shadow: { color: '#701a75' } } }
|
|
1770
|
+
'.bar-shadow-pink-50[platform=ios]': { titleAttributes: { shadow: { color: '#fdf2f8' } } }
|
|
1771
|
+
'.bar-shadow-pink-100[platform=ios]': { titleAttributes: { shadow: { color: '#fce7f3' } } }
|
|
1772
|
+
'.bar-shadow-pink-200[platform=ios]': { titleAttributes: { shadow: { color: '#fbcfe8' } } }
|
|
1773
|
+
'.bar-shadow-pink-300[platform=ios]': { titleAttributes: { shadow: { color: '#f9a8d4' } } }
|
|
1774
|
+
'.bar-shadow-pink-400[platform=ios]': { titleAttributes: { shadow: { color: '#f472b6' } } }
|
|
1775
|
+
'.bar-shadow-pink-500[platform=ios]': { titleAttributes: { shadow: { color: '#ec4899' } } }
|
|
1776
|
+
'.bar-shadow-pink-600[platform=ios]': { titleAttributes: { shadow: { color: '#db2777' } } }
|
|
1777
|
+
'.bar-shadow-pink-700[platform=ios]': { titleAttributes: { shadow: { color: '#be185d' } } }
|
|
1778
|
+
'.bar-shadow-pink-800[platform=ios]': { titleAttributes: { shadow: { color: '#9d174d' } } }
|
|
1779
|
+
'.bar-shadow-pink-900[platform=ios]': { titleAttributes: { shadow: { color: '#831843' } } }
|
|
1780
|
+
'.bar-shadow-rose-50[platform=ios]': { titleAttributes: { shadow: { color: '#fff1f2' } } }
|
|
1781
|
+
'.bar-shadow-rose-100[platform=ios]': { titleAttributes: { shadow: { color: '#ffe4e6' } } }
|
|
1782
|
+
'.bar-shadow-rose-200[platform=ios]': { titleAttributes: { shadow: { color: '#fecdd3' } } }
|
|
1783
|
+
'.bar-shadow-rose-300[platform=ios]': { titleAttributes: { shadow: { color: '#fda4af' } } }
|
|
1784
|
+
'.bar-shadow-rose-400[platform=ios]': { titleAttributes: { shadow: { color: '#fb7185' } } }
|
|
1785
|
+
'.bar-shadow-rose-500[platform=ios]': { titleAttributes: { shadow: { color: '#f43f5e' } } }
|
|
1786
|
+
'.bar-shadow-rose-600[platform=ios]': { titleAttributes: { shadow: { color: '#e11d48' } } }
|
|
1787
|
+
'.bar-shadow-rose-700[platform=ios]': { titleAttributes: { shadow: { color: '#be123c' } } }
|
|
1788
|
+
'.bar-shadow-rose-800[platform=ios]': { titleAttributes: { shadow: { color: '#9f1239' } } }
|
|
1789
|
+
'.bar-shadow-rose-900[platform=ios]': { titleAttributes: { shadow: { color: '#881337' } } }
|
|
1790
|
+
|
|
1791
|
+
// Component(s): Ti.UI.View
|
|
1792
|
+
// Property(ies): borderColor
|
|
1192
1793
|
'.border-transparent': { borderColor: 'transparent' }
|
|
1193
1794
|
'.border-black': { borderColor: '#000000' }
|
|
1194
1795
|
'.border-white': { borderColor: '#ffffff' }
|
|
@@ -1413,8 +2014,8 @@
|
|
|
1413
2014
|
'.border-rose-800': { borderColor: '#9f1239' }
|
|
1414
2015
|
'.border-rose-900': { borderColor: '#881337' }
|
|
1415
2016
|
|
|
1416
|
-
//
|
|
1417
|
-
|
|
2017
|
+
// Component(s): Ti.UI.Android.CardView, Ti.UI.View
|
|
2018
|
+
// Property(ies): borderRadius ( with Extra Styles )
|
|
1418
2019
|
'.rounded-1': { borderRadius: 2 }
|
|
1419
2020
|
'.rounded-2': { borderRadius: 4 }
|
|
1420
2021
|
'.rounded-3': { borderRadius: 6 }
|
|
@@ -1457,27 +2058,615 @@
|
|
|
1457
2058
|
'.rounded-xl': { borderRadius: 12 }
|
|
1458
2059
|
'.rounded-2xl': { borderRadius: 16 }
|
|
1459
2060
|
'.rounded-3xl': { borderRadius: 24 }
|
|
2061
|
+
'.rounded-t-1': { borderRadius: [2, 2, 0, 0] }
|
|
2062
|
+
'.rounded-t-2': { borderRadius: [4, 4, 0, 0] }
|
|
2063
|
+
'.rounded-t-3': { borderRadius: [6, 6, 0, 0] }
|
|
2064
|
+
'.rounded-t-4': { borderRadius: [8, 8, 0, 0] }
|
|
2065
|
+
'.rounded-t-5': { borderRadius: [10, 10, 0, 0] }
|
|
2066
|
+
'.rounded-t-6': { borderRadius: [12, 12, 0, 0] }
|
|
2067
|
+
'.rounded-t-7': { borderRadius: [14, 14, 0, 0] }
|
|
2068
|
+
'.rounded-t-8': { borderRadius: [16, 16, 0, 0] }
|
|
2069
|
+
'.rounded-t-9': { borderRadius: [18, 18, 0, 0] }
|
|
2070
|
+
'.rounded-t-10': { borderRadius: [20, 20, 0, 0] }
|
|
2071
|
+
'.rounded-t-11': { borderRadius: [22, 22, 0, 0] }
|
|
2072
|
+
'.rounded-t-12': { borderRadius: [24, 24, 0, 0] }
|
|
2073
|
+
'.rounded-t-14': { borderRadius: [28, 28, 0, 0] }
|
|
2074
|
+
'.rounded-t-16': { borderRadius: [32, 32, 0, 0] }
|
|
2075
|
+
'.rounded-t-20': { borderRadius: [40, 40, 0, 0] }
|
|
2076
|
+
'.rounded-t-24': { borderRadius: [48, 48, 0, 0] }
|
|
2077
|
+
'.rounded-t-28': { borderRadius: [56, 56, 0, 0] }
|
|
2078
|
+
'.rounded-t-32': { borderRadius: [64, 64, 0, 0] }
|
|
2079
|
+
'.rounded-t-36': { borderRadius: [72, 72, 0, 0] }
|
|
2080
|
+
'.rounded-t-40': { borderRadius: [80, 80, 0, 0] }
|
|
2081
|
+
'.rounded-t-44': { borderRadius: [88, 88, 0, 0] }
|
|
2082
|
+
'.rounded-t-48': { borderRadius: [96, 96, 0, 0] }
|
|
2083
|
+
'.rounded-t-52': { borderRadius: [104, 104, 0, 0] }
|
|
2084
|
+
'.rounded-t-56': { borderRadius: [112, 112, 0, 0] }
|
|
2085
|
+
'.rounded-t-60': { borderRadius: [120, 120, 0, 0] }
|
|
2086
|
+
'.rounded-t-64': { borderRadius: [128, 128, 0, 0] }
|
|
2087
|
+
'.rounded-t-72': { borderRadius: [144, 144, 0, 0] }
|
|
2088
|
+
'.rounded-t-80': { borderRadius: [160, 160, 0, 0] }
|
|
2089
|
+
'.rounded-t-96': { borderRadius: [192, 192, 0, 0] }
|
|
2090
|
+
'.rounded-t-px': { borderRadius: ['1px', '1px', 0, 0] }
|
|
2091
|
+
'.rounded-t-0.5': { borderRadius: [1, 1, 0, 0] }
|
|
2092
|
+
'.rounded-t-1.5': { borderRadius: [3, 3, 0, 0] }
|
|
2093
|
+
'.rounded-t-2.5': { borderRadius: [5, 5, 0, 0] }
|
|
2094
|
+
'.rounded-t-3.5': { borderRadius: [7, 7, 0, 0] }
|
|
2095
|
+
'.rounded-t-none': { borderRadius: [0, 0, 0, 0] }
|
|
2096
|
+
'.rounded-t-sm': { borderRadius: [2, 2, 0, 0] }
|
|
2097
|
+
'.rounded-t': { borderRadius: [4, 4, 0, 0] }
|
|
2098
|
+
'.rounded-t-md': { borderRadius: [6, 6, 0, 0] }
|
|
2099
|
+
'.rounded-t-lg': { borderRadius: [8, 8, 0, 0] }
|
|
2100
|
+
'.rounded-t-xl': { borderRadius: [12, 12, 0, 0] }
|
|
2101
|
+
'.rounded-t-2xl': { borderRadius: [16, 16, 0, 0] }
|
|
2102
|
+
'.rounded-t-3xl': { borderRadius: [24, 24, 0, 0] }
|
|
2103
|
+
'.rounded-r-1': { borderRadius: [0, 2, 2, 0] }
|
|
2104
|
+
'.rounded-r-2': { borderRadius: [0, 4, 4, 0] }
|
|
2105
|
+
'.rounded-r-3': { borderRadius: [0, 6, 6, 0] }
|
|
2106
|
+
'.rounded-r-4': { borderRadius: [0, 8, 8, 0] }
|
|
2107
|
+
'.rounded-r-5': { borderRadius: [0, 10, 10, 0] }
|
|
2108
|
+
'.rounded-r-6': { borderRadius: [0, 12, 12, 0] }
|
|
2109
|
+
'.rounded-r-7': { borderRadius: [0, 14, 14, 0] }
|
|
2110
|
+
'.rounded-r-8': { borderRadius: [0, 16, 16, 0] }
|
|
2111
|
+
'.rounded-r-9': { borderRadius: [0, 18, 18, 0] }
|
|
2112
|
+
'.rounded-r-10': { borderRadius: [0, 20, 20, 0] }
|
|
2113
|
+
'.rounded-r-11': { borderRadius: [0, 22, 22, 0] }
|
|
2114
|
+
'.rounded-r-12': { borderRadius: [0, 24, 24, 0] }
|
|
2115
|
+
'.rounded-r-14': { borderRadius: [0, 28, 28, 0] }
|
|
2116
|
+
'.rounded-r-16': { borderRadius: [0, 32, 32, 0] }
|
|
2117
|
+
'.rounded-r-20': { borderRadius: [0, 40, 40, 0] }
|
|
2118
|
+
'.rounded-r-24': { borderRadius: [0, 48, 48, 0] }
|
|
2119
|
+
'.rounded-r-28': { borderRadius: [0, 56, 56, 0] }
|
|
2120
|
+
'.rounded-r-32': { borderRadius: [0, 64, 64, 0] }
|
|
2121
|
+
'.rounded-r-36': { borderRadius: [0, 72, 72, 0] }
|
|
2122
|
+
'.rounded-r-40': { borderRadius: [0, 80, 80, 0] }
|
|
2123
|
+
'.rounded-r-44': { borderRadius: [0, 88, 88, 0] }
|
|
2124
|
+
'.rounded-r-48': { borderRadius: [0, 96, 96, 0] }
|
|
2125
|
+
'.rounded-r-52': { borderRadius: [0, 104, 104, 0] }
|
|
2126
|
+
'.rounded-r-56': { borderRadius: [0, 112, 112, 0] }
|
|
2127
|
+
'.rounded-r-60': { borderRadius: [0, 120, 120, 0] }
|
|
2128
|
+
'.rounded-r-64': { borderRadius: [0, 128, 128, 0] }
|
|
2129
|
+
'.rounded-r-72': { borderRadius: [0, 144, 144, 0] }
|
|
2130
|
+
'.rounded-r-80': { borderRadius: [0, 160, 160, 0] }
|
|
2131
|
+
'.rounded-r-96': { borderRadius: [0, 192, 192, 0] }
|
|
2132
|
+
'.rounded-r-px': { borderRadius: [0, '1px', '1px', 0] }
|
|
2133
|
+
'.rounded-r-0.5': { borderRadius: [0, 1, 1, 0] }
|
|
2134
|
+
'.rounded-r-1.5': { borderRadius: [0, 3, 3, 0] }
|
|
2135
|
+
'.rounded-r-2.5': { borderRadius: [0, 5, 5, 0] }
|
|
2136
|
+
'.rounded-r-3.5': { borderRadius: [0, 7, 7, 0] }
|
|
2137
|
+
'.rounded-r-none': { borderRadius: [0, 0, 0, 0] }
|
|
2138
|
+
'.rounded-r-sm': { borderRadius: [0, 2, 2, 0] }
|
|
2139
|
+
'.rounded-r': { borderRadius: [0, 4, 4, 0] }
|
|
2140
|
+
'.rounded-r-md': { borderRadius: [0, 6, 6, 0] }
|
|
2141
|
+
'.rounded-r-lg': { borderRadius: [0, 8, 8, 0] }
|
|
2142
|
+
'.rounded-r-xl': { borderRadius: [0, 12, 12, 0] }
|
|
2143
|
+
'.rounded-r-2xl': { borderRadius: [0, 16, 16, 0] }
|
|
2144
|
+
'.rounded-r-3xl': { borderRadius: [0, 24, 24, 0] }
|
|
2145
|
+
'.rounded-b-1': { borderRadius: [0, 0, 2, 2] }
|
|
2146
|
+
'.rounded-b-2': { borderRadius: [0, 0, 4, 4] }
|
|
2147
|
+
'.rounded-b-3': { borderRadius: [0, 0, 6, 6] }
|
|
2148
|
+
'.rounded-b-4': { borderRadius: [0, 0, 8, 8] }
|
|
2149
|
+
'.rounded-b-5': { borderRadius: [0, 0, 10, 10] }
|
|
2150
|
+
'.rounded-b-6': { borderRadius: [0, 0, 12, 12] }
|
|
2151
|
+
'.rounded-b-7': { borderRadius: [0, 0, 14, 14] }
|
|
2152
|
+
'.rounded-b-8': { borderRadius: [0, 0, 16, 16] }
|
|
2153
|
+
'.rounded-b-9': { borderRadius: [0, 0, 18, 18] }
|
|
2154
|
+
'.rounded-b-10': { borderRadius: [0, 0, 20, 20] }
|
|
2155
|
+
'.rounded-b-11': { borderRadius: [0, 0, 22, 22] }
|
|
2156
|
+
'.rounded-b-12': { borderRadius: [0, 0, 24, 24] }
|
|
2157
|
+
'.rounded-b-14': { borderRadius: [0, 0, 28, 28] }
|
|
2158
|
+
'.rounded-b-16': { borderRadius: [0, 0, 32, 32] }
|
|
2159
|
+
'.rounded-b-20': { borderRadius: [0, 0, 40, 40] }
|
|
2160
|
+
'.rounded-b-24': { borderRadius: [0, 0, 48, 48] }
|
|
2161
|
+
'.rounded-b-28': { borderRadius: [0, 0, 56, 56] }
|
|
2162
|
+
'.rounded-b-32': { borderRadius: [0, 0, 64, 64] }
|
|
2163
|
+
'.rounded-b-36': { borderRadius: [0, 0, 72, 72] }
|
|
2164
|
+
'.rounded-b-40': { borderRadius: [0, 0, 80, 80] }
|
|
2165
|
+
'.rounded-b-44': { borderRadius: [0, 0, 88, 88] }
|
|
2166
|
+
'.rounded-b-48': { borderRadius: [0, 0, 96, 96] }
|
|
2167
|
+
'.rounded-b-52': { borderRadius: [0, 0, 104, 104] }
|
|
2168
|
+
'.rounded-b-56': { borderRadius: [0, 0, 112, 112] }
|
|
2169
|
+
'.rounded-b-60': { borderRadius: [0, 0, 120, 120] }
|
|
2170
|
+
'.rounded-b-64': { borderRadius: [0, 0, 128, 128] }
|
|
2171
|
+
'.rounded-b-72': { borderRadius: [0, 0, 144, 144] }
|
|
2172
|
+
'.rounded-b-80': { borderRadius: [0, 0, 160, 160] }
|
|
2173
|
+
'.rounded-b-96': { borderRadius: [0, 0, 192, 192] }
|
|
2174
|
+
'.rounded-b-px': { borderRadius: [0, 0, '1px', '1px'] }
|
|
2175
|
+
'.rounded-b-0.5': { borderRadius: [0, 0, 1, 1] }
|
|
2176
|
+
'.rounded-b-1.5': { borderRadius: [0, 0, 3, 3] }
|
|
2177
|
+
'.rounded-b-2.5': { borderRadius: [0, 0, 5, 5] }
|
|
2178
|
+
'.rounded-b-3.5': { borderRadius: [0, 0, 7, 7] }
|
|
2179
|
+
'.rounded-b-none': { borderRadius: [0, 0, 0, 0] }
|
|
2180
|
+
'.rounded-b-sm': { borderRadius: [0, 0, 2, 2] }
|
|
2181
|
+
'.rounded-b': { borderRadius: [0, 0, 4, 4] }
|
|
2182
|
+
'.rounded-b-md': { borderRadius: [0, 0, 6, 6] }
|
|
2183
|
+
'.rounded-b-lg': { borderRadius: [0, 0, 8, 8] }
|
|
2184
|
+
'.rounded-b-xl': { borderRadius: [0, 0, 12, 12] }
|
|
2185
|
+
'.rounded-b-2xl': { borderRadius: [0, 0, 16, 16] }
|
|
2186
|
+
'.rounded-b-3xl': { borderRadius: [0, 0, 24, 24] }
|
|
2187
|
+
'.rounded-l-1': { borderRadius: [2, 0, 0, 2] }
|
|
2188
|
+
'.rounded-l-2': { borderRadius: [4, 0, 0, 4] }
|
|
2189
|
+
'.rounded-l-3': { borderRadius: [6, 0, 0, 6] }
|
|
2190
|
+
'.rounded-l-4': { borderRadius: [8, 0, 0, 8] }
|
|
2191
|
+
'.rounded-l-5': { borderRadius: [10, 0, 0, 10] }
|
|
2192
|
+
'.rounded-l-6': { borderRadius: [12, 0, 0, 12] }
|
|
2193
|
+
'.rounded-l-7': { borderRadius: [14, 0, 0, 14] }
|
|
2194
|
+
'.rounded-l-8': { borderRadius: [16, 0, 0, 16] }
|
|
2195
|
+
'.rounded-l-9': { borderRadius: [18, 0, 0, 18] }
|
|
2196
|
+
'.rounded-l-10': { borderRadius: [20, 0, 0, 20] }
|
|
2197
|
+
'.rounded-l-11': { borderRadius: [22, 0, 0, 22] }
|
|
2198
|
+
'.rounded-l-12': { borderRadius: [24, 0, 0, 24] }
|
|
2199
|
+
'.rounded-l-14': { borderRadius: [28, 0, 0, 28] }
|
|
2200
|
+
'.rounded-l-16': { borderRadius: [32, 0, 0, 32] }
|
|
2201
|
+
'.rounded-l-20': { borderRadius: [40, 0, 0, 40] }
|
|
2202
|
+
'.rounded-l-24': { borderRadius: [48, 0, 0, 48] }
|
|
2203
|
+
'.rounded-l-28': { borderRadius: [56, 0, 0, 56] }
|
|
2204
|
+
'.rounded-l-32': { borderRadius: [64, 0, 0, 64] }
|
|
2205
|
+
'.rounded-l-36': { borderRadius: [72, 0, 0, 72] }
|
|
2206
|
+
'.rounded-l-40': { borderRadius: [80, 0, 0, 80] }
|
|
2207
|
+
'.rounded-l-44': { borderRadius: [88, 0, 0, 88] }
|
|
2208
|
+
'.rounded-l-48': { borderRadius: [96, 0, 0, 96] }
|
|
2209
|
+
'.rounded-l-52': { borderRadius: [104, 0, 0, 104] }
|
|
2210
|
+
'.rounded-l-56': { borderRadius: [112, 0, 0, 112] }
|
|
2211
|
+
'.rounded-l-60': { borderRadius: [120, 0, 0, 120] }
|
|
2212
|
+
'.rounded-l-64': { borderRadius: [128, 0, 0, 128] }
|
|
2213
|
+
'.rounded-l-72': { borderRadius: [144, 0, 0, 144] }
|
|
2214
|
+
'.rounded-l-80': { borderRadius: [160, 0, 0, 160] }
|
|
2215
|
+
'.rounded-l-96': { borderRadius: [192, 0, 0, 192] }
|
|
2216
|
+
'.rounded-l-px': { borderRadius: ['1px', 0, 0, '1px'] }
|
|
2217
|
+
'.rounded-l-0.5': { borderRadius: [1, 0, 0, 1] }
|
|
2218
|
+
'.rounded-l-1.5': { borderRadius: [3, 0, 0, 3] }
|
|
2219
|
+
'.rounded-l-2.5': { borderRadius: [5, 0, 0, 5] }
|
|
2220
|
+
'.rounded-l-3.5': { borderRadius: [7, 0, 0, 7] }
|
|
2221
|
+
'.rounded-l-none': { borderRadius: [0, 0, 0, 0] }
|
|
2222
|
+
'.rounded-l-sm': { borderRadius: [2, 0, 0, 2] }
|
|
2223
|
+
'.rounded-l': { borderRadius: [4, 0, 0, 4] }
|
|
2224
|
+
'.rounded-l-md': { borderRadius: [6, 0, 0, 6] }
|
|
2225
|
+
'.rounded-l-lg': { borderRadius: [8, 0, 0, 8] }
|
|
2226
|
+
'.rounded-l-xl': { borderRadius: [12, 0, 0, 12] }
|
|
2227
|
+
'.rounded-l-2xl': { borderRadius: [16, 0, 0, 16] }
|
|
2228
|
+
'.rounded-l-3xl': { borderRadius: [24, 0, 0, 24] }
|
|
2229
|
+
'.rounded-tl-1': { borderRadius: [2, 0, 0, 0] }
|
|
2230
|
+
'.rounded-tl-2': { borderRadius: [4, 0, 0, 0] }
|
|
2231
|
+
'.rounded-tl-3': { borderRadius: [6, 0, 0, 0] }
|
|
2232
|
+
'.rounded-tl-4': { borderRadius: [8, 0, 0, 0] }
|
|
2233
|
+
'.rounded-tl-5': { borderRadius: [10, 0, 0, 0] }
|
|
2234
|
+
'.rounded-tl-6': { borderRadius: [12, 0, 0, 0] }
|
|
2235
|
+
'.rounded-tl-7': { borderRadius: [14, 0, 0, 0] }
|
|
2236
|
+
'.rounded-tl-8': { borderRadius: [16, 0, 0, 0] }
|
|
2237
|
+
'.rounded-tl-9': { borderRadius: [18, 0, 0, 0] }
|
|
2238
|
+
'.rounded-tl-10': { borderRadius: [20, 0, 0, 0] }
|
|
2239
|
+
'.rounded-tl-11': { borderRadius: [22, 0, 0, 0] }
|
|
2240
|
+
'.rounded-tl-12': { borderRadius: [24, 0, 0, 0] }
|
|
2241
|
+
'.rounded-tl-14': { borderRadius: [28, 0, 0, 0] }
|
|
2242
|
+
'.rounded-tl-16': { borderRadius: [32, 0, 0, 0] }
|
|
2243
|
+
'.rounded-tl-20': { borderRadius: [40, 0, 0, 0] }
|
|
2244
|
+
'.rounded-tl-24': { borderRadius: [48, 0, 0, 0] }
|
|
2245
|
+
'.rounded-tl-28': { borderRadius: [56, 0, 0, 0] }
|
|
2246
|
+
'.rounded-tl-32': { borderRadius: [64, 0, 0, 0] }
|
|
2247
|
+
'.rounded-tl-36': { borderRadius: [72, 0, 0, 0] }
|
|
2248
|
+
'.rounded-tl-40': { borderRadius: [80, 0, 0, 0] }
|
|
2249
|
+
'.rounded-tl-44': { borderRadius: [88, 0, 0, 0] }
|
|
2250
|
+
'.rounded-tl-48': { borderRadius: [96, 0, 0, 0] }
|
|
2251
|
+
'.rounded-tl-52': { borderRadius: [104, 0, 0, 0] }
|
|
2252
|
+
'.rounded-tl-56': { borderRadius: [112, 0, 0, 0] }
|
|
2253
|
+
'.rounded-tl-60': { borderRadius: [120, 0, 0, 0] }
|
|
2254
|
+
'.rounded-tl-64': { borderRadius: [128, 0, 0, 0] }
|
|
2255
|
+
'.rounded-tl-72': { borderRadius: [144, 0, 0, 0] }
|
|
2256
|
+
'.rounded-tl-80': { borderRadius: [160, 0, 0, 0] }
|
|
2257
|
+
'.rounded-tl-96': { borderRadius: [192, 0, 0, 0] }
|
|
2258
|
+
'.rounded-tl-px': { borderRadius: ['1px', 0, 0, 0] }
|
|
2259
|
+
'.rounded-tl-0.5': { borderRadius: [1, 0, 0, 0] }
|
|
2260
|
+
'.rounded-tl-1.5': { borderRadius: [3, 0, 0, 0] }
|
|
2261
|
+
'.rounded-tl-2.5': { borderRadius: [5, 0, 0, 0] }
|
|
2262
|
+
'.rounded-tl-3.5': { borderRadius: [7, 0, 0, 0] }
|
|
2263
|
+
'.rounded-tl-none': { borderRadius: [0, 0, 0, 0] }
|
|
2264
|
+
'.rounded-tl-sm': { borderRadius: [2, 0, 0, 0] }
|
|
2265
|
+
'.rounded-tl': { borderRadius: [4, 0, 0, 0] }
|
|
2266
|
+
'.rounded-tl-md': { borderRadius: [6, 0, 0, 0] }
|
|
2267
|
+
'.rounded-tl-lg': { borderRadius: [8, 0, 0, 0] }
|
|
2268
|
+
'.rounded-tl-xl': { borderRadius: [12, 0, 0, 0] }
|
|
2269
|
+
'.rounded-tl-2xl': { borderRadius: [16, 0, 0, 0] }
|
|
2270
|
+
'.rounded-tl-3xl': { borderRadius: [24, 0, 0, 0] }
|
|
2271
|
+
'.rounded-tr-1': { borderRadius: [0, 2, 0, 0] }
|
|
2272
|
+
'.rounded-tr-2': { borderRadius: [0, 4, 0, 0] }
|
|
2273
|
+
'.rounded-tr-3': { borderRadius: [0, 6, 0, 0] }
|
|
2274
|
+
'.rounded-tr-4': { borderRadius: [0, 8, 0, 0] }
|
|
2275
|
+
'.rounded-tr-5': { borderRadius: [0, 10, 0, 0] }
|
|
2276
|
+
'.rounded-tr-6': { borderRadius: [0, 12, 0, 0] }
|
|
2277
|
+
'.rounded-tr-7': { borderRadius: [0, 14, 0, 0] }
|
|
2278
|
+
'.rounded-tr-8': { borderRadius: [0, 16, 0, 0] }
|
|
2279
|
+
'.rounded-tr-9': { borderRadius: [0, 18, 0, 0] }
|
|
2280
|
+
'.rounded-tr-10': { borderRadius: [0, 20, 0, 0] }
|
|
2281
|
+
'.rounded-tr-11': { borderRadius: [0, 22, 0, 0] }
|
|
2282
|
+
'.rounded-tr-12': { borderRadius: [0, 24, 0, 0] }
|
|
2283
|
+
'.rounded-tr-14': { borderRadius: [0, 28, 0, 0] }
|
|
2284
|
+
'.rounded-tr-16': { borderRadius: [0, 32, 0, 0] }
|
|
2285
|
+
'.rounded-tr-20': { borderRadius: [0, 40, 0, 0] }
|
|
2286
|
+
'.rounded-tr-24': { borderRadius: [0, 48, 0, 0] }
|
|
2287
|
+
'.rounded-tr-28': { borderRadius: [0, 56, 0, 0] }
|
|
2288
|
+
'.rounded-tr-32': { borderRadius: [0, 64, 0, 0] }
|
|
2289
|
+
'.rounded-tr-36': { borderRadius: [0, 72, 0, 0] }
|
|
2290
|
+
'.rounded-tr-40': { borderRadius: [0, 80, 0, 0] }
|
|
2291
|
+
'.rounded-tr-44': { borderRadius: [0, 88, 0, 0] }
|
|
2292
|
+
'.rounded-tr-48': { borderRadius: [0, 96, 0, 0] }
|
|
2293
|
+
'.rounded-tr-52': { borderRadius: [0, 104, 0, 0] }
|
|
2294
|
+
'.rounded-tr-56': { borderRadius: [0, 112, 0, 0] }
|
|
2295
|
+
'.rounded-tr-60': { borderRadius: [0, 120, 0, 0] }
|
|
2296
|
+
'.rounded-tr-64': { borderRadius: [0, 128, 0, 0] }
|
|
2297
|
+
'.rounded-tr-72': { borderRadius: [0, 144, 0, 0] }
|
|
2298
|
+
'.rounded-tr-80': { borderRadius: [0, 160, 0, 0] }
|
|
2299
|
+
'.rounded-tr-96': { borderRadius: [0, 192, 0, 0] }
|
|
2300
|
+
'.rounded-tr-px': { borderRadius: [0, '1px', 0, 0] }
|
|
2301
|
+
'.rounded-tr-0.5': { borderRadius: [0, 1, 0, 0] }
|
|
2302
|
+
'.rounded-tr-1.5': { borderRadius: [0, 3, 0, 0] }
|
|
2303
|
+
'.rounded-tr-2.5': { borderRadius: [0, 5, 0, 0] }
|
|
2304
|
+
'.rounded-tr-3.5': { borderRadius: [0, 7, 0, 0] }
|
|
2305
|
+
'.rounded-tr-none': { borderRadius: [0, 0, 0, 0] }
|
|
2306
|
+
'.rounded-tr-sm': { borderRadius: [0, 2, 0, 0] }
|
|
2307
|
+
'.rounded-tr': { borderRadius: [0, 4, 0, 0] }
|
|
2308
|
+
'.rounded-tr-md': { borderRadius: [0, 6, 0, 0] }
|
|
2309
|
+
'.rounded-tr-lg': { borderRadius: [0, 8, 0, 0] }
|
|
2310
|
+
'.rounded-tr-xl': { borderRadius: [0, 12, 0, 0] }
|
|
2311
|
+
'.rounded-tr-2xl': { borderRadius: [0, 16, 0, 0] }
|
|
2312
|
+
'.rounded-tr-3xl': { borderRadius: [0, 24, 0, 0] }
|
|
2313
|
+
'.rounded-br-1': { borderRadius: [0, 0, 2, 0] }
|
|
2314
|
+
'.rounded-br-2': { borderRadius: [0, 0, 4, 0] }
|
|
2315
|
+
'.rounded-br-3': { borderRadius: [0, 0, 6, 0] }
|
|
2316
|
+
'.rounded-br-4': { borderRadius: [0, 0, 8, 0] }
|
|
2317
|
+
'.rounded-br-5': { borderRadius: [0, 0, 10, 0] }
|
|
2318
|
+
'.rounded-br-6': { borderRadius: [0, 0, 12, 0] }
|
|
2319
|
+
'.rounded-br-7': { borderRadius: [0, 0, 14, 0] }
|
|
2320
|
+
'.rounded-br-8': { borderRadius: [0, 0, 16, 0] }
|
|
2321
|
+
'.rounded-br-9': { borderRadius: [0, 0, 18, 0] }
|
|
2322
|
+
'.rounded-br-10': { borderRadius: [0, 0, 20, 0] }
|
|
2323
|
+
'.rounded-br-11': { borderRadius: [0, 0, 22, 0] }
|
|
2324
|
+
'.rounded-br-12': { borderRadius: [0, 0, 24, 0] }
|
|
2325
|
+
'.rounded-br-14': { borderRadius: [0, 0, 28, 0] }
|
|
2326
|
+
'.rounded-br-16': { borderRadius: [0, 0, 32, 0] }
|
|
2327
|
+
'.rounded-br-20': { borderRadius: [0, 0, 40, 0] }
|
|
2328
|
+
'.rounded-br-24': { borderRadius: [0, 0, 48, 0] }
|
|
2329
|
+
'.rounded-br-28': { borderRadius: [0, 0, 56, 0] }
|
|
2330
|
+
'.rounded-br-32': { borderRadius: [0, 0, 64, 0] }
|
|
2331
|
+
'.rounded-br-36': { borderRadius: [0, 0, 72, 0] }
|
|
2332
|
+
'.rounded-br-40': { borderRadius: [0, 0, 80, 0] }
|
|
2333
|
+
'.rounded-br-44': { borderRadius: [0, 0, 88, 0] }
|
|
2334
|
+
'.rounded-br-48': { borderRadius: [0, 0, 96, 0] }
|
|
2335
|
+
'.rounded-br-52': { borderRadius: [0, 0, 104, 0] }
|
|
2336
|
+
'.rounded-br-56': { borderRadius: [0, 0, 112, 0] }
|
|
2337
|
+
'.rounded-br-60': { borderRadius: [0, 0, 120, 0] }
|
|
2338
|
+
'.rounded-br-64': { borderRadius: [0, 0, 128, 0] }
|
|
2339
|
+
'.rounded-br-72': { borderRadius: [0, 0, 144, 0] }
|
|
2340
|
+
'.rounded-br-80': { borderRadius: [0, 0, 160, 0] }
|
|
2341
|
+
'.rounded-br-96': { borderRadius: [0, 0, 192, 0] }
|
|
2342
|
+
'.rounded-br-px': { borderRadius: [0, 0, '1px', 0] }
|
|
2343
|
+
'.rounded-br-0.5': { borderRadius: [0, 0, 1, 0] }
|
|
2344
|
+
'.rounded-br-1.5': { borderRadius: [0, 0, 3, 0] }
|
|
2345
|
+
'.rounded-br-2.5': { borderRadius: [0, 0, 5, 0] }
|
|
2346
|
+
'.rounded-br-3.5': { borderRadius: [0, 0, 7, 0] }
|
|
2347
|
+
'.rounded-br-none': { borderRadius: [0, 0, 0, 0] }
|
|
2348
|
+
'.rounded-br-sm': { borderRadius: [0, 0, 2, 0] }
|
|
2349
|
+
'.rounded-br': { borderRadius: [0, 0, 4, 0] }
|
|
2350
|
+
'.rounded-br-md': { borderRadius: [0, 0, 6, 0] }
|
|
2351
|
+
'.rounded-br-lg': { borderRadius: [0, 0, 8, 0] }
|
|
2352
|
+
'.rounded-br-xl': { borderRadius: [0, 0, 12, 0] }
|
|
2353
|
+
'.rounded-br-2xl': { borderRadius: [0, 0, 16, 0] }
|
|
2354
|
+
'.rounded-br-3xl': { borderRadius: [0, 0, 24, 0] }
|
|
2355
|
+
'.rounded-bl-1': { borderRadius: [0, 0, 0, 2] }
|
|
2356
|
+
'.rounded-bl-2': { borderRadius: [0, 0, 0, 4] }
|
|
2357
|
+
'.rounded-bl-3': { borderRadius: [0, 0, 0, 6] }
|
|
2358
|
+
'.rounded-bl-4': { borderRadius: [0, 0, 0, 8] }
|
|
2359
|
+
'.rounded-bl-5': { borderRadius: [0, 0, 0, 10] }
|
|
2360
|
+
'.rounded-bl-6': { borderRadius: [0, 0, 0, 12] }
|
|
2361
|
+
'.rounded-bl-7': { borderRadius: [0, 0, 0, 14] }
|
|
2362
|
+
'.rounded-bl-8': { borderRadius: [0, 0, 0, 16] }
|
|
2363
|
+
'.rounded-bl-9': { borderRadius: [0, 0, 0, 18] }
|
|
2364
|
+
'.rounded-bl-10': { borderRadius: [0, 0, 0, 20] }
|
|
2365
|
+
'.rounded-bl-11': { borderRadius: [0, 0, 0, 22] }
|
|
2366
|
+
'.rounded-bl-12': { borderRadius: [0, 0, 0, 24] }
|
|
2367
|
+
'.rounded-bl-14': { borderRadius: [0, 0, 0, 28] }
|
|
2368
|
+
'.rounded-bl-16': { borderRadius: [0, 0, 0, 32] }
|
|
2369
|
+
'.rounded-bl-20': { borderRadius: [0, 0, 0, 40] }
|
|
2370
|
+
'.rounded-bl-24': { borderRadius: [0, 0, 0, 48] }
|
|
2371
|
+
'.rounded-bl-28': { borderRadius: [0, 0, 0, 56] }
|
|
2372
|
+
'.rounded-bl-32': { borderRadius: [0, 0, 0, 64] }
|
|
2373
|
+
'.rounded-bl-36': { borderRadius: [0, 0, 0, 72] }
|
|
2374
|
+
'.rounded-bl-40': { borderRadius: [0, 0, 0, 80] }
|
|
2375
|
+
'.rounded-bl-44': { borderRadius: [0, 0, 0, 88] }
|
|
2376
|
+
'.rounded-bl-48': { borderRadius: [0, 0, 0, 96] }
|
|
2377
|
+
'.rounded-bl-52': { borderRadius: [0, 0, 0, 104] }
|
|
2378
|
+
'.rounded-bl-56': { borderRadius: [0, 0, 0, 112] }
|
|
2379
|
+
'.rounded-bl-60': { borderRadius: [0, 0, 0, 120] }
|
|
2380
|
+
'.rounded-bl-64': { borderRadius: [0, 0, 0, 128] }
|
|
2381
|
+
'.rounded-bl-72': { borderRadius: [0, 0, 0, 144] }
|
|
2382
|
+
'.rounded-bl-80': { borderRadius: [0, 0, 0, 160] }
|
|
2383
|
+
'.rounded-bl-96': { borderRadius: [0, 0, 0, 192] }
|
|
2384
|
+
'.rounded-bl-px': { borderRadius: [0, 0, 0, '1px'] }
|
|
2385
|
+
'.rounded-bl-0.5': { borderRadius: [0, 0, 0, 1] }
|
|
2386
|
+
'.rounded-bl-1.5': { borderRadius: [0, 0, 0, 3] }
|
|
2387
|
+
'.rounded-bl-2.5': { borderRadius: [0, 0, 0, 5] }
|
|
2388
|
+
'.rounded-bl-3.5': { borderRadius: [0, 0, 0, 7] }
|
|
2389
|
+
'.rounded-bl-none': { borderRadius: [0, 0, 0, 0] }
|
|
2390
|
+
'.rounded-bl-sm': { borderRadius: [0, 0, 0, 2] }
|
|
2391
|
+
'.rounded-bl': { borderRadius: [0, 0, 0, 4] }
|
|
2392
|
+
'.rounded-bl-md': { borderRadius: [0, 0, 0, 6] }
|
|
2393
|
+
'.rounded-bl-lg': { borderRadius: [0, 0, 0, 8] }
|
|
2394
|
+
'.rounded-bl-xl': { borderRadius: [0, 0, 0, 12] }
|
|
2395
|
+
'.rounded-bl-2xl': { borderRadius: [0, 0, 0, 16] }
|
|
2396
|
+
'.rounded-bl-3xl': { borderRadius: [0, 0, 0, 24] }
|
|
1460
2397
|
|
|
1461
|
-
//
|
|
1462
|
-
|
|
1463
|
-
'.
|
|
1464
|
-
'.
|
|
1465
|
-
'.
|
|
1466
|
-
'.
|
|
1467
|
-
'.
|
|
2398
|
+
// Component(s): Ti.UI.Picker[android], Ti.UI.TextArea, Ti.UI.TextField
|
|
2399
|
+
// Property(ies): borderStyle
|
|
2400
|
+
'.border-style-bezel': { borderStyle: Ti.UI.INPUT_BORDERSTYLE_BEZEL }
|
|
2401
|
+
'.border-style-filled': { borderStyle: Ti.UI.INPUT_BORDERSTYLE_FILLED }
|
|
2402
|
+
'.border-style-line': { borderStyle: Ti.UI.INPUT_BORDERSTYLE_LINE }
|
|
2403
|
+
'.border-style-none': { borderStyle: Ti.UI.INPUT_BORDERSTYLE_NONE }
|
|
2404
|
+
'.border-style-rounded': { borderStyle: Ti.UI.INPUT_BORDERSTYLE_ROUNDED }
|
|
2405
|
+
'.border-style-underlined': { borderStyle: Ti.UI.INPUT_BORDERSTYLE_UNDERLINED }
|
|
1468
2406
|
|
|
1469
|
-
//
|
|
2407
|
+
// Component(s): Ti.UI.View
|
|
2408
|
+
// Property(ies): borderWidth
|
|
1470
2409
|
'.border-0': { borderWidth: 0 }
|
|
1471
2410
|
'.border-2': { borderWidth: 2 }
|
|
1472
2411
|
'.border-4': { borderWidth: 4 }
|
|
1473
2412
|
'.border-8': { borderWidth: 8 }
|
|
1474
2413
|
'.border': { borderWidth: 1 }
|
|
1475
2414
|
|
|
1476
|
-
//
|
|
1477
|
-
|
|
1478
|
-
'.
|
|
2415
|
+
// Component(s): Ti.UI.Android.CardView, Ti.UI.TabGroup
|
|
2416
|
+
// Property(ies): padding, paddingTop, paddingLeft, paddingRight, paddingBottom
|
|
2417
|
+
'.padding-0': { padding: 0 }
|
|
2418
|
+
'.padding-1': { padding: 4 }
|
|
2419
|
+
'.padding-2': { padding: 8 }
|
|
2420
|
+
'.padding-3': { padding: 12 }
|
|
2421
|
+
'.padding-4': { padding: 16 }
|
|
2422
|
+
'.padding-5': { padding: 20 }
|
|
2423
|
+
'.padding-6': { padding: 24 }
|
|
2424
|
+
'.padding-7': { padding: 28 }
|
|
2425
|
+
'.padding-8': { padding: 32 }
|
|
2426
|
+
'.padding-9': { padding: 36 }
|
|
2427
|
+
'.padding-10': { padding: 40 }
|
|
2428
|
+
'.padding-11': { padding: 44 }
|
|
2429
|
+
'.padding-12': { padding: 48 }
|
|
2430
|
+
'.padding-14': { padding: 56 }
|
|
2431
|
+
'.padding-16': { padding: 64 }
|
|
2432
|
+
'.padding-20': { padding: 80 }
|
|
2433
|
+
'.padding-24': { padding: 96 }
|
|
2434
|
+
'.padding-28': { padding: 112 }
|
|
2435
|
+
'.padding-32': { padding: 128 }
|
|
2436
|
+
'.padding-36': { padding: 144 }
|
|
2437
|
+
'.padding-40': { padding: 160 }
|
|
2438
|
+
'.padding-44': { padding: 176 }
|
|
2439
|
+
'.padding-48': { padding: 192 }
|
|
2440
|
+
'.padding-52': { padding: 208 }
|
|
2441
|
+
'.padding-56': { padding: 224 }
|
|
2442
|
+
'.padding-60': { padding: 240 }
|
|
2443
|
+
'.padding-64': { padding: 256 }
|
|
2444
|
+
'.padding-72': { padding: 288 }
|
|
2445
|
+
'.padding-80': { padding: 320 }
|
|
2446
|
+
'.padding-96': { padding: 384 }
|
|
2447
|
+
'.padding-px': { padding: '1px' }
|
|
2448
|
+
'.padding-0.5': { padding: 2 }
|
|
2449
|
+
'.padding-1.5': { padding: 6 }
|
|
2450
|
+
'.padding-2.5': { padding: 10 }
|
|
2451
|
+
'.padding-3.5': { padding: 14 }
|
|
2452
|
+
'.padding-x-0': { paddingLeft: 0, paddingRight: 0 }
|
|
2453
|
+
'.padding-x-1': { paddingLeft: 4, paddingRight: 4 }
|
|
2454
|
+
'.padding-x-2': { paddingLeft: 8, paddingRight: 8 }
|
|
2455
|
+
'.padding-x-3': { paddingLeft: 12, paddingRight: 12 }
|
|
2456
|
+
'.padding-x-4': { paddingLeft: 16, paddingRight: 16 }
|
|
2457
|
+
'.padding-x-5': { paddingLeft: 20, paddingRight: 20 }
|
|
2458
|
+
'.padding-x-6': { paddingLeft: 24, paddingRight: 24 }
|
|
2459
|
+
'.padding-x-7': { paddingLeft: 28, paddingRight: 28 }
|
|
2460
|
+
'.padding-x-8': { paddingLeft: 32, paddingRight: 32 }
|
|
2461
|
+
'.padding-x-9': { paddingLeft: 36, paddingRight: 36 }
|
|
2462
|
+
'.padding-x-10': { paddingLeft: 40, paddingRight: 40 }
|
|
2463
|
+
'.padding-x-11': { paddingLeft: 44, paddingRight: 44 }
|
|
2464
|
+
'.padding-x-12': { paddingLeft: 48, paddingRight: 48 }
|
|
2465
|
+
'.padding-x-14': { paddingLeft: 56, paddingRight: 56 }
|
|
2466
|
+
'.padding-x-16': { paddingLeft: 64, paddingRight: 64 }
|
|
2467
|
+
'.padding-x-20': { paddingLeft: 80, paddingRight: 80 }
|
|
2468
|
+
'.padding-x-24': { paddingLeft: 96, paddingRight: 96 }
|
|
2469
|
+
'.padding-x-28': { paddingLeft: 112, paddingRight: 112 }
|
|
2470
|
+
'.padding-x-32': { paddingLeft: 128, paddingRight: 128 }
|
|
2471
|
+
'.padding-x-36': { paddingLeft: 144, paddingRight: 144 }
|
|
2472
|
+
'.padding-x-40': { paddingLeft: 160, paddingRight: 160 }
|
|
2473
|
+
'.padding-x-44': { paddingLeft: 176, paddingRight: 176 }
|
|
2474
|
+
'.padding-x-48': { paddingLeft: 192, paddingRight: 192 }
|
|
2475
|
+
'.padding-x-52': { paddingLeft: 208, paddingRight: 208 }
|
|
2476
|
+
'.padding-x-56': { paddingLeft: 224, paddingRight: 224 }
|
|
2477
|
+
'.padding-x-60': { paddingLeft: 240, paddingRight: 240 }
|
|
2478
|
+
'.padding-x-64': { paddingLeft: 256, paddingRight: 256 }
|
|
2479
|
+
'.padding-x-72': { paddingLeft: 288, paddingRight: 288 }
|
|
2480
|
+
'.padding-x-80': { paddingLeft: 320, paddingRight: 320 }
|
|
2481
|
+
'.padding-x-96': { paddingLeft: 384, paddingRight: 384 }
|
|
2482
|
+
'.padding-x-px': { paddingLeft: '1px', paddingRight: '1px' }
|
|
2483
|
+
'.padding-x-0.5': { paddingLeft: 2, paddingRight: 2 }
|
|
2484
|
+
'.padding-x-1.5': { paddingLeft: 6, paddingRight: 6 }
|
|
2485
|
+
'.padding-x-2.5': { paddingLeft: 10, paddingRight: 10 }
|
|
2486
|
+
'.padding-x-3.5': { paddingLeft: 14, paddingRight: 14 }
|
|
2487
|
+
'.padding-y-0': { paddingTop: 0, paddingBottom: 0 }
|
|
2488
|
+
'.padding-y-1': { paddingTop: 4, paddingBottom: 4 }
|
|
2489
|
+
'.padding-y-2': { paddingTop: 8, paddingBottom: 8 }
|
|
2490
|
+
'.padding-y-3': { paddingTop: 12, paddingBottom: 12 }
|
|
2491
|
+
'.padding-y-4': { paddingTop: 16, paddingBottom: 16 }
|
|
2492
|
+
'.padding-y-5': { paddingTop: 20, paddingBottom: 20 }
|
|
2493
|
+
'.padding-y-6': { paddingTop: 24, paddingBottom: 24 }
|
|
2494
|
+
'.padding-y-7': { paddingTop: 28, paddingBottom: 28 }
|
|
2495
|
+
'.padding-y-8': { paddingTop: 32, paddingBottom: 32 }
|
|
2496
|
+
'.padding-y-9': { paddingTop: 36, paddingBottom: 36 }
|
|
2497
|
+
'.padding-y-10': { paddingTop: 40, paddingBottom: 40 }
|
|
2498
|
+
'.padding-y-11': { paddingTop: 44, paddingBottom: 44 }
|
|
2499
|
+
'.padding-y-12': { paddingTop: 48, paddingBottom: 48 }
|
|
2500
|
+
'.padding-y-14': { paddingTop: 56, paddingBottom: 56 }
|
|
2501
|
+
'.padding-y-16': { paddingTop: 64, paddingBottom: 64 }
|
|
2502
|
+
'.padding-y-20': { paddingTop: 80, paddingBottom: 80 }
|
|
2503
|
+
'.padding-y-24': { paddingTop: 96, paddingBottom: 96 }
|
|
2504
|
+
'.padding-y-28': { paddingTop: 112, paddingBottom: 112 }
|
|
2505
|
+
'.padding-y-32': { paddingTop: 128, paddingBottom: 128 }
|
|
2506
|
+
'.padding-y-36': { paddingTop: 144, paddingBottom: 144 }
|
|
2507
|
+
'.padding-y-40': { paddingTop: 160, paddingBottom: 160 }
|
|
2508
|
+
'.padding-y-44': { paddingTop: 176, paddingBottom: 176 }
|
|
2509
|
+
'.padding-y-48': { paddingTop: 192, paddingBottom: 192 }
|
|
2510
|
+
'.padding-y-52': { paddingTop: 208, paddingBottom: 208 }
|
|
2511
|
+
'.padding-y-56': { paddingTop: 224, paddingBottom: 224 }
|
|
2512
|
+
'.padding-y-60': { paddingTop: 240, paddingBottom: 240 }
|
|
2513
|
+
'.padding-y-64': { paddingTop: 256, paddingBottom: 256 }
|
|
2514
|
+
'.padding-y-72': { paddingTop: 288, paddingBottom: 288 }
|
|
2515
|
+
'.padding-y-80': { paddingTop: 320, paddingBottom: 320 }
|
|
2516
|
+
'.padding-y-96': { paddingTop: 384, paddingBottom: 384 }
|
|
2517
|
+
'.padding-y-px': { paddingTop: '1px', paddingBottom: '1px' }
|
|
2518
|
+
'.padding-y-0.5': { paddingTop: 2, paddingBottom: 2 }
|
|
2519
|
+
'.padding-y-1.5': { paddingTop: 6, paddingBottom: 6 }
|
|
2520
|
+
'.padding-y-2.5': { paddingTop: 10, paddingBottom: 10 }
|
|
2521
|
+
'.padding-y-3.5': { paddingTop: 14, paddingBottom: 14 }
|
|
2522
|
+
'.padding-t-0': { paddingTop: 0 }
|
|
2523
|
+
'.padding-t-1': { paddingTop: 4 }
|
|
2524
|
+
'.padding-t-2': { paddingTop: 8 }
|
|
2525
|
+
'.padding-t-3': { paddingTop: 12 }
|
|
2526
|
+
'.padding-t-4': { paddingTop: 16 }
|
|
2527
|
+
'.padding-t-5': { paddingTop: 20 }
|
|
2528
|
+
'.padding-t-6': { paddingTop: 24 }
|
|
2529
|
+
'.padding-t-7': { paddingTop: 28 }
|
|
2530
|
+
'.padding-t-8': { paddingTop: 32 }
|
|
2531
|
+
'.padding-t-9': { paddingTop: 36 }
|
|
2532
|
+
'.padding-t-10': { paddingTop: 40 }
|
|
2533
|
+
'.padding-t-11': { paddingTop: 44 }
|
|
2534
|
+
'.padding-t-12': { paddingTop: 48 }
|
|
2535
|
+
'.padding-t-14': { paddingTop: 56 }
|
|
2536
|
+
'.padding-t-16': { paddingTop: 64 }
|
|
2537
|
+
'.padding-t-20': { paddingTop: 80 }
|
|
2538
|
+
'.padding-t-24': { paddingTop: 96 }
|
|
2539
|
+
'.padding-t-28': { paddingTop: 112 }
|
|
2540
|
+
'.padding-t-32': { paddingTop: 128 }
|
|
2541
|
+
'.padding-t-36': { paddingTop: 144 }
|
|
2542
|
+
'.padding-t-40': { paddingTop: 160 }
|
|
2543
|
+
'.padding-t-44': { paddingTop: 176 }
|
|
2544
|
+
'.padding-t-48': { paddingTop: 192 }
|
|
2545
|
+
'.padding-t-52': { paddingTop: 208 }
|
|
2546
|
+
'.padding-t-56': { paddingTop: 224 }
|
|
2547
|
+
'.padding-t-60': { paddingTop: 240 }
|
|
2548
|
+
'.padding-t-64': { paddingTop: 256 }
|
|
2549
|
+
'.padding-t-72': { paddingTop: 288 }
|
|
2550
|
+
'.padding-t-80': { paddingTop: 320 }
|
|
2551
|
+
'.padding-t-96': { paddingTop: 384 }
|
|
2552
|
+
'.padding-t-px': { paddingTop: '1px' }
|
|
2553
|
+
'.padding-t-0.5': { paddingTop: 2 }
|
|
2554
|
+
'.padding-t-1.5': { paddingTop: 6 }
|
|
2555
|
+
'.padding-t-2.5': { paddingTop: 10 }
|
|
2556
|
+
'.padding-t-3.5': { paddingTop: 14 }
|
|
2557
|
+
'.padding-l-0': { paddingLeft: 0 }
|
|
2558
|
+
'.padding-l-1': { paddingLeft: 4 }
|
|
2559
|
+
'.padding-l-2': { paddingLeft: 8 }
|
|
2560
|
+
'.padding-l-3': { paddingLeft: 12 }
|
|
2561
|
+
'.padding-l-4': { paddingLeft: 16 }
|
|
2562
|
+
'.padding-l-5': { paddingLeft: 20 }
|
|
2563
|
+
'.padding-l-6': { paddingLeft: 24 }
|
|
2564
|
+
'.padding-l-7': { paddingLeft: 28 }
|
|
2565
|
+
'.padding-l-8': { paddingLeft: 32 }
|
|
2566
|
+
'.padding-l-9': { paddingLeft: 36 }
|
|
2567
|
+
'.padding-l-10': { paddingLeft: 40 }
|
|
2568
|
+
'.padding-l-11': { paddingLeft: 44 }
|
|
2569
|
+
'.padding-l-12': { paddingLeft: 48 }
|
|
2570
|
+
'.padding-l-14': { paddingLeft: 56 }
|
|
2571
|
+
'.padding-l-16': { paddingLeft: 64 }
|
|
2572
|
+
'.padding-l-20': { paddingLeft: 80 }
|
|
2573
|
+
'.padding-l-24': { paddingLeft: 96 }
|
|
2574
|
+
'.padding-l-28': { paddingLeft: 112 }
|
|
2575
|
+
'.padding-l-32': { paddingLeft: 128 }
|
|
2576
|
+
'.padding-l-36': { paddingLeft: 144 }
|
|
2577
|
+
'.padding-l-40': { paddingLeft: 160 }
|
|
2578
|
+
'.padding-l-44': { paddingLeft: 176 }
|
|
2579
|
+
'.padding-l-48': { paddingLeft: 192 }
|
|
2580
|
+
'.padding-l-52': { paddingLeft: 208 }
|
|
2581
|
+
'.padding-l-56': { paddingLeft: 224 }
|
|
2582
|
+
'.padding-l-60': { paddingLeft: 240 }
|
|
2583
|
+
'.padding-l-64': { paddingLeft: 256 }
|
|
2584
|
+
'.padding-l-72': { paddingLeft: 288 }
|
|
2585
|
+
'.padding-l-80': { paddingLeft: 320 }
|
|
2586
|
+
'.padding-l-96': { paddingLeft: 384 }
|
|
2587
|
+
'.padding-l-px': { paddingLeft: '1px' }
|
|
2588
|
+
'.padding-l-0.5': { paddingLeft: 2 }
|
|
2589
|
+
'.padding-l-1.5': { paddingLeft: 6 }
|
|
2590
|
+
'.padding-l-2.5': { paddingLeft: 10 }
|
|
2591
|
+
'.padding-l-3.5': { paddingLeft: 14 }
|
|
2592
|
+
'.padding-r-0': { paddingRight: 0 }
|
|
2593
|
+
'.padding-r-1': { paddingRight: 4 }
|
|
2594
|
+
'.padding-r-2': { paddingRight: 8 }
|
|
2595
|
+
'.padding-r-3': { paddingRight: 12 }
|
|
2596
|
+
'.padding-r-4': { paddingRight: 16 }
|
|
2597
|
+
'.padding-r-5': { paddingRight: 20 }
|
|
2598
|
+
'.padding-r-6': { paddingRight: 24 }
|
|
2599
|
+
'.padding-r-7': { paddingRight: 28 }
|
|
2600
|
+
'.padding-r-8': { paddingRight: 32 }
|
|
2601
|
+
'.padding-r-9': { paddingRight: 36 }
|
|
2602
|
+
'.padding-r-10': { paddingRight: 40 }
|
|
2603
|
+
'.padding-r-11': { paddingRight: 44 }
|
|
2604
|
+
'.padding-r-12': { paddingRight: 48 }
|
|
2605
|
+
'.padding-r-14': { paddingRight: 56 }
|
|
2606
|
+
'.padding-r-16': { paddingRight: 64 }
|
|
2607
|
+
'.padding-r-20': { paddingRight: 80 }
|
|
2608
|
+
'.padding-r-24': { paddingRight: 96 }
|
|
2609
|
+
'.padding-r-28': { paddingRight: 112 }
|
|
2610
|
+
'.padding-r-32': { paddingRight: 128 }
|
|
2611
|
+
'.padding-r-36': { paddingRight: 144 }
|
|
2612
|
+
'.padding-r-40': { paddingRight: 160 }
|
|
2613
|
+
'.padding-r-44': { paddingRight: 176 }
|
|
2614
|
+
'.padding-r-48': { paddingRight: 192 }
|
|
2615
|
+
'.padding-r-52': { paddingRight: 208 }
|
|
2616
|
+
'.padding-r-56': { paddingRight: 224 }
|
|
2617
|
+
'.padding-r-60': { paddingRight: 240 }
|
|
2618
|
+
'.padding-r-64': { paddingRight: 256 }
|
|
2619
|
+
'.padding-r-72': { paddingRight: 288 }
|
|
2620
|
+
'.padding-r-80': { paddingRight: 320 }
|
|
2621
|
+
'.padding-r-96': { paddingRight: 384 }
|
|
2622
|
+
'.padding-r-px': { paddingRight: '1px' }
|
|
2623
|
+
'.padding-r-0.5': { paddingRight: 2 }
|
|
2624
|
+
'.padding-r-1.5': { paddingRight: 6 }
|
|
2625
|
+
'.padding-r-2.5': { paddingRight: 10 }
|
|
2626
|
+
'.padding-r-3.5': { paddingRight: 14 }
|
|
2627
|
+
'.padding-b-0': { paddingBottom: 0 }
|
|
2628
|
+
'.padding-b-1': { paddingBottom: 4 }
|
|
2629
|
+
'.padding-b-2': { paddingBottom: 8 }
|
|
2630
|
+
'.padding-b-3': { paddingBottom: 12 }
|
|
2631
|
+
'.padding-b-4': { paddingBottom: 16 }
|
|
2632
|
+
'.padding-b-5': { paddingBottom: 20 }
|
|
2633
|
+
'.padding-b-6': { paddingBottom: 24 }
|
|
2634
|
+
'.padding-b-7': { paddingBottom: 28 }
|
|
2635
|
+
'.padding-b-8': { paddingBottom: 32 }
|
|
2636
|
+
'.padding-b-9': { paddingBottom: 36 }
|
|
2637
|
+
'.padding-b-10': { paddingBottom: 40 }
|
|
2638
|
+
'.padding-b-11': { paddingBottom: 44 }
|
|
2639
|
+
'.padding-b-12': { paddingBottom: 48 }
|
|
2640
|
+
'.padding-b-14': { paddingBottom: 56 }
|
|
2641
|
+
'.padding-b-16': { paddingBottom: 64 }
|
|
2642
|
+
'.padding-b-20': { paddingBottom: 80 }
|
|
2643
|
+
'.padding-b-24': { paddingBottom: 96 }
|
|
2644
|
+
'.padding-b-28': { paddingBottom: 112 }
|
|
2645
|
+
'.padding-b-32': { paddingBottom: 128 }
|
|
2646
|
+
'.padding-b-36': { paddingBottom: 144 }
|
|
2647
|
+
'.padding-b-40': { paddingBottom: 160 }
|
|
2648
|
+
'.padding-b-44': { paddingBottom: 176 }
|
|
2649
|
+
'.padding-b-48': { paddingBottom: 192 }
|
|
2650
|
+
'.padding-b-52': { paddingBottom: 208 }
|
|
2651
|
+
'.padding-b-56': { paddingBottom: 224 }
|
|
2652
|
+
'.padding-b-60': { paddingBottom: 240 }
|
|
2653
|
+
'.padding-b-64': { paddingBottom: 256 }
|
|
2654
|
+
'.padding-b-72': { paddingBottom: 288 }
|
|
2655
|
+
'.padding-b-80': { paddingBottom: 320 }
|
|
2656
|
+
'.padding-b-96': { paddingBottom: 384 }
|
|
2657
|
+
'.padding-b-px': { paddingBottom: '1px' }
|
|
2658
|
+
'.padding-b-0.5': { paddingBottom: 2 }
|
|
2659
|
+
'.padding-b-1.5': { paddingBottom: 6 }
|
|
2660
|
+
'.padding-b-2.5': { paddingBottom: 10 }
|
|
2661
|
+
'.padding-b-3.5': { paddingBottom: 14 }
|
|
1479
2662
|
|
|
1480
|
-
//
|
|
2663
|
+
// Component(s): Ti.Proxy
|
|
2664
|
+
// Property(ies): bubbleParent
|
|
2665
|
+
'.bubble-parent': { bubbleParent: true }
|
|
2666
|
+
'.dont-bubble-parent': { bubbleParent: false }
|
|
2667
|
+
|
|
2668
|
+
// Component(s): Ti.UI.ScrollableView
|
|
2669
|
+
// Property(ies): cacheSize
|
|
1481
2670
|
'.cache-size-1': { cacheSize: 1 }
|
|
1482
2671
|
'.cache-size-2': { cacheSize: 2 }
|
|
1483
2672
|
'.cache-size-3': { cacheSize: 3 }
|
|
@@ -1489,11 +2678,13 @@
|
|
|
1489
2678
|
'.cache-size-9': { cacheSize: 9 }
|
|
1490
2679
|
'.cache-size-10': { cacheSize: 10 }
|
|
1491
2680
|
|
|
1492
|
-
//
|
|
2681
|
+
// Component(s): Ti.UI.View
|
|
2682
|
+
// Property(ies): clipMode - iOS Only
|
|
1493
2683
|
'.clip-enabled[platform=ios]': { clipMode: Ti.UI.iOS.CLIP_MODE_ENABLED }
|
|
1494
2684
|
'.clip-disabled[platform=ios]': { clipMode: Ti.UI.iOS.CLIP_MODE_DISABLED }
|
|
1495
2685
|
|
|
1496
|
-
//
|
|
2686
|
+
// Component(s): Ti.UI.ScrollableView
|
|
2687
|
+
// Property(ies): currentPageIndicatorColor
|
|
1497
2688
|
'.current-page-transparent': { currentPageIndicatorColor: 'transparent' }
|
|
1498
2689
|
'.current-page-black': { currentPageIndicatorColor: '#000000' }
|
|
1499
2690
|
'.current-page-white': { currentPageIndicatorColor: '#ffffff' }
|
|
@@ -1718,7 +2909,14 @@
|
|
|
1718
2909
|
'.current-page-rose-800': { currentPageIndicatorColor: '#9f1239' }
|
|
1719
2910
|
'.current-page-rose-900': { currentPageIndicatorColor: '#881337' }
|
|
1720
2911
|
|
|
1721
|
-
//
|
|
2912
|
+
// Component(s): Ti.UI.ListView, Ti.UI.ScrollableView, Ti.UI.ScrollView, Ti.UI.WebView
|
|
2913
|
+
// Property(ies): disableBounce
|
|
2914
|
+
'.disable-bounce': { disableBounce: true }
|
|
2915
|
+
'.enable-bounce': { disableBounce: false }
|
|
2916
|
+
|
|
2917
|
+
// Property(ies): width, height
|
|
2918
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Animation, Ti.UI.iPad.Popover, Ti.UI.View
|
|
2919
|
+
// Description: width and height properties using Ti.Platform.displayCaps platformWidth and platformHeight values
|
|
1722
2920
|
'.platform-w': { width: Ti.Platform.displayCaps.platformWidth }
|
|
1723
2921
|
'.platform-h': { height: Ti.Platform.displayCaps.platformHeight }
|
|
1724
2922
|
'.inverted-platform-w': { width: Ti.Platform.displayCaps.platformHeight }
|
|
@@ -1726,27 +2924,265 @@
|
|
|
1726
2924
|
'.inverted-platform-w[platform=android]': { width: Ti.Platform.displayCaps.platformWidth }
|
|
1727
2925
|
'.inverted-platform-h[platform=android]': { height: Ti.Platform.displayCaps.platformHeight }
|
|
1728
2926
|
|
|
1729
|
-
//
|
|
2927
|
+
// Component(s): Ti.Android.MenuItem, Ti.UI.Animation, Ti.UI.Picker, Ti.UI.ScrollableView, Ti.UI.ShortcutItem, Ti.UI.View
|
|
2928
|
+
// Property(ies): visible
|
|
1730
2929
|
'.block': { visible: true }
|
|
1731
2930
|
'.hidden': { visible: false }
|
|
1732
2931
|
|
|
1733
|
-
//
|
|
1734
|
-
|
|
2932
|
+
// Component(s): Ti.UI.Animation
|
|
2933
|
+
// Property(ies): A custom property to use it with the Animation module
|
|
1735
2934
|
'.horizontal-constraint': { constraint: 'horizontal' }
|
|
2935
|
+
'.vertical-constraint': { constraint: 'vertical' }
|
|
1736
2936
|
|
|
1737
|
-
//
|
|
2937
|
+
// Component(s): For the Animation Component
|
|
2938
|
+
// Property(ies): draggingType
|
|
1738
2939
|
'.drag-apply': { draggingType: 'apply' }
|
|
1739
2940
|
'.drag-animate': { draggingType: 'animate' }
|
|
1740
2941
|
|
|
1741
|
-
//
|
|
2942
|
+
// Component(s): Ti.UI.Button, Ti.UI.Label
|
|
2943
|
+
// Property(ies): shadowOffset, shadowRadius, shadowColor - Drop Shadow in Tailwind
|
|
2944
|
+
'.drop-shadow-xs': { shadowOffset: { x: 0, y: 0 }, shadowRadius: 1, shadowColor: '#59000000' }
|
|
2945
|
+
'.drop-shadow-sm': { shadowOffset: { x: 0, y: 1 }, shadowRadius: 1, shadowColor: '#59000000' }
|
|
2946
|
+
'.drop-shadow': { shadowOffset: { x: 0, y: 2 }, shadowRadius: 2, shadowColor: '#59000000' }
|
|
2947
|
+
'.drop-shadow-md': { shadowOffset: { x: 0, y: 3 }, shadowRadius: 3, shadowColor: '#59000000' }
|
|
2948
|
+
'.drop-shadow-lg': { shadowOffset: { x: 0, y: 4 }, shadowRadius: 4, shadowColor: '#59000000' }
|
|
2949
|
+
'.drop-shadow-xl': { shadowOffset: { x: 0, y: 6 }, shadowRadius: 6, shadowColor: '#59000000' }
|
|
2950
|
+
'.drop-shadow-2xl': { shadowOffset: { x: 0, y: 8 }, shadowRadius: 8, shadowColor: '#59000000' }
|
|
2951
|
+
'.drop-shadow-none': { shadowOffset: { x: 0, y: 0 }, shadowRadius: null, shadowColor: null }
|
|
2952
|
+
|
|
2953
|
+
// Component(s): Ti.UI.Button, Ti.UI.Label
|
|
2954
|
+
// Property(ies): shadowColor - Drop Shadow in Tailwind
|
|
2955
|
+
'.drop-shadow-transparent': { shadowColor: 'transparent' }
|
|
2956
|
+
'.drop-shadow-black': { shadowColor: '#000000' }
|
|
2957
|
+
'.drop-shadow-white': { shadowColor: '#ffffff' }
|
|
2958
|
+
'.drop-shadow-slate-50': { shadowColor: '#f8fafc' }
|
|
2959
|
+
'.drop-shadow-slate-100': { shadowColor: '#f1f5f9' }
|
|
2960
|
+
'.drop-shadow-slate-200': { shadowColor: '#e2e8f0' }
|
|
2961
|
+
'.drop-shadow-slate-300': { shadowColor: '#cbd5e1' }
|
|
2962
|
+
'.drop-shadow-slate-400': { shadowColor: '#94a3b8' }
|
|
2963
|
+
'.drop-shadow-slate-500': { shadowColor: '#64748b' }
|
|
2964
|
+
'.drop-shadow-slate-600': { shadowColor: '#475569' }
|
|
2965
|
+
'.drop-shadow-slate-700': { shadowColor: '#334155' }
|
|
2966
|
+
'.drop-shadow-slate-800': { shadowColor: '#1e293b' }
|
|
2967
|
+
'.drop-shadow-slate-900': { shadowColor: '#0f172a' }
|
|
2968
|
+
'.drop-shadow-gray-50': { shadowColor: '#f9fafb' }
|
|
2969
|
+
'.drop-shadow-gray-100': { shadowColor: '#f3f4f6' }
|
|
2970
|
+
'.drop-shadow-gray-200': { shadowColor: '#e5e7eb' }
|
|
2971
|
+
'.drop-shadow-gray-300': { shadowColor: '#d1d5db' }
|
|
2972
|
+
'.drop-shadow-gray-400': { shadowColor: '#9ca3af' }
|
|
2973
|
+
'.drop-shadow-gray-500': { shadowColor: '#6b7280' }
|
|
2974
|
+
'.drop-shadow-gray-600': { shadowColor: '#4b5563' }
|
|
2975
|
+
'.drop-shadow-gray-700': { shadowColor: '#374151' }
|
|
2976
|
+
'.drop-shadow-gray-800': { shadowColor: '#1f2937' }
|
|
2977
|
+
'.drop-shadow-gray-900': { shadowColor: '#111827' }
|
|
2978
|
+
'.drop-shadow-zinc-50': { shadowColor: '#fafafa' }
|
|
2979
|
+
'.drop-shadow-zinc-100': { shadowColor: '#f4f4f5' }
|
|
2980
|
+
'.drop-shadow-zinc-200': { shadowColor: '#e4e4e7' }
|
|
2981
|
+
'.drop-shadow-zinc-300': { shadowColor: '#d4d4d8' }
|
|
2982
|
+
'.drop-shadow-zinc-400': { shadowColor: '#a1a1aa' }
|
|
2983
|
+
'.drop-shadow-zinc-500': { shadowColor: '#71717a' }
|
|
2984
|
+
'.drop-shadow-zinc-600': { shadowColor: '#52525b' }
|
|
2985
|
+
'.drop-shadow-zinc-700': { shadowColor: '#3f3f46' }
|
|
2986
|
+
'.drop-shadow-zinc-800': { shadowColor: '#27272a' }
|
|
2987
|
+
'.drop-shadow-zinc-900': { shadowColor: '#18181b' }
|
|
2988
|
+
'.drop-shadow-neutral-50': { shadowColor: '#fafafa' }
|
|
2989
|
+
'.drop-shadow-neutral-100': { shadowColor: '#f5f5f5' }
|
|
2990
|
+
'.drop-shadow-neutral-200': { shadowColor: '#e5e5e5' }
|
|
2991
|
+
'.drop-shadow-neutral-300': { shadowColor: '#d4d4d4' }
|
|
2992
|
+
'.drop-shadow-neutral-400': { shadowColor: '#a3a3a3' }
|
|
2993
|
+
'.drop-shadow-neutral-500': { shadowColor: '#737373' }
|
|
2994
|
+
'.drop-shadow-neutral-600': { shadowColor: '#525252' }
|
|
2995
|
+
'.drop-shadow-neutral-700': { shadowColor: '#404040' }
|
|
2996
|
+
'.drop-shadow-neutral-800': { shadowColor: '#262626' }
|
|
2997
|
+
'.drop-shadow-neutral-900': { shadowColor: '#171717' }
|
|
2998
|
+
'.drop-shadow-stone-50': { shadowColor: '#fafaf9' }
|
|
2999
|
+
'.drop-shadow-stone-100': { shadowColor: '#f5f5f4' }
|
|
3000
|
+
'.drop-shadow-stone-200': { shadowColor: '#e7e5e4' }
|
|
3001
|
+
'.drop-shadow-stone-300': { shadowColor: '#d6d3d1' }
|
|
3002
|
+
'.drop-shadow-stone-400': { shadowColor: '#a8a29e' }
|
|
3003
|
+
'.drop-shadow-stone-500': { shadowColor: '#78716c' }
|
|
3004
|
+
'.drop-shadow-stone-600': { shadowColor: '#57534e' }
|
|
3005
|
+
'.drop-shadow-stone-700': { shadowColor: '#44403c' }
|
|
3006
|
+
'.drop-shadow-stone-800': { shadowColor: '#292524' }
|
|
3007
|
+
'.drop-shadow-stone-900': { shadowColor: '#1c1917' }
|
|
3008
|
+
'.drop-shadow-red-50': { shadowColor: '#fef2f2' }
|
|
3009
|
+
'.drop-shadow-red-100': { shadowColor: '#fee2e2' }
|
|
3010
|
+
'.drop-shadow-red-200': { shadowColor: '#fecaca' }
|
|
3011
|
+
'.drop-shadow-red-300': { shadowColor: '#fca5a5' }
|
|
3012
|
+
'.drop-shadow-red-400': { shadowColor: '#f87171' }
|
|
3013
|
+
'.drop-shadow-red-500': { shadowColor: '#ef4444' }
|
|
3014
|
+
'.drop-shadow-red-600': { shadowColor: '#dc2626' }
|
|
3015
|
+
'.drop-shadow-red-700': { shadowColor: '#b91c1c' }
|
|
3016
|
+
'.drop-shadow-red-800': { shadowColor: '#991b1b' }
|
|
3017
|
+
'.drop-shadow-red-900': { shadowColor: '#7f1d1d' }
|
|
3018
|
+
'.drop-shadow-orange-50': { shadowColor: '#fff7ed' }
|
|
3019
|
+
'.drop-shadow-orange-100': { shadowColor: '#ffedd5' }
|
|
3020
|
+
'.drop-shadow-orange-200': { shadowColor: '#fed7aa' }
|
|
3021
|
+
'.drop-shadow-orange-300': { shadowColor: '#fdba74' }
|
|
3022
|
+
'.drop-shadow-orange-400': { shadowColor: '#fb923c' }
|
|
3023
|
+
'.drop-shadow-orange-500': { shadowColor: '#f97316' }
|
|
3024
|
+
'.drop-shadow-orange-600': { shadowColor: '#ea580c' }
|
|
3025
|
+
'.drop-shadow-orange-700': { shadowColor: '#c2410c' }
|
|
3026
|
+
'.drop-shadow-orange-800': { shadowColor: '#9a3412' }
|
|
3027
|
+
'.drop-shadow-orange-900': { shadowColor: '#7c2d12' }
|
|
3028
|
+
'.drop-shadow-amber-50': { shadowColor: '#fffbeb' }
|
|
3029
|
+
'.drop-shadow-amber-100': { shadowColor: '#fef3c7' }
|
|
3030
|
+
'.drop-shadow-amber-200': { shadowColor: '#fde68a' }
|
|
3031
|
+
'.drop-shadow-amber-300': { shadowColor: '#fcd34d' }
|
|
3032
|
+
'.drop-shadow-amber-400': { shadowColor: '#fbbf24' }
|
|
3033
|
+
'.drop-shadow-amber-500': { shadowColor: '#f59e0b' }
|
|
3034
|
+
'.drop-shadow-amber-600': { shadowColor: '#d97706' }
|
|
3035
|
+
'.drop-shadow-amber-700': { shadowColor: '#b45309' }
|
|
3036
|
+
'.drop-shadow-amber-800': { shadowColor: '#92400e' }
|
|
3037
|
+
'.drop-shadow-amber-900': { shadowColor: '#78350f' }
|
|
3038
|
+
'.drop-shadow-yellow-50': { shadowColor: '#fefce8' }
|
|
3039
|
+
'.drop-shadow-yellow-100': { shadowColor: '#fef9c3' }
|
|
3040
|
+
'.drop-shadow-yellow-200': { shadowColor: '#fef08a' }
|
|
3041
|
+
'.drop-shadow-yellow-300': { shadowColor: '#fde047' }
|
|
3042
|
+
'.drop-shadow-yellow-400': { shadowColor: '#facc15' }
|
|
3043
|
+
'.drop-shadow-yellow-500': { shadowColor: '#eab308' }
|
|
3044
|
+
'.drop-shadow-yellow-600': { shadowColor: '#ca8a04' }
|
|
3045
|
+
'.drop-shadow-yellow-700': { shadowColor: '#a16207' }
|
|
3046
|
+
'.drop-shadow-yellow-800': { shadowColor: '#854d0e' }
|
|
3047
|
+
'.drop-shadow-yellow-900': { shadowColor: '#713f12' }
|
|
3048
|
+
'.drop-shadow-lime-50': { shadowColor: '#f7fee7' }
|
|
3049
|
+
'.drop-shadow-lime-100': { shadowColor: '#ecfccb' }
|
|
3050
|
+
'.drop-shadow-lime-200': { shadowColor: '#d9f99d' }
|
|
3051
|
+
'.drop-shadow-lime-300': { shadowColor: '#bef264' }
|
|
3052
|
+
'.drop-shadow-lime-400': { shadowColor: '#a3e635' }
|
|
3053
|
+
'.drop-shadow-lime-500': { shadowColor: '#84cc16' }
|
|
3054
|
+
'.drop-shadow-lime-600': { shadowColor: '#65a30d' }
|
|
3055
|
+
'.drop-shadow-lime-700': { shadowColor: '#4d7c0f' }
|
|
3056
|
+
'.drop-shadow-lime-800': { shadowColor: '#3f6212' }
|
|
3057
|
+
'.drop-shadow-lime-900': { shadowColor: '#365314' }
|
|
3058
|
+
'.drop-shadow-green-50': { shadowColor: '#f0fdf4' }
|
|
3059
|
+
'.drop-shadow-green-100': { shadowColor: '#dcfce7' }
|
|
3060
|
+
'.drop-shadow-green-200': { shadowColor: '#bbf7d0' }
|
|
3061
|
+
'.drop-shadow-green-300': { shadowColor: '#86efac' }
|
|
3062
|
+
'.drop-shadow-green-400': { shadowColor: '#4ade80' }
|
|
3063
|
+
'.drop-shadow-green-500': { shadowColor: '#22c55e' }
|
|
3064
|
+
'.drop-shadow-green-600': { shadowColor: '#16a34a' }
|
|
3065
|
+
'.drop-shadow-green-700': { shadowColor: '#15803d' }
|
|
3066
|
+
'.drop-shadow-green-800': { shadowColor: '#166534' }
|
|
3067
|
+
'.drop-shadow-green-900': { shadowColor: '#14532d' }
|
|
3068
|
+
'.drop-shadow-emerald-50': { shadowColor: '#ecfdf5' }
|
|
3069
|
+
'.drop-shadow-emerald-100': { shadowColor: '#d1fae5' }
|
|
3070
|
+
'.drop-shadow-emerald-200': { shadowColor: '#a7f3d0' }
|
|
3071
|
+
'.drop-shadow-emerald-300': { shadowColor: '#6ee7b7' }
|
|
3072
|
+
'.drop-shadow-emerald-400': { shadowColor: '#34d399' }
|
|
3073
|
+
'.drop-shadow-emerald-500': { shadowColor: '#10b981' }
|
|
3074
|
+
'.drop-shadow-emerald-600': { shadowColor: '#059669' }
|
|
3075
|
+
'.drop-shadow-emerald-700': { shadowColor: '#047857' }
|
|
3076
|
+
'.drop-shadow-emerald-800': { shadowColor: '#065f46' }
|
|
3077
|
+
'.drop-shadow-emerald-900': { shadowColor: '#064e3b' }
|
|
3078
|
+
'.drop-shadow-teal-50': { shadowColor: '#f0fdfa' }
|
|
3079
|
+
'.drop-shadow-teal-100': { shadowColor: '#ccfbf1' }
|
|
3080
|
+
'.drop-shadow-teal-200': { shadowColor: '#99f6e4' }
|
|
3081
|
+
'.drop-shadow-teal-300': { shadowColor: '#5eead4' }
|
|
3082
|
+
'.drop-shadow-teal-400': { shadowColor: '#2dd4bf' }
|
|
3083
|
+
'.drop-shadow-teal-500': { shadowColor: '#14b8a6' }
|
|
3084
|
+
'.drop-shadow-teal-600': { shadowColor: '#0d9488' }
|
|
3085
|
+
'.drop-shadow-teal-700': { shadowColor: '#0f766e' }
|
|
3086
|
+
'.drop-shadow-teal-800': { shadowColor: '#115e59' }
|
|
3087
|
+
'.drop-shadow-teal-900': { shadowColor: '#134e4a' }
|
|
3088
|
+
'.drop-shadow-cyan-50': { shadowColor: '#ecfeff' }
|
|
3089
|
+
'.drop-shadow-cyan-100': { shadowColor: '#cffafe' }
|
|
3090
|
+
'.drop-shadow-cyan-200': { shadowColor: '#a5f3fc' }
|
|
3091
|
+
'.drop-shadow-cyan-300': { shadowColor: '#67e8f9' }
|
|
3092
|
+
'.drop-shadow-cyan-400': { shadowColor: '#22d3ee' }
|
|
3093
|
+
'.drop-shadow-cyan-500': { shadowColor: '#06b6d4' }
|
|
3094
|
+
'.drop-shadow-cyan-600': { shadowColor: '#0891b2' }
|
|
3095
|
+
'.drop-shadow-cyan-700': { shadowColor: '#0e7490' }
|
|
3096
|
+
'.drop-shadow-cyan-800': { shadowColor: '#155e75' }
|
|
3097
|
+
'.drop-shadow-cyan-900': { shadowColor: '#164e63' }
|
|
3098
|
+
'.drop-shadow-sky-50': { shadowColor: '#f0f9ff' }
|
|
3099
|
+
'.drop-shadow-sky-100': { shadowColor: '#e0f2fe' }
|
|
3100
|
+
'.drop-shadow-sky-200': { shadowColor: '#bae6fd' }
|
|
3101
|
+
'.drop-shadow-sky-300': { shadowColor: '#7dd3fc' }
|
|
3102
|
+
'.drop-shadow-sky-400': { shadowColor: '#38bdf8' }
|
|
3103
|
+
'.drop-shadow-sky-500': { shadowColor: '#0ea5e9' }
|
|
3104
|
+
'.drop-shadow-sky-600': { shadowColor: '#0284c7' }
|
|
3105
|
+
'.drop-shadow-sky-700': { shadowColor: '#0369a1' }
|
|
3106
|
+
'.drop-shadow-sky-800': { shadowColor: '#075985' }
|
|
3107
|
+
'.drop-shadow-sky-900': { shadowColor: '#0c4a6e' }
|
|
3108
|
+
'.drop-shadow-blue-50': { shadowColor: '#eff6ff' }
|
|
3109
|
+
'.drop-shadow-blue-100': { shadowColor: '#dbeafe' }
|
|
3110
|
+
'.drop-shadow-blue-200': { shadowColor: '#bfdbfe' }
|
|
3111
|
+
'.drop-shadow-blue-300': { shadowColor: '#93c5fd' }
|
|
3112
|
+
'.drop-shadow-blue-400': { shadowColor: '#60a5fa' }
|
|
3113
|
+
'.drop-shadow-blue-500': { shadowColor: '#3b82f6' }
|
|
3114
|
+
'.drop-shadow-blue-600': { shadowColor: '#2563eb' }
|
|
3115
|
+
'.drop-shadow-blue-700': { shadowColor: '#1d4ed8' }
|
|
3116
|
+
'.drop-shadow-blue-800': { shadowColor: '#1e40af' }
|
|
3117
|
+
'.drop-shadow-blue-900': { shadowColor: '#1e3a8a' }
|
|
3118
|
+
'.drop-shadow-indigo-50': { shadowColor: '#eef2ff' }
|
|
3119
|
+
'.drop-shadow-indigo-100': { shadowColor: '#e0e7ff' }
|
|
3120
|
+
'.drop-shadow-indigo-200': { shadowColor: '#c7d2fe' }
|
|
3121
|
+
'.drop-shadow-indigo-300': { shadowColor: '#a5b4fc' }
|
|
3122
|
+
'.drop-shadow-indigo-400': { shadowColor: '#818cf8' }
|
|
3123
|
+
'.drop-shadow-indigo-500': { shadowColor: '#6366f1' }
|
|
3124
|
+
'.drop-shadow-indigo-600': { shadowColor: '#4f46e5' }
|
|
3125
|
+
'.drop-shadow-indigo-700': { shadowColor: '#4338ca' }
|
|
3126
|
+
'.drop-shadow-indigo-800': { shadowColor: '#3730a3' }
|
|
3127
|
+
'.drop-shadow-indigo-900': { shadowColor: '#312e81' }
|
|
3128
|
+
'.drop-shadow-violet-50': { shadowColor: '#f5f3ff' }
|
|
3129
|
+
'.drop-shadow-violet-100': { shadowColor: '#ede9fe' }
|
|
3130
|
+
'.drop-shadow-violet-200': { shadowColor: '#ddd6fe' }
|
|
3131
|
+
'.drop-shadow-violet-300': { shadowColor: '#c4b5fd' }
|
|
3132
|
+
'.drop-shadow-violet-400': { shadowColor: '#a78bfa' }
|
|
3133
|
+
'.drop-shadow-violet-500': { shadowColor: '#8b5cf6' }
|
|
3134
|
+
'.drop-shadow-violet-600': { shadowColor: '#7c3aed' }
|
|
3135
|
+
'.drop-shadow-violet-700': { shadowColor: '#6d28d9' }
|
|
3136
|
+
'.drop-shadow-violet-800': { shadowColor: '#5b21b6' }
|
|
3137
|
+
'.drop-shadow-violet-900': { shadowColor: '#4c1d95' }
|
|
3138
|
+
'.drop-shadow-purple-50': { shadowColor: '#faf5ff' }
|
|
3139
|
+
'.drop-shadow-purple-100': { shadowColor: '#f3e8ff' }
|
|
3140
|
+
'.drop-shadow-purple-200': { shadowColor: '#e9d5ff' }
|
|
3141
|
+
'.drop-shadow-purple-300': { shadowColor: '#d8b4fe' }
|
|
3142
|
+
'.drop-shadow-purple-400': { shadowColor: '#c084fc' }
|
|
3143
|
+
'.drop-shadow-purple-500': { shadowColor: '#a855f7' }
|
|
3144
|
+
'.drop-shadow-purple-600': { shadowColor: '#9333ea' }
|
|
3145
|
+
'.drop-shadow-purple-700': { shadowColor: '#7e22ce' }
|
|
3146
|
+
'.drop-shadow-purple-800': { shadowColor: '#6b21a8' }
|
|
3147
|
+
'.drop-shadow-purple-900': { shadowColor: '#581c87' }
|
|
3148
|
+
'.drop-shadow-fuchsia-50': { shadowColor: '#fdf4ff' }
|
|
3149
|
+
'.drop-shadow-fuchsia-100': { shadowColor: '#fae8ff' }
|
|
3150
|
+
'.drop-shadow-fuchsia-200': { shadowColor: '#f5d0fe' }
|
|
3151
|
+
'.drop-shadow-fuchsia-300': { shadowColor: '#f0abfc' }
|
|
3152
|
+
'.drop-shadow-fuchsia-400': { shadowColor: '#e879f9' }
|
|
3153
|
+
'.drop-shadow-fuchsia-500': { shadowColor: '#d946ef' }
|
|
3154
|
+
'.drop-shadow-fuchsia-600': { shadowColor: '#c026d3' }
|
|
3155
|
+
'.drop-shadow-fuchsia-700': { shadowColor: '#a21caf' }
|
|
3156
|
+
'.drop-shadow-fuchsia-800': { shadowColor: '#86198f' }
|
|
3157
|
+
'.drop-shadow-fuchsia-900': { shadowColor: '#701a75' }
|
|
3158
|
+
'.drop-shadow-pink-50': { shadowColor: '#fdf2f8' }
|
|
3159
|
+
'.drop-shadow-pink-100': { shadowColor: '#fce7f3' }
|
|
3160
|
+
'.drop-shadow-pink-200': { shadowColor: '#fbcfe8' }
|
|
3161
|
+
'.drop-shadow-pink-300': { shadowColor: '#f9a8d4' }
|
|
3162
|
+
'.drop-shadow-pink-400': { shadowColor: '#f472b6' }
|
|
3163
|
+
'.drop-shadow-pink-500': { shadowColor: '#ec4899' }
|
|
3164
|
+
'.drop-shadow-pink-600': { shadowColor: '#db2777' }
|
|
3165
|
+
'.drop-shadow-pink-700': { shadowColor: '#be185d' }
|
|
3166
|
+
'.drop-shadow-pink-800': { shadowColor: '#9d174d' }
|
|
3167
|
+
'.drop-shadow-pink-900': { shadowColor: '#831843' }
|
|
3168
|
+
'.drop-shadow-rose-50': { shadowColor: '#fff1f2' }
|
|
3169
|
+
'.drop-shadow-rose-100': { shadowColor: '#ffe4e6' }
|
|
3170
|
+
'.drop-shadow-rose-200': { shadowColor: '#fecdd3' }
|
|
3171
|
+
'.drop-shadow-rose-300': { shadowColor: '#fda4af' }
|
|
3172
|
+
'.drop-shadow-rose-400': { shadowColor: '#fb7185' }
|
|
3173
|
+
'.drop-shadow-rose-500': { shadowColor: '#f43f5e' }
|
|
3174
|
+
'.drop-shadow-rose-600': { shadowColor: '#e11d48' }
|
|
3175
|
+
'.drop-shadow-rose-700': { shadowColor: '#be123c' }
|
|
3176
|
+
'.drop-shadow-rose-800': { shadowColor: '#9f1239' }
|
|
3177
|
+
'.drop-shadow-rose-900': { shadowColor: '#881337' }
|
|
3178
|
+
|
|
3179
|
+
// Component(s): Ti.UI.DashboardView, Ti.UI.SearchBar, Ti.UI.TextArea, Ti.UI.TextField
|
|
3180
|
+
// Property(ies): editable
|
|
1742
3181
|
'.editable': { editable: true }
|
|
1743
3182
|
'.none-editable': { editable: false }
|
|
1744
3183
|
|
|
1745
|
-
//
|
|
1746
|
-
|
|
1747
|
-
'.no-ellipsize': { ellipsize: false }
|
|
1748
|
-
|
|
1749
|
-
// ellipsize Property ( for Labels )
|
|
3184
|
+
// Component(s): Ti.UI.Label
|
|
3185
|
+
// Property(ies): ellipsize
|
|
1750
3186
|
'.ellipsize-end': { ellipsize: Ti.UI.TEXT_ELLIPSIZE_TRUNCATE_END }
|
|
1751
3187
|
'.ellipsize-clip': { ellipsize: Ti.UI.TEXT_ELLIPSIZE_TRUNCATE_CLIP }
|
|
1752
3188
|
'.ellipsize-none': { ellipsize: Ti.UI.TEXT_ELLIPSIZE_TRUNCATE_NONE }
|
|
@@ -1756,27 +3192,57 @@
|
|
|
1756
3192
|
'.ellipsize-char-wrap': { ellipsize: Ti.UI.TEXT_ELLIPSIZE_TRUNCATE_CHAR_WRAP }
|
|
1757
3193
|
'.ellipsize-word-wrap': { ellipsize: Ti.UI.TEXT_ELLIPSIZE_TRUNCATE_WORD_WRAP }
|
|
1758
3194
|
|
|
1759
|
-
//
|
|
3195
|
+
// Component(s): Ti.UI.TextArea, Ti.UI.TextField
|
|
3196
|
+
// Property(ies): ellipsize
|
|
3197
|
+
'.ellipsize': { ellipsize: true }
|
|
3198
|
+
'.no-ellipsize': { ellipsize: false }
|
|
3199
|
+
|
|
3200
|
+
// Component(s): Ti.UI.TextArea, Ti.UI.TextField
|
|
3201
|
+
// Property(ies): enableCopy
|
|
1760
3202
|
'.enable-copy': { enableCopy: true }
|
|
1761
3203
|
'.disable-copy': { enableCopy: false }
|
|
1762
3204
|
|
|
1763
|
-
//
|
|
1764
|
-
|
|
1765
|
-
'.
|
|
1766
|
-
|
|
1767
|
-
// extendBackground Property
|
|
1768
|
-
'.extend-background': { extendBackground: true }
|
|
1769
|
-
'.no-extend-background': { extendBackground: false }
|
|
3205
|
+
// Component(s): Ti.UI.TextArea, Ti.UI.TextField
|
|
3206
|
+
// Property(ies): enableReturnKey - iOS Only
|
|
3207
|
+
'.enable-return-key[platform=ios]': { enableReturnKey: true }
|
|
3208
|
+
'.disable-return-key[platform=ios]': { enableReturnKey: false }
|
|
1770
3209
|
|
|
1771
|
-
//
|
|
3210
|
+
// Component(s): Ti.UI.TabGroup[android], Ti.UI.Window[android]
|
|
3211
|
+
// Property(ies): exitOnClose
|
|
1772
3212
|
'.exit-on-close[platform=android]': { exitOnClose: true }
|
|
1773
3213
|
'.dont-exit-on-close[platform=android]': { exitOnClose: false }
|
|
1774
3214
|
|
|
1775
|
-
//
|
|
1776
|
-
|
|
1777
|
-
'.
|
|
3215
|
+
// Component(s): Ti.UI.Toolbar
|
|
3216
|
+
// Property(ies): extendBackground
|
|
3217
|
+
'.extend-background': { extendBackground: true }
|
|
3218
|
+
'.dont-extend-background': { extendBackground: false }
|
|
3219
|
+
|
|
3220
|
+
// Component(s): Ti.UI.Window
|
|
3221
|
+
// Property(ies): extendEdges - iOS Only
|
|
3222
|
+
'.extend-edges-all[platform=ios]': { extendEdges: [ Ti.UI.EXTEND_EDGE_ALL ] }
|
|
3223
|
+
'.extend-edges-bottom[platform=ios]': { extendEdges: [ Ti.UI.EXTEND_EDGE_BOTTOM ] }
|
|
3224
|
+
'.extend-edges-left[platform=ios]': { extendEdges: [ Ti.UI.EXTEND_EDGE_LEFT ] }
|
|
3225
|
+
'.extend-edges-none[platform=ios]': { extendEdges: [ Ti.UI.EXTEND_EDGE_NONE ] }
|
|
3226
|
+
'.extend-edges-right[platform=ios]': { extendEdges: [ Ti.UI.EXTEND_EDGE_RIGHT ] }
|
|
3227
|
+
'.extend-edges-top[platform=ios]': { extendEdges: [ Ti.UI.EXTEND_EDGE_TOP ] }
|
|
3228
|
+
|
|
3229
|
+
// Component(s): Ti.UI.Window
|
|
3230
|
+
// Property(ies): extendSafeArea
|
|
3231
|
+
'.extend-safe-area': { extendSafeArea: true }
|
|
3232
|
+
'.dont-extend-safe-area': { extendSafeArea: false }
|
|
3233
|
+
|
|
3234
|
+
// Component(s): Ti.UI.Window
|
|
3235
|
+
// Property(ies): flagSecure
|
|
3236
|
+
'.flag-secure[platform=android]': { flagSecure: true }
|
|
3237
|
+
'.flag-not-secure[platform=android]': { flagSecure: false }
|
|
3238
|
+
|
|
3239
|
+
// Component(s): For the Animation Component
|
|
3240
|
+
// Property(ies): flip
|
|
3241
|
+
'.flip-horizontal': { flip: 'horizontal' }
|
|
3242
|
+
'.flip-vertical': { flip: 'vertical' }
|
|
1778
3243
|
|
|
1779
|
-
//
|
|
3244
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Button, Ti.UI.Label, Ti.UI.ListItem, Ti.UI.Picker, Ti.UI.PickerColumn, Ti.UI.PickerRow, Ti.UI.ProgressBar, Ti.UI.Switch, Ti.UI.TableViewRow, Ti.UI.TextArea, Ti.UI.TextField
|
|
3245
|
+
// Property(ies): fontSize
|
|
1780
3246
|
'.text-xs': { font: { fontSize: 12 } }
|
|
1781
3247
|
'.text-sm': { font: { fontSize: 14 } }
|
|
1782
3248
|
'.text-base': { font: { fontSize: 16 } }
|
|
@@ -1791,11 +3257,13 @@
|
|
|
1791
3257
|
'.text-8xl': { font: { fontSize: 96 } }
|
|
1792
3258
|
'.text-9xl': { font: { fontSize: 128 } }
|
|
1793
3259
|
|
|
1794
|
-
//
|
|
3260
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Button, Ti.UI.Label, Ti.UI.ListItem, Ti.UI.Picker, Ti.UI.PickerColumn, Ti.UI.PickerRow, Ti.UI.ProgressBar, Ti.UI.Switch, Ti.UI.TableViewRow, Ti.UI.TextArea, Ti.UI.TextField
|
|
3261
|
+
// Property(ies): fontStyle
|
|
1795
3262
|
'.italic': { font: { fontStyle: 'italic' } }
|
|
1796
3263
|
'.not-italic': { font: { fontStyle: 'normal' } }
|
|
1797
3264
|
|
|
1798
|
-
//
|
|
3265
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Button, Ti.UI.Label, Ti.UI.ListItem, Ti.UI.Picker, Ti.UI.PickerColumn, Ti.UI.PickerRow, Ti.UI.ProgressBar, Ti.UI.Switch, Ti.UI.TableViewRow, Ti.UI.TextArea, Ti.UI.TextField
|
|
3266
|
+
// Property(ies): fontWeight
|
|
1799
3267
|
'.font-thin': { font: { fontWeight: 'thin' } }
|
|
1800
3268
|
'.font-extralight': { font: { fontWeight: 'extralight' } }
|
|
1801
3269
|
'.font-light': { font: { fontWeight: 'light' } }
|
|
@@ -1806,7 +3274,13 @@
|
|
|
1806
3274
|
'.font-extrabold': { font: { fontWeight: 'bold' } }
|
|
1807
3275
|
'.font-black': { font: { fontWeight: 'bold' } }
|
|
1808
3276
|
|
|
1809
|
-
//
|
|
3277
|
+
// Component(s): Ti.Media.VideoPlayer[android], Ti.UI.TextArea, Ti.UI.TextField, Ti.UI.Window
|
|
3278
|
+
// Property(ies): fullscreen
|
|
3279
|
+
'.fullscreen': { fullscreen: true }
|
|
3280
|
+
'.fullscreen-disabled': { fullscreen: false }
|
|
3281
|
+
|
|
3282
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Animation, Ti.UI.View, Ti.UI.Window
|
|
3283
|
+
// Property(ies): top, right, bottom, left - Gap for Grid System
|
|
1810
3284
|
'.gap-0': { top: 0, right: 0, bottom: 0, left: 0 }
|
|
1811
3285
|
'.gap-1': { top: 4, right: 4, bottom: 4, left: 4 }
|
|
1812
3286
|
'.gap-2': { top: 8, right: 8, bottom: 8, left: 8 }
|
|
@@ -1837,12 +3311,13 @@
|
|
|
1837
3311
|
'.gap-72': { top: 288, right: 288, bottom: 288, left: 288 }
|
|
1838
3312
|
'.gap-80': { top: 320, right: 320, bottom: 320, left: 320 }
|
|
1839
3313
|
'.gap-96': { top: 384, right: 384, bottom: 384, left: 384 }
|
|
3314
|
+
'.gap-auto': { top: Ti.UI.SIZE, right: Ti.UI.SIZE, bottom: Ti.UI.SIZE, left: Ti.UI.SIZE }
|
|
1840
3315
|
'.gap-px': { top: '1px', right: '1px', bottom: '1px', left: '1px' }
|
|
1841
3316
|
'.gap-0.5': { top: 2, right: 2, bottom: 2, left: 2 }
|
|
1842
3317
|
'.gap-1.5': { top: 6, right: 6, bottom: 6, left: 6 }
|
|
1843
3318
|
'.gap-2.5': { top: 10, right: 10, bottom: 10, left: 10 }
|
|
1844
3319
|
'.gap-3.5': { top: 14, right: 14, bottom: 14, left: 14 }
|
|
1845
|
-
'.gap-
|
|
3320
|
+
'.gap-full': { top: '100%', right: '100%', bottom: '100%', left: '100%' }
|
|
1846
3321
|
'.gap-b-0': { bottom: 0 }
|
|
1847
3322
|
'.gap-b-1': { bottom: 4 }
|
|
1848
3323
|
'.gap-b-2': { bottom: 8 }
|
|
@@ -1873,12 +3348,13 @@
|
|
|
1873
3348
|
'.gap-b-72': { bottom: 288 }
|
|
1874
3349
|
'.gap-b-80': { bottom: 320 }
|
|
1875
3350
|
'.gap-b-96': { bottom: 384 }
|
|
3351
|
+
'.gap-b-auto': { bottom: Ti.UI.SIZE }
|
|
1876
3352
|
'.gap-b-px': { bottom: '1px' }
|
|
1877
3353
|
'.gap-b-0.5': { bottom: 2 }
|
|
1878
3354
|
'.gap-b-1.5': { bottom: 6 }
|
|
1879
3355
|
'.gap-b-2.5': { bottom: 10 }
|
|
1880
3356
|
'.gap-b-3.5': { bottom: 14 }
|
|
1881
|
-
'.gap-b-
|
|
3357
|
+
'.gap-b-full': { bottom: '100%' }
|
|
1882
3358
|
'.gap-l-0': { left: 0 }
|
|
1883
3359
|
'.gap-l-1': { left: 4 }
|
|
1884
3360
|
'.gap-l-2': { left: 8 }
|
|
@@ -1909,12 +3385,13 @@
|
|
|
1909
3385
|
'.gap-l-72': { left: 288 }
|
|
1910
3386
|
'.gap-l-80': { left: 320 }
|
|
1911
3387
|
'.gap-l-96': { left: 384 }
|
|
3388
|
+
'.gap-l-auto': { left: Ti.UI.SIZE }
|
|
1912
3389
|
'.gap-l-px': { left: '1px' }
|
|
1913
3390
|
'.gap-l-0.5': { left: 2 }
|
|
1914
3391
|
'.gap-l-1.5': { left: 6 }
|
|
1915
3392
|
'.gap-l-2.5': { left: 10 }
|
|
1916
3393
|
'.gap-l-3.5': { left: 14 }
|
|
1917
|
-
'.gap-l-
|
|
3394
|
+
'.gap-l-full': { left: '100%' }
|
|
1918
3395
|
'.gap-r-0': { right: 0 }
|
|
1919
3396
|
'.gap-r-1': { right: 4 }
|
|
1920
3397
|
'.gap-r-2': { right: 8 }
|
|
@@ -1945,12 +3422,13 @@
|
|
|
1945
3422
|
'.gap-r-72': { right: 288 }
|
|
1946
3423
|
'.gap-r-80': { right: 320 }
|
|
1947
3424
|
'.gap-r-96': { right: 384 }
|
|
3425
|
+
'.gap-r-auto': { right: Ti.UI.SIZE }
|
|
1948
3426
|
'.gap-r-px': { right: '1px' }
|
|
1949
3427
|
'.gap-r-0.5': { right: 2 }
|
|
1950
3428
|
'.gap-r-1.5': { right: 6 }
|
|
1951
3429
|
'.gap-r-2.5': { right: 10 }
|
|
1952
3430
|
'.gap-r-3.5': { right: 14 }
|
|
1953
|
-
'.gap-r-
|
|
3431
|
+
'.gap-r-full': { right: '100%' }
|
|
1954
3432
|
'.gap-t-0': { top: 0 }
|
|
1955
3433
|
'.gap-t-1': { top: 4 }
|
|
1956
3434
|
'.gap-t-2': { top: 8 }
|
|
@@ -1981,12 +3459,13 @@
|
|
|
1981
3459
|
'.gap-t-72': { top: 288 }
|
|
1982
3460
|
'.gap-t-80': { top: 320 }
|
|
1983
3461
|
'.gap-t-96': { top: 384 }
|
|
3462
|
+
'.gap-t-auto': { top: Ti.UI.SIZE }
|
|
1984
3463
|
'.gap-t-px': { top: '1px' }
|
|
1985
3464
|
'.gap-t-0.5': { top: 2 }
|
|
1986
3465
|
'.gap-t-1.5': { top: 6 }
|
|
1987
3466
|
'.gap-t-2.5': { top: 10 }
|
|
1988
3467
|
'.gap-t-3.5': { top: 14 }
|
|
1989
|
-
'.gap-t-
|
|
3468
|
+
'.gap-t-full': { top: '100%' }
|
|
1990
3469
|
'.gap-x-0': { right: 0, left: 0 }
|
|
1991
3470
|
'.gap-x-1': { right: 4, left: 4 }
|
|
1992
3471
|
'.gap-x-2': { right: 8, left: 8 }
|
|
@@ -2017,12 +3496,13 @@
|
|
|
2017
3496
|
'.gap-x-72': { right: 288, left: 288 }
|
|
2018
3497
|
'.gap-x-80': { right: 320, left: 320 }
|
|
2019
3498
|
'.gap-x-96': { right: 384, left: 384 }
|
|
3499
|
+
'.gap-x-auto': { right: Ti.UI.SIZE, left: Ti.UI.SIZE }
|
|
2020
3500
|
'.gap-x-px': { right: '1px', left: '1px' }
|
|
2021
3501
|
'.gap-x-0.5': { right: 2, left: 2 }
|
|
2022
3502
|
'.gap-x-1.5': { right: 6, left: 6 }
|
|
2023
3503
|
'.gap-x-2.5': { right: 10, left: 10 }
|
|
2024
3504
|
'.gap-x-3.5': { right: 14, left: 14 }
|
|
2025
|
-
'.gap-x-
|
|
3505
|
+
'.gap-x-full': { right: '100%', left: '100%' }
|
|
2026
3506
|
'.gap-y-0': { top: 0, bottom: 0 }
|
|
2027
3507
|
'.gap-y-1': { top: 4, bottom: 4 }
|
|
2028
3508
|
'.gap-y-2': { top: 8, bottom: 8 }
|
|
@@ -2053,15 +3533,16 @@
|
|
|
2053
3533
|
'.gap-y-72': { top: 288, bottom: 288 }
|
|
2054
3534
|
'.gap-y-80': { top: 320, bottom: 320 }
|
|
2055
3535
|
'.gap-y-96': { top: 384, bottom: 384 }
|
|
3536
|
+
'.gap-y-auto': { top: Ti.UI.SIZE, bottom: Ti.UI.SIZE }
|
|
2056
3537
|
'.gap-y-px': { top: '1px', bottom: '1px' }
|
|
2057
3538
|
'.gap-y-0.5': { top: 2, bottom: 2 }
|
|
2058
3539
|
'.gap-y-1.5': { top: 6, bottom: 6 }
|
|
2059
3540
|
'.gap-y-2.5': { top: 10, bottom: 10 }
|
|
2060
3541
|
'.gap-y-3.5': { top: 14, bottom: 14 }
|
|
2061
|
-
'.gap-y-
|
|
3542
|
+
'.gap-y-full': { top: '100%', bottom: '100%' }
|
|
2062
3543
|
|
|
2063
|
-
//
|
|
2064
|
-
// From Color
|
|
3544
|
+
// Component(s): Ti.UI.ListItem, Ti.UI.View
|
|
3545
|
+
// Property(ies): backgroundGradient: colors - From Color
|
|
2065
3546
|
'.from-transparent': { backgroundGradient: { colors: [ 'transparent', 'transparent' ] } }
|
|
2066
3547
|
'.from-black': { backgroundGradient: { colors: [ '#00000000', '#000000' ] } }
|
|
2067
3548
|
'.from-white': { backgroundGradient: { colors: [ '#00ffffff', '#ffffff' ] } }
|
|
@@ -2286,7 +3767,8 @@
|
|
|
2286
3767
|
'.from-rose-800': { backgroundGradient: { colors: [ '#009f1239', '#9f1239' ] } }
|
|
2287
3768
|
'.from-rose-900': { backgroundGradient: { colors: [ '#00881337', '#881337' ] } }
|
|
2288
3769
|
|
|
2289
|
-
//
|
|
3770
|
+
// Component(s): Ti.UI.ListItem, Ti.UI.View
|
|
3771
|
+
// Property(ies): backgroundGradient: colors - To Color
|
|
2290
3772
|
'.to-transparent': { backgroundGradient: { colors: [ 'transparent' ] } }
|
|
2291
3773
|
'.to-black': { backgroundGradient: { colors: [ '#000000' ] } }
|
|
2292
3774
|
'.to-white': { backgroundGradient: { colors: [ '#ffffff' ] } }
|
|
@@ -2511,7 +3993,8 @@
|
|
|
2511
3993
|
'.to-rose-800': { backgroundGradient: { colors: [ '#9f1239' ] } }
|
|
2512
3994
|
'.to-rose-900': { backgroundGradient: { colors: [ '#881337' ] } }
|
|
2513
3995
|
|
|
2514
|
-
//
|
|
3996
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Animation, Ti.UI.iPad.Popover, Ti.UI.View, Ti.UI.Window
|
|
3997
|
+
// Property(ies): width - For Grid Column Start/End
|
|
2515
3998
|
'.col-span-1': { width: '8.333334%' }
|
|
2516
3999
|
'.col-span-2': { width: '16.666667%' }
|
|
2517
4000
|
'.col-span-3': { width: '25%' }
|
|
@@ -2525,7 +4008,8 @@
|
|
|
2525
4008
|
'.col-span-11': { width: '91.666667%' }
|
|
2526
4009
|
'.col-span-12': { width: '100%' }
|
|
2527
4010
|
|
|
2528
|
-
//
|
|
4011
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Animation, Ti.UI.iPad.Popover, Ti.UI.View, Ti.UI.Window
|
|
4012
|
+
// Property(ies): height - For Grid Row Start/End
|
|
2529
4013
|
'.row-span-1': { height: '8.333334%' }
|
|
2530
4014
|
'.row-span-2': { height: '16.666667%' }
|
|
2531
4015
|
'.row-span-3': { height: '25%' }
|
|
@@ -2539,12 +4023,15 @@
|
|
|
2539
4023
|
'.row-span-11': { height: '91.666667%' }
|
|
2540
4024
|
'.row-span-12': { height: '100%' }
|
|
2541
4025
|
|
|
2542
|
-
//
|
|
4026
|
+
// Component(s): Ti.UI.View
|
|
4027
|
+
// Property(ies): layout
|
|
4028
|
+
// Description: Grid Flow - layout
|
|
2543
4029
|
'.grid': { layout: 'horizontal' }
|
|
2544
4030
|
'.grid-flow-col': { layout: 'horizontal' }
|
|
2545
4031
|
'.grid-flow-row': { layout: 'vertical' }
|
|
2546
4032
|
|
|
2547
|
-
//
|
|
4033
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Animation, Ti.UI.iPad.Popover, Ti.UI.View, Ti.UI.Window
|
|
4034
|
+
// Property(ies): width - For Grid Template Columns
|
|
2548
4035
|
'.grid-cols-1': { width: '100%' }
|
|
2549
4036
|
'.grid-cols-2': { width: '50%' }
|
|
2550
4037
|
'.grid-cols-3': { width: '33.333334%' }
|
|
@@ -2558,7 +4045,8 @@
|
|
|
2558
4045
|
'.grid-cols-11': { width: '9.090909%' }
|
|
2559
4046
|
'.grid-cols-12': { width: '8.333334%' }
|
|
2560
4047
|
|
|
2561
|
-
//
|
|
4048
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Animation, Ti.UI.iPad.Popover, Ti.UI.View, Ti.UI.Window
|
|
4049
|
+
// Property(ies): height - For Grid Template Rows
|
|
2562
4050
|
'.grid-rows-1': { height: '100%' }
|
|
2563
4051
|
'.grid-rows-2': { height: '50%' }
|
|
2564
4052
|
'.grid-rows-3': { height: '33.333334%' }
|
|
@@ -2572,7 +4060,8 @@
|
|
|
2572
4060
|
'.grid-rows-11': { height: '9.090909%' }
|
|
2573
4061
|
'.grid-rows-12': { height: '8.333334%' }
|
|
2574
4062
|
|
|
2575
|
-
//
|
|
4063
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Animation, Ti.UI.iPad.Popover, Ti.UI.ListItem, Ti.UI.View
|
|
4064
|
+
// Property(ies): height
|
|
2576
4065
|
'.h-0': { height: 0 }
|
|
2577
4066
|
'.h-1': { height: 4 }
|
|
2578
4067
|
'.h-2': { height: 8 }
|
|
@@ -2624,47 +4113,364 @@
|
|
|
2624
4113
|
'.h-3/6': { height: '50%' }
|
|
2625
4114
|
'.h-4/6': { height: '66.666667%' }
|
|
2626
4115
|
'.h-5/6': { height: '83.333334%' }
|
|
4116
|
+
'.h-1/12': { height: '8.333334%' }
|
|
4117
|
+
'.h-2/12': { height: '16.666667%' }
|
|
4118
|
+
'.h-3/12': { height: '25%' }
|
|
4119
|
+
'.h-4/12': { height: '33.333334%' }
|
|
4120
|
+
'.h-5/12': { height: '41.666667%' }
|
|
4121
|
+
'.h-6/12': { height: '50%' }
|
|
4122
|
+
'.h-7/12': { height: '58.333334%' }
|
|
4123
|
+
'.h-8/12': { height: '66.666667%' }
|
|
4124
|
+
'.h-9/12': { height: '75%' }
|
|
4125
|
+
'.h-10/12': { height: '83.333334%' }
|
|
4126
|
+
'.h-11/12': { height: '91.666667%' }
|
|
2627
4127
|
'.h-full': { height: '100%' }
|
|
2628
4128
|
'.h-screen': { height: Ti.UI.FILL }
|
|
2629
4129
|
|
|
2630
|
-
//
|
|
4130
|
+
// Component(s): Ti.UI.Window
|
|
4131
|
+
// Property(ies): hidesBackButton
|
|
4132
|
+
'.hides-back-button': { hidesBackButton: true }
|
|
4133
|
+
'.shows-back-button': { hidesBackButton: false }
|
|
4134
|
+
|
|
4135
|
+
// Component(s): Ti.UI.Window
|
|
4136
|
+
// Property(ies): hidesBarsOnSwipe - iOS Only
|
|
4137
|
+
'.hides-bars-on-swipe[platform=ios]': { hidesBarsOnSwipe: true }
|
|
4138
|
+
'.shows-bars-on-swipe[platform=ios]': { hidesBarsOnSwipe: false }
|
|
4139
|
+
|
|
4140
|
+
// Component(s): Ti.UI.Window
|
|
4141
|
+
// Property(ies): hidesBarsOnTap - iOS Only
|
|
4142
|
+
'.hides-bars-on-tap[platform=ios]': { hidesBarsOnTap: true }
|
|
4143
|
+
'.shows-bars-on-tap[platform=ios]': { hidesBarsOnTap: false }
|
|
4144
|
+
|
|
4145
|
+
// Component(s): Ti.UI.Window
|
|
4146
|
+
// Property(ies): hidesBarsWhenKeyboardAppears - iOS Only
|
|
4147
|
+
'.hides-bars-when-keyboard-appears[platform=ios]': { hidesBarsWhenKeyboardAppears: true }
|
|
4148
|
+
'.shows-bars-when-keyboard-appears[platform=ios]': { hidesBarsWhenKeyboardAppears: false }
|
|
4149
|
+
|
|
4150
|
+
// Component(s): Ti.UI.Window
|
|
4151
|
+
// Property(ies): hideShadow - iOS Only
|
|
4152
|
+
'.hide-shadow[platform=ios]': { hideShadow: true }
|
|
4153
|
+
'.show-shadow[platform=ios]': { hideShadow: false }
|
|
4154
|
+
|
|
4155
|
+
// Component(s): Ti.UI.Window
|
|
4156
|
+
// Property(ies): hidesSearchBarWhenScrolling - iOS Only
|
|
4157
|
+
'.hides-search-bar-when-scrolling[platform=ios]': { hidesSearchBarWhenScrolling: true }
|
|
4158
|
+
'.shows-search-bar-when-scrolling[platform=ios]': { hidesSearchBarWhenScrolling: false }
|
|
4159
|
+
|
|
4160
|
+
// Component(s): Ti.UI.Window
|
|
4161
|
+
// Property(ies): homeIndicatorAutoHidden - iOS Only
|
|
4162
|
+
'.home-indicator-auto-hidden[platform=ios]': { homeIndicatorAutoHidden: true }
|
|
4163
|
+
|
|
4164
|
+
// Component(s): Ti.UI.Tab
|
|
4165
|
+
// Property(ies): iconIsMask - iOS Only
|
|
4166
|
+
'.icon-is-mask[platform=ios]': { iconIsMask: true }
|
|
4167
|
+
'.icon-is-not-mask[platform=ios]': { iconIsMask: false }
|
|
4168
|
+
|
|
4169
|
+
// Component(s): Ti.UI.Window
|
|
4170
|
+
// Property(ies): includeOpaqueBars - iOS Only
|
|
4171
|
+
'.include-opaque-bars[platform=ios]': { includeOpaqueBars: true }
|
|
4172
|
+
'.exclude-opaque-bars[platform=ios]': { includeOpaqueBars: false }
|
|
4173
|
+
|
|
4174
|
+
// Component(s): Ti.UI.ActivityIndicator
|
|
4175
|
+
// Property(ies): indicatorColor
|
|
4176
|
+
'.indicator-transparent': { indicatorColor: 'transparent' }
|
|
4177
|
+
'.indicator-black': { indicatorColor: '#000000' }
|
|
4178
|
+
'.indicator-white': { indicatorColor: '#ffffff' }
|
|
4179
|
+
'.indicator-slate-50': { indicatorColor: '#f8fafc' }
|
|
4180
|
+
'.indicator-slate-100': { indicatorColor: '#f1f5f9' }
|
|
4181
|
+
'.indicator-slate-200': { indicatorColor: '#e2e8f0' }
|
|
4182
|
+
'.indicator-slate-300': { indicatorColor: '#cbd5e1' }
|
|
4183
|
+
'.indicator-slate-400': { indicatorColor: '#94a3b8' }
|
|
4184
|
+
'.indicator-slate-500': { indicatorColor: '#64748b' }
|
|
4185
|
+
'.indicator-slate-600': { indicatorColor: '#475569' }
|
|
4186
|
+
'.indicator-slate-700': { indicatorColor: '#334155' }
|
|
4187
|
+
'.indicator-slate-800': { indicatorColor: '#1e293b' }
|
|
4188
|
+
'.indicator-slate-900': { indicatorColor: '#0f172a' }
|
|
4189
|
+
'.indicator-gray-50': { indicatorColor: '#f9fafb' }
|
|
4190
|
+
'.indicator-gray-100': { indicatorColor: '#f3f4f6' }
|
|
4191
|
+
'.indicator-gray-200': { indicatorColor: '#e5e7eb' }
|
|
4192
|
+
'.indicator-gray-300': { indicatorColor: '#d1d5db' }
|
|
4193
|
+
'.indicator-gray-400': { indicatorColor: '#9ca3af' }
|
|
4194
|
+
'.indicator-gray-500': { indicatorColor: '#6b7280' }
|
|
4195
|
+
'.indicator-gray-600': { indicatorColor: '#4b5563' }
|
|
4196
|
+
'.indicator-gray-700': { indicatorColor: '#374151' }
|
|
4197
|
+
'.indicator-gray-800': { indicatorColor: '#1f2937' }
|
|
4198
|
+
'.indicator-gray-900': { indicatorColor: '#111827' }
|
|
4199
|
+
'.indicator-zinc-50': { indicatorColor: '#fafafa' }
|
|
4200
|
+
'.indicator-zinc-100': { indicatorColor: '#f4f4f5' }
|
|
4201
|
+
'.indicator-zinc-200': { indicatorColor: '#e4e4e7' }
|
|
4202
|
+
'.indicator-zinc-300': { indicatorColor: '#d4d4d8' }
|
|
4203
|
+
'.indicator-zinc-400': { indicatorColor: '#a1a1aa' }
|
|
4204
|
+
'.indicator-zinc-500': { indicatorColor: '#71717a' }
|
|
4205
|
+
'.indicator-zinc-600': { indicatorColor: '#52525b' }
|
|
4206
|
+
'.indicator-zinc-700': { indicatorColor: '#3f3f46' }
|
|
4207
|
+
'.indicator-zinc-800': { indicatorColor: '#27272a' }
|
|
4208
|
+
'.indicator-zinc-900': { indicatorColor: '#18181b' }
|
|
4209
|
+
'.indicator-neutral-50': { indicatorColor: '#fafafa' }
|
|
4210
|
+
'.indicator-neutral-100': { indicatorColor: '#f5f5f5' }
|
|
4211
|
+
'.indicator-neutral-200': { indicatorColor: '#e5e5e5' }
|
|
4212
|
+
'.indicator-neutral-300': { indicatorColor: '#d4d4d4' }
|
|
4213
|
+
'.indicator-neutral-400': { indicatorColor: '#a3a3a3' }
|
|
4214
|
+
'.indicator-neutral-500': { indicatorColor: '#737373' }
|
|
4215
|
+
'.indicator-neutral-600': { indicatorColor: '#525252' }
|
|
4216
|
+
'.indicator-neutral-700': { indicatorColor: '#404040' }
|
|
4217
|
+
'.indicator-neutral-800': { indicatorColor: '#262626' }
|
|
4218
|
+
'.indicator-neutral-900': { indicatorColor: '#171717' }
|
|
4219
|
+
'.indicator-stone-50': { indicatorColor: '#fafaf9' }
|
|
4220
|
+
'.indicator-stone-100': { indicatorColor: '#f5f5f4' }
|
|
4221
|
+
'.indicator-stone-200': { indicatorColor: '#e7e5e4' }
|
|
4222
|
+
'.indicator-stone-300': { indicatorColor: '#d6d3d1' }
|
|
4223
|
+
'.indicator-stone-400': { indicatorColor: '#a8a29e' }
|
|
4224
|
+
'.indicator-stone-500': { indicatorColor: '#78716c' }
|
|
4225
|
+
'.indicator-stone-600': { indicatorColor: '#57534e' }
|
|
4226
|
+
'.indicator-stone-700': { indicatorColor: '#44403c' }
|
|
4227
|
+
'.indicator-stone-800': { indicatorColor: '#292524' }
|
|
4228
|
+
'.indicator-stone-900': { indicatorColor: '#1c1917' }
|
|
4229
|
+
'.indicator-red-50': { indicatorColor: '#fef2f2' }
|
|
4230
|
+
'.indicator-red-100': { indicatorColor: '#fee2e2' }
|
|
4231
|
+
'.indicator-red-200': { indicatorColor: '#fecaca' }
|
|
4232
|
+
'.indicator-red-300': { indicatorColor: '#fca5a5' }
|
|
4233
|
+
'.indicator-red-400': { indicatorColor: '#f87171' }
|
|
4234
|
+
'.indicator-red-500': { indicatorColor: '#ef4444' }
|
|
4235
|
+
'.indicator-red-600': { indicatorColor: '#dc2626' }
|
|
4236
|
+
'.indicator-red-700': { indicatorColor: '#b91c1c' }
|
|
4237
|
+
'.indicator-red-800': { indicatorColor: '#991b1b' }
|
|
4238
|
+
'.indicator-red-900': { indicatorColor: '#7f1d1d' }
|
|
4239
|
+
'.indicator-orange-50': { indicatorColor: '#fff7ed' }
|
|
4240
|
+
'.indicator-orange-100': { indicatorColor: '#ffedd5' }
|
|
4241
|
+
'.indicator-orange-200': { indicatorColor: '#fed7aa' }
|
|
4242
|
+
'.indicator-orange-300': { indicatorColor: '#fdba74' }
|
|
4243
|
+
'.indicator-orange-400': { indicatorColor: '#fb923c' }
|
|
4244
|
+
'.indicator-orange-500': { indicatorColor: '#f97316' }
|
|
4245
|
+
'.indicator-orange-600': { indicatorColor: '#ea580c' }
|
|
4246
|
+
'.indicator-orange-700': { indicatorColor: '#c2410c' }
|
|
4247
|
+
'.indicator-orange-800': { indicatorColor: '#9a3412' }
|
|
4248
|
+
'.indicator-orange-900': { indicatorColor: '#7c2d12' }
|
|
4249
|
+
'.indicator-amber-50': { indicatorColor: '#fffbeb' }
|
|
4250
|
+
'.indicator-amber-100': { indicatorColor: '#fef3c7' }
|
|
4251
|
+
'.indicator-amber-200': { indicatorColor: '#fde68a' }
|
|
4252
|
+
'.indicator-amber-300': { indicatorColor: '#fcd34d' }
|
|
4253
|
+
'.indicator-amber-400': { indicatorColor: '#fbbf24' }
|
|
4254
|
+
'.indicator-amber-500': { indicatorColor: '#f59e0b' }
|
|
4255
|
+
'.indicator-amber-600': { indicatorColor: '#d97706' }
|
|
4256
|
+
'.indicator-amber-700': { indicatorColor: '#b45309' }
|
|
4257
|
+
'.indicator-amber-800': { indicatorColor: '#92400e' }
|
|
4258
|
+
'.indicator-amber-900': { indicatorColor: '#78350f' }
|
|
4259
|
+
'.indicator-yellow-50': { indicatorColor: '#fefce8' }
|
|
4260
|
+
'.indicator-yellow-100': { indicatorColor: '#fef9c3' }
|
|
4261
|
+
'.indicator-yellow-200': { indicatorColor: '#fef08a' }
|
|
4262
|
+
'.indicator-yellow-300': { indicatorColor: '#fde047' }
|
|
4263
|
+
'.indicator-yellow-400': { indicatorColor: '#facc15' }
|
|
4264
|
+
'.indicator-yellow-500': { indicatorColor: '#eab308' }
|
|
4265
|
+
'.indicator-yellow-600': { indicatorColor: '#ca8a04' }
|
|
4266
|
+
'.indicator-yellow-700': { indicatorColor: '#a16207' }
|
|
4267
|
+
'.indicator-yellow-800': { indicatorColor: '#854d0e' }
|
|
4268
|
+
'.indicator-yellow-900': { indicatorColor: '#713f12' }
|
|
4269
|
+
'.indicator-lime-50': { indicatorColor: '#f7fee7' }
|
|
4270
|
+
'.indicator-lime-100': { indicatorColor: '#ecfccb' }
|
|
4271
|
+
'.indicator-lime-200': { indicatorColor: '#d9f99d' }
|
|
4272
|
+
'.indicator-lime-300': { indicatorColor: '#bef264' }
|
|
4273
|
+
'.indicator-lime-400': { indicatorColor: '#a3e635' }
|
|
4274
|
+
'.indicator-lime-500': { indicatorColor: '#84cc16' }
|
|
4275
|
+
'.indicator-lime-600': { indicatorColor: '#65a30d' }
|
|
4276
|
+
'.indicator-lime-700': { indicatorColor: '#4d7c0f' }
|
|
4277
|
+
'.indicator-lime-800': { indicatorColor: '#3f6212' }
|
|
4278
|
+
'.indicator-lime-900': { indicatorColor: '#365314' }
|
|
4279
|
+
'.indicator-green-50': { indicatorColor: '#f0fdf4' }
|
|
4280
|
+
'.indicator-green-100': { indicatorColor: '#dcfce7' }
|
|
4281
|
+
'.indicator-green-200': { indicatorColor: '#bbf7d0' }
|
|
4282
|
+
'.indicator-green-300': { indicatorColor: '#86efac' }
|
|
4283
|
+
'.indicator-green-400': { indicatorColor: '#4ade80' }
|
|
4284
|
+
'.indicator-green-500': { indicatorColor: '#22c55e' }
|
|
4285
|
+
'.indicator-green-600': { indicatorColor: '#16a34a' }
|
|
4286
|
+
'.indicator-green-700': { indicatorColor: '#15803d' }
|
|
4287
|
+
'.indicator-green-800': { indicatorColor: '#166534' }
|
|
4288
|
+
'.indicator-green-900': { indicatorColor: '#14532d' }
|
|
4289
|
+
'.indicator-emerald-50': { indicatorColor: '#ecfdf5' }
|
|
4290
|
+
'.indicator-emerald-100': { indicatorColor: '#d1fae5' }
|
|
4291
|
+
'.indicator-emerald-200': { indicatorColor: '#a7f3d0' }
|
|
4292
|
+
'.indicator-emerald-300': { indicatorColor: '#6ee7b7' }
|
|
4293
|
+
'.indicator-emerald-400': { indicatorColor: '#34d399' }
|
|
4294
|
+
'.indicator-emerald-500': { indicatorColor: '#10b981' }
|
|
4295
|
+
'.indicator-emerald-600': { indicatorColor: '#059669' }
|
|
4296
|
+
'.indicator-emerald-700': { indicatorColor: '#047857' }
|
|
4297
|
+
'.indicator-emerald-800': { indicatorColor: '#065f46' }
|
|
4298
|
+
'.indicator-emerald-900': { indicatorColor: '#064e3b' }
|
|
4299
|
+
'.indicator-teal-50': { indicatorColor: '#f0fdfa' }
|
|
4300
|
+
'.indicator-teal-100': { indicatorColor: '#ccfbf1' }
|
|
4301
|
+
'.indicator-teal-200': { indicatorColor: '#99f6e4' }
|
|
4302
|
+
'.indicator-teal-300': { indicatorColor: '#5eead4' }
|
|
4303
|
+
'.indicator-teal-400': { indicatorColor: '#2dd4bf' }
|
|
4304
|
+
'.indicator-teal-500': { indicatorColor: '#14b8a6' }
|
|
4305
|
+
'.indicator-teal-600': { indicatorColor: '#0d9488' }
|
|
4306
|
+
'.indicator-teal-700': { indicatorColor: '#0f766e' }
|
|
4307
|
+
'.indicator-teal-800': { indicatorColor: '#115e59' }
|
|
4308
|
+
'.indicator-teal-900': { indicatorColor: '#134e4a' }
|
|
4309
|
+
'.indicator-cyan-50': { indicatorColor: '#ecfeff' }
|
|
4310
|
+
'.indicator-cyan-100': { indicatorColor: '#cffafe' }
|
|
4311
|
+
'.indicator-cyan-200': { indicatorColor: '#a5f3fc' }
|
|
4312
|
+
'.indicator-cyan-300': { indicatorColor: '#67e8f9' }
|
|
4313
|
+
'.indicator-cyan-400': { indicatorColor: '#22d3ee' }
|
|
4314
|
+
'.indicator-cyan-500': { indicatorColor: '#06b6d4' }
|
|
4315
|
+
'.indicator-cyan-600': { indicatorColor: '#0891b2' }
|
|
4316
|
+
'.indicator-cyan-700': { indicatorColor: '#0e7490' }
|
|
4317
|
+
'.indicator-cyan-800': { indicatorColor: '#155e75' }
|
|
4318
|
+
'.indicator-cyan-900': { indicatorColor: '#164e63' }
|
|
4319
|
+
'.indicator-sky-50': { indicatorColor: '#f0f9ff' }
|
|
4320
|
+
'.indicator-sky-100': { indicatorColor: '#e0f2fe' }
|
|
4321
|
+
'.indicator-sky-200': { indicatorColor: '#bae6fd' }
|
|
4322
|
+
'.indicator-sky-300': { indicatorColor: '#7dd3fc' }
|
|
4323
|
+
'.indicator-sky-400': { indicatorColor: '#38bdf8' }
|
|
4324
|
+
'.indicator-sky-500': { indicatorColor: '#0ea5e9' }
|
|
4325
|
+
'.indicator-sky-600': { indicatorColor: '#0284c7' }
|
|
4326
|
+
'.indicator-sky-700': { indicatorColor: '#0369a1' }
|
|
4327
|
+
'.indicator-sky-800': { indicatorColor: '#075985' }
|
|
4328
|
+
'.indicator-sky-900': { indicatorColor: '#0c4a6e' }
|
|
4329
|
+
'.indicator-blue-50': { indicatorColor: '#eff6ff' }
|
|
4330
|
+
'.indicator-blue-100': { indicatorColor: '#dbeafe' }
|
|
4331
|
+
'.indicator-blue-200': { indicatorColor: '#bfdbfe' }
|
|
4332
|
+
'.indicator-blue-300': { indicatorColor: '#93c5fd' }
|
|
4333
|
+
'.indicator-blue-400': { indicatorColor: '#60a5fa' }
|
|
4334
|
+
'.indicator-blue-500': { indicatorColor: '#3b82f6' }
|
|
4335
|
+
'.indicator-blue-600': { indicatorColor: '#2563eb' }
|
|
4336
|
+
'.indicator-blue-700': { indicatorColor: '#1d4ed8' }
|
|
4337
|
+
'.indicator-blue-800': { indicatorColor: '#1e40af' }
|
|
4338
|
+
'.indicator-blue-900': { indicatorColor: '#1e3a8a' }
|
|
4339
|
+
'.indicator-indigo-50': { indicatorColor: '#eef2ff' }
|
|
4340
|
+
'.indicator-indigo-100': { indicatorColor: '#e0e7ff' }
|
|
4341
|
+
'.indicator-indigo-200': { indicatorColor: '#c7d2fe' }
|
|
4342
|
+
'.indicator-indigo-300': { indicatorColor: '#a5b4fc' }
|
|
4343
|
+
'.indicator-indigo-400': { indicatorColor: '#818cf8' }
|
|
4344
|
+
'.indicator-indigo-500': { indicatorColor: '#6366f1' }
|
|
4345
|
+
'.indicator-indigo-600': { indicatorColor: '#4f46e5' }
|
|
4346
|
+
'.indicator-indigo-700': { indicatorColor: '#4338ca' }
|
|
4347
|
+
'.indicator-indigo-800': { indicatorColor: '#3730a3' }
|
|
4348
|
+
'.indicator-indigo-900': { indicatorColor: '#312e81' }
|
|
4349
|
+
'.indicator-violet-50': { indicatorColor: '#f5f3ff' }
|
|
4350
|
+
'.indicator-violet-100': { indicatorColor: '#ede9fe' }
|
|
4351
|
+
'.indicator-violet-200': { indicatorColor: '#ddd6fe' }
|
|
4352
|
+
'.indicator-violet-300': { indicatorColor: '#c4b5fd' }
|
|
4353
|
+
'.indicator-violet-400': { indicatorColor: '#a78bfa' }
|
|
4354
|
+
'.indicator-violet-500': { indicatorColor: '#8b5cf6' }
|
|
4355
|
+
'.indicator-violet-600': { indicatorColor: '#7c3aed' }
|
|
4356
|
+
'.indicator-violet-700': { indicatorColor: '#6d28d9' }
|
|
4357
|
+
'.indicator-violet-800': { indicatorColor: '#5b21b6' }
|
|
4358
|
+
'.indicator-violet-900': { indicatorColor: '#4c1d95' }
|
|
4359
|
+
'.indicator-purple-50': { indicatorColor: '#faf5ff' }
|
|
4360
|
+
'.indicator-purple-100': { indicatorColor: '#f3e8ff' }
|
|
4361
|
+
'.indicator-purple-200': { indicatorColor: '#e9d5ff' }
|
|
4362
|
+
'.indicator-purple-300': { indicatorColor: '#d8b4fe' }
|
|
4363
|
+
'.indicator-purple-400': { indicatorColor: '#c084fc' }
|
|
4364
|
+
'.indicator-purple-500': { indicatorColor: '#a855f7' }
|
|
4365
|
+
'.indicator-purple-600': { indicatorColor: '#9333ea' }
|
|
4366
|
+
'.indicator-purple-700': { indicatorColor: '#7e22ce' }
|
|
4367
|
+
'.indicator-purple-800': { indicatorColor: '#6b21a8' }
|
|
4368
|
+
'.indicator-purple-900': { indicatorColor: '#581c87' }
|
|
4369
|
+
'.indicator-fuchsia-50': { indicatorColor: '#fdf4ff' }
|
|
4370
|
+
'.indicator-fuchsia-100': { indicatorColor: '#fae8ff' }
|
|
4371
|
+
'.indicator-fuchsia-200': { indicatorColor: '#f5d0fe' }
|
|
4372
|
+
'.indicator-fuchsia-300': { indicatorColor: '#f0abfc' }
|
|
4373
|
+
'.indicator-fuchsia-400': { indicatorColor: '#e879f9' }
|
|
4374
|
+
'.indicator-fuchsia-500': { indicatorColor: '#d946ef' }
|
|
4375
|
+
'.indicator-fuchsia-600': { indicatorColor: '#c026d3' }
|
|
4376
|
+
'.indicator-fuchsia-700': { indicatorColor: '#a21caf' }
|
|
4377
|
+
'.indicator-fuchsia-800': { indicatorColor: '#86198f' }
|
|
4378
|
+
'.indicator-fuchsia-900': { indicatorColor: '#701a75' }
|
|
4379
|
+
'.indicator-pink-50': { indicatorColor: '#fdf2f8' }
|
|
4380
|
+
'.indicator-pink-100': { indicatorColor: '#fce7f3' }
|
|
4381
|
+
'.indicator-pink-200': { indicatorColor: '#fbcfe8' }
|
|
4382
|
+
'.indicator-pink-300': { indicatorColor: '#f9a8d4' }
|
|
4383
|
+
'.indicator-pink-400': { indicatorColor: '#f472b6' }
|
|
4384
|
+
'.indicator-pink-500': { indicatorColor: '#ec4899' }
|
|
4385
|
+
'.indicator-pink-600': { indicatorColor: '#db2777' }
|
|
4386
|
+
'.indicator-pink-700': { indicatorColor: '#be185d' }
|
|
4387
|
+
'.indicator-pink-800': { indicatorColor: '#9d174d' }
|
|
4388
|
+
'.indicator-pink-900': { indicatorColor: '#831843' }
|
|
4389
|
+
'.indicator-rose-50': { indicatorColor: '#fff1f2' }
|
|
4390
|
+
'.indicator-rose-100': { indicatorColor: '#ffe4e6' }
|
|
4391
|
+
'.indicator-rose-200': { indicatorColor: '#fecdd3' }
|
|
4392
|
+
'.indicator-rose-300': { indicatorColor: '#fda4af' }
|
|
4393
|
+
'.indicator-rose-400': { indicatorColor: '#fb7185' }
|
|
4394
|
+
'.indicator-rose-500': { indicatorColor: '#f43f5e' }
|
|
4395
|
+
'.indicator-rose-600': { indicatorColor: '#e11d48' }
|
|
4396
|
+
'.indicator-rose-700': { indicatorColor: '#be123c' }
|
|
4397
|
+
'.indicator-rose-800': { indicatorColor: '#9f1239' }
|
|
4398
|
+
'.indicator-rose-900': { indicatorColor: '#881337' }
|
|
4399
|
+
|
|
4400
|
+
// Component(s): Ti.UI.View
|
|
4401
|
+
// Property(ies): touchEnabled
|
|
2631
4402
|
'.touch-enabled': { touchEnabled: true }
|
|
2632
4403
|
'.touch-disabled': { touchEnabled: false }
|
|
2633
4404
|
'.pointer-events-auto': { touchEnabled: true }
|
|
2634
4405
|
'.pointer-events-none': { touchEnabled: false }
|
|
2635
4406
|
|
|
2636
|
-
//
|
|
4407
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Animaiton, Ti.UI.View, Ti.UI.Window
|
|
4408
|
+
// Property(ies): top, bottom, width(FILL), height(FILL)
|
|
4409
|
+
// Description: top, bottom, width, height properties for aligning items in a Grid System
|
|
2637
4410
|
'.items-start': { top: 0 }
|
|
2638
4411
|
'.items-end': { bottom: 0 }
|
|
2639
4412
|
'.items-center': { width: Ti.UI.FILL, height: Ti.UI.FILL }
|
|
2640
4413
|
|
|
2641
|
-
//
|
|
4414
|
+
// Component(s): Ti.UI.View
|
|
4415
|
+
// Property(ies): keepScreenOn - Android Only
|
|
2642
4416
|
'.keep-screen-on[platform=android]': { keepScreenOn: true }
|
|
2643
|
-
'.keep-screen-off[platform=android]': { keepScreenOn: false }
|
|
2644
4417
|
|
|
2645
|
-
//
|
|
4418
|
+
// Component(s): Ti.UI.ListView
|
|
4419
|
+
// Property(ies): keepSectionsInSearch - iOS Only
|
|
4420
|
+
'.keep-sections-in-search[platform=ios]': { keepSectionsInSearch: true }
|
|
4421
|
+
'.dont-keep-sections-in-search[platform=ios]': { keepSectionsInSearch: false }
|
|
4422
|
+
|
|
4423
|
+
// Component(s): Ti.UI.AlertDialog, Ti.UI.SearchBar, Ti.UI.TextArea, Ti.UI.TextField
|
|
4424
|
+
// Property(ies): keyboardAppearance - iOS Only
|
|
4425
|
+
'.keyboard-appearance[platform=ios]': { keyboardAppearance: Ti.UI.KEYBOARD_APPEARANCE_DEFAULT }
|
|
2646
4426
|
'.keyboard-appearance-dark[platform=ios]': { keyboardAppearance: Ti.UI.KEYBOARD_APPEARANCE_DARK }
|
|
2647
4427
|
'.keyboard-appearance-light[platform=ios]': { keyboardAppearance: Ti.UI.KEYBOARD_APPEARANCE_LIGHT }
|
|
2648
|
-
'.keyboard-appearance-default[platform=ios]': { keyboardAppearance: Ti.UI.KEYBOARD_APPEARANCE_DEFAULT }
|
|
2649
4428
|
|
|
2650
|
-
//
|
|
2651
|
-
|
|
4429
|
+
// Component(s): Ti.UI.AlertDialog, Ti.UI.SearchBar, Ti.UI.TextArea, Ti.UI.TextField
|
|
4430
|
+
// Property(ies): keyboardDismissMode - iOS Only
|
|
4431
|
+
'.keyboard-dismiss-interactive[platform=ios]': { keyboardDismissMode: Ti.UI.iOS.KEYBOARD_DISMISS_MODE_INTERACTIVE }
|
|
4432
|
+
'.keyboard-dismiss-none[platform=ios]': { keyboardDismissMode: Ti.UI.iOS.KEYBOARD_DISMISS_MODE_NONE }
|
|
4433
|
+
'.keyboard-dismiss-on-drag[platform=ios]': { keyboardDismissMode: Ti.UI.iOS.KEYBOARD_DISMISS_MODE_ON_DRAG }
|
|
4434
|
+
|
|
4435
|
+
// Component(s): Ti.UI.AlertDialog, Ti.UI.SearchBar, Ti.UI.TextArea, Ti.UI.TextField
|
|
4436
|
+
// Property(ies): keyboardType
|
|
4437
|
+
'.keyboard-type': { keyboardType: Ti.UI.KEYBOARD_TYPE_DEFAULT }
|
|
2652
4438
|
'.keyboard-type-ascii': { keyboardType: Ti.UI.KEYBOARD_TYPE_ASCII }
|
|
2653
|
-
'.keyboard-type-email': { keyboardType: Ti.UI.KEYBOARD_TYPE_EMAIL }
|
|
2654
|
-
'.keyboard-type-default': { keyboardType: Ti.UI.KEYBOARD_TYPE_DEFAULT }
|
|
2655
|
-
'.keyboard-type-twitter': { keyboardType: Ti.UI.KEYBOARD_TYPE_TWITTER }
|
|
2656
|
-
'.keyboard-type-phone-pad': { keyboardType: Ti.UI.KEYBOARD_TYPE_PHONE_PAD }
|
|
2657
|
-
'.keyboard-type-websearch': { keyboardType: Ti.UI.KEYBOARD_TYPE_WEBSEARCH }
|
|
2658
|
-
'.keyboard-type-number-pad': { keyboardType: Ti.UI.KEYBOARD_TYPE_NUMBER_PAD }
|
|
2659
4439
|
'.keyboard-type-decimal-pad': { keyboardType: Ti.UI.KEYBOARD_TYPE_DECIMAL_PAD }
|
|
4440
|
+
'.keyboard-type-email': { keyboardType: Ti.UI.KEYBOARD_TYPE_EMAIL }
|
|
2660
4441
|
'.keyboard-type-namephone-pad': { keyboardType: Ti.UI.KEYBOARD_TYPE_NAMEPHONE_PAD }
|
|
4442
|
+
'.keyboard-type-number-pad': { keyboardType: Ti.UI.KEYBOARD_TYPE_NUMBER_PAD }
|
|
2661
4443
|
'.keyboard-type-numbers-punctuation': { keyboardType: Ti.UI.KEYBOARD_TYPE_NUMBERS_PUNCTUATION }
|
|
4444
|
+
'.keyboard-type-phone-pad': { keyboardType: Ti.UI.KEYBOARD_TYPE_PHONE_PAD }
|
|
4445
|
+
'.keyboard-type-url': { keyboardType: Ti.UI.KEYBOARD_TYPE_URL }
|
|
4446
|
+
'.keyboard-type-appearance[platform=ios]': { keyboardType: Ti.UI.KEYBOARD_APPEARANCE_DEFAULT }
|
|
4447
|
+
'.keyboard-type-appearance-dark[platform=ios]': { keyboardType: Ti.UI.KEYBOARD_APPEARANCE_DARK }
|
|
4448
|
+
'.keyboard-type-appearance-light[platform=ios]': { keyboardType: Ti.UI.KEYBOARD_APPEARANCE_LIGHT }
|
|
4449
|
+
'.keyboard-type-twitter[platform=ios]': { keyboardType: Ti.UI.KEYBOARD_TYPE_TWITTER }
|
|
4450
|
+
'.keyboard-type-websearch[platform=ios]': { keyboardType: Ti.UI.KEYBOARD_TYPE_WEBSEARCH }
|
|
2662
4451
|
|
|
2663
|
-
//
|
|
2664
|
-
|
|
4452
|
+
// Component(s): Ti.UI.Window
|
|
4453
|
+
// Property(ies): largeTitleDisplayMode - iOS Only
|
|
4454
|
+
'.large-title-display-always[platform=ios]': { largeTitleDisplayMode: Ti.UI.iOS.LARGE_TITLE_DISPLAY_MODE_ALWAYS }
|
|
4455
|
+
'.large-title-display-automatic[platform=ios]': { largeTitleDisplayMode: Ti.UI.iOS.LARGE_TITLE_DISPLAY_MODE_AUTOMATIC }
|
|
4456
|
+
'.large-title-display-never[platform=ios]': { largeTitleDisplayMode: Ti.UI.iOS.LARGE_TITLE_DISPLAY_MODE_NEVER }
|
|
4457
|
+
|
|
4458
|
+
// Component(s): Ti.UI.Window
|
|
4459
|
+
// Property(ies): largeTitleEnabled - iOS Only
|
|
4460
|
+
'.large-title-enabled[platform=ios]': { largeTitleEnabled: true }
|
|
4461
|
+
|
|
4462
|
+
// Component(s): Ti.UI.OptionBar, Ti.UI.View
|
|
4463
|
+
// Property(ies): layout
|
|
2665
4464
|
'.horizontal': { layout: 'horizontal' }
|
|
4465
|
+
'.vertical': { layout: 'vertical' }
|
|
2666
4466
|
|
|
2667
|
-
//
|
|
4467
|
+
// Component(s): Ti.UI.ListView
|
|
4468
|
+
// Property(ies): lazyLoadingEnabled - iOS Only
|
|
4469
|
+
'.lazy-loading-enabled[platform=ios]': { lazyLoadingEnabled: true }
|
|
4470
|
+
'.lazy-loading-disabled[platform=ios]': { lazyLoadingEnabled: false }
|
|
4471
|
+
|
|
4472
|
+
// Component(s): Ti.UI.MaskedImage
|
|
4473
|
+
// Property(ies): backgroundGradient - Linear
|
|
2668
4474
|
'.bg-linear': { backgroundGradient: { type: 'linear', startPoint: { x: '50%', y: '100%' }, endPoint: { x: '50%', y: '0%' }, backfillStart: true } }
|
|
2669
4475
|
'.bg-linear-to-t': { backgroundGradient: { type: 'linear', startPoint: { x: '0%', y: '0%' }, endPoint: { x: '0%', y: '100%' }, backfillStart: true } }
|
|
2670
4476
|
'.bg-linear-to-tr': { backgroundGradient: { type: 'linear', startPoint: { x: '100%', y: '0%' }, endPoint: { x: '0%', y: '100%' }, backfillStart: true } }
|
|
@@ -2675,6 +4481,8 @@
|
|
|
2675
4481
|
'.bg-linear-to-l': { backgroundGradient: { type: 'linear', startPoint: { x: '0%', y: '0%' }, endPoint: { x: '100%', y: '0%' }, backfillStart: true } }
|
|
2676
4482
|
'.bg-linear-to-tl': { backgroundGradient: { type: 'linear', startPoint: { x: '0%', y: '0%' }, endPoint: { x: '100%', y: '100%' }, backfillStart: true } }
|
|
2677
4483
|
|
|
4484
|
+
// Component(s): Ti.UI.MaskedImage
|
|
4485
|
+
// Property(ies): backgroundGradient - Gradient
|
|
2678
4486
|
'.bg-gradient': { backgroundGradient: { type: 'linear', startPoint: { x: '50%', y: '100%' }, endPoint: { x: '50%', y: '0%' }, backfillStart: true } }
|
|
2679
4487
|
'.bg-gradient-to-t': { backgroundGradient: { type: 'linear', startPoint: { x: '0%', y: '0%' }, endPoint: { x: '0%', y: '100%' }, backfillStart: true } }
|
|
2680
4488
|
'.bg-gradient-to-tr': { backgroundGradient: { type: 'linear', startPoint: { x: '100%', y: '0%' }, endPoint: { x: '0%', y: '100%' }, backfillStart: true } }
|
|
@@ -2685,7 +4493,40 @@
|
|
|
2685
4493
|
'.bg-gradient-to-l': { backgroundGradient: { type: 'linear', startPoint: { x: '0%', y: '0%' }, endPoint: { x: '100%', y: '0%' }, backfillStart: true } }
|
|
2686
4494
|
'.bg-gradient-to-tl': { backgroundGradient: { type: 'linear', startPoint: { x: '0%', y: '0%' }, endPoint: { x: '100%', y: '100%' }, backfillStart: true } }
|
|
2687
4495
|
|
|
2688
|
-
//
|
|
4496
|
+
// Component(s): Ti.UI.AlertDialog
|
|
4497
|
+
// Property(ies): loginKeyboardType
|
|
4498
|
+
'.login-keyboard': { loginKeyboardType: Ti.UI.KEYBOARD_TYPE_DEFAULT }
|
|
4499
|
+
'.login-keyboard-appearance': { loginKeyboardType: Ti.UI.KEYBOARD_APPEARANCE_DEFAULT }
|
|
4500
|
+
'.login-keyboard-appearance-dark': { loginKeyboardType: Ti.UI.KEYBOARD_APPEARANCE_DARK }
|
|
4501
|
+
'.login-keyboard-appearance-light': { loginKeyboardType: Ti.UI.KEYBOARD_APPEARANCE_LIGHT }
|
|
4502
|
+
'.login-keyboard-ascii': { loginKeyboardType: Ti.UI.KEYBOARD_TYPE_ASCII }
|
|
4503
|
+
'.login-keyboard-decimal-pad': { loginKeyboardType: Ti.UI.KEYBOARD_TYPE_DECIMAL_PAD }
|
|
4504
|
+
'.login-keyboard-email': { loginKeyboardType: Ti.UI.KEYBOARD_TYPE_EMAIL }
|
|
4505
|
+
'.login-keyboard-namephone-pad': { loginKeyboardType: Ti.UI.KEYBOARD_TYPE_NAMEPHONE_PAD }
|
|
4506
|
+
'.login-keyboard-number-pad': { loginKeyboardType: Ti.UI.KEYBOARD_TYPE_NUMBER_PAD }
|
|
4507
|
+
'.login-keyboard-numbers-punctuation': { loginKeyboardType: Ti.UI.KEYBOARD_TYPE_NUMBERS_PUNCTUATION }
|
|
4508
|
+
'.login-keyboard-phone-pad': { loginKeyboardType: Ti.UI.KEYBOARD_TYPE_PHONE_PAD }
|
|
4509
|
+
'.login-keyboard-twitter': { loginKeyboardType: Ti.UI.KEYBOARD_TYPE_TWITTER }
|
|
4510
|
+
'.login-keyboard-url': { loginKeyboardType: Ti.UI.KEYBOARD_TYPE_URL }
|
|
4511
|
+
'.login-keyboard-websearch': { loginKeyboardType: Ti.UI.KEYBOARD_TYPE_WEBSEARCH }
|
|
4512
|
+
|
|
4513
|
+
// Component(s): Ti.UI.AlertDialog
|
|
4514
|
+
// Property(ies): loginReturnKeyType
|
|
4515
|
+
'.login-returnkey': { loginReturnKeyType: Ti.UI.RETURNKEY_DEFAULT }
|
|
4516
|
+
'.login-returnkey-go': { loginReturnKeyType: Ti.UI.RETURNKEY_GO }
|
|
4517
|
+
'.login-returnkey-done': { loginReturnKeyType: Ti.UI.RETURNKEY_DONE }
|
|
4518
|
+
'.login-returnkey-join': { loginReturnKeyType: Ti.UI.RETURNKEY_JOIN }
|
|
4519
|
+
'.login-returnkey-next': { loginReturnKeyType: Ti.UI.RETURNKEY_NEXT }
|
|
4520
|
+
'.login-returnkey-send': { loginReturnKeyType: Ti.UI.RETURNKEY_SEND }
|
|
4521
|
+
'.login-returnkey-route': { loginReturnKeyType: Ti.UI.RETURNKEY_ROUTE }
|
|
4522
|
+
'.login-returnkey-yahoo': { loginReturnKeyType: Ti.UI.RETURNKEY_YAHOO }
|
|
4523
|
+
'.login-returnkey-google': { loginReturnKeyType: Ti.UI.RETURNKEY_GOOGLE }
|
|
4524
|
+
'.login-returnkey-search': { loginReturnKeyType: Ti.UI.RETURNKEY_SEARCH }
|
|
4525
|
+
'.login-returnkey-emergency-call': { loginReturnKeyType: Ti.UI.RETURNKEY_EMERGENCY_CALL }
|
|
4526
|
+
'.login-returnkey-continue[platform=ios]': { loginReturnKeyType: Ti.UI.RETURNKEY_CONTINUE }
|
|
4527
|
+
|
|
4528
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Animation, Ti.UI.View, Ti.UI.Window
|
|
4529
|
+
// Property(ies): top, right, bottom, left ( Margin )
|
|
2689
4530
|
'.m-0': { top: 0, right: 0, bottom: 0, left: 0 }
|
|
2690
4531
|
'.m-1': { top: 4, right: 4, bottom: 4, left: 4 }
|
|
2691
4532
|
'.m-2': { top: 8, right: 8, bottom: 8, left: 8 }
|
|
@@ -2716,12 +4557,39 @@
|
|
|
2716
4557
|
'.m-72': { top: 288, right: 288, bottom: 288, left: 288 }
|
|
2717
4558
|
'.m-80': { top: 320, right: 320, bottom: 320, left: 320 }
|
|
2718
4559
|
'.m-96': { top: 384, right: 384, bottom: 384, left: 384 }
|
|
4560
|
+
'.m-auto': { top: null, right: null, bottom: null, left: null }
|
|
2719
4561
|
'.m-px': { top: '1px', right: '1px', bottom: '1px', left: '1px' }
|
|
2720
4562
|
'.m-0.5': { top: 2, right: 2, bottom: 2, left: 2 }
|
|
2721
4563
|
'.m-1.5': { top: 6, right: 6, bottom: 6, left: 6 }
|
|
2722
4564
|
'.m-2.5': { top: 10, right: 10, bottom: 10, left: 10 }
|
|
2723
4565
|
'.m-3.5': { top: 14, right: 14, bottom: 14, left: 14 }
|
|
2724
|
-
'.m-
|
|
4566
|
+
'.m-1/2': { top: '50%', right: '50%', bottom: '50%', left: '50%' }
|
|
4567
|
+
'.m-1/3': { top: '33.333334%', right: '33.333334%', bottom: '33.333334%', left: '33.333334%' }
|
|
4568
|
+
'.m-2/3': { top: '66.666667%', right: '66.666667%', bottom: '66.666667%', left: '66.666667%' }
|
|
4569
|
+
'.m-1/4': { top: '25%', right: '25%', bottom: '25%', left: '25%' }
|
|
4570
|
+
'.m-2/4': { top: '50%', right: '50%', bottom: '50%', left: '50%' }
|
|
4571
|
+
'.m-3/4': { top: '75%', right: '75%', bottom: '75%', left: '75%' }
|
|
4572
|
+
'.m-1/5': { top: '20%', right: '20%', bottom: '20%', left: '20%' }
|
|
4573
|
+
'.m-2/5': { top: '40%', right: '40%', bottom: '40%', left: '40%' }
|
|
4574
|
+
'.m-3/5': { top: '60%', right: '60%', bottom: '60%', left: '60%' }
|
|
4575
|
+
'.m-4/5': { top: '80%', right: '80%', bottom: '80%', left: '80%' }
|
|
4576
|
+
'.m-1/6': { top: '16.666667%', right: '16.666667%', bottom: '16.666667%', left: '16.666667%' }
|
|
4577
|
+
'.m-2/6': { top: '33.333334%', right: '33.333334%', bottom: '33.333334%', left: '33.333334%' }
|
|
4578
|
+
'.m-3/6': { top: '50%', right: '50%', bottom: '50%', left: '50%' }
|
|
4579
|
+
'.m-4/6': { top: '66.666667%', right: '66.666667%', bottom: '66.666667%', left: '66.666667%' }
|
|
4580
|
+
'.m-5/6': { top: '83.333334%', right: '83.333334%', bottom: '83.333334%', left: '83.333334%' }
|
|
4581
|
+
'.m-1/12': { top: '8.333334%', right: '8.333334%', bottom: '8.333334%', left: '8.333334%' }
|
|
4582
|
+
'.m-2/12': { top: '16.666667%', right: '16.666667%', bottom: '16.666667%', left: '16.666667%' }
|
|
4583
|
+
'.m-3/12': { top: '25%', right: '25%', bottom: '25%', left: '25%' }
|
|
4584
|
+
'.m-4/12': { top: '33.333334%', right: '33.333334%', bottom: '33.333334%', left: '33.333334%' }
|
|
4585
|
+
'.m-5/12': { top: '41.666667%', right: '41.666667%', bottom: '41.666667%', left: '41.666667%' }
|
|
4586
|
+
'.m-6/12': { top: '50%', right: '50%', bottom: '50%', left: '50%' }
|
|
4587
|
+
'.m-7/12': { top: '58.333334%', right: '58.333334%', bottom: '58.333334%', left: '58.333334%' }
|
|
4588
|
+
'.m-8/12': { top: '66.666667%', right: '66.666667%', bottom: '66.666667%', left: '66.666667%' }
|
|
4589
|
+
'.m-9/12': { top: '75%', right: '75%', bottom: '75%', left: '75%' }
|
|
4590
|
+
'.m-10/12': { top: '83.333334%', right: '83.333334%', bottom: '83.333334%', left: '83.333334%' }
|
|
4591
|
+
'.m-11/12': { top: '91.666667%', right: '91.666667%', bottom: '91.666667%', left: '91.666667%' }
|
|
4592
|
+
'.m-full': { top: '100%', right: '100%', bottom: '100%', left: '100%' }
|
|
2725
4593
|
'.my-0': { top: 0, bottom: 0 }
|
|
2726
4594
|
'.my-1': { top: 4, bottom: 4 }
|
|
2727
4595
|
'.my-2': { top: 8, bottom: 8 }
|
|
@@ -2752,12 +4620,39 @@
|
|
|
2752
4620
|
'.my-72': { top: 288, bottom: 288 }
|
|
2753
4621
|
'.my-80': { top: 320, bottom: 320 }
|
|
2754
4622
|
'.my-96': { top: 384, bottom: 384 }
|
|
4623
|
+
'.my-auto': { top: null, bottom: null }
|
|
2755
4624
|
'.my-px': { top: '1px', bottom: '1px' }
|
|
2756
4625
|
'.my-0.5': { top: 2, bottom: 2 }
|
|
2757
4626
|
'.my-1.5': { top: 6, bottom: 6 }
|
|
2758
4627
|
'.my-2.5': { top: 10, bottom: 10 }
|
|
2759
4628
|
'.my-3.5': { top: 14, bottom: 14 }
|
|
2760
|
-
'.my-
|
|
4629
|
+
'.my-1/2': { top: '50%', bottom: '50%' }
|
|
4630
|
+
'.my-1/3': { top: '33.333334%', bottom: '33.333334%' }
|
|
4631
|
+
'.my-2/3': { top: '66.666667%', bottom: '66.666667%' }
|
|
4632
|
+
'.my-1/4': { top: '25%', bottom: '25%' }
|
|
4633
|
+
'.my-2/4': { top: '50%', bottom: '50%' }
|
|
4634
|
+
'.my-3/4': { top: '75%', bottom: '75%' }
|
|
4635
|
+
'.my-1/5': { top: '20%', bottom: '20%' }
|
|
4636
|
+
'.my-2/5': { top: '40%', bottom: '40%' }
|
|
4637
|
+
'.my-3/5': { top: '60%', bottom: '60%' }
|
|
4638
|
+
'.my-4/5': { top: '80%', bottom: '80%' }
|
|
4639
|
+
'.my-1/6': { top: '16.666667%', bottom: '16.666667%' }
|
|
4640
|
+
'.my-2/6': { top: '33.333334%', bottom: '33.333334%' }
|
|
4641
|
+
'.my-3/6': { top: '50%', bottom: '50%' }
|
|
4642
|
+
'.my-4/6': { top: '66.666667%', bottom: '66.666667%' }
|
|
4643
|
+
'.my-5/6': { top: '83.333334%', bottom: '83.333334%' }
|
|
4644
|
+
'.my-1/12': { top: '8.333334%', bottom: '8.333334%' }
|
|
4645
|
+
'.my-2/12': { top: '16.666667%', bottom: '16.666667%' }
|
|
4646
|
+
'.my-3/12': { top: '25%', bottom: '25%' }
|
|
4647
|
+
'.my-4/12': { top: '33.333334%', bottom: '33.333334%' }
|
|
4648
|
+
'.my-5/12': { top: '41.666667%', bottom: '41.666667%' }
|
|
4649
|
+
'.my-6/12': { top: '50%', bottom: '50%' }
|
|
4650
|
+
'.my-7/12': { top: '58.333334%', bottom: '58.333334%' }
|
|
4651
|
+
'.my-8/12': { top: '66.666667%', bottom: '66.666667%' }
|
|
4652
|
+
'.my-9/12': { top: '75%', bottom: '75%' }
|
|
4653
|
+
'.my-10/12': { top: '83.333334%', bottom: '83.333334%' }
|
|
4654
|
+
'.my-11/12': { top: '91.666667%', bottom: '91.666667%' }
|
|
4655
|
+
'.my-full': { top: '100%', bottom: '100%' }
|
|
2761
4656
|
'.mx-0': { right: 0, left: 0 }
|
|
2762
4657
|
'.mx-1': { right: 4, left: 4 }
|
|
2763
4658
|
'.mx-2': { right: 8, left: 8 }
|
|
@@ -2788,12 +4683,39 @@
|
|
|
2788
4683
|
'.mx-72': { right: 288, left: 288 }
|
|
2789
4684
|
'.mx-80': { right: 320, left: 320 }
|
|
2790
4685
|
'.mx-96': { right: 384, left: 384 }
|
|
4686
|
+
'.mx-auto': { right: null, left: null }
|
|
2791
4687
|
'.mx-px': { right: '1px', left: '1px' }
|
|
2792
4688
|
'.mx-0.5': { right: 2, left: 2 }
|
|
2793
4689
|
'.mx-1.5': { right: 6, left: 6 }
|
|
2794
4690
|
'.mx-2.5': { right: 10, left: 10 }
|
|
2795
4691
|
'.mx-3.5': { right: 14, left: 14 }
|
|
2796
|
-
'.mx-
|
|
4692
|
+
'.mx-1/2': { right: '50%', left: '50%' }
|
|
4693
|
+
'.mx-1/3': { right: '33.333334%', left: '33.333334%' }
|
|
4694
|
+
'.mx-2/3': { right: '66.666667%', left: '66.666667%' }
|
|
4695
|
+
'.mx-1/4': { right: '25%', left: '25%' }
|
|
4696
|
+
'.mx-2/4': { right: '50%', left: '50%' }
|
|
4697
|
+
'.mx-3/4': { right: '75%', left: '75%' }
|
|
4698
|
+
'.mx-1/5': { right: '20%', left: '20%' }
|
|
4699
|
+
'.mx-2/5': { right: '40%', left: '40%' }
|
|
4700
|
+
'.mx-3/5': { right: '60%', left: '60%' }
|
|
4701
|
+
'.mx-4/5': { right: '80%', left: '80%' }
|
|
4702
|
+
'.mx-1/6': { right: '16.666667%', left: '16.666667%' }
|
|
4703
|
+
'.mx-2/6': { right: '33.333334%', left: '33.333334%' }
|
|
4704
|
+
'.mx-3/6': { right: '50%', left: '50%' }
|
|
4705
|
+
'.mx-4/6': { right: '66.666667%', left: '66.666667%' }
|
|
4706
|
+
'.mx-5/6': { right: '83.333334%', left: '83.333334%' }
|
|
4707
|
+
'.mx-1/12': { right: '8.333334%', left: '8.333334%' }
|
|
4708
|
+
'.mx-2/12': { right: '16.666667%', left: '16.666667%' }
|
|
4709
|
+
'.mx-3/12': { right: '25%', left: '25%' }
|
|
4710
|
+
'.mx-4/12': { right: '33.333334%', left: '33.333334%' }
|
|
4711
|
+
'.mx-5/12': { right: '41.666667%', left: '41.666667%' }
|
|
4712
|
+
'.mx-6/12': { right: '50%', left: '50%' }
|
|
4713
|
+
'.mx-7/12': { right: '58.333334%', left: '58.333334%' }
|
|
4714
|
+
'.mx-8/12': { right: '66.666667%', left: '66.666667%' }
|
|
4715
|
+
'.mx-9/12': { right: '75%', left: '75%' }
|
|
4716
|
+
'.mx-10/12': { right: '83.333334%', left: '83.333334%' }
|
|
4717
|
+
'.mx-11/12': { right: '91.666667%', left: '91.666667%' }
|
|
4718
|
+
'.mx-full': { right: '100%', left: '100%' }
|
|
2797
4719
|
'.mt-0': { top: 0 }
|
|
2798
4720
|
'.mt-1': { top: 4 }
|
|
2799
4721
|
'.mt-2': { top: 8 }
|
|
@@ -2824,12 +4746,39 @@
|
|
|
2824
4746
|
'.mt-72': { top: 288 }
|
|
2825
4747
|
'.mt-80': { top: 320 }
|
|
2826
4748
|
'.mt-96': { top: 384 }
|
|
4749
|
+
'.mt-auto': { top: null }
|
|
2827
4750
|
'.mt-px': { top: '1px' }
|
|
2828
4751
|
'.mt-0.5': { top: 2 }
|
|
2829
4752
|
'.mt-1.5': { top: 6 }
|
|
2830
4753
|
'.mt-2.5': { top: 10 }
|
|
2831
4754
|
'.mt-3.5': { top: 14 }
|
|
2832
|
-
'.mt-
|
|
4755
|
+
'.mt-1/2': { top: '50%' }
|
|
4756
|
+
'.mt-1/3': { top: '33.333334%' }
|
|
4757
|
+
'.mt-2/3': { top: '66.666667%' }
|
|
4758
|
+
'.mt-1/4': { top: '25%' }
|
|
4759
|
+
'.mt-2/4': { top: '50%' }
|
|
4760
|
+
'.mt-3/4': { top: '75%' }
|
|
4761
|
+
'.mt-1/5': { top: '20%' }
|
|
4762
|
+
'.mt-2/5': { top: '40%' }
|
|
4763
|
+
'.mt-3/5': { top: '60%' }
|
|
4764
|
+
'.mt-4/5': { top: '80%' }
|
|
4765
|
+
'.mt-1/6': { top: '16.666667%' }
|
|
4766
|
+
'.mt-2/6': { top: '33.333334%' }
|
|
4767
|
+
'.mt-3/6': { top: '50%' }
|
|
4768
|
+
'.mt-4/6': { top: '66.666667%' }
|
|
4769
|
+
'.mt-5/6': { top: '83.333334%' }
|
|
4770
|
+
'.mt-1/12': { top: '8.333334%' }
|
|
4771
|
+
'.mt-2/12': { top: '16.666667%' }
|
|
4772
|
+
'.mt-3/12': { top: '25%' }
|
|
4773
|
+
'.mt-4/12': { top: '33.333334%' }
|
|
4774
|
+
'.mt-5/12': { top: '41.666667%' }
|
|
4775
|
+
'.mt-6/12': { top: '50%' }
|
|
4776
|
+
'.mt-7/12': { top: '58.333334%' }
|
|
4777
|
+
'.mt-8/12': { top: '66.666667%' }
|
|
4778
|
+
'.mt-9/12': { top: '75%' }
|
|
4779
|
+
'.mt-10/12': { top: '83.333334%' }
|
|
4780
|
+
'.mt-11/12': { top: '91.666667%' }
|
|
4781
|
+
'.mt-full': { top: '100%' }
|
|
2833
4782
|
'.mr-0': { right: 0 }
|
|
2834
4783
|
'.mr-1': { right: 4 }
|
|
2835
4784
|
'.mr-2': { right: 8 }
|
|
@@ -2860,12 +4809,39 @@
|
|
|
2860
4809
|
'.mr-72': { right: 288 }
|
|
2861
4810
|
'.mr-80': { right: 320 }
|
|
2862
4811
|
'.mr-96': { right: 384 }
|
|
4812
|
+
'.mr-auto': { right: null }
|
|
2863
4813
|
'.mr-px': { right: '1px' }
|
|
2864
4814
|
'.mr-0.5': { right: 2 }
|
|
2865
4815
|
'.mr-1.5': { right: 6 }
|
|
2866
4816
|
'.mr-2.5': { right: 10 }
|
|
2867
4817
|
'.mr-3.5': { right: 14 }
|
|
2868
|
-
'.mr-
|
|
4818
|
+
'.mr-1/2': { right: '50%' }
|
|
4819
|
+
'.mr-1/3': { right: '33.333334%' }
|
|
4820
|
+
'.mr-2/3': { right: '66.666667%' }
|
|
4821
|
+
'.mr-1/4': { right: '25%' }
|
|
4822
|
+
'.mr-2/4': { right: '50%' }
|
|
4823
|
+
'.mr-3/4': { right: '75%' }
|
|
4824
|
+
'.mr-1/5': { right: '20%' }
|
|
4825
|
+
'.mr-2/5': { right: '40%' }
|
|
4826
|
+
'.mr-3/5': { right: '60%' }
|
|
4827
|
+
'.mr-4/5': { right: '80%' }
|
|
4828
|
+
'.mr-1/6': { right: '16.666667%' }
|
|
4829
|
+
'.mr-2/6': { right: '33.333334%' }
|
|
4830
|
+
'.mr-3/6': { right: '50%' }
|
|
4831
|
+
'.mr-4/6': { right: '66.666667%' }
|
|
4832
|
+
'.mr-5/6': { right: '83.333334%' }
|
|
4833
|
+
'.mr-1/12': { right: '8.333334%' }
|
|
4834
|
+
'.mr-2/12': { right: '16.666667%' }
|
|
4835
|
+
'.mr-3/12': { right: '25%' }
|
|
4836
|
+
'.mr-4/12': { right: '33.333334%' }
|
|
4837
|
+
'.mr-5/12': { right: '41.666667%' }
|
|
4838
|
+
'.mr-6/12': { right: '50%' }
|
|
4839
|
+
'.mr-7/12': { right: '58.333334%' }
|
|
4840
|
+
'.mr-8/12': { right: '66.666667%' }
|
|
4841
|
+
'.mr-9/12': { right: '75%' }
|
|
4842
|
+
'.mr-10/12': { right: '83.333334%' }
|
|
4843
|
+
'.mr-11/12': { right: '91.666667%' }
|
|
4844
|
+
'.mr-full': { right: '100%' }
|
|
2869
4845
|
'.mb-0': { bottom: 0 }
|
|
2870
4846
|
'.mb-1': { bottom: 4 }
|
|
2871
4847
|
'.mb-2': { bottom: 8 }
|
|
@@ -2896,12 +4872,39 @@
|
|
|
2896
4872
|
'.mb-72': { bottom: 288 }
|
|
2897
4873
|
'.mb-80': { bottom: 320 }
|
|
2898
4874
|
'.mb-96': { bottom: 384 }
|
|
4875
|
+
'.mb-auto': { bottom: null }
|
|
2899
4876
|
'.mb-px': { bottom: '1px' }
|
|
2900
4877
|
'.mb-0.5': { bottom: 2 }
|
|
2901
4878
|
'.mb-1.5': { bottom: 6 }
|
|
2902
4879
|
'.mb-2.5': { bottom: 10 }
|
|
2903
4880
|
'.mb-3.5': { bottom: 14 }
|
|
2904
|
-
'.mb-
|
|
4881
|
+
'.mb-1/2': { bottom: '50%' }
|
|
4882
|
+
'.mb-1/3': { bottom: '33.333334%' }
|
|
4883
|
+
'.mb-2/3': { bottom: '66.666667%' }
|
|
4884
|
+
'.mb-1/4': { bottom: '25%' }
|
|
4885
|
+
'.mb-2/4': { bottom: '50%' }
|
|
4886
|
+
'.mb-3/4': { bottom: '75%' }
|
|
4887
|
+
'.mb-1/5': { bottom: '20%' }
|
|
4888
|
+
'.mb-2/5': { bottom: '40%' }
|
|
4889
|
+
'.mb-3/5': { bottom: '60%' }
|
|
4890
|
+
'.mb-4/5': { bottom: '80%' }
|
|
4891
|
+
'.mb-1/6': { bottom: '16.666667%' }
|
|
4892
|
+
'.mb-2/6': { bottom: '33.333334%' }
|
|
4893
|
+
'.mb-3/6': { bottom: '50%' }
|
|
4894
|
+
'.mb-4/6': { bottom: '66.666667%' }
|
|
4895
|
+
'.mb-5/6': { bottom: '83.333334%' }
|
|
4896
|
+
'.mb-1/12': { bottom: '8.333334%' }
|
|
4897
|
+
'.mb-2/12': { bottom: '16.666667%' }
|
|
4898
|
+
'.mb-3/12': { bottom: '25%' }
|
|
4899
|
+
'.mb-4/12': { bottom: '33.333334%' }
|
|
4900
|
+
'.mb-5/12': { bottom: '41.666667%' }
|
|
4901
|
+
'.mb-6/12': { bottom: '50%' }
|
|
4902
|
+
'.mb-7/12': { bottom: '58.333334%' }
|
|
4903
|
+
'.mb-8/12': { bottom: '66.666667%' }
|
|
4904
|
+
'.mb-9/12': { bottom: '75%' }
|
|
4905
|
+
'.mb-10/12': { bottom: '83.333334%' }
|
|
4906
|
+
'.mb-11/12': { bottom: '91.666667%' }
|
|
4907
|
+
'.mb-full': { bottom: '100%' }
|
|
2905
4908
|
'.ml-0': { left: 0 }
|
|
2906
4909
|
'.ml-1': { left: 4 }
|
|
2907
4910
|
'.ml-2': { left: 8 }
|
|
@@ -2932,14 +4935,42 @@
|
|
|
2932
4935
|
'.ml-72': { left: 288 }
|
|
2933
4936
|
'.ml-80': { left: 320 }
|
|
2934
4937
|
'.ml-96': { left: 384 }
|
|
4938
|
+
'.ml-auto': { left: null }
|
|
2935
4939
|
'.ml-px': { left: '1px' }
|
|
2936
4940
|
'.ml-0.5': { left: 2 }
|
|
2937
4941
|
'.ml-1.5': { left: 6 }
|
|
2938
4942
|
'.ml-2.5': { left: 10 }
|
|
2939
4943
|
'.ml-3.5': { left: 14 }
|
|
2940
|
-
'.ml-
|
|
4944
|
+
'.ml-1/2': { left: '50%' }
|
|
4945
|
+
'.ml-1/3': { left: '33.333334%' }
|
|
4946
|
+
'.ml-2/3': { left: '66.666667%' }
|
|
4947
|
+
'.ml-1/4': { left: '25%' }
|
|
4948
|
+
'.ml-2/4': { left: '50%' }
|
|
4949
|
+
'.ml-3/4': { left: '75%' }
|
|
4950
|
+
'.ml-1/5': { left: '20%' }
|
|
4951
|
+
'.ml-2/5': { left: '40%' }
|
|
4952
|
+
'.ml-3/5': { left: '60%' }
|
|
4953
|
+
'.ml-4/5': { left: '80%' }
|
|
4954
|
+
'.ml-1/6': { left: '16.666667%' }
|
|
4955
|
+
'.ml-2/6': { left: '33.333334%' }
|
|
4956
|
+
'.ml-3/6': { left: '50%' }
|
|
4957
|
+
'.ml-4/6': { left: '66.666667%' }
|
|
4958
|
+
'.ml-5/6': { left: '83.333334%' }
|
|
4959
|
+
'.ml-1/12': { left: '8.333334%' }
|
|
4960
|
+
'.ml-2/12': { left: '16.666667%' }
|
|
4961
|
+
'.ml-3/12': { left: '25%' }
|
|
4962
|
+
'.ml-4/12': { left: '33.333334%' }
|
|
4963
|
+
'.ml-5/12': { left: '41.666667%' }
|
|
4964
|
+
'.ml-6/12': { left: '50%' }
|
|
4965
|
+
'.ml-7/12': { left: '58.333334%' }
|
|
4966
|
+
'.ml-8/12': { left: '66.666667%' }
|
|
4967
|
+
'.ml-9/12': { left: '75%' }
|
|
4968
|
+
'.ml-10/12': { left: '83.333334%' }
|
|
4969
|
+
'.ml-11/12': { left: '91.666667%' }
|
|
4970
|
+
'.ml-full': { left: '100%' }
|
|
2941
4971
|
|
|
2942
|
-
//
|
|
4972
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Animation, Ti.UI.View, Ti.UI.Window
|
|
4973
|
+
// Property(ies): top, right, bottom, left ( Negative Margin )
|
|
2943
4974
|
'.-m-1': { top: -4, right: -4, bottom: -4, left: -4 }
|
|
2944
4975
|
'.-m-2': { top: -8, right: -8, bottom: -8, left: -8 }
|
|
2945
4976
|
'.-m-3': { top: -12, right: -12, bottom: -12, left: -12 }
|
|
@@ -2974,6 +5005,33 @@
|
|
|
2974
5005
|
'.-m-1.5': { top: -6, right: -6, bottom: -6, left: -6 }
|
|
2975
5006
|
'.-m-2.5': { top: -10, right: -10, bottom: -10, left: -10 }
|
|
2976
5007
|
'.-m-3.5': { top: -14, right: -14, bottom: -14, left: -14 }
|
|
5008
|
+
'.-m-1/2': { top: '-50%', right: '-50%', bottom: '-50%', left: '-50%' }
|
|
5009
|
+
'.-m-1/3': { top: '-33.333334%', right: '-33.333334%', bottom: '-33.333334%', left: '-33.333334%' }
|
|
5010
|
+
'.-m-2/3': { top: '-66.666667%', right: '-66.666667%', bottom: '-66.666667%', left: '-66.666667%' }
|
|
5011
|
+
'.-m-1/4': { top: '-25%', right: '-25%', bottom: '-25%', left: '-25%' }
|
|
5012
|
+
'.-m-2/4': { top: '-50%', right: '-50%', bottom: '-50%', left: '-50%' }
|
|
5013
|
+
'.-m-3/4': { top: '-75%', right: '-75%', bottom: '-75%', left: '-75%' }
|
|
5014
|
+
'.-m-1/5': { top: '-20%', right: '-20%', bottom: '-20%', left: '-20%' }
|
|
5015
|
+
'.-m-2/5': { top: '-40%', right: '-40%', bottom: '-40%', left: '-40%' }
|
|
5016
|
+
'.-m-3/5': { top: '-60%', right: '-60%', bottom: '-60%', left: '-60%' }
|
|
5017
|
+
'.-m-4/5': { top: '-80%', right: '-80%', bottom: '-80%', left: '-80%' }
|
|
5018
|
+
'.-m-1/6': { top: '-16.666667%', right: '-16.666667%', bottom: '-16.666667%', left: '-16.666667%' }
|
|
5019
|
+
'.-m-2/6': { top: '-33.333334%', right: '-33.333334%', bottom: '-33.333334%', left: '-33.333334%' }
|
|
5020
|
+
'.-m-3/6': { top: '-50%', right: '-50%', bottom: '-50%', left: '-50%' }
|
|
5021
|
+
'.-m-4/6': { top: '-66.666667%', right: '-66.666667%', bottom: '-66.666667%', left: '-66.666667%' }
|
|
5022
|
+
'.-m-5/6': { top: '-83.333334%', right: '-83.333334%', bottom: '-83.333334%', left: '-83.333334%' }
|
|
5023
|
+
'.-m-1/12': { top: '-8.333334%', right: '-8.333334%', bottom: '-8.333334%', left: '-8.333334%' }
|
|
5024
|
+
'.-m-2/12': { top: '-16.666667%', right: '-16.666667%', bottom: '-16.666667%', left: '-16.666667%' }
|
|
5025
|
+
'.-m-3/12': { top: '-25%', right: '-25%', bottom: '-25%', left: '-25%' }
|
|
5026
|
+
'.-m-4/12': { top: '-33.333334%', right: '-33.333334%', bottom: '-33.333334%', left: '-33.333334%' }
|
|
5027
|
+
'.-m-5/12': { top: '-41.666667%', right: '-41.666667%', bottom: '-41.666667%', left: '-41.666667%' }
|
|
5028
|
+
'.-m-6/12': { top: '-50%', right: '-50%', bottom: '-50%', left: '-50%' }
|
|
5029
|
+
'.-m-7/12': { top: '-58.333334%', right: '-58.333334%', bottom: '-58.333334%', left: '-58.333334%' }
|
|
5030
|
+
'.-m-8/12': { top: '-66.666667%', right: '-66.666667%', bottom: '-66.666667%', left: '-66.666667%' }
|
|
5031
|
+
'.-m-9/12': { top: '-75%', right: '-75%', bottom: '-75%', left: '-75%' }
|
|
5032
|
+
'.-m-10/12': { top: '-83.333334%', right: '-83.333334%', bottom: '-83.333334%', left: '-83.333334%' }
|
|
5033
|
+
'.-m-11/12': { top: '-91.666667%', right: '-91.666667%', bottom: '-91.666667%', left: '-91.666667%' }
|
|
5034
|
+
'.-m-full': { top: '-100%', right: '-100%', bottom: '-100%', left: '-100%' }
|
|
2977
5035
|
'.-my-1': { top: -4, bottom: -4 }
|
|
2978
5036
|
'.-my-2': { top: -8, bottom: -8 }
|
|
2979
5037
|
'.-my-3': { top: -12, bottom: -12 }
|
|
@@ -3008,6 +5066,33 @@
|
|
|
3008
5066
|
'.-my-1.5': { top: -6, bottom: -6 }
|
|
3009
5067
|
'.-my-2.5': { top: -10, bottom: -10 }
|
|
3010
5068
|
'.-my-3.5': { top: -14, bottom: -14 }
|
|
5069
|
+
'.-my-1/2': { top: '-50%', bottom: '-50%' }
|
|
5070
|
+
'.-my-1/3': { top: '-33.333334%', bottom: '-33.333334%' }
|
|
5071
|
+
'.-my-2/3': { top: '-66.666667%', bottom: '-66.666667%' }
|
|
5072
|
+
'.-my-1/4': { top: '-25%', bottom: '-25%' }
|
|
5073
|
+
'.-my-2/4': { top: '-50%', bottom: '-50%' }
|
|
5074
|
+
'.-my-3/4': { top: '-75%', bottom: '-75%' }
|
|
5075
|
+
'.-my-1/5': { top: '-20%', bottom: '-20%' }
|
|
5076
|
+
'.-my-2/5': { top: '-40%', bottom: '-40%' }
|
|
5077
|
+
'.-my-3/5': { top: '-60%', bottom: '-60%' }
|
|
5078
|
+
'.-my-4/5': { top: '-80%', bottom: '-80%' }
|
|
5079
|
+
'.-my-1/6': { top: '-16.666667%', bottom: '-16.666667%' }
|
|
5080
|
+
'.-my-2/6': { top: '-33.333334%', bottom: '-33.333334%' }
|
|
5081
|
+
'.-my-3/6': { top: '-50%', bottom: '-50%' }
|
|
5082
|
+
'.-my-4/6': { top: '-66.666667%', bottom: '-66.666667%' }
|
|
5083
|
+
'.-my-5/6': { top: '-83.333334%', bottom: '-83.333334%' }
|
|
5084
|
+
'.-my-1/12': { top: '-8.333334%', bottom: '-8.333334%' }
|
|
5085
|
+
'.-my-2/12': { top: '-16.666667%', bottom: '-16.666667%' }
|
|
5086
|
+
'.-my-3/12': { top: '-25%', bottom: '-25%' }
|
|
5087
|
+
'.-my-4/12': { top: '-33.333334%', bottom: '-33.333334%' }
|
|
5088
|
+
'.-my-5/12': { top: '-41.666667%', bottom: '-41.666667%' }
|
|
5089
|
+
'.-my-6/12': { top: '-50%', bottom: '-50%' }
|
|
5090
|
+
'.-my-7/12': { top: '-58.333334%', bottom: '-58.333334%' }
|
|
5091
|
+
'.-my-8/12': { top: '-66.666667%', bottom: '-66.666667%' }
|
|
5092
|
+
'.-my-9/12': { top: '-75%', bottom: '-75%' }
|
|
5093
|
+
'.-my-10/12': { top: '-83.333334%', bottom: '-83.333334%' }
|
|
5094
|
+
'.-my-11/12': { top: '-91.666667%', bottom: '-91.666667%' }
|
|
5095
|
+
'.-my-full': { top: '-100%', bottom: '-100%' }
|
|
3011
5096
|
'.-mx-1': { left: -4, right: -4 }
|
|
3012
5097
|
'.-mx-2': { left: -8, right: -8 }
|
|
3013
5098
|
'.-mx-3': { left: -12, right: -12 }
|
|
@@ -3042,6 +5127,33 @@
|
|
|
3042
5127
|
'.-mx-1.5': { left: -6, right: -6 }
|
|
3043
5128
|
'.-mx-2.5': { left: -10, right: -10 }
|
|
3044
5129
|
'.-mx-3.5': { left: -14, right: -14 }
|
|
5130
|
+
'.-mx-1/2': { left: '-50%', right: '-50%' }
|
|
5131
|
+
'.-mx-1/3': { left: '-33.333334%', right: '-33.333334%' }
|
|
5132
|
+
'.-mx-2/3': { left: '-66.666667%', right: '-66.666667%' }
|
|
5133
|
+
'.-mx-1/4': { left: '-25%', right: '-25%' }
|
|
5134
|
+
'.-mx-2/4': { left: '-50%', right: '-50%' }
|
|
5135
|
+
'.-mx-3/4': { left: '-75%', right: '-75%' }
|
|
5136
|
+
'.-mx-1/5': { left: '-20%', right: '-20%' }
|
|
5137
|
+
'.-mx-2/5': { left: '-40%', right: '-40%' }
|
|
5138
|
+
'.-mx-3/5': { left: '-60%', right: '-60%' }
|
|
5139
|
+
'.-mx-4/5': { left: '-80%', right: '-80%' }
|
|
5140
|
+
'.-mx-1/6': { left: '-16.666667%', right: '-16.666667%' }
|
|
5141
|
+
'.-mx-2/6': { left: '-33.333334%', right: '-33.333334%' }
|
|
5142
|
+
'.-mx-3/6': { left: '-50%', right: '-50%' }
|
|
5143
|
+
'.-mx-4/6': { left: '-66.666667%', right: '-66.666667%' }
|
|
5144
|
+
'.-mx-5/6': { left: '-83.333334%', right: '-83.333334%' }
|
|
5145
|
+
'.-mx-1/12': { left: '-8.333334%', right: '-8.333334%' }
|
|
5146
|
+
'.-mx-2/12': { left: '-16.666667%', right: '-16.666667%' }
|
|
5147
|
+
'.-mx-3/12': { left: '-25%', right: '-25%' }
|
|
5148
|
+
'.-mx-4/12': { left: '-33.333334%', right: '-33.333334%' }
|
|
5149
|
+
'.-mx-5/12': { left: '-41.666667%', right: '-41.666667%' }
|
|
5150
|
+
'.-mx-6/12': { left: '-50%', right: '-50%' }
|
|
5151
|
+
'.-mx-7/12': { left: '-58.333334%', right: '-58.333334%' }
|
|
5152
|
+
'.-mx-8/12': { left: '-66.666667%', right: '-66.666667%' }
|
|
5153
|
+
'.-mx-9/12': { left: '-75%', right: '-75%' }
|
|
5154
|
+
'.-mx-10/12': { left: '-83.333334%', right: '-83.333334%' }
|
|
5155
|
+
'.-mx-11/12': { left: '-91.666667%', right: '-91.666667%' }
|
|
5156
|
+
'.-mx-full': { left: '-100%', right: '-100%' }
|
|
3045
5157
|
'.-mt-1': { top: -4 }
|
|
3046
5158
|
'.-mt-2': { top: -8 }
|
|
3047
5159
|
'.-mt-3': { top: -12 }
|
|
@@ -3076,6 +5188,33 @@
|
|
|
3076
5188
|
'.-mt-1.5': { top: -6 }
|
|
3077
5189
|
'.-mt-2.5': { top: -10 }
|
|
3078
5190
|
'.-mt-3.5': { top: -14 }
|
|
5191
|
+
'.-mt-1/2': { top: '-50%' }
|
|
5192
|
+
'.-mt-1/3': { top: '-33.333334%' }
|
|
5193
|
+
'.-mt-2/3': { top: '-66.666667%' }
|
|
5194
|
+
'.-mt-1/4': { top: '-25%' }
|
|
5195
|
+
'.-mt-2/4': { top: '-50%' }
|
|
5196
|
+
'.-mt-3/4': { top: '-75%' }
|
|
5197
|
+
'.-mt-1/5': { top: '-20%' }
|
|
5198
|
+
'.-mt-2/5': { top: '-40%' }
|
|
5199
|
+
'.-mt-3/5': { top: '-60%' }
|
|
5200
|
+
'.-mt-4/5': { top: '-80%' }
|
|
5201
|
+
'.-mt-1/6': { top: '-16.666667%' }
|
|
5202
|
+
'.-mt-2/6': { top: '-33.333334%' }
|
|
5203
|
+
'.-mt-3/6': { top: '-50%' }
|
|
5204
|
+
'.-mt-4/6': { top: '-66.666667%' }
|
|
5205
|
+
'.-mt-5/6': { top: '-83.333334%' }
|
|
5206
|
+
'.-mt-1/12': { top: '-8.333334%' }
|
|
5207
|
+
'.-mt-2/12': { top: '-16.666667%' }
|
|
5208
|
+
'.-mt-3/12': { top: '-25%' }
|
|
5209
|
+
'.-mt-4/12': { top: '-33.333334%' }
|
|
5210
|
+
'.-mt-5/12': { top: '-41.666667%' }
|
|
5211
|
+
'.-mt-6/12': { top: '-50%' }
|
|
5212
|
+
'.-mt-7/12': { top: '-58.333334%' }
|
|
5213
|
+
'.-mt-8/12': { top: '-66.666667%' }
|
|
5214
|
+
'.-mt-9/12': { top: '-75%' }
|
|
5215
|
+
'.-mt-10/12': { top: '-83.333334%' }
|
|
5216
|
+
'.-mt-11/12': { top: '-91.666667%' }
|
|
5217
|
+
'.-mt-full': { top: '-100%' }
|
|
3079
5218
|
'.-mr-1': { right: -4 }
|
|
3080
5219
|
'.-mr-2': { right: -8 }
|
|
3081
5220
|
'.-mr-3': { right: -12 }
|
|
@@ -3110,6 +5249,33 @@
|
|
|
3110
5249
|
'.-mr-1.5': { right: -6 }
|
|
3111
5250
|
'.-mr-2.5': { right: -10 }
|
|
3112
5251
|
'.-mr-3.5': { right: -14 }
|
|
5252
|
+
'.-mr-1/2': { right: '-50%' }
|
|
5253
|
+
'.-mr-1/3': { right: '-33.333334%' }
|
|
5254
|
+
'.-mr-2/3': { right: '-66.666667%' }
|
|
5255
|
+
'.-mr-1/4': { right: '-25%' }
|
|
5256
|
+
'.-mr-2/4': { right: '-50%' }
|
|
5257
|
+
'.-mr-3/4': { right: '-75%' }
|
|
5258
|
+
'.-mr-1/5': { right: '-20%' }
|
|
5259
|
+
'.-mr-2/5': { right: '-40%' }
|
|
5260
|
+
'.-mr-3/5': { right: '-60%' }
|
|
5261
|
+
'.-mr-4/5': { right: '-80%' }
|
|
5262
|
+
'.-mr-1/6': { right: '-16.666667%' }
|
|
5263
|
+
'.-mr-2/6': { right: '-33.333334%' }
|
|
5264
|
+
'.-mr-3/6': { right: '-50%' }
|
|
5265
|
+
'.-mr-4/6': { right: '-66.666667%' }
|
|
5266
|
+
'.-mr-5/6': { right: '-83.333334%' }
|
|
5267
|
+
'.-mr-1/12': { right: '-8.333334%' }
|
|
5268
|
+
'.-mr-2/12': { right: '-16.666667%' }
|
|
5269
|
+
'.-mr-3/12': { right: '-25%' }
|
|
5270
|
+
'.-mr-4/12': { right: '-33.333334%' }
|
|
5271
|
+
'.-mr-5/12': { right: '-41.666667%' }
|
|
5272
|
+
'.-mr-6/12': { right: '-50%' }
|
|
5273
|
+
'.-mr-7/12': { right: '-58.333334%' }
|
|
5274
|
+
'.-mr-8/12': { right: '-66.666667%' }
|
|
5275
|
+
'.-mr-9/12': { right: '-75%' }
|
|
5276
|
+
'.-mr-10/12': { right: '-83.333334%' }
|
|
5277
|
+
'.-mr-11/12': { right: '-91.666667%' }
|
|
5278
|
+
'.-mr-full': { right: '-100%' }
|
|
3113
5279
|
'.-mb-1': { bottom: -4 }
|
|
3114
5280
|
'.-mb-2': { bottom: -8 }
|
|
3115
5281
|
'.-mb-3': { bottom: -12 }
|
|
@@ -3144,6 +5310,33 @@
|
|
|
3144
5310
|
'.-mb-1.5': { bottom: -6 }
|
|
3145
5311
|
'.-mb-2.5': { bottom: -10 }
|
|
3146
5312
|
'.-mb-3.5': { bottom: -14 }
|
|
5313
|
+
'.-mb-1/2': { bottom: '-50%' }
|
|
5314
|
+
'.-mb-1/3': { bottom: '-33.333334%' }
|
|
5315
|
+
'.-mb-2/3': { bottom: '-66.666667%' }
|
|
5316
|
+
'.-mb-1/4': { bottom: '-25%' }
|
|
5317
|
+
'.-mb-2/4': { bottom: '-50%' }
|
|
5318
|
+
'.-mb-3/4': { bottom: '-75%' }
|
|
5319
|
+
'.-mb-1/5': { bottom: '-20%' }
|
|
5320
|
+
'.-mb-2/5': { bottom: '-40%' }
|
|
5321
|
+
'.-mb-3/5': { bottom: '-60%' }
|
|
5322
|
+
'.-mb-4/5': { bottom: '-80%' }
|
|
5323
|
+
'.-mb-1/6': { bottom: '-16.666667%' }
|
|
5324
|
+
'.-mb-2/6': { bottom: '-33.333334%' }
|
|
5325
|
+
'.-mb-3/6': { bottom: '-50%' }
|
|
5326
|
+
'.-mb-4/6': { bottom: '-66.666667%' }
|
|
5327
|
+
'.-mb-5/6': { bottom: '-83.333334%' }
|
|
5328
|
+
'.-mb-1/12': { bottom: '-8.333334%' }
|
|
5329
|
+
'.-mb-2/12': { bottom: '-16.666667%' }
|
|
5330
|
+
'.-mb-3/12': { bottom: '-25%' }
|
|
5331
|
+
'.-mb-4/12': { bottom: '-33.333334%' }
|
|
5332
|
+
'.-mb-5/12': { bottom: '-41.666667%' }
|
|
5333
|
+
'.-mb-6/12': { bottom: '-50%' }
|
|
5334
|
+
'.-mb-7/12': { bottom: '-58.333334%' }
|
|
5335
|
+
'.-mb-8/12': { bottom: '-66.666667%' }
|
|
5336
|
+
'.-mb-9/12': { bottom: '-75%' }
|
|
5337
|
+
'.-mb-10/12': { bottom: '-83.333334%' }
|
|
5338
|
+
'.-mb-11/12': { bottom: '-91.666667%' }
|
|
5339
|
+
'.-mb-full': { bottom: '-100%' }
|
|
3147
5340
|
'.-ml-1': { left: -4 }
|
|
3148
5341
|
'.-ml-2': { left: -8 }
|
|
3149
5342
|
'.-ml-3': { left: -12 }
|
|
@@ -3178,8 +5371,46 @@
|
|
|
3178
5371
|
'.-ml-1.5': { left: -6 }
|
|
3179
5372
|
'.-ml-2.5': { left: -10 }
|
|
3180
5373
|
'.-ml-3.5': { left: -14 }
|
|
5374
|
+
'.-ml-1/2': { left: '-50%' }
|
|
5375
|
+
'.-ml-1/3': { left: '-33.333334%' }
|
|
5376
|
+
'.-ml-2/3': { left: '-66.666667%' }
|
|
5377
|
+
'.-ml-1/4': { left: '-25%' }
|
|
5378
|
+
'.-ml-2/4': { left: '-50%' }
|
|
5379
|
+
'.-ml-3/4': { left: '-75%' }
|
|
5380
|
+
'.-ml-1/5': { left: '-20%' }
|
|
5381
|
+
'.-ml-2/5': { left: '-40%' }
|
|
5382
|
+
'.-ml-3/5': { left: '-60%' }
|
|
5383
|
+
'.-ml-4/5': { left: '-80%' }
|
|
5384
|
+
'.-ml-1/6': { left: '-16.666667%' }
|
|
5385
|
+
'.-ml-2/6': { left: '-33.333334%' }
|
|
5386
|
+
'.-ml-3/6': { left: '-50%' }
|
|
5387
|
+
'.-ml-4/6': { left: '-66.666667%' }
|
|
5388
|
+
'.-ml-5/6': { left: '-83.333334%' }
|
|
5389
|
+
'.-ml-1/12': { left: '-8.333334%' }
|
|
5390
|
+
'.-ml-2/12': { left: '-16.666667%' }
|
|
5391
|
+
'.-ml-3/12': { left: '-25%' }
|
|
5392
|
+
'.-ml-4/12': { left: '-33.333334%' }
|
|
5393
|
+
'.-ml-5/12': { left: '-41.666667%' }
|
|
5394
|
+
'.-ml-6/12': { left: '-50%' }
|
|
5395
|
+
'.-ml-7/12': { left: '-58.333334%' }
|
|
5396
|
+
'.-ml-8/12': { left: '-66.666667%' }
|
|
5397
|
+
'.-ml-9/12': { left: '-75%' }
|
|
5398
|
+
'.-ml-10/12': { left: '-83.333334%' }
|
|
5399
|
+
'.-ml-11/12': { left: '-91.666667%' }
|
|
5400
|
+
'.-ml-full': { left: '-100%' }
|
|
3181
5401
|
|
|
3182
|
-
//
|
|
5402
|
+
// Component(s): Ti.UI.Window
|
|
5403
|
+
// Property(ies): modal
|
|
5404
|
+
'.modal': { modal: true }
|
|
5405
|
+
'.regular': { modal: false }
|
|
5406
|
+
|
|
5407
|
+
// Component(s): Ti.UI.Window
|
|
5408
|
+
// Property(ies): navBarHidden
|
|
5409
|
+
'.nav-bar-hidden': { navBarHidden: true }
|
|
5410
|
+
'.nav-bar-visible': { navBarHidden: false }
|
|
5411
|
+
|
|
5412
|
+
// Component(s): Ti.UI.TabGroup, Ti.UI.Window
|
|
5413
|
+
// Property(ies): navTintColor
|
|
3183
5414
|
'.nav-tint-transparent': { navTintColor: 'transparent' }
|
|
3184
5415
|
'.nav-tint-black': { navTintColor: '#000000' }
|
|
3185
5416
|
'.nav-tint-white': { navTintColor: '#ffffff' }
|
|
@@ -3404,7 +5635,8 @@
|
|
|
3404
5635
|
'.nav-tint-rose-800': { navTintColor: '#9f1239' }
|
|
3405
5636
|
'.nav-tint-rose-900': { navTintColor: '#881337' }
|
|
3406
5637
|
|
|
3407
|
-
//
|
|
5638
|
+
// Component(s): Ti.UI.Animation, Ti.UI.TableViewRow, Ti.UI.View, Ti.UI.Window
|
|
5639
|
+
// Property(ies): opacity
|
|
3408
5640
|
'.opacity-0': { opacity: 0 }
|
|
3409
5641
|
'.opacity-5': { opacity: 0.05 }
|
|
3410
5642
|
'.opacity-10': { opacity: 0.1 }
|
|
@@ -3421,7 +5653,24 @@
|
|
|
3421
5653
|
'.opacity-95': { opacity: 0.95 }
|
|
3422
5654
|
'.opacity-100': { opacity: 1 }
|
|
3423
5655
|
|
|
3424
|
-
//
|
|
5656
|
+
// Component(s): Ti.UI.Window
|
|
5657
|
+
// Property(ies): orientationModes
|
|
5658
|
+
'.orientation-left': { orientationModes: [ Ti.UI.LANDSCAPE_LEFT ] }
|
|
5659
|
+
'.orientation-right': { orientationModes: [ Ti.UI.LANDSCAPE_RIGHT ] }
|
|
5660
|
+
'.orientation-portrait': { orientationModes: [ Ti.UI.PORTRAIT ] }
|
|
5661
|
+
'.orientation-upside-portrait': { orientationModes: [ Ti.UI.UPSIDE_PORTRAIT ] }
|
|
5662
|
+
'.orientation-landscape': { orientationModes: [ Ti.UI.LANDSCAPE_LEFT, Ti.UI.LANDSCAPE_RIGHT ] }
|
|
5663
|
+
|
|
5664
|
+
// Component(s): Ti.UI.Window
|
|
5665
|
+
// Property(ies): orientationModes (Alternative)
|
|
5666
|
+
'.portrait': { orientationModes: [ Ti.UI.PORTRAIT ] }
|
|
5667
|
+
'.upside-portrait': { orientationModes: [ Ti.UI.UPSIDE_PORTRAIT ] }
|
|
5668
|
+
'.landscape-left': { orientationModes: [ Ti.UI.LANDSCAPE_LEFT ] }
|
|
5669
|
+
'.landscape-right': { orientationModes: [ Ti.UI.LANDSCAPE_RIGHT ] }
|
|
5670
|
+
'.landscape': { orientationModes: [ Ti.UI.LANDSCAPE_LEFT, Ti.UI.LANDSCAPE_RIGHT ] }
|
|
5671
|
+
|
|
5672
|
+
// Component(s): Ti.UI.Animation, Ti.UI.View
|
|
5673
|
+
// Property(ies): anchorPoint
|
|
3425
5674
|
'.origin-center': { anchorPoint: { x: 0.5, y: 0.5 } }
|
|
3426
5675
|
'.origin-top': { anchorPoint: { x: 0.5, y: 0 } }
|
|
3427
5676
|
'.origin-top-right': { anchorPoint: { x: 1, y: 0 } }
|
|
@@ -3432,11 +5681,12 @@
|
|
|
3432
5681
|
'.origin-left': { anchorPoint: { x: 0, y: 0.5 } }
|
|
3433
5682
|
'.origin-top-left': { anchorPoint: { x: 0, y: 0 } }
|
|
3434
5683
|
|
|
3435
|
-
//
|
|
5684
|
+
// Component(s): Ti.UI.ScrollableView
|
|
5685
|
+
// Property(ies): overlayEnabled
|
|
3436
5686
|
'.overlay-enabled[platform=ios]': { overlayEnabled: true }
|
|
3437
|
-
'.overlay-disabled[platform=ios]': { overlayEnabled: false }
|
|
3438
5687
|
|
|
3439
|
-
//
|
|
5688
|
+
// Component(s): Ti.UI.Android.CardView, Ti.UI.TextArea, Ti.UI.TextField
|
|
5689
|
+
// Property(ies): padding
|
|
3440
5690
|
'.p-0': { padding: { top: 0, right: 0, bottom: 0, left: 0 } }
|
|
3441
5691
|
'.p-1': { padding: { top: 4, right: 4, bottom: 4, left: 4 } }
|
|
3442
5692
|
'.p-2': { padding: { top: 8, right: 8, bottom: 8, left: 8 } }
|
|
@@ -3472,6 +5722,33 @@
|
|
|
3472
5722
|
'.p-1.5': { padding: { top: 6, right: 6, bottom: 6, left: 6 } }
|
|
3473
5723
|
'.p-2.5': { padding: { top: 10, right: 10, bottom: 10, left: 10 } }
|
|
3474
5724
|
'.p-3.5': { padding: { top: 14, right: 14, bottom: 14, left: 14 } }
|
|
5725
|
+
'.p-1/2': { padding: { top: '50%', right: '50%', bottom: '50%', left: '50%' } }
|
|
5726
|
+
'.p-1/3': { padding: { top: '33.333334%', right: '33.333334%', bottom: '33.333334%', left: '33.333334%' } }
|
|
5727
|
+
'.p-2/3': { padding: { top: '66.666667%', right: '66.666667%', bottom: '66.666667%', left: '66.666667%' } }
|
|
5728
|
+
'.p-1/4': { padding: { top: '25%', right: '25%', bottom: '25%', left: '25%' } }
|
|
5729
|
+
'.p-2/4': { padding: { top: '50%', right: '50%', bottom: '50%', left: '50%' } }
|
|
5730
|
+
'.p-3/4': { padding: { top: '75%', right: '75%', bottom: '75%', left: '75%' } }
|
|
5731
|
+
'.p-1/5': { padding: { top: '20%', right: '20%', bottom: '20%', left: '20%' } }
|
|
5732
|
+
'.p-2/5': { padding: { top: '40%', right: '40%', bottom: '40%', left: '40%' } }
|
|
5733
|
+
'.p-3/5': { padding: { top: '60%', right: '60%', bottom: '60%', left: '60%' } }
|
|
5734
|
+
'.p-4/5': { padding: { top: '80%', right: '80%', bottom: '80%', left: '80%' } }
|
|
5735
|
+
'.p-1/6': { padding: { top: '16.666667%', right: '16.666667%', bottom: '16.666667%', left: '16.666667%' } }
|
|
5736
|
+
'.p-2/6': { padding: { top: '33.333334%', right: '33.333334%', bottom: '33.333334%', left: '33.333334%' } }
|
|
5737
|
+
'.p-3/6': { padding: { top: '50%', right: '50%', bottom: '50%', left: '50%' } }
|
|
5738
|
+
'.p-4/6': { padding: { top: '66.666667%', right: '66.666667%', bottom: '66.666667%', left: '66.666667%' } }
|
|
5739
|
+
'.p-5/6': { padding: { top: '83.333334%', right: '83.333334%', bottom: '83.333334%', left: '83.333334%' } }
|
|
5740
|
+
'.p-1/12': { padding: { top: '8.333334%', right: '8.333334%', bottom: '8.333334%', left: '8.333334%' } }
|
|
5741
|
+
'.p-2/12': { padding: { top: '16.666667%', right: '16.666667%', bottom: '16.666667%', left: '16.666667%' } }
|
|
5742
|
+
'.p-3/12': { padding: { top: '25%', right: '25%', bottom: '25%', left: '25%' } }
|
|
5743
|
+
'.p-4/12': { padding: { top: '33.333334%', right: '33.333334%', bottom: '33.333334%', left: '33.333334%' } }
|
|
5744
|
+
'.p-5/12': { padding: { top: '41.666667%', right: '41.666667%', bottom: '41.666667%', left: '41.666667%' } }
|
|
5745
|
+
'.p-6/12': { padding: { top: '50%', right: '50%', bottom: '50%', left: '50%' } }
|
|
5746
|
+
'.p-7/12': { padding: { top: '58.333334%', right: '58.333334%', bottom: '58.333334%', left: '58.333334%' } }
|
|
5747
|
+
'.p-8/12': { padding: { top: '66.666667%', right: '66.666667%', bottom: '66.666667%', left: '66.666667%' } }
|
|
5748
|
+
'.p-9/12': { padding: { top: '75%', right: '75%', bottom: '75%', left: '75%' } }
|
|
5749
|
+
'.p-10/12': { padding: { top: '83.333334%', right: '83.333334%', bottom: '83.333334%', left: '83.333334%' } }
|
|
5750
|
+
'.p-11/12': { padding: { top: '91.666667%', right: '91.666667%', bottom: '91.666667%', left: '91.666667%' } }
|
|
5751
|
+
'.p-full': { padding: { top: '100%', right: '100%', bottom: '100%', left: '100%' } }
|
|
3475
5752
|
'.py-0': { padding: { top: 0, bottom: 0 } }
|
|
3476
5753
|
'.py-1': { padding: { top: 4, bottom: 4 } }
|
|
3477
5754
|
'.py-2': { padding: { top: 8, bottom: 8 } }
|
|
@@ -3507,6 +5784,33 @@
|
|
|
3507
5784
|
'.py-1.5': { padding: { top: 6, bottom: 6 } }
|
|
3508
5785
|
'.py-2.5': { padding: { top: 10, bottom: 10 } }
|
|
3509
5786
|
'.py-3.5': { padding: { top: 14, bottom: 14 } }
|
|
5787
|
+
'.py-1/2': { padding: { top: '50%', bottom: '50%' } }
|
|
5788
|
+
'.py-1/3': { padding: { top: '33.333334%', bottom: '33.333334%' } }
|
|
5789
|
+
'.py-2/3': { padding: { top: '66.666667%', bottom: '66.666667%' } }
|
|
5790
|
+
'.py-1/4': { padding: { top: '25%', bottom: '25%' } }
|
|
5791
|
+
'.py-2/4': { padding: { top: '50%', bottom: '50%' } }
|
|
5792
|
+
'.py-3/4': { padding: { top: '75%', bottom: '75%' } }
|
|
5793
|
+
'.py-1/5': { padding: { top: '20%', bottom: '20%' } }
|
|
5794
|
+
'.py-2/5': { padding: { top: '40%', bottom: '40%' } }
|
|
5795
|
+
'.py-3/5': { padding: { top: '60%', bottom: '60%' } }
|
|
5796
|
+
'.py-4/5': { padding: { top: '80%', bottom: '80%' } }
|
|
5797
|
+
'.py-1/6': { padding: { top: '16.666667%', bottom: '16.666667%' } }
|
|
5798
|
+
'.py-2/6': { padding: { top: '33.333334%', bottom: '33.333334%' } }
|
|
5799
|
+
'.py-3/6': { padding: { top: '50%', bottom: '50%' } }
|
|
5800
|
+
'.py-4/6': { padding: { top: '66.666667%', bottom: '66.666667%' } }
|
|
5801
|
+
'.py-5/6': { padding: { top: '83.333334%', bottom: '83.333334%' } }
|
|
5802
|
+
'.py-1/12': { padding: { top: '8.333334%', bottom: '8.333334%' } }
|
|
5803
|
+
'.py-2/12': { padding: { top: '16.666667%', bottom: '16.666667%' } }
|
|
5804
|
+
'.py-3/12': { padding: { top: '25%', bottom: '25%' } }
|
|
5805
|
+
'.py-4/12': { padding: { top: '33.333334%', bottom: '33.333334%' } }
|
|
5806
|
+
'.py-5/12': { padding: { top: '41.666667%', bottom: '41.666667%' } }
|
|
5807
|
+
'.py-6/12': { padding: { top: '50%', bottom: '50%' } }
|
|
5808
|
+
'.py-7/12': { padding: { top: '58.333334%', bottom: '58.333334%' } }
|
|
5809
|
+
'.py-8/12': { padding: { top: '66.666667%', bottom: '66.666667%' } }
|
|
5810
|
+
'.py-9/12': { padding: { top: '75%', bottom: '75%' } }
|
|
5811
|
+
'.py-10/12': { padding: { top: '83.333334%', bottom: '83.333334%' } }
|
|
5812
|
+
'.py-11/12': { padding: { top: '91.666667%', bottom: '91.666667%' } }
|
|
5813
|
+
'.py-full': { padding: { top: '100%', bottom: '100%' } }
|
|
3510
5814
|
'.px-0': { padding: { right: 0, left: 0 } }
|
|
3511
5815
|
'.px-1': { padding: { right: 4, left: 4 } }
|
|
3512
5816
|
'.px-2': { padding: { right: 8, left: 8 } }
|
|
@@ -3542,6 +5846,33 @@
|
|
|
3542
5846
|
'.px-1.5': { padding: { right: 6, left: 6 } }
|
|
3543
5847
|
'.px-2.5': { padding: { right: 10, left: 10 } }
|
|
3544
5848
|
'.px-3.5': { padding: { right: 14, left: 14 } }
|
|
5849
|
+
'.px-1/2': { padding: { right: '50%', left: '50%' } }
|
|
5850
|
+
'.px-1/3': { padding: { right: '33.333334%', left: '33.333334%' } }
|
|
5851
|
+
'.px-2/3': { padding: { right: '66.666667%', left: '66.666667%' } }
|
|
5852
|
+
'.px-1/4': { padding: { right: '25%', left: '25%' } }
|
|
5853
|
+
'.px-2/4': { padding: { right: '50%', left: '50%' } }
|
|
5854
|
+
'.px-3/4': { padding: { right: '75%', left: '75%' } }
|
|
5855
|
+
'.px-1/5': { padding: { right: '20%', left: '20%' } }
|
|
5856
|
+
'.px-2/5': { padding: { right: '40%', left: '40%' } }
|
|
5857
|
+
'.px-3/5': { padding: { right: '60%', left: '60%' } }
|
|
5858
|
+
'.px-4/5': { padding: { right: '80%', left: '80%' } }
|
|
5859
|
+
'.px-1/6': { padding: { right: '16.666667%', left: '16.666667%' } }
|
|
5860
|
+
'.px-2/6': { padding: { right: '33.333334%', left: '33.333334%' } }
|
|
5861
|
+
'.px-3/6': { padding: { right: '50%', left: '50%' } }
|
|
5862
|
+
'.px-4/6': { padding: { right: '66.666667%', left: '66.666667%' } }
|
|
5863
|
+
'.px-5/6': { padding: { right: '83.333334%', left: '83.333334%' } }
|
|
5864
|
+
'.px-1/12': { padding: { right: '8.333334%', left: '8.333334%' } }
|
|
5865
|
+
'.px-2/12': { padding: { right: '16.666667%', left: '16.666667%' } }
|
|
5866
|
+
'.px-3/12': { padding: { right: '25%', left: '25%' } }
|
|
5867
|
+
'.px-4/12': { padding: { right: '33.333334%', left: '33.333334%' } }
|
|
5868
|
+
'.px-5/12': { padding: { right: '41.666667%', left: '41.666667%' } }
|
|
5869
|
+
'.px-6/12': { padding: { right: '50%', left: '50%' } }
|
|
5870
|
+
'.px-7/12': { padding: { right: '58.333334%', left: '58.333334%' } }
|
|
5871
|
+
'.px-8/12': { padding: { right: '66.666667%', left: '66.666667%' } }
|
|
5872
|
+
'.px-9/12': { padding: { right: '75%', left: '75%' } }
|
|
5873
|
+
'.px-10/12': { padding: { right: '83.333334%', left: '83.333334%' } }
|
|
5874
|
+
'.px-11/12': { padding: { right: '91.666667%', left: '91.666667%' } }
|
|
5875
|
+
'.px-full': { padding: { right: '100%', left: '100%' } }
|
|
3545
5876
|
'.pt-0': { padding: { top: 0 } }
|
|
3546
5877
|
'.pt-1': { padding: { top: 4 } }
|
|
3547
5878
|
'.pt-2': { padding: { top: 8 } }
|
|
@@ -3577,6 +5908,33 @@
|
|
|
3577
5908
|
'.pt-1.5': { padding: { top: 6 } }
|
|
3578
5909
|
'.pt-2.5': { padding: { top: 10 } }
|
|
3579
5910
|
'.pt-3.5': { padding: { top: 14 } }
|
|
5911
|
+
'.pt-1/2': { padding: { top: '50%' } }
|
|
5912
|
+
'.pt-1/3': { padding: { top: '33.333334%' } }
|
|
5913
|
+
'.pt-2/3': { padding: { top: '66.666667%' } }
|
|
5914
|
+
'.pt-1/4': { padding: { top: '25%' } }
|
|
5915
|
+
'.pt-2/4': { padding: { top: '50%' } }
|
|
5916
|
+
'.pt-3/4': { padding: { top: '75%' } }
|
|
5917
|
+
'.pt-1/5': { padding: { top: '20%' } }
|
|
5918
|
+
'.pt-2/5': { padding: { top: '40%' } }
|
|
5919
|
+
'.pt-3/5': { padding: { top: '60%' } }
|
|
5920
|
+
'.pt-4/5': { padding: { top: '80%' } }
|
|
5921
|
+
'.pt-1/6': { padding: { top: '16.666667%' } }
|
|
5922
|
+
'.pt-2/6': { padding: { top: '33.333334%' } }
|
|
5923
|
+
'.pt-3/6': { padding: { top: '50%' } }
|
|
5924
|
+
'.pt-4/6': { padding: { top: '66.666667%' } }
|
|
5925
|
+
'.pt-5/6': { padding: { top: '83.333334%' } }
|
|
5926
|
+
'.pt-1/12': { padding: { top: '8.333334%' } }
|
|
5927
|
+
'.pt-2/12': { padding: { top: '16.666667%' } }
|
|
5928
|
+
'.pt-3/12': { padding: { top: '25%' } }
|
|
5929
|
+
'.pt-4/12': { padding: { top: '33.333334%' } }
|
|
5930
|
+
'.pt-5/12': { padding: { top: '41.666667%' } }
|
|
5931
|
+
'.pt-6/12': { padding: { top: '50%' } }
|
|
5932
|
+
'.pt-7/12': { padding: { top: '58.333334%' } }
|
|
5933
|
+
'.pt-8/12': { padding: { top: '66.666667%' } }
|
|
5934
|
+
'.pt-9/12': { padding: { top: '75%' } }
|
|
5935
|
+
'.pt-10/12': { padding: { top: '83.333334%' } }
|
|
5936
|
+
'.pt-11/12': { padding: { top: '91.666667%' } }
|
|
5937
|
+
'.pt-full': { padding: { top: '100%' } }
|
|
3580
5938
|
'.pr-0': { padding: { right: 0 } }
|
|
3581
5939
|
'.pr-1': { padding: { right: 4 } }
|
|
3582
5940
|
'.pr-2': { padding: { right: 8 } }
|
|
@@ -3612,6 +5970,33 @@
|
|
|
3612
5970
|
'.pr-1.5': { padding: { right: 6 } }
|
|
3613
5971
|
'.pr-2.5': { padding: { right: 10 } }
|
|
3614
5972
|
'.pr-3.5': { padding: { right: 14 } }
|
|
5973
|
+
'.pr-1/2': { padding: { right: '50%' } }
|
|
5974
|
+
'.pr-1/3': { padding: { right: '33.333334%' } }
|
|
5975
|
+
'.pr-2/3': { padding: { right: '66.666667%' } }
|
|
5976
|
+
'.pr-1/4': { padding: { right: '25%' } }
|
|
5977
|
+
'.pr-2/4': { padding: { right: '50%' } }
|
|
5978
|
+
'.pr-3/4': { padding: { right: '75%' } }
|
|
5979
|
+
'.pr-1/5': { padding: { right: '20%' } }
|
|
5980
|
+
'.pr-2/5': { padding: { right: '40%' } }
|
|
5981
|
+
'.pr-3/5': { padding: { right: '60%' } }
|
|
5982
|
+
'.pr-4/5': { padding: { right: '80%' } }
|
|
5983
|
+
'.pr-1/6': { padding: { right: '16.666667%' } }
|
|
5984
|
+
'.pr-2/6': { padding: { right: '33.333334%' } }
|
|
5985
|
+
'.pr-3/6': { padding: { right: '50%' } }
|
|
5986
|
+
'.pr-4/6': { padding: { right: '66.666667%' } }
|
|
5987
|
+
'.pr-5/6': { padding: { right: '83.333334%' } }
|
|
5988
|
+
'.pr-1/12': { padding: { right: '8.333334%' } }
|
|
5989
|
+
'.pr-2/12': { padding: { right: '16.666667%' } }
|
|
5990
|
+
'.pr-3/12': { padding: { right: '25%' } }
|
|
5991
|
+
'.pr-4/12': { padding: { right: '33.333334%' } }
|
|
5992
|
+
'.pr-5/12': { padding: { right: '41.666667%' } }
|
|
5993
|
+
'.pr-6/12': { padding: { right: '50%' } }
|
|
5994
|
+
'.pr-7/12': { padding: { right: '58.333334%' } }
|
|
5995
|
+
'.pr-8/12': { padding: { right: '66.666667%' } }
|
|
5996
|
+
'.pr-9/12': { padding: { right: '75%' } }
|
|
5997
|
+
'.pr-10/12': { padding: { right: '83.333334%' } }
|
|
5998
|
+
'.pr-11/12': { padding: { right: '91.666667%' } }
|
|
5999
|
+
'.pr-full': { padding: { right: '100%' } }
|
|
3615
6000
|
'.pb-0': { padding: { bottom: 0 } }
|
|
3616
6001
|
'.pb-1': { padding: { bottom: 4 } }
|
|
3617
6002
|
'.pb-2': { padding: { bottom: 8 } }
|
|
@@ -3647,6 +6032,33 @@
|
|
|
3647
6032
|
'.pb-1.5': { padding: { bottom: 6 } }
|
|
3648
6033
|
'.pb-2.5': { padding: { bottom: 10 } }
|
|
3649
6034
|
'.pb-3.5': { padding: { bottom: 14 } }
|
|
6035
|
+
'.pb-1/2': { padding: { bottom: '50%' } }
|
|
6036
|
+
'.pb-1/3': { padding: { bottom: '33.333334%' } }
|
|
6037
|
+
'.pb-2/3': { padding: { bottom: '66.666667%' } }
|
|
6038
|
+
'.pb-1/4': { padding: { bottom: '25%' } }
|
|
6039
|
+
'.pb-2/4': { padding: { bottom: '50%' } }
|
|
6040
|
+
'.pb-3/4': { padding: { bottom: '75%' } }
|
|
6041
|
+
'.pb-1/5': { padding: { bottom: '20%' } }
|
|
6042
|
+
'.pb-2/5': { padding: { bottom: '40%' } }
|
|
6043
|
+
'.pb-3/5': { padding: { bottom: '60%' } }
|
|
6044
|
+
'.pb-4/5': { padding: { bottom: '80%' } }
|
|
6045
|
+
'.pb-1/6': { padding: { bottom: '16.666667%' } }
|
|
6046
|
+
'.pb-2/6': { padding: { bottom: '33.333334%' } }
|
|
6047
|
+
'.pb-3/6': { padding: { bottom: '50%' } }
|
|
6048
|
+
'.pb-4/6': { padding: { bottom: '66.666667%' } }
|
|
6049
|
+
'.pb-5/6': { padding: { bottom: '83.333334%' } }
|
|
6050
|
+
'.pb-1/12': { padding: { bottom: '8.333334%' } }
|
|
6051
|
+
'.pb-2/12': { padding: { bottom: '16.666667%' } }
|
|
6052
|
+
'.pb-3/12': { padding: { bottom: '25%' } }
|
|
6053
|
+
'.pb-4/12': { padding: { bottom: '33.333334%' } }
|
|
6054
|
+
'.pb-5/12': { padding: { bottom: '41.666667%' } }
|
|
6055
|
+
'.pb-6/12': { padding: { bottom: '50%' } }
|
|
6056
|
+
'.pb-7/12': { padding: { bottom: '58.333334%' } }
|
|
6057
|
+
'.pb-8/12': { padding: { bottom: '66.666667%' } }
|
|
6058
|
+
'.pb-9/12': { padding: { bottom: '75%' } }
|
|
6059
|
+
'.pb-10/12': { padding: { bottom: '83.333334%' } }
|
|
6060
|
+
'.pb-11/12': { padding: { bottom: '91.666667%' } }
|
|
6061
|
+
'.pb-full': { padding: { bottom: '100%' } }
|
|
3650
6062
|
'.pl-0': { padding: { left: 0 } }
|
|
3651
6063
|
'.pl-1': { padding: { left: 4 } }
|
|
3652
6064
|
'.pl-2': { padding: { left: 8 } }
|
|
@@ -3682,8 +6094,36 @@
|
|
|
3682
6094
|
'.pl-1.5': { padding: { left: 6 } }
|
|
3683
6095
|
'.pl-2.5': { padding: { left: 10 } }
|
|
3684
6096
|
'.pl-3.5': { padding: { left: 14 } }
|
|
6097
|
+
'.pl-1/2': { padding: { left: '50%' } }
|
|
6098
|
+
'.pl-1/3': { padding: { left: '33.333334%' } }
|
|
6099
|
+
'.pl-2/3': { padding: { left: '66.666667%' } }
|
|
6100
|
+
'.pl-1/4': { padding: { left: '25%' } }
|
|
6101
|
+
'.pl-2/4': { padding: { left: '50%' } }
|
|
6102
|
+
'.pl-3/4': { padding: { left: '75%' } }
|
|
6103
|
+
'.pl-1/5': { padding: { left: '20%' } }
|
|
6104
|
+
'.pl-2/5': { padding: { left: '40%' } }
|
|
6105
|
+
'.pl-3/5': { padding: { left: '60%' } }
|
|
6106
|
+
'.pl-4/5': { padding: { left: '80%' } }
|
|
6107
|
+
'.pl-1/6': { padding: { left: '16.666667%' } }
|
|
6108
|
+
'.pl-2/6': { padding: { left: '33.333334%' } }
|
|
6109
|
+
'.pl-3/6': { padding: { left: '50%' } }
|
|
6110
|
+
'.pl-4/6': { padding: { left: '66.666667%' } }
|
|
6111
|
+
'.pl-5/6': { padding: { left: '83.333334%' } }
|
|
6112
|
+
'.pl-1/12': { padding: { left: '8.333334%' } }
|
|
6113
|
+
'.pl-2/12': { padding: { left: '16.666667%' } }
|
|
6114
|
+
'.pl-3/12': { padding: { left: '25%' } }
|
|
6115
|
+
'.pl-4/12': { padding: { left: '33.333334%' } }
|
|
6116
|
+
'.pl-5/12': { padding: { left: '41.666667%' } }
|
|
6117
|
+
'.pl-6/12': { padding: { left: '50%' } }
|
|
6118
|
+
'.pl-7/12': { padding: { left: '58.333334%' } }
|
|
6119
|
+
'.pl-8/12': { padding: { left: '66.666667%' } }
|
|
6120
|
+
'.pl-9/12': { padding: { left: '75%' } }
|
|
6121
|
+
'.pl-10/12': { padding: { left: '83.333334%' } }
|
|
6122
|
+
'.pl-11/12': { padding: { left: '91.666667%' } }
|
|
6123
|
+
'.pl-full': { padding: { left: '100%' } }
|
|
3685
6124
|
|
|
3686
|
-
//
|
|
6125
|
+
// Component(s): Ti.UI.ScrollableView
|
|
6126
|
+
// Property(ies): pageIndicatorColor
|
|
3687
6127
|
'.page-transparent': { pageIndicatorColor: 'transparent' }
|
|
3688
6128
|
'.page-black': { pageIndicatorColor: '#000000' }
|
|
3689
6129
|
'.page-white': { pageIndicatorColor: '#ffffff' }
|
|
@@ -3908,11 +6348,12 @@
|
|
|
3908
6348
|
'.page-rose-800': { pageIndicatorColor: '#9f1239' }
|
|
3909
6349
|
'.page-rose-900': { pageIndicatorColor: '#881337' }
|
|
3910
6350
|
|
|
3911
|
-
//
|
|
3912
|
-
|
|
3913
|
-
'.
|
|
6351
|
+
// Component(s): Ti.UI.ScrollableView
|
|
6352
|
+
// Property(ies): showPagingControl
|
|
6353
|
+
'.show-paging-control': { showPagingControl: true }
|
|
3914
6354
|
|
|
3915
|
-
//
|
|
6355
|
+
// Component(s): Ti.UI.ScrollableView
|
|
6356
|
+
// Property(ies): pagingControlAlpha
|
|
3916
6357
|
'.paging-alpha-0': { pagingControlAlpha: 0 }
|
|
3917
6358
|
'.paging-alpha-5': { pagingControlAlpha: 0.05 }
|
|
3918
6359
|
'.paging-alpha-10': { pagingControlAlpha: 0.1 }
|
|
@@ -3929,7 +6370,8 @@
|
|
|
3929
6370
|
'.paging-alpha-95': { pagingControlAlpha: 0.95 }
|
|
3930
6371
|
'.paging-alpha-100': { pagingControlAlpha: 1 }
|
|
3931
6372
|
|
|
3932
|
-
//
|
|
6373
|
+
// Component(s): Ti.UI.ScrollableView
|
|
6374
|
+
// Property(ies): pagingControlColor
|
|
3933
6375
|
'.paging-transparent': { pagingControlColor: 'transparent' }
|
|
3934
6376
|
'.paging-black': { pagingControlColor: '#000000' }
|
|
3935
6377
|
'.paging-white': { pagingControlColor: '#ffffff' }
|
|
@@ -4154,7 +6596,8 @@
|
|
|
4154
6596
|
'.paging-rose-800': { pagingControlColor: '#9f1239' }
|
|
4155
6597
|
'.paging-rose-900': { pagingControlColor: '#881337' }
|
|
4156
6598
|
|
|
4157
|
-
//
|
|
6599
|
+
// Component(s): Ti.UI.ScrollableView
|
|
6600
|
+
// Property(ies): pagingControlHeight
|
|
4158
6601
|
'.paging-h-0': { pagingControlHeight: 0 }
|
|
4159
6602
|
'.paging-h-1': { pagingControlHeight: 4 }
|
|
4160
6603
|
'.paging-h-2': { pagingControlHeight: 8 }
|
|
@@ -4190,15 +6633,14 @@
|
|
|
4190
6633
|
'.paging-h-1.5': { pagingControlHeight: 6 }
|
|
4191
6634
|
'.paging-h-2.5': { pagingControlHeight: 10 }
|
|
4192
6635
|
'.paging-h-3.5': { pagingControlHeight: 14 }
|
|
4193
|
-
'.paging-h-min': { pagingControlHeight: 'min-content' }
|
|
4194
|
-
'.paging-h-max': { pagingControlHeight: 'max-content' }
|
|
4195
|
-
'.paging-h-fit': { pagingControlHeight: 'fit-content' }
|
|
4196
6636
|
|
|
4197
|
-
//
|
|
4198
|
-
|
|
4199
|
-
'.paging-on-
|
|
6637
|
+
// Component(s): Ti.UI.ScrollableView
|
|
6638
|
+
// Property(ies): pagingControlOnTop
|
|
6639
|
+
'.paging-control-on-top': { pagingControlOnTop: true }
|
|
6640
|
+
'.paging-control-on-bottom': { pagingControlOnTop: false }
|
|
4200
6641
|
|
|
4201
|
-
//
|
|
6642
|
+
// Component(s): Ti.UI.ScrollableView
|
|
6643
|
+
// Property(ies): pagingControlTimeout
|
|
4202
6644
|
'.paging-timeout-0': { pagingControlTimeout: 0 }
|
|
4203
6645
|
'.paging-timeout-25': { pagingControlTimeout: 25 }
|
|
4204
6646
|
'.paging-timeout-50': { pagingControlTimeout: 50 }
|
|
@@ -4215,7 +6657,33 @@
|
|
|
4215
6657
|
'.paging-timeout-4000': { pagingControlTimeout: 4000 }
|
|
4216
6658
|
'.paging-timeout-5000': { pagingControlTimeout: 5000 }
|
|
4217
6659
|
|
|
4218
|
-
//
|
|
6660
|
+
// Component(s): Ti.UI.AlertDialog
|
|
6661
|
+
// Property(ies): passwordKeyboardType
|
|
6662
|
+
'.password-keyboard': { passwordKeyboardType: Ti.UI.KEYBOARD_TYPE_DEFAULT }
|
|
6663
|
+
'.password-keyboard-ascii': { passwordKeyboardType: Ti.UI.KEYBOARD_TYPE_ASCII }
|
|
6664
|
+
'.password-keyboard-decimal-pad': { passwordKeyboardType: Ti.UI.KEYBOARD_TYPE_DECIMAL_PAD }
|
|
6665
|
+
'.password-keyboard-email': { passwordKeyboardType: Ti.UI.KEYBOARD_TYPE_EMAIL }
|
|
6666
|
+
'.password-keyboard-namephone-pad': { passwordKeyboardType: Ti.UI.KEYBOARD_TYPE_NAMEPHONE_PAD }
|
|
6667
|
+
'.password-keyboard-number-pad': { passwordKeyboardType: Ti.UI.KEYBOARD_TYPE_NUMBER_PAD }
|
|
6668
|
+
'.password-keyboard-numbers-punctuation': { passwordKeyboardType: Ti.UI.KEYBOARD_TYPE_NUMBERS_PUNCTUATION }
|
|
6669
|
+
'.password-keyboard-phone-pad': { passwordKeyboardType: Ti.UI.KEYBOARD_TYPE_PHONE_PAD }
|
|
6670
|
+
'.password-keyboard-url': { passwordKeyboardType: Ti.UI.KEYBOARD_TYPE_URL }
|
|
6671
|
+
'.password-keyboard-appearance[platform=ios]': { passwordKeyboardType: Ti.UI.KEYBOARD_APPEARANCE_DEFAULT }
|
|
6672
|
+
'.password-keyboard-appearance-dark[platform=ios]': { passwordKeyboardType: Ti.UI.KEYBOARD_APPEARANCE_DARK }
|
|
6673
|
+
'.password-keyboard-appearance-light[platform=ios]': { passwordKeyboardType: Ti.UI.KEYBOARD_APPEARANCE_LIGHT }
|
|
6674
|
+
'.password-keyboard-twitter[platform=ios]': { passwordKeyboardType: Ti.UI.KEYBOARD_TYPE_TWITTER }
|
|
6675
|
+
'.password-keyboard-websearch[platform=ios]': { passwordKeyboardType: Ti.UI.KEYBOARD_TYPE_WEBSEARCH }
|
|
6676
|
+
|
|
6677
|
+
// Component(s): Ti.UI.Picker
|
|
6678
|
+
// Property(ies): type (Picker Type)
|
|
6679
|
+
'.picker-type-count-down-timer': { type: Ti.UI.PICKER_TYPE_COUNT_DOWN_TIMER }
|
|
6680
|
+
'.picker-type-date': { type: Ti.UI.PICKER_TYPE_DATE }
|
|
6681
|
+
'.picker-type-date-and-time': { type: Ti.UI.PICKER_TYPE_DATE_AND_TIME }
|
|
6682
|
+
'.picker-type-plain': { type: Ti.UI.PICKER_TYPE_PLAIN }
|
|
6683
|
+
'.picker-type-time': { type: Ti.UI.PICKER_TYPE_TIME }
|
|
6684
|
+
|
|
6685
|
+
// Component(s): Ti.UI.Android.SearchView, Ti.UI.SearchBar, Ti.UI.TextArea, Ti.UI.TextField
|
|
6686
|
+
// Property(ies): hintTextColor
|
|
4219
6687
|
'.placeholder-transparent': { hintTextColor: 'transparent' }
|
|
4220
6688
|
'.placeholder-black': { hintTextColor: '#000000' }
|
|
4221
6689
|
'.placeholder-white': { hintTextColor: '#ffffff' }
|
|
@@ -4440,7 +6908,8 @@
|
|
|
4440
6908
|
'.placeholder-rose-800': { hintTextColor: '#9f1239' }
|
|
4441
6909
|
'.placeholder-rose-900': { hintTextColor: '#881337' }
|
|
4442
6910
|
|
|
4443
|
-
//
|
|
6911
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Animation, Ti.UI.View, Ti.UI.Window
|
|
6912
|
+
// Property(ies): top, right, bottom, left
|
|
4444
6913
|
'.top-0': { top: 0 }
|
|
4445
6914
|
'.left-0': { left: 0 }
|
|
4446
6915
|
'.right-0': { right: 0 }
|
|
@@ -4456,11 +6925,13 @@
|
|
|
4456
6925
|
'.inset-y-auto': { top: Ti.UI.SIZE, bottom: Ti.UI.SIZE }
|
|
4457
6926
|
'.inset-auto': { top: Ti.UI.SIZE, right: Ti.UI.SIZE, bottom: Ti.UI.SIZE, left: Ti.UI.SIZE }
|
|
4458
6927
|
|
|
4459
|
-
//
|
|
6928
|
+
// Component(s): Ti.UI.ImageView
|
|
6929
|
+
// Property(ies): preventDefaultImage - iOS Only
|
|
4460
6930
|
'.prevent-default-image[platform=ios]': { preventDefaultImage: true }
|
|
4461
6931
|
'.display-default-image[platform=ios]': { preventDefaultImage: false }
|
|
4462
6932
|
|
|
4463
|
-
//
|
|
6933
|
+
// Component(s): Ti.UI.ListItem, Ti.UI.View
|
|
6934
|
+
// Property(ies): backgroundGradient: type, startRadius, endRadius, backfillStart, backfillEnd
|
|
4464
6935
|
'.bg-radial[platform=ios]': { backgroundGradient: { type: 'radial', startRadius: '125%', endRadius: '0%', backfillStart: true, backfillEnd: true } }
|
|
4465
6936
|
'.bg-radial-to-b[platform=ios]': { backgroundGradient: { type: 'radial', startPoint: { x: '50%', y: '0%' }, endPoint: { x: '50%', y: '0%' }, startRadius: '150%', endRadius: '0%', backfillStart: true, backfillEnd: true } }
|
|
4466
6937
|
'.bg-radial-to-bl[platform=ios]': { backgroundGradient: { type: 'radial', startPoint: { x: '100%', y: '0%' }, endPoint: { x: '100%', y: '0%' }, startRadius: '150%', endRadius: '0%', backfillStart: true, backfillEnd: true } }
|
|
@@ -4471,7 +6942,8 @@
|
|
|
4471
6942
|
'.bg-radial-to-r[platform=ios]': { backgroundGradient: { type: 'radial', startPoint: { x: '0%', y: '50%' }, endPoint: { x: '0%', y: '50%' }, startRadius: '150%', endRadius: '0%', backfillStart: true, backfillEnd: true } }
|
|
4472
6943
|
'.bg-radial-to-br[platform=ios]': { backgroundGradient: { type: 'radial', startPoint: { x: '0%', y: '0%' }, endPoint: { x: '0%', y: '0%' }, startRadius: '150%', endRadius: '0%', backfillStart: true, backfillEnd: true } }
|
|
4473
6944
|
|
|
4474
|
-
//
|
|
6945
|
+
// Component(s): Ti.UI.Animation
|
|
6946
|
+
// Property(ies): repeat
|
|
4475
6947
|
'.repeat-1': { repeat: 1 }
|
|
4476
6948
|
'.repeat-2': { repeat: 2 }
|
|
4477
6949
|
'.repeat-3': { repeat: 3 }
|
|
@@ -4483,7 +6955,9 @@
|
|
|
4483
6955
|
'.repeat-9': { repeat: 9 }
|
|
4484
6956
|
'.repeat-10': { repeat: 10 }
|
|
4485
6957
|
|
|
4486
|
-
//
|
|
6958
|
+
// Component(s): Ti.UI.AlertDialog, Ti.UI.TextArea, Ti.UI.TextField
|
|
6959
|
+
// Property(ies): returnKeyType
|
|
6960
|
+
'.returnkey': { returnKeyType: Ti.UI.RETURNKEY_DEFAULT }
|
|
4487
6961
|
'.returnkey-go': { returnKeyType: Ti.UI.RETURNKEY_GO }
|
|
4488
6962
|
'.returnkey-done': { returnKeyType: Ti.UI.RETURNKEY_DONE }
|
|
4489
6963
|
'.returnkey-join': { returnKeyType: Ti.UI.RETURNKEY_JOIN }
|
|
@@ -4493,11 +6967,11 @@
|
|
|
4493
6967
|
'.returnkey-yahoo': { returnKeyType: Ti.UI.RETURNKEY_YAHOO }
|
|
4494
6968
|
'.returnkey-google': { returnKeyType: Ti.UI.RETURNKEY_GOOGLE }
|
|
4495
6969
|
'.returnkey-search': { returnKeyType: Ti.UI.RETURNKEY_SEARCH }
|
|
4496
|
-
'.returnkey-default': { returnKeyType: Ti.UI.RETURNKEY_DEFAULT }
|
|
4497
|
-
'.returnkey-continue': { returnKeyType: Ti.UI.RETURNKEY_CONTINUE }
|
|
4498
6970
|
'.returnkey-emergency-call': { returnKeyType: Ti.UI.RETURNKEY_EMERGENCY_CALL }
|
|
6971
|
+
'.returnkey-continue[platform=ios]': { returnKeyType: Ti.UI.RETURNKEY_CONTINUE }
|
|
4499
6972
|
|
|
4500
|
-
//
|
|
6973
|
+
// Component(s): For the Animation Component
|
|
6974
|
+
// Property(ies): rotate
|
|
4501
6975
|
'.rotate-0': { rotate: 0 }
|
|
4502
6976
|
'.rotate-1': { rotate: 1 }
|
|
4503
6977
|
'.rotate-2': { rotate: 2 }
|
|
@@ -4508,11 +6982,12 @@
|
|
|
4508
6982
|
'.rotate-90': { rotate: 90 }
|
|
4509
6983
|
'.rotate-180': { rotate: 180 }
|
|
4510
6984
|
|
|
4511
|
-
//
|
|
6985
|
+
// Component(s): Ti.UI.ScrollView
|
|
6986
|
+
// Property(ies): scale
|
|
4512
6987
|
'.scale-0': { scale: '0' }
|
|
4513
|
-
'.scale-5': { scale: '
|
|
4514
|
-
'.scale-10': { scale: '
|
|
4515
|
-
'.scale-25': { scale: '
|
|
6988
|
+
'.scale-5': { scale: '.05' }
|
|
6989
|
+
'.scale-10': { scale: '.10' }
|
|
6990
|
+
'.scale-25': { scale: '.25' }
|
|
4516
6991
|
'.scale-50': { scale: '.5' }
|
|
4517
6992
|
'.scale-75': { scale: '.75' }
|
|
4518
6993
|
'.scale-90': { scale: '.9' }
|
|
@@ -4523,7 +6998,8 @@
|
|
|
4523
6998
|
'.scale-125': { scale: '1.25' }
|
|
4524
6999
|
'.scale-150': { scale: '1.5' }
|
|
4525
7000
|
|
|
4526
|
-
//
|
|
7001
|
+
// Component(s): Ti.UI.ScrollView
|
|
7002
|
+
// Property(ies): contentWidth, contentHeight
|
|
4527
7003
|
'.content-w-auto': { contentWidth: Ti.UI.SIZE }
|
|
4528
7004
|
'.content-w-screen': { contentWidth: Ti.UI.FILL }
|
|
4529
7005
|
'.content-h-auto': { contentHeight: Ti.UI.SIZE }
|
|
@@ -4531,7 +7007,8 @@
|
|
|
4531
7007
|
'.content-auto': { contentWidth: Ti.UI.SIZE, contentHeight: Ti.UI.SIZE }
|
|
4532
7008
|
'.content-screen': { contentWidth: Ti.UI.FILL, contentHeight: Ti.UI.FILL }
|
|
4533
7009
|
|
|
4534
|
-
//
|
|
7010
|
+
// Component(s): Ti.UI.ScrollView
|
|
7011
|
+
// Property(ies): showHorizontalScrollIndicator, showVerticalScrollIndicator
|
|
4535
7012
|
'.overflow-x-scroll': { showHorizontalScrollIndicator: true }
|
|
4536
7013
|
'.overflow-y-scroll': { showVerticalScrollIndicator: true }
|
|
4537
7014
|
'.overflow-x-hidden': { showHorizontalScrollIndicator: false }
|
|
@@ -4539,27 +7016,31 @@
|
|
|
4539
7016
|
'.overflow-scroll': { showHorizontalScrollIndicator: true, showVerticalScrollIndicator: true }
|
|
4540
7017
|
'.overflow-hidden': { showHorizontalScrollIndicator: false, showVerticalScrollIndicator: false }
|
|
4541
7018
|
|
|
4542
|
-
//
|
|
7019
|
+
// Component(s): Ti.UI.ScrollableView, Ti.UI.ScrollView
|
|
7020
|
+
// Property(ies): scrollingEnabled
|
|
4543
7021
|
'.scrolling-enabled': { scrollingEnabled: true }
|
|
4544
7022
|
'.scrolling-disabled': { scrollingEnabled: false }
|
|
4545
7023
|
|
|
4546
|
-
//
|
|
7024
|
+
// Component(s): Ti.UI.ScrollView
|
|
7025
|
+
// Property(ies): scrollType
|
|
4547
7026
|
'.scroll-horizontal[platform=android]': { scrollType: 'horizontal' }
|
|
4548
7027
|
'.scroll-vertical[platform=android]': { scrollType: 'vertical' }
|
|
4549
7028
|
|
|
4550
|
-
//
|
|
4551
|
-
|
|
4552
|
-
'.shadow-
|
|
4553
|
-
'.shadow': { viewShadowOffset: { x: 0, y:
|
|
4554
|
-
'.shadow
|
|
4555
|
-
'.shadow-
|
|
4556
|
-
'.shadow-
|
|
4557
|
-
'.shadow-
|
|
7029
|
+
// Component(s): Ti.UI.View
|
|
7030
|
+
// Property(ies): viewShadowOffset, viewShadowRadius, viewShadowColor - Box Shadow in Tailwind
|
|
7031
|
+
'.shadow-xs': { viewShadowOffset: { x: 0, y: 0 }, viewShadowRadius: 1, viewShadowColor: '#59000000' }
|
|
7032
|
+
'.shadow-sm': { viewShadowOffset: { x: 0, y: 1 }, viewShadowRadius: 1, viewShadowColor: '#59000000' }
|
|
7033
|
+
'.shadow': { viewShadowOffset: { x: 0, y: 2 }, viewShadowRadius: 2, viewShadowColor: '#59000000' }
|
|
7034
|
+
'.shadow-md': { viewShadowOffset: { x: 0, y: 3 }, viewShadowRadius: 3, viewShadowColor: '#59000000' }
|
|
7035
|
+
'.shadow-lg': { viewShadowOffset: { x: 0, y: 4 }, viewShadowRadius: 4, viewShadowColor: '#59000000' }
|
|
7036
|
+
'.shadow-xl': { viewShadowOffset: { x: 0, y: 6 }, viewShadowRadius: 6, viewShadowColor: '#59000000' }
|
|
7037
|
+
'.shadow-2xl': { viewShadowOffset: { x: 0, y: 8 }, viewShadowRadius: 8, viewShadowColor: '#59000000' }
|
|
4558
7038
|
'.shadow-inner': { viewShadowOffset: { x: 0, y: 0 }, viewShadowRadius: null, viewShadowColor: null }
|
|
4559
|
-
'.shadow-outline': { viewShadowOffset: { x: 0, y: 0 }, viewShadowRadius: 2, viewShadowColor: '#
|
|
7039
|
+
'.shadow-outline': { viewShadowOffset: { x: 0, y: 0 }, viewShadowRadius: 2, viewShadowColor: '#59000000' }
|
|
4560
7040
|
'.shadow-none': { viewShadowOffset: { x: 0, y: 0 }, viewShadowRadius: null, viewShadowColor: null }
|
|
4561
7041
|
|
|
4562
|
-
//
|
|
7042
|
+
// Component(s): Ti.UI.View
|
|
7043
|
+
// Property(ies): viewShadowColor - Box Shadow in Tailwind
|
|
4563
7044
|
'.shadow-transparent': { viewShadowColor: 'transparent' }
|
|
4564
7045
|
'.shadow-black': { viewShadowColor: '#000000' }
|
|
4565
7046
|
'.shadow-white': { viewShadowColor: '#ffffff' }
|
|
@@ -4784,11 +7265,55 @@
|
|
|
4784
7265
|
'.shadow-rose-800': { viewShadowColor: '#9f1239' }
|
|
4785
7266
|
'.shadow-rose-900': { viewShadowColor: '#881337' }
|
|
4786
7267
|
|
|
4787
|
-
//
|
|
7268
|
+
// Component(s): Ti.UI.TabGroup
|
|
7269
|
+
// Property(ies): shiftMode - Android Only
|
|
7270
|
+
'.shift-mode[platform=android]': { shiftMode: true }
|
|
7271
|
+
'.shift-mode-disabled[platform=android]': { shiftMode: false }
|
|
7272
|
+
|
|
7273
|
+
// Component(s): Ti.Android.MenuItem
|
|
7274
|
+
// Property(ies): showAsAction - Android Only
|
|
7275
|
+
'.show-as-action-always[platform=android]': { showAsAction: Ti.Android.SHOW_AS_ACTION_ALWAYS }
|
|
7276
|
+
'.show-as-action-collapse[platform=android]': { showAsAction: Ti.Android.SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW }
|
|
7277
|
+
'.show-as-action-if-room[platform=android]': { showAsAction: Ti.Android.SHOW_AS_ACTION_IF_ROOM }
|
|
7278
|
+
'.show-as-action-never[platform=android]': { showAsAction: Ti.Android.SHOW_AS_ACTION_NEVER }
|
|
7279
|
+
'.show-as-action-with-text[platform=android]': { showAsAction: Ti.Android.SHOW_AS_ACTION_WITH_TEXT }
|
|
7280
|
+
|
|
7281
|
+
// Component(s): Ti.UI.SearchBar
|
|
7282
|
+
// Property(ies): showCancel
|
|
4788
7283
|
'.show-cancel': { showCancel: true }
|
|
4789
|
-
'.hide-cancel': { showCancel: false }
|
|
4790
7284
|
|
|
4791
|
-
//
|
|
7285
|
+
// Component(s): Ti.UI.TabGroup
|
|
7286
|
+
// Property(ies): smoothScrollOnTabClick
|
|
7287
|
+
'.smooth-scroll[platform=android]': { smoothScrollOnTabClick: true }
|
|
7288
|
+
'.smooth-scroll-disabled[platform=android]': { smoothScrollOnTabClick: false }
|
|
7289
|
+
|
|
7290
|
+
// Component(s): Ti.UI.Window
|
|
7291
|
+
// Property(ies): statusBarStyle - iOS Only
|
|
7292
|
+
'.status-bar[platform=ios]': { statusBarStyle: Ti.UI.iOS.StatusBar.DEFAULT }
|
|
7293
|
+
'.status-bar-dark[platform=ios]': { statusBarStyle: Ti.UI.iOS.StatusBar.DARK_CONTENT }
|
|
7294
|
+
'.status-bar-light[platform=ios]': { statusBarStyle: Ti.UI.iOS.StatusBar.LIGHT_CONTENT }
|
|
7295
|
+
|
|
7296
|
+
// Component(s): Ti.UI.Window
|
|
7297
|
+
// Property(ies): sustainedPerformanceMode
|
|
7298
|
+
'.sustained-performance-mode[platform=android]': { sustainedPerformanceMode: true }
|
|
7299
|
+
|
|
7300
|
+
// Component(s): Ti.UI.Window
|
|
7301
|
+
// Property(ies): swipeToClose
|
|
7302
|
+
'.swipe-to-close[platform=ios]': { swipeToClose: true }
|
|
7303
|
+
'.dont-swipe-to-close[platform=ios]': { swipeToClose: false }
|
|
7304
|
+
|
|
7305
|
+
// Component(s): Ti.UI.Window
|
|
7306
|
+
// Property(ies): tabBarHidden - iOS Only
|
|
7307
|
+
'.tab-bar-hidden[platform=ios]': { tabBarHidden: true }
|
|
7308
|
+
'.tab-bar-visible[platform=ios]': { tabBarHidden: false }
|
|
7309
|
+
|
|
7310
|
+
// Component(s): Ti.UI.TabGroup
|
|
7311
|
+
// Property(ies): style - Android Only
|
|
7312
|
+
'.tabs-style[platform=android]': { style: Ti.UI.Android.TABS_STYLE_DEFAULT }
|
|
7313
|
+
'.tabs-style-bottom-navigation[platform=android]': { style: Ti.UI.Android.TABS_STYLE_BOTTOM_NAVIGATION }
|
|
7314
|
+
|
|
7315
|
+
// Component(s): Ti.UI.TabGroup
|
|
7316
|
+
// Property(ies): tabsBackgroundColor
|
|
4792
7317
|
'.tabs-bg-transparent': { tabsBackgroundColor: 'transparent' }
|
|
4793
7318
|
'.tabs-bg-black': { tabsBackgroundColor: '#000000' }
|
|
4794
7319
|
'.tabs-bg-white': { tabsBackgroundColor: '#ffffff' }
|
|
@@ -5013,13 +7538,246 @@
|
|
|
5013
7538
|
'.tabs-bg-rose-800': { tabsBackgroundColor: '#9f1239' }
|
|
5014
7539
|
'.tabs-bg-rose-900': { tabsBackgroundColor: '#881337' }
|
|
5015
7540
|
|
|
5016
|
-
//
|
|
7541
|
+
// Component(s): Ti.UI.TabGroup
|
|
7542
|
+
// Property(ies): tabsBackgroundSelectedColor
|
|
7543
|
+
'.tabs-bg-selected-transparent': { tabsBackgroundSelectedColor: 'transparent' }
|
|
7544
|
+
'.tabs-bg-selected-black': { tabsBackgroundSelectedColor: '#000000' }
|
|
7545
|
+
'.tabs-bg-selected-white': { tabsBackgroundSelectedColor: '#ffffff' }
|
|
7546
|
+
'.tabs-bg-selected-slate-50': { tabsBackgroundSelectedColor: '#f8fafc' }
|
|
7547
|
+
'.tabs-bg-selected-slate-100': { tabsBackgroundSelectedColor: '#f1f5f9' }
|
|
7548
|
+
'.tabs-bg-selected-slate-200': { tabsBackgroundSelectedColor: '#e2e8f0' }
|
|
7549
|
+
'.tabs-bg-selected-slate-300': { tabsBackgroundSelectedColor: '#cbd5e1' }
|
|
7550
|
+
'.tabs-bg-selected-slate-400': { tabsBackgroundSelectedColor: '#94a3b8' }
|
|
7551
|
+
'.tabs-bg-selected-slate-500': { tabsBackgroundSelectedColor: '#64748b' }
|
|
7552
|
+
'.tabs-bg-selected-slate-600': { tabsBackgroundSelectedColor: '#475569' }
|
|
7553
|
+
'.tabs-bg-selected-slate-700': { tabsBackgroundSelectedColor: '#334155' }
|
|
7554
|
+
'.tabs-bg-selected-slate-800': { tabsBackgroundSelectedColor: '#1e293b' }
|
|
7555
|
+
'.tabs-bg-selected-slate-900': { tabsBackgroundSelectedColor: '#0f172a' }
|
|
7556
|
+
'.tabs-bg-selected-gray-50': { tabsBackgroundSelectedColor: '#f9fafb' }
|
|
7557
|
+
'.tabs-bg-selected-gray-100': { tabsBackgroundSelectedColor: '#f3f4f6' }
|
|
7558
|
+
'.tabs-bg-selected-gray-200': { tabsBackgroundSelectedColor: '#e5e7eb' }
|
|
7559
|
+
'.tabs-bg-selected-gray-300': { tabsBackgroundSelectedColor: '#d1d5db' }
|
|
7560
|
+
'.tabs-bg-selected-gray-400': { tabsBackgroundSelectedColor: '#9ca3af' }
|
|
7561
|
+
'.tabs-bg-selected-gray-500': { tabsBackgroundSelectedColor: '#6b7280' }
|
|
7562
|
+
'.tabs-bg-selected-gray-600': { tabsBackgroundSelectedColor: '#4b5563' }
|
|
7563
|
+
'.tabs-bg-selected-gray-700': { tabsBackgroundSelectedColor: '#374151' }
|
|
7564
|
+
'.tabs-bg-selected-gray-800': { tabsBackgroundSelectedColor: '#1f2937' }
|
|
7565
|
+
'.tabs-bg-selected-gray-900': { tabsBackgroundSelectedColor: '#111827' }
|
|
7566
|
+
'.tabs-bg-selected-zinc-50': { tabsBackgroundSelectedColor: '#fafafa' }
|
|
7567
|
+
'.tabs-bg-selected-zinc-100': { tabsBackgroundSelectedColor: '#f4f4f5' }
|
|
7568
|
+
'.tabs-bg-selected-zinc-200': { tabsBackgroundSelectedColor: '#e4e4e7' }
|
|
7569
|
+
'.tabs-bg-selected-zinc-300': { tabsBackgroundSelectedColor: '#d4d4d8' }
|
|
7570
|
+
'.tabs-bg-selected-zinc-400': { tabsBackgroundSelectedColor: '#a1a1aa' }
|
|
7571
|
+
'.tabs-bg-selected-zinc-500': { tabsBackgroundSelectedColor: '#71717a' }
|
|
7572
|
+
'.tabs-bg-selected-zinc-600': { tabsBackgroundSelectedColor: '#52525b' }
|
|
7573
|
+
'.tabs-bg-selected-zinc-700': { tabsBackgroundSelectedColor: '#3f3f46' }
|
|
7574
|
+
'.tabs-bg-selected-zinc-800': { tabsBackgroundSelectedColor: '#27272a' }
|
|
7575
|
+
'.tabs-bg-selected-zinc-900': { tabsBackgroundSelectedColor: '#18181b' }
|
|
7576
|
+
'.tabs-bg-selected-neutral-50': { tabsBackgroundSelectedColor: '#fafafa' }
|
|
7577
|
+
'.tabs-bg-selected-neutral-100': { tabsBackgroundSelectedColor: '#f5f5f5' }
|
|
7578
|
+
'.tabs-bg-selected-neutral-200': { tabsBackgroundSelectedColor: '#e5e5e5' }
|
|
7579
|
+
'.tabs-bg-selected-neutral-300': { tabsBackgroundSelectedColor: '#d4d4d4' }
|
|
7580
|
+
'.tabs-bg-selected-neutral-400': { tabsBackgroundSelectedColor: '#a3a3a3' }
|
|
7581
|
+
'.tabs-bg-selected-neutral-500': { tabsBackgroundSelectedColor: '#737373' }
|
|
7582
|
+
'.tabs-bg-selected-neutral-600': { tabsBackgroundSelectedColor: '#525252' }
|
|
7583
|
+
'.tabs-bg-selected-neutral-700': { tabsBackgroundSelectedColor: '#404040' }
|
|
7584
|
+
'.tabs-bg-selected-neutral-800': { tabsBackgroundSelectedColor: '#262626' }
|
|
7585
|
+
'.tabs-bg-selected-neutral-900': { tabsBackgroundSelectedColor: '#171717' }
|
|
7586
|
+
'.tabs-bg-selected-stone-50': { tabsBackgroundSelectedColor: '#fafaf9' }
|
|
7587
|
+
'.tabs-bg-selected-stone-100': { tabsBackgroundSelectedColor: '#f5f5f4' }
|
|
7588
|
+
'.tabs-bg-selected-stone-200': { tabsBackgroundSelectedColor: '#e7e5e4' }
|
|
7589
|
+
'.tabs-bg-selected-stone-300': { tabsBackgroundSelectedColor: '#d6d3d1' }
|
|
7590
|
+
'.tabs-bg-selected-stone-400': { tabsBackgroundSelectedColor: '#a8a29e' }
|
|
7591
|
+
'.tabs-bg-selected-stone-500': { tabsBackgroundSelectedColor: '#78716c' }
|
|
7592
|
+
'.tabs-bg-selected-stone-600': { tabsBackgroundSelectedColor: '#57534e' }
|
|
7593
|
+
'.tabs-bg-selected-stone-700': { tabsBackgroundSelectedColor: '#44403c' }
|
|
7594
|
+
'.tabs-bg-selected-stone-800': { tabsBackgroundSelectedColor: '#292524' }
|
|
7595
|
+
'.tabs-bg-selected-stone-900': { tabsBackgroundSelectedColor: '#1c1917' }
|
|
7596
|
+
'.tabs-bg-selected-red-50': { tabsBackgroundSelectedColor: '#fef2f2' }
|
|
7597
|
+
'.tabs-bg-selected-red-100': { tabsBackgroundSelectedColor: '#fee2e2' }
|
|
7598
|
+
'.tabs-bg-selected-red-200': { tabsBackgroundSelectedColor: '#fecaca' }
|
|
7599
|
+
'.tabs-bg-selected-red-300': { tabsBackgroundSelectedColor: '#fca5a5' }
|
|
7600
|
+
'.tabs-bg-selected-red-400': { tabsBackgroundSelectedColor: '#f87171' }
|
|
7601
|
+
'.tabs-bg-selected-red-500': { tabsBackgroundSelectedColor: '#ef4444' }
|
|
7602
|
+
'.tabs-bg-selected-red-600': { tabsBackgroundSelectedColor: '#dc2626' }
|
|
7603
|
+
'.tabs-bg-selected-red-700': { tabsBackgroundSelectedColor: '#b91c1c' }
|
|
7604
|
+
'.tabs-bg-selected-red-800': { tabsBackgroundSelectedColor: '#991b1b' }
|
|
7605
|
+
'.tabs-bg-selected-red-900': { tabsBackgroundSelectedColor: '#7f1d1d' }
|
|
7606
|
+
'.tabs-bg-selected-orange-50': { tabsBackgroundSelectedColor: '#fff7ed' }
|
|
7607
|
+
'.tabs-bg-selected-orange-100': { tabsBackgroundSelectedColor: '#ffedd5' }
|
|
7608
|
+
'.tabs-bg-selected-orange-200': { tabsBackgroundSelectedColor: '#fed7aa' }
|
|
7609
|
+
'.tabs-bg-selected-orange-300': { tabsBackgroundSelectedColor: '#fdba74' }
|
|
7610
|
+
'.tabs-bg-selected-orange-400': { tabsBackgroundSelectedColor: '#fb923c' }
|
|
7611
|
+
'.tabs-bg-selected-orange-500': { tabsBackgroundSelectedColor: '#f97316' }
|
|
7612
|
+
'.tabs-bg-selected-orange-600': { tabsBackgroundSelectedColor: '#ea580c' }
|
|
7613
|
+
'.tabs-bg-selected-orange-700': { tabsBackgroundSelectedColor: '#c2410c' }
|
|
7614
|
+
'.tabs-bg-selected-orange-800': { tabsBackgroundSelectedColor: '#9a3412' }
|
|
7615
|
+
'.tabs-bg-selected-orange-900': { tabsBackgroundSelectedColor: '#7c2d12' }
|
|
7616
|
+
'.tabs-bg-selected-amber-50': { tabsBackgroundSelectedColor: '#fffbeb' }
|
|
7617
|
+
'.tabs-bg-selected-amber-100': { tabsBackgroundSelectedColor: '#fef3c7' }
|
|
7618
|
+
'.tabs-bg-selected-amber-200': { tabsBackgroundSelectedColor: '#fde68a' }
|
|
7619
|
+
'.tabs-bg-selected-amber-300': { tabsBackgroundSelectedColor: '#fcd34d' }
|
|
7620
|
+
'.tabs-bg-selected-amber-400': { tabsBackgroundSelectedColor: '#fbbf24' }
|
|
7621
|
+
'.tabs-bg-selected-amber-500': { tabsBackgroundSelectedColor: '#f59e0b' }
|
|
7622
|
+
'.tabs-bg-selected-amber-600': { tabsBackgroundSelectedColor: '#d97706' }
|
|
7623
|
+
'.tabs-bg-selected-amber-700': { tabsBackgroundSelectedColor: '#b45309' }
|
|
7624
|
+
'.tabs-bg-selected-amber-800': { tabsBackgroundSelectedColor: '#92400e' }
|
|
7625
|
+
'.tabs-bg-selected-amber-900': { tabsBackgroundSelectedColor: '#78350f' }
|
|
7626
|
+
'.tabs-bg-selected-yellow-50': { tabsBackgroundSelectedColor: '#fefce8' }
|
|
7627
|
+
'.tabs-bg-selected-yellow-100': { tabsBackgroundSelectedColor: '#fef9c3' }
|
|
7628
|
+
'.tabs-bg-selected-yellow-200': { tabsBackgroundSelectedColor: '#fef08a' }
|
|
7629
|
+
'.tabs-bg-selected-yellow-300': { tabsBackgroundSelectedColor: '#fde047' }
|
|
7630
|
+
'.tabs-bg-selected-yellow-400': { tabsBackgroundSelectedColor: '#facc15' }
|
|
7631
|
+
'.tabs-bg-selected-yellow-500': { tabsBackgroundSelectedColor: '#eab308' }
|
|
7632
|
+
'.tabs-bg-selected-yellow-600': { tabsBackgroundSelectedColor: '#ca8a04' }
|
|
7633
|
+
'.tabs-bg-selected-yellow-700': { tabsBackgroundSelectedColor: '#a16207' }
|
|
7634
|
+
'.tabs-bg-selected-yellow-800': { tabsBackgroundSelectedColor: '#854d0e' }
|
|
7635
|
+
'.tabs-bg-selected-yellow-900': { tabsBackgroundSelectedColor: '#713f12' }
|
|
7636
|
+
'.tabs-bg-selected-lime-50': { tabsBackgroundSelectedColor: '#f7fee7' }
|
|
7637
|
+
'.tabs-bg-selected-lime-100': { tabsBackgroundSelectedColor: '#ecfccb' }
|
|
7638
|
+
'.tabs-bg-selected-lime-200': { tabsBackgroundSelectedColor: '#d9f99d' }
|
|
7639
|
+
'.tabs-bg-selected-lime-300': { tabsBackgroundSelectedColor: '#bef264' }
|
|
7640
|
+
'.tabs-bg-selected-lime-400': { tabsBackgroundSelectedColor: '#a3e635' }
|
|
7641
|
+
'.tabs-bg-selected-lime-500': { tabsBackgroundSelectedColor: '#84cc16' }
|
|
7642
|
+
'.tabs-bg-selected-lime-600': { tabsBackgroundSelectedColor: '#65a30d' }
|
|
7643
|
+
'.tabs-bg-selected-lime-700': { tabsBackgroundSelectedColor: '#4d7c0f' }
|
|
7644
|
+
'.tabs-bg-selected-lime-800': { tabsBackgroundSelectedColor: '#3f6212' }
|
|
7645
|
+
'.tabs-bg-selected-lime-900': { tabsBackgroundSelectedColor: '#365314' }
|
|
7646
|
+
'.tabs-bg-selected-green-50': { tabsBackgroundSelectedColor: '#f0fdf4' }
|
|
7647
|
+
'.tabs-bg-selected-green-100': { tabsBackgroundSelectedColor: '#dcfce7' }
|
|
7648
|
+
'.tabs-bg-selected-green-200': { tabsBackgroundSelectedColor: '#bbf7d0' }
|
|
7649
|
+
'.tabs-bg-selected-green-300': { tabsBackgroundSelectedColor: '#86efac' }
|
|
7650
|
+
'.tabs-bg-selected-green-400': { tabsBackgroundSelectedColor: '#4ade80' }
|
|
7651
|
+
'.tabs-bg-selected-green-500': { tabsBackgroundSelectedColor: '#22c55e' }
|
|
7652
|
+
'.tabs-bg-selected-green-600': { tabsBackgroundSelectedColor: '#16a34a' }
|
|
7653
|
+
'.tabs-bg-selected-green-700': { tabsBackgroundSelectedColor: '#15803d' }
|
|
7654
|
+
'.tabs-bg-selected-green-800': { tabsBackgroundSelectedColor: '#166534' }
|
|
7655
|
+
'.tabs-bg-selected-green-900': { tabsBackgroundSelectedColor: '#14532d' }
|
|
7656
|
+
'.tabs-bg-selected-emerald-50': { tabsBackgroundSelectedColor: '#ecfdf5' }
|
|
7657
|
+
'.tabs-bg-selected-emerald-100': { tabsBackgroundSelectedColor: '#d1fae5' }
|
|
7658
|
+
'.tabs-bg-selected-emerald-200': { tabsBackgroundSelectedColor: '#a7f3d0' }
|
|
7659
|
+
'.tabs-bg-selected-emerald-300': { tabsBackgroundSelectedColor: '#6ee7b7' }
|
|
7660
|
+
'.tabs-bg-selected-emerald-400': { tabsBackgroundSelectedColor: '#34d399' }
|
|
7661
|
+
'.tabs-bg-selected-emerald-500': { tabsBackgroundSelectedColor: '#10b981' }
|
|
7662
|
+
'.tabs-bg-selected-emerald-600': { tabsBackgroundSelectedColor: '#059669' }
|
|
7663
|
+
'.tabs-bg-selected-emerald-700': { tabsBackgroundSelectedColor: '#047857' }
|
|
7664
|
+
'.tabs-bg-selected-emerald-800': { tabsBackgroundSelectedColor: '#065f46' }
|
|
7665
|
+
'.tabs-bg-selected-emerald-900': { tabsBackgroundSelectedColor: '#064e3b' }
|
|
7666
|
+
'.tabs-bg-selected-teal-50': { tabsBackgroundSelectedColor: '#f0fdfa' }
|
|
7667
|
+
'.tabs-bg-selected-teal-100': { tabsBackgroundSelectedColor: '#ccfbf1' }
|
|
7668
|
+
'.tabs-bg-selected-teal-200': { tabsBackgroundSelectedColor: '#99f6e4' }
|
|
7669
|
+
'.tabs-bg-selected-teal-300': { tabsBackgroundSelectedColor: '#5eead4' }
|
|
7670
|
+
'.tabs-bg-selected-teal-400': { tabsBackgroundSelectedColor: '#2dd4bf' }
|
|
7671
|
+
'.tabs-bg-selected-teal-500': { tabsBackgroundSelectedColor: '#14b8a6' }
|
|
7672
|
+
'.tabs-bg-selected-teal-600': { tabsBackgroundSelectedColor: '#0d9488' }
|
|
7673
|
+
'.tabs-bg-selected-teal-700': { tabsBackgroundSelectedColor: '#0f766e' }
|
|
7674
|
+
'.tabs-bg-selected-teal-800': { tabsBackgroundSelectedColor: '#115e59' }
|
|
7675
|
+
'.tabs-bg-selected-teal-900': { tabsBackgroundSelectedColor: '#134e4a' }
|
|
7676
|
+
'.tabs-bg-selected-cyan-50': { tabsBackgroundSelectedColor: '#ecfeff' }
|
|
7677
|
+
'.tabs-bg-selected-cyan-100': { tabsBackgroundSelectedColor: '#cffafe' }
|
|
7678
|
+
'.tabs-bg-selected-cyan-200': { tabsBackgroundSelectedColor: '#a5f3fc' }
|
|
7679
|
+
'.tabs-bg-selected-cyan-300': { tabsBackgroundSelectedColor: '#67e8f9' }
|
|
7680
|
+
'.tabs-bg-selected-cyan-400': { tabsBackgroundSelectedColor: '#22d3ee' }
|
|
7681
|
+
'.tabs-bg-selected-cyan-500': { tabsBackgroundSelectedColor: '#06b6d4' }
|
|
7682
|
+
'.tabs-bg-selected-cyan-600': { tabsBackgroundSelectedColor: '#0891b2' }
|
|
7683
|
+
'.tabs-bg-selected-cyan-700': { tabsBackgroundSelectedColor: '#0e7490' }
|
|
7684
|
+
'.tabs-bg-selected-cyan-800': { tabsBackgroundSelectedColor: '#155e75' }
|
|
7685
|
+
'.tabs-bg-selected-cyan-900': { tabsBackgroundSelectedColor: '#164e63' }
|
|
7686
|
+
'.tabs-bg-selected-sky-50': { tabsBackgroundSelectedColor: '#f0f9ff' }
|
|
7687
|
+
'.tabs-bg-selected-sky-100': { tabsBackgroundSelectedColor: '#e0f2fe' }
|
|
7688
|
+
'.tabs-bg-selected-sky-200': { tabsBackgroundSelectedColor: '#bae6fd' }
|
|
7689
|
+
'.tabs-bg-selected-sky-300': { tabsBackgroundSelectedColor: '#7dd3fc' }
|
|
7690
|
+
'.tabs-bg-selected-sky-400': { tabsBackgroundSelectedColor: '#38bdf8' }
|
|
7691
|
+
'.tabs-bg-selected-sky-500': { tabsBackgroundSelectedColor: '#0ea5e9' }
|
|
7692
|
+
'.tabs-bg-selected-sky-600': { tabsBackgroundSelectedColor: '#0284c7' }
|
|
7693
|
+
'.tabs-bg-selected-sky-700': { tabsBackgroundSelectedColor: '#0369a1' }
|
|
7694
|
+
'.tabs-bg-selected-sky-800': { tabsBackgroundSelectedColor: '#075985' }
|
|
7695
|
+
'.tabs-bg-selected-sky-900': { tabsBackgroundSelectedColor: '#0c4a6e' }
|
|
7696
|
+
'.tabs-bg-selected-blue-50': { tabsBackgroundSelectedColor: '#eff6ff' }
|
|
7697
|
+
'.tabs-bg-selected-blue-100': { tabsBackgroundSelectedColor: '#dbeafe' }
|
|
7698
|
+
'.tabs-bg-selected-blue-200': { tabsBackgroundSelectedColor: '#bfdbfe' }
|
|
7699
|
+
'.tabs-bg-selected-blue-300': { tabsBackgroundSelectedColor: '#93c5fd' }
|
|
7700
|
+
'.tabs-bg-selected-blue-400': { tabsBackgroundSelectedColor: '#60a5fa' }
|
|
7701
|
+
'.tabs-bg-selected-blue-500': { tabsBackgroundSelectedColor: '#3b82f6' }
|
|
7702
|
+
'.tabs-bg-selected-blue-600': { tabsBackgroundSelectedColor: '#2563eb' }
|
|
7703
|
+
'.tabs-bg-selected-blue-700': { tabsBackgroundSelectedColor: '#1d4ed8' }
|
|
7704
|
+
'.tabs-bg-selected-blue-800': { tabsBackgroundSelectedColor: '#1e40af' }
|
|
7705
|
+
'.tabs-bg-selected-blue-900': { tabsBackgroundSelectedColor: '#1e3a8a' }
|
|
7706
|
+
'.tabs-bg-selected-indigo-50': { tabsBackgroundSelectedColor: '#eef2ff' }
|
|
7707
|
+
'.tabs-bg-selected-indigo-100': { tabsBackgroundSelectedColor: '#e0e7ff' }
|
|
7708
|
+
'.tabs-bg-selected-indigo-200': { tabsBackgroundSelectedColor: '#c7d2fe' }
|
|
7709
|
+
'.tabs-bg-selected-indigo-300': { tabsBackgroundSelectedColor: '#a5b4fc' }
|
|
7710
|
+
'.tabs-bg-selected-indigo-400': { tabsBackgroundSelectedColor: '#818cf8' }
|
|
7711
|
+
'.tabs-bg-selected-indigo-500': { tabsBackgroundSelectedColor: '#6366f1' }
|
|
7712
|
+
'.tabs-bg-selected-indigo-600': { tabsBackgroundSelectedColor: '#4f46e5' }
|
|
7713
|
+
'.tabs-bg-selected-indigo-700': { tabsBackgroundSelectedColor: '#4338ca' }
|
|
7714
|
+
'.tabs-bg-selected-indigo-800': { tabsBackgroundSelectedColor: '#3730a3' }
|
|
7715
|
+
'.tabs-bg-selected-indigo-900': { tabsBackgroundSelectedColor: '#312e81' }
|
|
7716
|
+
'.tabs-bg-selected-violet-50': { tabsBackgroundSelectedColor: '#f5f3ff' }
|
|
7717
|
+
'.tabs-bg-selected-violet-100': { tabsBackgroundSelectedColor: '#ede9fe' }
|
|
7718
|
+
'.tabs-bg-selected-violet-200': { tabsBackgroundSelectedColor: '#ddd6fe' }
|
|
7719
|
+
'.tabs-bg-selected-violet-300': { tabsBackgroundSelectedColor: '#c4b5fd' }
|
|
7720
|
+
'.tabs-bg-selected-violet-400': { tabsBackgroundSelectedColor: '#a78bfa' }
|
|
7721
|
+
'.tabs-bg-selected-violet-500': { tabsBackgroundSelectedColor: '#8b5cf6' }
|
|
7722
|
+
'.tabs-bg-selected-violet-600': { tabsBackgroundSelectedColor: '#7c3aed' }
|
|
7723
|
+
'.tabs-bg-selected-violet-700': { tabsBackgroundSelectedColor: '#6d28d9' }
|
|
7724
|
+
'.tabs-bg-selected-violet-800': { tabsBackgroundSelectedColor: '#5b21b6' }
|
|
7725
|
+
'.tabs-bg-selected-violet-900': { tabsBackgroundSelectedColor: '#4c1d95' }
|
|
7726
|
+
'.tabs-bg-selected-purple-50': { tabsBackgroundSelectedColor: '#faf5ff' }
|
|
7727
|
+
'.tabs-bg-selected-purple-100': { tabsBackgroundSelectedColor: '#f3e8ff' }
|
|
7728
|
+
'.tabs-bg-selected-purple-200': { tabsBackgroundSelectedColor: '#e9d5ff' }
|
|
7729
|
+
'.tabs-bg-selected-purple-300': { tabsBackgroundSelectedColor: '#d8b4fe' }
|
|
7730
|
+
'.tabs-bg-selected-purple-400': { tabsBackgroundSelectedColor: '#c084fc' }
|
|
7731
|
+
'.tabs-bg-selected-purple-500': { tabsBackgroundSelectedColor: '#a855f7' }
|
|
7732
|
+
'.tabs-bg-selected-purple-600': { tabsBackgroundSelectedColor: '#9333ea' }
|
|
7733
|
+
'.tabs-bg-selected-purple-700': { tabsBackgroundSelectedColor: '#7e22ce' }
|
|
7734
|
+
'.tabs-bg-selected-purple-800': { tabsBackgroundSelectedColor: '#6b21a8' }
|
|
7735
|
+
'.tabs-bg-selected-purple-900': { tabsBackgroundSelectedColor: '#581c87' }
|
|
7736
|
+
'.tabs-bg-selected-fuchsia-50': { tabsBackgroundSelectedColor: '#fdf4ff' }
|
|
7737
|
+
'.tabs-bg-selected-fuchsia-100': { tabsBackgroundSelectedColor: '#fae8ff' }
|
|
7738
|
+
'.tabs-bg-selected-fuchsia-200': { tabsBackgroundSelectedColor: '#f5d0fe' }
|
|
7739
|
+
'.tabs-bg-selected-fuchsia-300': { tabsBackgroundSelectedColor: '#f0abfc' }
|
|
7740
|
+
'.tabs-bg-selected-fuchsia-400': { tabsBackgroundSelectedColor: '#e879f9' }
|
|
7741
|
+
'.tabs-bg-selected-fuchsia-500': { tabsBackgroundSelectedColor: '#d946ef' }
|
|
7742
|
+
'.tabs-bg-selected-fuchsia-600': { tabsBackgroundSelectedColor: '#c026d3' }
|
|
7743
|
+
'.tabs-bg-selected-fuchsia-700': { tabsBackgroundSelectedColor: '#a21caf' }
|
|
7744
|
+
'.tabs-bg-selected-fuchsia-800': { tabsBackgroundSelectedColor: '#86198f' }
|
|
7745
|
+
'.tabs-bg-selected-fuchsia-900': { tabsBackgroundSelectedColor: '#701a75' }
|
|
7746
|
+
'.tabs-bg-selected-pink-50': { tabsBackgroundSelectedColor: '#fdf2f8' }
|
|
7747
|
+
'.tabs-bg-selected-pink-100': { tabsBackgroundSelectedColor: '#fce7f3' }
|
|
7748
|
+
'.tabs-bg-selected-pink-200': { tabsBackgroundSelectedColor: '#fbcfe8' }
|
|
7749
|
+
'.tabs-bg-selected-pink-300': { tabsBackgroundSelectedColor: '#f9a8d4' }
|
|
7750
|
+
'.tabs-bg-selected-pink-400': { tabsBackgroundSelectedColor: '#f472b6' }
|
|
7751
|
+
'.tabs-bg-selected-pink-500': { tabsBackgroundSelectedColor: '#ec4899' }
|
|
7752
|
+
'.tabs-bg-selected-pink-600': { tabsBackgroundSelectedColor: '#db2777' }
|
|
7753
|
+
'.tabs-bg-selected-pink-700': { tabsBackgroundSelectedColor: '#be185d' }
|
|
7754
|
+
'.tabs-bg-selected-pink-800': { tabsBackgroundSelectedColor: '#9d174d' }
|
|
7755
|
+
'.tabs-bg-selected-pink-900': { tabsBackgroundSelectedColor: '#831843' }
|
|
7756
|
+
'.tabs-bg-selected-rose-50': { tabsBackgroundSelectedColor: '#fff1f2' }
|
|
7757
|
+
'.tabs-bg-selected-rose-100': { tabsBackgroundSelectedColor: '#ffe4e6' }
|
|
7758
|
+
'.tabs-bg-selected-rose-200': { tabsBackgroundSelectedColor: '#fecdd3' }
|
|
7759
|
+
'.tabs-bg-selected-rose-300': { tabsBackgroundSelectedColor: '#fda4af' }
|
|
7760
|
+
'.tabs-bg-selected-rose-400': { tabsBackgroundSelectedColor: '#fb7185' }
|
|
7761
|
+
'.tabs-bg-selected-rose-500': { tabsBackgroundSelectedColor: '#f43f5e' }
|
|
7762
|
+
'.tabs-bg-selected-rose-600': { tabsBackgroundSelectedColor: '#e11d48' }
|
|
7763
|
+
'.tabs-bg-selected-rose-700': { tabsBackgroundSelectedColor: '#be123c' }
|
|
7764
|
+
'.tabs-bg-selected-rose-800': { tabsBackgroundSelectedColor: '#9f1239' }
|
|
7765
|
+
'.tabs-bg-selected-rose-900': { tabsBackgroundSelectedColor: '#881337' }
|
|
7766
|
+
|
|
7767
|
+
// Component(s): Ti.UI.TabGroup
|
|
7768
|
+
// Property(ies): tabsTranslucent - iOS Only
|
|
7769
|
+
'.tabs-translucent[platform=ios]': { tabsTranslucent: true }
|
|
7770
|
+
'.tabs-not-translucent[platform=ios]': { tabsTranslucent: false }
|
|
7771
|
+
|
|
7772
|
+
// Component(s): Ti.UI.Button, Ti.UI.Label, Ti.UI.Switch, Ti.UI.TextArea, Ti.UI.TextField
|
|
7773
|
+
// Property(ies): textAlign
|
|
5017
7774
|
'.text-left': { textAlign: Ti.UI.TEXT_ALIGNMENT_LEFT }
|
|
5018
7775
|
'.text-right': { textAlign: Ti.UI.TEXT_ALIGNMENT_RIGHT }
|
|
5019
7776
|
'.text-center': { textAlign: Ti.UI.TEXT_ALIGNMENT_CENTER }
|
|
5020
7777
|
'.text-justify': { textAlign: Ti.UI.TEXT_ALIGNMENT_JUSTIFY }
|
|
5021
7778
|
|
|
5022
|
-
//
|
|
7779
|
+
// Component(s): Ti.UI.Button, Ti.UI.Label, Ti.UI.PickerRow, Ti.UI.SearchBar, Ti.UI.TextArea, Ti.UI.ActivityIndicator, Ti.UI.Animation, Ti.UI.ListItem, Ti.UI.ProgressBar, Ti.UI.Switch, Ti.UI.TableViewRow, Ti.UI.TextField, Ti.UI.Android.SearchView
|
|
7780
|
+
// Property(ies): color
|
|
5023
7781
|
'.text-transparent': { color: 'transparent' }
|
|
5024
7782
|
'.text-black': { color: '#000000' }
|
|
5025
7783
|
'.text-white': { color: '#ffffff' }
|
|
@@ -5245,264 +8003,294 @@
|
|
|
5245
8003
|
'.text-rose-900': { color: '#881337' }
|
|
5246
8004
|
|
|
5247
8005
|
// Ti.Media
|
|
5248
|
-
//
|
|
5249
|
-
|
|
5250
|
-
'.audio-
|
|
5251
|
-
'.audio-
|
|
5252
|
-
'.audio-
|
|
5253
|
-
'.audio-
|
|
5254
|
-
|
|
5255
|
-
|
|
5256
|
-
|
|
5257
|
-
|
|
5258
|
-
'.audio-type-
|
|
5259
|
-
'.audio-type-
|
|
5260
|
-
'.audio-type-
|
|
5261
|
-
'.audio-type-
|
|
5262
|
-
|
|
5263
|
-
|
|
8006
|
+
// Component(s): Ti.Media
|
|
8007
|
+
// Property(ies): audioSessionCategory - iOS Only
|
|
8008
|
+
'.audio-sesion-record[platform=ios]': { audioSessionCategory: Ti.Media.AUDIO_SESSION_CATEGORY_RECORD }
|
|
8009
|
+
'.audio-sesion-ambient[platform=ios]': { audioSessionCategory: Ti.Media.AUDIO_SESSION_CATEGORY_AMBIENT }
|
|
8010
|
+
'.audio-sesion-playback[platform=ios]': { audioSessionCategory: Ti.Media.AUDIO_SESSION_CATEGORY_PLAYBACK }
|
|
8011
|
+
'.audio-sesion-solo-ambient[platform=ios]': { audioSessionCategory: Ti.Media.AUDIO_SESSION_CATEGORY_SOLO_AMBIENT }
|
|
8012
|
+
'.audio-sesion-play-record[platform=ios]': { audioSessionCategory: Ti.Media.AUDIO_SESSION_CATEGORY_PLAY_AND_RECORD }
|
|
8013
|
+
|
|
8014
|
+
// Component(s): Ti.Media.AudioPlayer[android], Ti.Media.Sound[android]
|
|
8015
|
+
// Property(ies): audioType
|
|
8016
|
+
'.audio-type-ring[platform=android]': { audioType: Ti.Media.Sound.AUDIO_TYPE_RING }
|
|
8017
|
+
'.audio-type-alarm[platform=android]': { audioType: Ti.Media.Sound.AUDIO_TYPE_ALARM }
|
|
8018
|
+
'.audio-type-media[platform=android]': { audioType: Ti.Media.Sound.AUDIO_TYPE_MEDIA }
|
|
8019
|
+
'.audio-type-voice[platform=android]': { audioType: Ti.Media.Sound.AUDIO_TYPE_VOICE }
|
|
8020
|
+
'.audio-type-signalling[platform=android]': { audioType: Ti.Media.Sound.AUDIO_TYPE_SIGNALLING }
|
|
8021
|
+
'.audio-type-notification[platform=android]': { audioType: Ti.Media.Sound.AUDIO_TYPE_NOTIFICATION }
|
|
8022
|
+
|
|
8023
|
+
// Component(s): Ti.Media.MusicPlayer
|
|
8024
|
+
// Property(ies): repeatMode - iOS Only
|
|
8025
|
+
'.music-repeat-all[platform=ios]': { repeatMode: Ti.Media.MUSIC_PLAYER_REPEAT_ALL }
|
|
8026
|
+
'.music-repeat[platform=ios]': { repeatMode: Ti.Media.MUSIC_PLAYER_REPEAT_DEFAULT }
|
|
8027
|
+
'.music-repeat-none[platform=ios]': { repeatMode: Ti.Media.MUSIC_PLAYER_REPEAT_NONE }
|
|
8028
|
+
'.music-repeat-one[platform=ios]': { repeatMode: Ti.Media.MUSIC_PLAYER_REPEAT_ONE }
|
|
8029
|
+
|
|
8030
|
+
// Component(s): Ti.Media.MusicPlayer
|
|
8031
|
+
// Property(ies): shuffleMode - iOS Only
|
|
8032
|
+
'.music-shuffle-albums[platform=ios]': { shuffleMode: Ti.Media.MUSIC_PLAYER_SHUFFLE_ALBUMS }
|
|
8033
|
+
'.music-shuffle[platform=ios]': { shuffleMode: Ti.Media.MUSIC_PLAYER_SHUFFLE_DEFAULT }
|
|
8034
|
+
'.music-shuffle-none[platform=ios]': { shuffleMode: Ti.Media.MUSIC_PLAYER_SHUFFLE_NONE }
|
|
8035
|
+
'.music-shuffle-songs[platform=ios]': { shuffleMode: Ti.Media.MUSIC_PLAYER_SHUFFLE_SONGS }
|
|
8036
|
+
|
|
8037
|
+
// Component(s): Ti.UI.ImageView
|
|
8038
|
+
// Property(ies): scalingMode
|
|
8039
|
+
// Description: Background Size for compatibility with Tailwind classes
|
|
5264
8040
|
'.bg-auto': { scalingMode: Ti.Media.IMAGE_SCALING_NONE }
|
|
5265
8041
|
'.bg-cover': { scalingMode: Ti.Media.IMAGE_SCALING_ASPECT_FILL }
|
|
5266
8042
|
'.bg-contain': { scalingMode: Ti.Media.IMAGE_SCALING_ASPECT_FIT }
|
|
5267
8043
|
|
|
5268
|
-
//
|
|
8044
|
+
// Component(s): Ti.UI.ImageView
|
|
8045
|
+
// Property(ies): scalingMode
|
|
8046
|
+
// Description: Image Scaling Mode
|
|
5269
8047
|
'.image-scaling-auto': { scalingMode: Ti.Media.IMAGE_SCALING_AUTO }
|
|
5270
8048
|
'.image-scaling-none': { scalingMode: Ti.Media.IMAGE_SCALING_NONE }
|
|
5271
8049
|
'.image-scaling-fill': { scalingMode: Ti.Media.IMAGE_SCALING_FILL }
|
|
5272
8050
|
'.image-scaling-cover': { scalingMode: Ti.Media.IMAGE_SCALING_ASPECT_FILL }
|
|
5273
8051
|
'.image-scaling-contain': { scalingMode: Ti.Media.IMAGE_SCALING_ASPECT_FIT }
|
|
5274
8052
|
|
|
5275
|
-
//
|
|
8053
|
+
// Component(s): Ti.Media.VideoPlayer
|
|
8054
|
+
// Property(ies): scalingMode
|
|
8055
|
+
// Description: Video Scaling Mode
|
|
5276
8056
|
'.video-scaling-resize': { scalingMode: Ti.Media.VIDEO_SCALING_RESIZE }
|
|
5277
8057
|
'.video-scaling-contain': { scalingMode: Ti.Media.VIDEO_SCALING_RESIZE_ASPECT }
|
|
5278
8058
|
'.video-scaling-cover': { scalingMode: Ti.Media.VIDEO_SCALING_RESIZE_ASPECT_FILL }
|
|
5279
8059
|
|
|
5280
|
-
//
|
|
5281
|
-
|
|
5282
|
-
|
|
5283
|
-
'.
|
|
5284
|
-
'.
|
|
5285
|
-
|
|
5286
|
-
|
|
5287
|
-
|
|
5288
|
-
'.tint-
|
|
5289
|
-
'.tint-
|
|
5290
|
-
'.tint-
|
|
5291
|
-
'.tint-slate-
|
|
5292
|
-
'.tint-slate-
|
|
5293
|
-
'.tint-slate-
|
|
5294
|
-
'.tint-
|
|
5295
|
-
'.tint-
|
|
5296
|
-
'.tint-
|
|
5297
|
-
'.tint-
|
|
5298
|
-
'.tint-
|
|
5299
|
-
'.tint-
|
|
5300
|
-
'.tint-
|
|
5301
|
-
'.tint-gray-
|
|
5302
|
-
'.tint-gray-
|
|
5303
|
-
'.tint-gray-
|
|
5304
|
-
'.tint-
|
|
5305
|
-
'.tint-
|
|
5306
|
-
'.tint-
|
|
5307
|
-
'.tint-
|
|
5308
|
-
'.tint-
|
|
5309
|
-
'.tint-
|
|
5310
|
-
'.tint-
|
|
5311
|
-
'.tint-zinc-
|
|
5312
|
-
'.tint-zinc-
|
|
5313
|
-
'.tint-zinc-
|
|
5314
|
-
'.tint-
|
|
5315
|
-
'.tint-
|
|
5316
|
-
'.tint-
|
|
5317
|
-
'.tint-
|
|
5318
|
-
'.tint-
|
|
5319
|
-
'.tint-
|
|
5320
|
-
'.tint-
|
|
5321
|
-
'.tint-neutral-
|
|
5322
|
-
'.tint-neutral-
|
|
5323
|
-
'.tint-neutral-
|
|
5324
|
-
'.tint-
|
|
5325
|
-
'.tint-
|
|
5326
|
-
'.tint-
|
|
5327
|
-
'.tint-
|
|
5328
|
-
'.tint-
|
|
5329
|
-
'.tint-
|
|
5330
|
-
'.tint-
|
|
5331
|
-
'.tint-stone-
|
|
5332
|
-
'.tint-stone-
|
|
5333
|
-
'.tint-stone-
|
|
5334
|
-
'.tint-
|
|
5335
|
-
'.tint-
|
|
5336
|
-
'.tint-
|
|
5337
|
-
'.tint-
|
|
5338
|
-
'.tint-
|
|
5339
|
-
'.tint-
|
|
5340
|
-
'.tint-
|
|
5341
|
-
'.tint-red-
|
|
5342
|
-
'.tint-red-
|
|
5343
|
-
'.tint-red-
|
|
5344
|
-
'.tint-
|
|
5345
|
-
'.tint-
|
|
5346
|
-
'.tint-
|
|
5347
|
-
'.tint-
|
|
5348
|
-
'.tint-
|
|
5349
|
-
'.tint-
|
|
5350
|
-
'.tint-
|
|
5351
|
-
'.tint-orange-
|
|
5352
|
-
'.tint-orange-
|
|
5353
|
-
'.tint-orange-
|
|
5354
|
-
'.tint-
|
|
5355
|
-
'.tint-
|
|
5356
|
-
'.tint-
|
|
5357
|
-
'.tint-
|
|
5358
|
-
'.tint-
|
|
5359
|
-
'.tint-
|
|
5360
|
-
'.tint-
|
|
5361
|
-
'.tint-amber-
|
|
5362
|
-
'.tint-amber-
|
|
5363
|
-
'.tint-amber-
|
|
5364
|
-
'.tint-
|
|
5365
|
-
'.tint-
|
|
5366
|
-
'.tint-
|
|
5367
|
-
'.tint-
|
|
5368
|
-
'.tint-
|
|
5369
|
-
'.tint-
|
|
5370
|
-
'.tint-
|
|
5371
|
-
'.tint-yellow-
|
|
5372
|
-
'.tint-yellow-
|
|
5373
|
-
'.tint-yellow-
|
|
5374
|
-
'.tint-
|
|
5375
|
-
'.tint-
|
|
5376
|
-
'.tint-
|
|
5377
|
-
'.tint-
|
|
5378
|
-
'.tint-
|
|
5379
|
-
'.tint-
|
|
5380
|
-
'.tint-
|
|
5381
|
-
'.tint-lime-
|
|
5382
|
-
'.tint-lime-
|
|
5383
|
-
'.tint-lime-
|
|
5384
|
-
'.tint-
|
|
5385
|
-
'.tint-
|
|
5386
|
-
'.tint-
|
|
5387
|
-
'.tint-
|
|
5388
|
-
'.tint-
|
|
5389
|
-
'.tint-
|
|
5390
|
-
'.tint-
|
|
5391
|
-
'.tint-green-
|
|
5392
|
-
'.tint-green-
|
|
5393
|
-
'.tint-green-
|
|
5394
|
-
'.tint-
|
|
5395
|
-
'.tint-
|
|
5396
|
-
'.tint-
|
|
5397
|
-
'.tint-
|
|
5398
|
-
'.tint-
|
|
5399
|
-
'.tint-
|
|
5400
|
-
'.tint-
|
|
5401
|
-
'.tint-emerald-
|
|
5402
|
-
'.tint-emerald-
|
|
5403
|
-
'.tint-emerald-
|
|
5404
|
-
'.tint-
|
|
5405
|
-
'.tint-
|
|
5406
|
-
'.tint-
|
|
5407
|
-
'.tint-
|
|
5408
|
-
'.tint-
|
|
5409
|
-
'.tint-
|
|
5410
|
-
'.tint-
|
|
5411
|
-
'.tint-teal-
|
|
5412
|
-
'.tint-teal-
|
|
5413
|
-
'.tint-teal-
|
|
5414
|
-
'.tint-
|
|
5415
|
-
'.tint-
|
|
5416
|
-
'.tint-
|
|
5417
|
-
'.tint-
|
|
5418
|
-
'.tint-
|
|
5419
|
-
'.tint-
|
|
5420
|
-
'.tint-
|
|
5421
|
-
'.tint-cyan-
|
|
5422
|
-
'.tint-cyan-
|
|
5423
|
-
'.tint-cyan-
|
|
5424
|
-
'.tint-
|
|
5425
|
-
'.tint-
|
|
5426
|
-
'.tint-
|
|
5427
|
-
'.tint-
|
|
5428
|
-
'.tint-
|
|
5429
|
-
'.tint-
|
|
5430
|
-
'.tint-
|
|
5431
|
-
'.tint-sky-
|
|
5432
|
-
'.tint-sky-
|
|
5433
|
-
'.tint-sky-
|
|
5434
|
-
'.tint-
|
|
5435
|
-
'.tint-
|
|
5436
|
-
'.tint-
|
|
5437
|
-
'.tint-
|
|
5438
|
-
'.tint-
|
|
5439
|
-
'.tint-
|
|
5440
|
-
'.tint-
|
|
5441
|
-
'.tint-blue-
|
|
5442
|
-
'.tint-blue-
|
|
5443
|
-
'.tint-blue-
|
|
5444
|
-
'.tint-
|
|
5445
|
-
'.tint-
|
|
5446
|
-
'.tint-
|
|
5447
|
-
'.tint-
|
|
5448
|
-
'.tint-
|
|
5449
|
-
'.tint-
|
|
5450
|
-
'.tint-
|
|
5451
|
-
'.tint-indigo-
|
|
5452
|
-
'.tint-indigo-
|
|
5453
|
-
'.tint-indigo-
|
|
5454
|
-
'.tint-
|
|
5455
|
-
'.tint-
|
|
5456
|
-
'.tint-
|
|
5457
|
-
'.tint-
|
|
5458
|
-
'.tint-
|
|
5459
|
-
'.tint-
|
|
5460
|
-
'.tint-
|
|
5461
|
-
'.tint-violet-
|
|
5462
|
-
'.tint-violet-
|
|
5463
|
-
'.tint-violet-
|
|
5464
|
-
'.tint-
|
|
5465
|
-
'.tint-
|
|
5466
|
-
'.tint-
|
|
5467
|
-
'.tint-
|
|
5468
|
-
'.tint-
|
|
5469
|
-
'.tint-
|
|
5470
|
-
'.tint-
|
|
5471
|
-
'.tint-purple-
|
|
5472
|
-
'.tint-purple-
|
|
5473
|
-
'.tint-purple-
|
|
5474
|
-
'.tint-
|
|
5475
|
-
'.tint-
|
|
5476
|
-
'.tint-
|
|
5477
|
-
'.tint-
|
|
5478
|
-
'.tint-
|
|
5479
|
-
'.tint-
|
|
5480
|
-
'.tint-
|
|
5481
|
-
'.tint-fuchsia-
|
|
5482
|
-
'.tint-fuchsia-
|
|
5483
|
-
'.tint-fuchsia-
|
|
5484
|
-
'.tint-
|
|
5485
|
-
'.tint-
|
|
5486
|
-
'.tint-
|
|
5487
|
-
'.tint-
|
|
5488
|
-
'.tint-
|
|
5489
|
-
'.tint-
|
|
5490
|
-
'.tint-
|
|
5491
|
-
'.tint-pink-
|
|
5492
|
-
'.tint-pink-
|
|
5493
|
-
'.tint-pink-
|
|
5494
|
-
'.tint-
|
|
5495
|
-
'.tint-
|
|
5496
|
-
'.tint-
|
|
5497
|
-
'.tint-
|
|
5498
|
-
'.tint-
|
|
5499
|
-
'.tint-
|
|
5500
|
-
'.tint-
|
|
5501
|
-
'.tint-rose-
|
|
5502
|
-
'.tint-rose-
|
|
5503
|
-
'.tint-rose-
|
|
5504
|
-
|
|
5505
|
-
|
|
8060
|
+
// Component(s): Ti.Media.VideoPlayer
|
|
8061
|
+
// Property(ies): repeatMode
|
|
8062
|
+
// Description: Determines how the movie player repeats when reaching the end of playback.
|
|
8063
|
+
'.video-repeat-one': { repeatMode: Ti.Media.VIDEO_REPEAT_MODE_ONE }
|
|
8064
|
+
'.video-repeat-none': { repeatMode: Ti.Media.VIDEO_REPEAT_MODE_NONE }
|
|
8065
|
+
|
|
8066
|
+
// Component(s): Ti.UI, Ti.UI.AlertDialog, Ti.UI.Button, Ti.UI.ImageView, Ti.UI.iOS.Stepper, Ti.UI.ProgressBar, Ti.UI.RefreshControll, Ti.UI.Slider, Ti.UI.Switch, and `tint` for Ti.UI.MaskedImage
|
|
8067
|
+
// Property(ies): tint and tintColor
|
|
8068
|
+
'.tint-transparent': { tint: 'transparent', tintColor: 'transparent' }
|
|
8069
|
+
'.tint-black': { tint: '#000000', tintColor: '#000000' }
|
|
8070
|
+
'.tint-white': { tint: '#ffffff', tintColor: '#ffffff' }
|
|
8071
|
+
'.tint-slate-50': { tint: '#f8fafc', tintColor: '#f8fafc' }
|
|
8072
|
+
'.tint-slate-100': { tint: '#f1f5f9', tintColor: '#f1f5f9' }
|
|
8073
|
+
'.tint-slate-200': { tint: '#e2e8f0', tintColor: '#e2e8f0' }
|
|
8074
|
+
'.tint-slate-300': { tint: '#cbd5e1', tintColor: '#cbd5e1' }
|
|
8075
|
+
'.tint-slate-400': { tint: '#94a3b8', tintColor: '#94a3b8' }
|
|
8076
|
+
'.tint-slate-500': { tint: '#64748b', tintColor: '#64748b' }
|
|
8077
|
+
'.tint-slate-600': { tint: '#475569', tintColor: '#475569' }
|
|
8078
|
+
'.tint-slate-700': { tint: '#334155', tintColor: '#334155' }
|
|
8079
|
+
'.tint-slate-800': { tint: '#1e293b', tintColor: '#1e293b' }
|
|
8080
|
+
'.tint-slate-900': { tint: '#0f172a', tintColor: '#0f172a' }
|
|
8081
|
+
'.tint-gray-50': { tint: '#f9fafb', tintColor: '#f9fafb' }
|
|
8082
|
+
'.tint-gray-100': { tint: '#f3f4f6', tintColor: '#f3f4f6' }
|
|
8083
|
+
'.tint-gray-200': { tint: '#e5e7eb', tintColor: '#e5e7eb' }
|
|
8084
|
+
'.tint-gray-300': { tint: '#d1d5db', tintColor: '#d1d5db' }
|
|
8085
|
+
'.tint-gray-400': { tint: '#9ca3af', tintColor: '#9ca3af' }
|
|
8086
|
+
'.tint-gray-500': { tint: '#6b7280', tintColor: '#6b7280' }
|
|
8087
|
+
'.tint-gray-600': { tint: '#4b5563', tintColor: '#4b5563' }
|
|
8088
|
+
'.tint-gray-700': { tint: '#374151', tintColor: '#374151' }
|
|
8089
|
+
'.tint-gray-800': { tint: '#1f2937', tintColor: '#1f2937' }
|
|
8090
|
+
'.tint-gray-900': { tint: '#111827', tintColor: '#111827' }
|
|
8091
|
+
'.tint-zinc-50': { tint: '#fafafa', tintColor: '#fafafa' }
|
|
8092
|
+
'.tint-zinc-100': { tint: '#f4f4f5', tintColor: '#f4f4f5' }
|
|
8093
|
+
'.tint-zinc-200': { tint: '#e4e4e7', tintColor: '#e4e4e7' }
|
|
8094
|
+
'.tint-zinc-300': { tint: '#d4d4d8', tintColor: '#d4d4d8' }
|
|
8095
|
+
'.tint-zinc-400': { tint: '#a1a1aa', tintColor: '#a1a1aa' }
|
|
8096
|
+
'.tint-zinc-500': { tint: '#71717a', tintColor: '#71717a' }
|
|
8097
|
+
'.tint-zinc-600': { tint: '#52525b', tintColor: '#52525b' }
|
|
8098
|
+
'.tint-zinc-700': { tint: '#3f3f46', tintColor: '#3f3f46' }
|
|
8099
|
+
'.tint-zinc-800': { tint: '#27272a', tintColor: '#27272a' }
|
|
8100
|
+
'.tint-zinc-900': { tint: '#18181b', tintColor: '#18181b' }
|
|
8101
|
+
'.tint-neutral-50': { tint: '#fafafa', tintColor: '#fafafa' }
|
|
8102
|
+
'.tint-neutral-100': { tint: '#f5f5f5', tintColor: '#f5f5f5' }
|
|
8103
|
+
'.tint-neutral-200': { tint: '#e5e5e5', tintColor: '#e5e5e5' }
|
|
8104
|
+
'.tint-neutral-300': { tint: '#d4d4d4', tintColor: '#d4d4d4' }
|
|
8105
|
+
'.tint-neutral-400': { tint: '#a3a3a3', tintColor: '#a3a3a3' }
|
|
8106
|
+
'.tint-neutral-500': { tint: '#737373', tintColor: '#737373' }
|
|
8107
|
+
'.tint-neutral-600': { tint: '#525252', tintColor: '#525252' }
|
|
8108
|
+
'.tint-neutral-700': { tint: '#404040', tintColor: '#404040' }
|
|
8109
|
+
'.tint-neutral-800': { tint: '#262626', tintColor: '#262626' }
|
|
8110
|
+
'.tint-neutral-900': { tint: '#171717', tintColor: '#171717' }
|
|
8111
|
+
'.tint-stone-50': { tint: '#fafaf9', tintColor: '#fafaf9' }
|
|
8112
|
+
'.tint-stone-100': { tint: '#f5f5f4', tintColor: '#f5f5f4' }
|
|
8113
|
+
'.tint-stone-200': { tint: '#e7e5e4', tintColor: '#e7e5e4' }
|
|
8114
|
+
'.tint-stone-300': { tint: '#d6d3d1', tintColor: '#d6d3d1' }
|
|
8115
|
+
'.tint-stone-400': { tint: '#a8a29e', tintColor: '#a8a29e' }
|
|
8116
|
+
'.tint-stone-500': { tint: '#78716c', tintColor: '#78716c' }
|
|
8117
|
+
'.tint-stone-600': { tint: '#57534e', tintColor: '#57534e' }
|
|
8118
|
+
'.tint-stone-700': { tint: '#44403c', tintColor: '#44403c' }
|
|
8119
|
+
'.tint-stone-800': { tint: '#292524', tintColor: '#292524' }
|
|
8120
|
+
'.tint-stone-900': { tint: '#1c1917', tintColor: '#1c1917' }
|
|
8121
|
+
'.tint-red-50': { tint: '#fef2f2', tintColor: '#fef2f2' }
|
|
8122
|
+
'.tint-red-100': { tint: '#fee2e2', tintColor: '#fee2e2' }
|
|
8123
|
+
'.tint-red-200': { tint: '#fecaca', tintColor: '#fecaca' }
|
|
8124
|
+
'.tint-red-300': { tint: '#fca5a5', tintColor: '#fca5a5' }
|
|
8125
|
+
'.tint-red-400': { tint: '#f87171', tintColor: '#f87171' }
|
|
8126
|
+
'.tint-red-500': { tint: '#ef4444', tintColor: '#ef4444' }
|
|
8127
|
+
'.tint-red-600': { tint: '#dc2626', tintColor: '#dc2626' }
|
|
8128
|
+
'.tint-red-700': { tint: '#b91c1c', tintColor: '#b91c1c' }
|
|
8129
|
+
'.tint-red-800': { tint: '#991b1b', tintColor: '#991b1b' }
|
|
8130
|
+
'.tint-red-900': { tint: '#7f1d1d', tintColor: '#7f1d1d' }
|
|
8131
|
+
'.tint-orange-50': { tint: '#fff7ed', tintColor: '#fff7ed' }
|
|
8132
|
+
'.tint-orange-100': { tint: '#ffedd5', tintColor: '#ffedd5' }
|
|
8133
|
+
'.tint-orange-200': { tint: '#fed7aa', tintColor: '#fed7aa' }
|
|
8134
|
+
'.tint-orange-300': { tint: '#fdba74', tintColor: '#fdba74' }
|
|
8135
|
+
'.tint-orange-400': { tint: '#fb923c', tintColor: '#fb923c' }
|
|
8136
|
+
'.tint-orange-500': { tint: '#f97316', tintColor: '#f97316' }
|
|
8137
|
+
'.tint-orange-600': { tint: '#ea580c', tintColor: '#ea580c' }
|
|
8138
|
+
'.tint-orange-700': { tint: '#c2410c', tintColor: '#c2410c' }
|
|
8139
|
+
'.tint-orange-800': { tint: '#9a3412', tintColor: '#9a3412' }
|
|
8140
|
+
'.tint-orange-900': { tint: '#7c2d12', tintColor: '#7c2d12' }
|
|
8141
|
+
'.tint-amber-50': { tint: '#fffbeb', tintColor: '#fffbeb' }
|
|
8142
|
+
'.tint-amber-100': { tint: '#fef3c7', tintColor: '#fef3c7' }
|
|
8143
|
+
'.tint-amber-200': { tint: '#fde68a', tintColor: '#fde68a' }
|
|
8144
|
+
'.tint-amber-300': { tint: '#fcd34d', tintColor: '#fcd34d' }
|
|
8145
|
+
'.tint-amber-400': { tint: '#fbbf24', tintColor: '#fbbf24' }
|
|
8146
|
+
'.tint-amber-500': { tint: '#f59e0b', tintColor: '#f59e0b' }
|
|
8147
|
+
'.tint-amber-600': { tint: '#d97706', tintColor: '#d97706' }
|
|
8148
|
+
'.tint-amber-700': { tint: '#b45309', tintColor: '#b45309' }
|
|
8149
|
+
'.tint-amber-800': { tint: '#92400e', tintColor: '#92400e' }
|
|
8150
|
+
'.tint-amber-900': { tint: '#78350f', tintColor: '#78350f' }
|
|
8151
|
+
'.tint-yellow-50': { tint: '#fefce8', tintColor: '#fefce8' }
|
|
8152
|
+
'.tint-yellow-100': { tint: '#fef9c3', tintColor: '#fef9c3' }
|
|
8153
|
+
'.tint-yellow-200': { tint: '#fef08a', tintColor: '#fef08a' }
|
|
8154
|
+
'.tint-yellow-300': { tint: '#fde047', tintColor: '#fde047' }
|
|
8155
|
+
'.tint-yellow-400': { tint: '#facc15', tintColor: '#facc15' }
|
|
8156
|
+
'.tint-yellow-500': { tint: '#eab308', tintColor: '#eab308' }
|
|
8157
|
+
'.tint-yellow-600': { tint: '#ca8a04', tintColor: '#ca8a04' }
|
|
8158
|
+
'.tint-yellow-700': { tint: '#a16207', tintColor: '#a16207' }
|
|
8159
|
+
'.tint-yellow-800': { tint: '#854d0e', tintColor: '#854d0e' }
|
|
8160
|
+
'.tint-yellow-900': { tint: '#713f12', tintColor: '#713f12' }
|
|
8161
|
+
'.tint-lime-50': { tint: '#f7fee7', tintColor: '#f7fee7' }
|
|
8162
|
+
'.tint-lime-100': { tint: '#ecfccb', tintColor: '#ecfccb' }
|
|
8163
|
+
'.tint-lime-200': { tint: '#d9f99d', tintColor: '#d9f99d' }
|
|
8164
|
+
'.tint-lime-300': { tint: '#bef264', tintColor: '#bef264' }
|
|
8165
|
+
'.tint-lime-400': { tint: '#a3e635', tintColor: '#a3e635' }
|
|
8166
|
+
'.tint-lime-500': { tint: '#84cc16', tintColor: '#84cc16' }
|
|
8167
|
+
'.tint-lime-600': { tint: '#65a30d', tintColor: '#65a30d' }
|
|
8168
|
+
'.tint-lime-700': { tint: '#4d7c0f', tintColor: '#4d7c0f' }
|
|
8169
|
+
'.tint-lime-800': { tint: '#3f6212', tintColor: '#3f6212' }
|
|
8170
|
+
'.tint-lime-900': { tint: '#365314', tintColor: '#365314' }
|
|
8171
|
+
'.tint-green-50': { tint: '#f0fdf4', tintColor: '#f0fdf4' }
|
|
8172
|
+
'.tint-green-100': { tint: '#dcfce7', tintColor: '#dcfce7' }
|
|
8173
|
+
'.tint-green-200': { tint: '#bbf7d0', tintColor: '#bbf7d0' }
|
|
8174
|
+
'.tint-green-300': { tint: '#86efac', tintColor: '#86efac' }
|
|
8175
|
+
'.tint-green-400': { tint: '#4ade80', tintColor: '#4ade80' }
|
|
8176
|
+
'.tint-green-500': { tint: '#22c55e', tintColor: '#22c55e' }
|
|
8177
|
+
'.tint-green-600': { tint: '#16a34a', tintColor: '#16a34a' }
|
|
8178
|
+
'.tint-green-700': { tint: '#15803d', tintColor: '#15803d' }
|
|
8179
|
+
'.tint-green-800': { tint: '#166534', tintColor: '#166534' }
|
|
8180
|
+
'.tint-green-900': { tint: '#14532d', tintColor: '#14532d' }
|
|
8181
|
+
'.tint-emerald-50': { tint: '#ecfdf5', tintColor: '#ecfdf5' }
|
|
8182
|
+
'.tint-emerald-100': { tint: '#d1fae5', tintColor: '#d1fae5' }
|
|
8183
|
+
'.tint-emerald-200': { tint: '#a7f3d0', tintColor: '#a7f3d0' }
|
|
8184
|
+
'.tint-emerald-300': { tint: '#6ee7b7', tintColor: '#6ee7b7' }
|
|
8185
|
+
'.tint-emerald-400': { tint: '#34d399', tintColor: '#34d399' }
|
|
8186
|
+
'.tint-emerald-500': { tint: '#10b981', tintColor: '#10b981' }
|
|
8187
|
+
'.tint-emerald-600': { tint: '#059669', tintColor: '#059669' }
|
|
8188
|
+
'.tint-emerald-700': { tint: '#047857', tintColor: '#047857' }
|
|
8189
|
+
'.tint-emerald-800': { tint: '#065f46', tintColor: '#065f46' }
|
|
8190
|
+
'.tint-emerald-900': { tint: '#064e3b', tintColor: '#064e3b' }
|
|
8191
|
+
'.tint-teal-50': { tint: '#f0fdfa', tintColor: '#f0fdfa' }
|
|
8192
|
+
'.tint-teal-100': { tint: '#ccfbf1', tintColor: '#ccfbf1' }
|
|
8193
|
+
'.tint-teal-200': { tint: '#99f6e4', tintColor: '#99f6e4' }
|
|
8194
|
+
'.tint-teal-300': { tint: '#5eead4', tintColor: '#5eead4' }
|
|
8195
|
+
'.tint-teal-400': { tint: '#2dd4bf', tintColor: '#2dd4bf' }
|
|
8196
|
+
'.tint-teal-500': { tint: '#14b8a6', tintColor: '#14b8a6' }
|
|
8197
|
+
'.tint-teal-600': { tint: '#0d9488', tintColor: '#0d9488' }
|
|
8198
|
+
'.tint-teal-700': { tint: '#0f766e', tintColor: '#0f766e' }
|
|
8199
|
+
'.tint-teal-800': { tint: '#115e59', tintColor: '#115e59' }
|
|
8200
|
+
'.tint-teal-900': { tint: '#134e4a', tintColor: '#134e4a' }
|
|
8201
|
+
'.tint-cyan-50': { tint: '#ecfeff', tintColor: '#ecfeff' }
|
|
8202
|
+
'.tint-cyan-100': { tint: '#cffafe', tintColor: '#cffafe' }
|
|
8203
|
+
'.tint-cyan-200': { tint: '#a5f3fc', tintColor: '#a5f3fc' }
|
|
8204
|
+
'.tint-cyan-300': { tint: '#67e8f9', tintColor: '#67e8f9' }
|
|
8205
|
+
'.tint-cyan-400': { tint: '#22d3ee', tintColor: '#22d3ee' }
|
|
8206
|
+
'.tint-cyan-500': { tint: '#06b6d4', tintColor: '#06b6d4' }
|
|
8207
|
+
'.tint-cyan-600': { tint: '#0891b2', tintColor: '#0891b2' }
|
|
8208
|
+
'.tint-cyan-700': { tint: '#0e7490', tintColor: '#0e7490' }
|
|
8209
|
+
'.tint-cyan-800': { tint: '#155e75', tintColor: '#155e75' }
|
|
8210
|
+
'.tint-cyan-900': { tint: '#164e63', tintColor: '#164e63' }
|
|
8211
|
+
'.tint-sky-50': { tint: '#f0f9ff', tintColor: '#f0f9ff' }
|
|
8212
|
+
'.tint-sky-100': { tint: '#e0f2fe', tintColor: '#e0f2fe' }
|
|
8213
|
+
'.tint-sky-200': { tint: '#bae6fd', tintColor: '#bae6fd' }
|
|
8214
|
+
'.tint-sky-300': { tint: '#7dd3fc', tintColor: '#7dd3fc' }
|
|
8215
|
+
'.tint-sky-400': { tint: '#38bdf8', tintColor: '#38bdf8' }
|
|
8216
|
+
'.tint-sky-500': { tint: '#0ea5e9', tintColor: '#0ea5e9' }
|
|
8217
|
+
'.tint-sky-600': { tint: '#0284c7', tintColor: '#0284c7' }
|
|
8218
|
+
'.tint-sky-700': { tint: '#0369a1', tintColor: '#0369a1' }
|
|
8219
|
+
'.tint-sky-800': { tint: '#075985', tintColor: '#075985' }
|
|
8220
|
+
'.tint-sky-900': { tint: '#0c4a6e', tintColor: '#0c4a6e' }
|
|
8221
|
+
'.tint-blue-50': { tint: '#eff6ff', tintColor: '#eff6ff' }
|
|
8222
|
+
'.tint-blue-100': { tint: '#dbeafe', tintColor: '#dbeafe' }
|
|
8223
|
+
'.tint-blue-200': { tint: '#bfdbfe', tintColor: '#bfdbfe' }
|
|
8224
|
+
'.tint-blue-300': { tint: '#93c5fd', tintColor: '#93c5fd' }
|
|
8225
|
+
'.tint-blue-400': { tint: '#60a5fa', tintColor: '#60a5fa' }
|
|
8226
|
+
'.tint-blue-500': { tint: '#3b82f6', tintColor: '#3b82f6' }
|
|
8227
|
+
'.tint-blue-600': { tint: '#2563eb', tintColor: '#2563eb' }
|
|
8228
|
+
'.tint-blue-700': { tint: '#1d4ed8', tintColor: '#1d4ed8' }
|
|
8229
|
+
'.tint-blue-800': { tint: '#1e40af', tintColor: '#1e40af' }
|
|
8230
|
+
'.tint-blue-900': { tint: '#1e3a8a', tintColor: '#1e3a8a' }
|
|
8231
|
+
'.tint-indigo-50': { tint: '#eef2ff', tintColor: '#eef2ff' }
|
|
8232
|
+
'.tint-indigo-100': { tint: '#e0e7ff', tintColor: '#e0e7ff' }
|
|
8233
|
+
'.tint-indigo-200': { tint: '#c7d2fe', tintColor: '#c7d2fe' }
|
|
8234
|
+
'.tint-indigo-300': { tint: '#a5b4fc', tintColor: '#a5b4fc' }
|
|
8235
|
+
'.tint-indigo-400': { tint: '#818cf8', tintColor: '#818cf8' }
|
|
8236
|
+
'.tint-indigo-500': { tint: '#6366f1', tintColor: '#6366f1' }
|
|
8237
|
+
'.tint-indigo-600': { tint: '#4f46e5', tintColor: '#4f46e5' }
|
|
8238
|
+
'.tint-indigo-700': { tint: '#4338ca', tintColor: '#4338ca' }
|
|
8239
|
+
'.tint-indigo-800': { tint: '#3730a3', tintColor: '#3730a3' }
|
|
8240
|
+
'.tint-indigo-900': { tint: '#312e81', tintColor: '#312e81' }
|
|
8241
|
+
'.tint-violet-50': { tint: '#f5f3ff', tintColor: '#f5f3ff' }
|
|
8242
|
+
'.tint-violet-100': { tint: '#ede9fe', tintColor: '#ede9fe' }
|
|
8243
|
+
'.tint-violet-200': { tint: '#ddd6fe', tintColor: '#ddd6fe' }
|
|
8244
|
+
'.tint-violet-300': { tint: '#c4b5fd', tintColor: '#c4b5fd' }
|
|
8245
|
+
'.tint-violet-400': { tint: '#a78bfa', tintColor: '#a78bfa' }
|
|
8246
|
+
'.tint-violet-500': { tint: '#8b5cf6', tintColor: '#8b5cf6' }
|
|
8247
|
+
'.tint-violet-600': { tint: '#7c3aed', tintColor: '#7c3aed' }
|
|
8248
|
+
'.tint-violet-700': { tint: '#6d28d9', tintColor: '#6d28d9' }
|
|
8249
|
+
'.tint-violet-800': { tint: '#5b21b6', tintColor: '#5b21b6' }
|
|
8250
|
+
'.tint-violet-900': { tint: '#4c1d95', tintColor: '#4c1d95' }
|
|
8251
|
+
'.tint-purple-50': { tint: '#faf5ff', tintColor: '#faf5ff' }
|
|
8252
|
+
'.tint-purple-100': { tint: '#f3e8ff', tintColor: '#f3e8ff' }
|
|
8253
|
+
'.tint-purple-200': { tint: '#e9d5ff', tintColor: '#e9d5ff' }
|
|
8254
|
+
'.tint-purple-300': { tint: '#d8b4fe', tintColor: '#d8b4fe' }
|
|
8255
|
+
'.tint-purple-400': { tint: '#c084fc', tintColor: '#c084fc' }
|
|
8256
|
+
'.tint-purple-500': { tint: '#a855f7', tintColor: '#a855f7' }
|
|
8257
|
+
'.tint-purple-600': { tint: '#9333ea', tintColor: '#9333ea' }
|
|
8258
|
+
'.tint-purple-700': { tint: '#7e22ce', tintColor: '#7e22ce' }
|
|
8259
|
+
'.tint-purple-800': { tint: '#6b21a8', tintColor: '#6b21a8' }
|
|
8260
|
+
'.tint-purple-900': { tint: '#581c87', tintColor: '#581c87' }
|
|
8261
|
+
'.tint-fuchsia-50': { tint: '#fdf4ff', tintColor: '#fdf4ff' }
|
|
8262
|
+
'.tint-fuchsia-100': { tint: '#fae8ff', tintColor: '#fae8ff' }
|
|
8263
|
+
'.tint-fuchsia-200': { tint: '#f5d0fe', tintColor: '#f5d0fe' }
|
|
8264
|
+
'.tint-fuchsia-300': { tint: '#f0abfc', tintColor: '#f0abfc' }
|
|
8265
|
+
'.tint-fuchsia-400': { tint: '#e879f9', tintColor: '#e879f9' }
|
|
8266
|
+
'.tint-fuchsia-500': { tint: '#d946ef', tintColor: '#d946ef' }
|
|
8267
|
+
'.tint-fuchsia-600': { tint: '#c026d3', tintColor: '#c026d3' }
|
|
8268
|
+
'.tint-fuchsia-700': { tint: '#a21caf', tintColor: '#a21caf' }
|
|
8269
|
+
'.tint-fuchsia-800': { tint: '#86198f', tintColor: '#86198f' }
|
|
8270
|
+
'.tint-fuchsia-900': { tint: '#701a75', tintColor: '#701a75' }
|
|
8271
|
+
'.tint-pink-50': { tint: '#fdf2f8', tintColor: '#fdf2f8' }
|
|
8272
|
+
'.tint-pink-100': { tint: '#fce7f3', tintColor: '#fce7f3' }
|
|
8273
|
+
'.tint-pink-200': { tint: '#fbcfe8', tintColor: '#fbcfe8' }
|
|
8274
|
+
'.tint-pink-300': { tint: '#f9a8d4', tintColor: '#f9a8d4' }
|
|
8275
|
+
'.tint-pink-400': { tint: '#f472b6', tintColor: '#f472b6' }
|
|
8276
|
+
'.tint-pink-500': { tint: '#ec4899', tintColor: '#ec4899' }
|
|
8277
|
+
'.tint-pink-600': { tint: '#db2777', tintColor: '#db2777' }
|
|
8278
|
+
'.tint-pink-700': { tint: '#be185d', tintColor: '#be185d' }
|
|
8279
|
+
'.tint-pink-800': { tint: '#9d174d', tintColor: '#9d174d' }
|
|
8280
|
+
'.tint-pink-900': { tint: '#831843', tintColor: '#831843' }
|
|
8281
|
+
'.tint-rose-50': { tint: '#fff1f2', tintColor: '#fff1f2' }
|
|
8282
|
+
'.tint-rose-100': { tint: '#ffe4e6', tintColor: '#ffe4e6' }
|
|
8283
|
+
'.tint-rose-200': { tint: '#fecdd3', tintColor: '#fecdd3' }
|
|
8284
|
+
'.tint-rose-300': { tint: '#fda4af', tintColor: '#fda4af' }
|
|
8285
|
+
'.tint-rose-400': { tint: '#fb7185', tintColor: '#fb7185' }
|
|
8286
|
+
'.tint-rose-500': { tint: '#f43f5e', tintColor: '#f43f5e' }
|
|
8287
|
+
'.tint-rose-600': { tint: '#e11d48', tintColor: '#e11d48' }
|
|
8288
|
+
'.tint-rose-700': { tint: '#be123c', tintColor: '#be123c' }
|
|
8289
|
+
'.tint-rose-800': { tint: '#9f1239', tintColor: '#9f1239' }
|
|
8290
|
+
'.tint-rose-900': { tint: '#881337', tintColor: '#881337' }
|
|
8291
|
+
|
|
8292
|
+
// Component(s): Ti.UI.Tab, Ti.UI.TabGroup
|
|
8293
|
+
// Property(ies): titleColor
|
|
5506
8294
|
'.title-transparent': { titleColor: 'transparent' }
|
|
5507
8295
|
'.title-black': { titleColor: '#000000' }
|
|
5508
8296
|
'.title-white': { titleColor: '#ffffff' }
|
|
@@ -5727,7 +8515,8 @@
|
|
|
5727
8515
|
'.title-rose-800': { titleColor: '#9f1239' }
|
|
5728
8516
|
'.title-rose-900': { titleColor: '#881337' }
|
|
5729
8517
|
|
|
5730
|
-
//
|
|
8518
|
+
// Component(s): Ti.UI.View
|
|
8519
|
+
// Property(ies): touchFeedbackColor
|
|
5731
8520
|
'.feedback-transparent': { touchFeedback: true, touchFeedbackColor: 'transparent' }
|
|
5732
8521
|
'.feedback-black': { touchFeedback: true, touchFeedbackColor: '#000000' }
|
|
5733
8522
|
'.feedback-white': { touchFeedback: true, touchFeedbackColor: '#ffffff' }
|
|
@@ -5952,17 +8741,18 @@
|
|
|
5952
8741
|
'.feedback-rose-800': { touchFeedback: true, touchFeedbackColor: '#9f1239' }
|
|
5953
8742
|
'.feedback-rose-900': { touchFeedback: true, touchFeedbackColor: '#881337' }
|
|
5954
8743
|
|
|
5955
|
-
//
|
|
8744
|
+
// Component(s): Ti.UI.Animation
|
|
8745
|
+
// Property(ies): curve
|
|
5956
8746
|
'.ease-in': { curve: Ti.UI.ANIMATION_CURVE_EASE_IN }
|
|
5957
8747
|
'.ease-out': { curve: Ti.UI.ANIMATION_CURVE_EASE_OUT }
|
|
5958
8748
|
'.ease-linear': { curve: Ti.UI.ANIMATION_CURVE_LINEAR }
|
|
5959
8749
|
'.ease-in-out': { curve: Ti.UI.ANIMATION_CURVE_EASE_IN_OUT }
|
|
5960
8750
|
|
|
5961
|
-
//
|
|
5962
|
-
'.debug
|
|
5963
|
-
'.debug-off': { debug: false }
|
|
8751
|
+
// debug
|
|
8752
|
+
'.debug': { debug: true }
|
|
5964
8753
|
|
|
5965
|
-
//
|
|
8754
|
+
// Component(s): Ti.UI.Animation
|
|
8755
|
+
// Property(ies): delay
|
|
5966
8756
|
'.delay-0': { delay: 0 }
|
|
5967
8757
|
'.delay-25': { delay: 25 }
|
|
5968
8758
|
'.delay-50': { delay: 50 }
|
|
@@ -5979,7 +8769,8 @@
|
|
|
5979
8769
|
'.delay-4000': { delay: 4000 }
|
|
5980
8770
|
'.delay-5000': { delay: 5000 }
|
|
5981
8771
|
|
|
5982
|
-
//
|
|
8772
|
+
// Component(s): Ti.UI.Animation
|
|
8773
|
+
// Property(ies): duration
|
|
5983
8774
|
'.duration-0': { duration: 0 }
|
|
5984
8775
|
'.duration-25': { duration: 25 }
|
|
5985
8776
|
'.duration-50': { duration: 50 }
|
|
@@ -5993,12 +8784,24 @@
|
|
|
5993
8784
|
'.duration-1000': { duration: 1000 }
|
|
5994
8785
|
'.duration': { duration: 150 }
|
|
5995
8786
|
|
|
5996
|
-
//
|
|
8787
|
+
// Component(s): Ti.UI.iOS.Toolbar, Ti.UI.TabGroup, Ti.UI.Toolbar, Ti.UI.Window
|
|
8788
|
+
// Property(ies): translucent - iOS Only
|
|
8789
|
+
'.translucent[platform=ios]': { translucent: true }
|
|
8790
|
+
'.translucent-disabled[platform=ios]': { translucent: false }
|
|
8791
|
+
|
|
8792
|
+
// Component(s): Ti.UI.Picker
|
|
8793
|
+
// Property(ies): useSpinner
|
|
8794
|
+
'.use-spinner': { useSpinner: true }
|
|
8795
|
+
'.dont-use-spinner': { useSpinner: false }
|
|
8796
|
+
|
|
8797
|
+
// Component(s): Ti.UI.Button, Ti.UI.Label, Ti.UI.Switch, Ti.UI.TextArea, Ti.UI.TextField
|
|
8798
|
+
// Property(ies): verticalAlign
|
|
5997
8799
|
'.align-top': { verticalAlign: Ti.UI.TEXT_VERTICAL_ALIGNMENT_TOP }
|
|
5998
8800
|
'.align-middle': { verticalAlign: Ti.UI.TEXT_VERTICAL_ALIGNMENT_CENTER }
|
|
5999
8801
|
'.align-bottom': { verticalAlign: Ti.UI.TEXT_VERTICAL_ALIGNMENT_BOTTOM }
|
|
6000
8802
|
|
|
6001
|
-
//
|
|
8803
|
+
// Component(s): Ti.UI.ActivityIndicator, Ti.UI.Animation, Ti.UI.iPad.Popover, Ti.UI.ListItem, Ti.UI.View
|
|
8804
|
+
// Property(ies): width
|
|
6002
8805
|
'.w-0': { width: 0 }
|
|
6003
8806
|
'.w-1': { width: 4 }
|
|
6004
8807
|
'.w-2': { width: 8 }
|
|
@@ -6064,7 +8867,35 @@
|
|
|
6064
8867
|
'.w-full': { width: '100%' }
|
|
6065
8868
|
'.w-screen': { width: Ti.UI.FILL }
|
|
6066
8869
|
|
|
6067
|
-
//
|
|
8870
|
+
// Component(s): Ti.UI.Window
|
|
8871
|
+
// Property(ies): windowPixelFormat - Android Only
|
|
8872
|
+
'.pixel-format-a-8[platform=android]': { windowPixelFormat: Ti.UI.Android.PIXEL_FORMAT_A_8 }
|
|
8873
|
+
'.pixel-format-la-88[platform=android]': { windowPixelFormat: Ti.UI.Android.PIXEL_FORMAT_LA_88 }
|
|
8874
|
+
'.pixel-format-l-8[platform=android]': { windowPixelFormat: Ti.UI.Android.PIXEL_FORMAT_L_8 }
|
|
8875
|
+
'.pixel-format-opaque[platform=android]': { windowPixelFormat: Ti.UI.Android.PIXEL_FORMAT_OPAQUE }
|
|
8876
|
+
'.pixel-format-rgba-4444[platform=android]': { windowPixelFormat: Ti.UI.Android.PIXEL_FORMAT_RGBA_4444 }
|
|
8877
|
+
'.pixel-format-rgba-5551[platform=android]': { windowPixelFormat: Ti.UI.Android.PIXEL_FORMAT_RGBA_5551 }
|
|
8878
|
+
'.pixel-format-rgba-8888[platform=android]': { windowPixelFormat: Ti.UI.Android.PIXEL_FORMAT_RGBA_8888 }
|
|
8879
|
+
'.pixel-format-rgbx-8888[platform=android]': { windowPixelFormat: Ti.UI.Android.PIXEL_FORMAT_RGBX_8888 }
|
|
8880
|
+
'.pixel-format-rgb-332[platform=android]': { windowPixelFormat: Ti.UI.Android.PIXEL_FORMAT_RGB_332 }
|
|
8881
|
+
'.pixel-format-rgb-565[platform=android]': { windowPixelFormat: Ti.UI.Android.PIXEL_FORMAT_RGB_565 }
|
|
8882
|
+
'.pixel-format-rgb-888[platform=android]': { windowPixelFormat: Ti.UI.Android.PIXEL_FORMAT_RGB_888 }
|
|
8883
|
+
'.pixel-format-translucent[platform=android]': { windowPixelFormat: Ti.UI.Android.PIXEL_FORMAT_TRANSLUCENT }
|
|
8884
|
+
'.pixel-format-transparent[platform=android]': { windowPixelFormat: Ti.UI.Android.PIXEL_FORMAT_TRANSPARENT }
|
|
8885
|
+
'.pixel-format-unknown[platform=android]': { windowPixelFormat: Ti.UI.Android.PIXEL_FORMAT_UNKNOWN }
|
|
8886
|
+
|
|
8887
|
+
// Component(s): Ti.UI.TabGroup, Ti.UI.Window
|
|
8888
|
+
// Property(ies): windowSoftInputMode - Android Only
|
|
8889
|
+
'.window-soft-input-always-hidden[platform=android]': { windowSoftInputMode: Ti.UI.Android.SOFT_INPUT_STATE_ALWAYS_HIDDEN }
|
|
8890
|
+
'.window-soft-input-always-visible[platform=android]': { windowSoftInputMode: Ti.UI.Android.SOFT_INPUT_STATE_ALWAYS_VISIBLE }
|
|
8891
|
+
'.window-soft-input-hidden[platform=android]': { windowSoftInputMode: Ti.UI.Android.SOFT_INPUT_STATE_HIDDEN }
|
|
8892
|
+
'.window-soft-input-pan[platform=android]': { windowSoftInputMode: Ti.UI.Android.SOFT_INPUT_ADJUST_PAN }
|
|
8893
|
+
'.window-soft-input-resize[platform=android]': { windowSoftInputMode: Ti.UI.Android.SOFT_INPUT_ADJUST_RESIZE }
|
|
8894
|
+
'.window-soft-input-unspecified[platform=android]': { windowSoftInputMode: Ti.UI.Android.SOFT_INPUT_STATE_UNSPECIFIED }
|
|
8895
|
+
'.window-soft-input-visible[platform=android]': { windowSoftInputMode: Ti.UI.Android.SOFT_INPUT_STATE_VISIBLE }
|
|
8896
|
+
|
|
8897
|
+
// Component(s): Ti.UI.Animation, Ti.UI.View
|
|
8898
|
+
// Property(ies): zIndex
|
|
6068
8899
|
'.z-0': { zIndex: 0 }
|
|
6069
8900
|
'.z-10': { zIndex: 10 }
|
|
6070
8901
|
'.z-20': { zIndex: 20 }
|