cronapp-framework-mobile-js 4.0.1 → 4.0.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/css/app_2.9.css +1 -2
- package/dist/css/app_2.9.css +1 -1
- package/package.json +3 -26
- package/postupdate.json +189 -111
- package/css/custom-ionic.css +0 -236
- package/dist/css/custom-ionic.css +0 -1
- package/lib/ionic/css/ionic.css +0 -9802
- package/lib/ionic/css/ionic.min.css +0 -23
- package/lib/ionic/fonts/ionicons.eot +0 -0
- package/lib/ionic/fonts/ionicons.svg +0 -2230
- package/lib/ionic/fonts/ionicons.ttf +0 -0
- package/lib/ionic/fonts/ionicons.woff +0 -0
- package/lib/ionic/js/angular/angular-animate.js +0 -4115
- package/lib/ionic/js/angular/angular-animate.min.js +0 -56
- package/lib/ionic/js/angular/angular-resource.js +0 -768
- package/lib/ionic/js/angular/angular-resource.min.js +0 -15
- package/lib/ionic/js/angular/angular-sanitize.js +0 -717
- package/lib/ionic/js/angular/angular-sanitize.min.js +0 -15
- package/lib/ionic/js/angular/angular.js +0 -30714
- package/lib/ionic/js/angular/angular.min.js +0 -311
- package/lib/ionic/js/angular-ui/angular-ui-router.js +0 -4232
- package/lib/ionic/js/angular-ui/angular-ui-router.min.js +0 -7
- package/lib/ionic/js/ionic-angular.js +0 -14391
- package/lib/ionic/js/ionic-angular.min.js +0 -18
- package/lib/ionic/js/ionic.bundle.js +0 -67623
- package/lib/ionic/js/ionic.bundle.min.js +0 -472
- package/lib/ionic/js/ionic.js +0 -13356
- package/lib/ionic/js/ionic.min.js +0 -20
- package/lib/ionic/scss/_action-sheet.scss +0 -170
- package/lib/ionic/scss/_animations.scss +0 -48
- package/lib/ionic/scss/_backdrop.scss +0 -24
- package/lib/ionic/scss/_badge.scss +0 -62
- package/lib/ionic/scss/_bar.scss +0 -417
- package/lib/ionic/scss/_button-bar.scss +0 -92
- package/lib/ionic/scss/_button.scss +0 -252
- package/lib/ionic/scss/_checkbox.scss +0 -180
- package/lib/ionic/scss/_form.scss +0 -327
- package/lib/ionic/scss/_grid.scss +0 -159
- package/lib/ionic/scss/_items.scss +0 -825
- package/lib/ionic/scss/_list.scss +0 -125
- package/lib/ionic/scss/_loading.scss +0 -51
- package/lib/ionic/scss/_menu.scss +0 -70
- package/lib/ionic/scss/_mixins.scss +0 -642
- package/lib/ionic/scss/_modal.scss +0 -102
- package/lib/ionic/scss/_platform.scss +0 -77
- package/lib/ionic/scss/_popover.scss +0 -168
- package/lib/ionic/scss/_popup.scss +0 -110
- package/lib/ionic/scss/_progress.scss +0 -11
- package/lib/ionic/scss/_radio.scss +0 -47
- package/lib/ionic/scss/_range.scss +0 -160
- package/lib/ionic/scss/_refresher.scss +0 -113
- package/lib/ionic/scss/_reset.scss +0 -365
- package/lib/ionic/scss/_scaffolding.scss +0 -291
- package/lib/ionic/scss/_select.scss +0 -142
- package/lib/ionic/scss/_slide-box.scss +0 -71
- package/lib/ionic/scss/_slides.scss +0 -529
- package/lib/ionic/scss/_spinner.scss +0 -100
- package/lib/ionic/scss/_tabs.scss +0 -542
- package/lib/ionic/scss/_toggle.scss +0 -198
- package/lib/ionic/scss/_transitions.scss +0 -188
- package/lib/ionic/scss/_type.scss +0 -166
- package/lib/ionic/scss/_util.scss +0 -296
- package/lib/ionic/scss/_variables.scss +0 -764
- package/lib/ionic/scss/ionic.scss +0 -54
- package/lib/ionic/scss/ionicons/_ionicons-font.scss +0 -28
- package/lib/ionic/scss/ionicons/_ionicons-icons.scss +0 -1473
- package/lib/ionic/scss/ionicons/_ionicons-variables.scss +0 -741
- package/lib/ionic/scss/ionicons/ionicons.scss +0 -16
- package/lib/ionic/version.json +0 -6
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// Slide up from the bottom, used for modals
|
|
3
|
-
// -------------------------------
|
|
4
|
-
|
|
5
|
-
.slide-in-up {
|
|
6
|
-
@include translate3d(0, 100%, 0);
|
|
7
|
-
}
|
|
8
|
-
.slide-in-up.ng-enter,
|
|
9
|
-
.slide-in-up > .ng-enter {
|
|
10
|
-
@include transition(all cubic-bezier(.1, .7, .1, 1) 400ms);
|
|
11
|
-
}
|
|
12
|
-
.slide-in-up.ng-enter-active,
|
|
13
|
-
.slide-in-up > .ng-enter-active {
|
|
14
|
-
@include translate3d(0, 0, 0);
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.slide-in-up.ng-leave,
|
|
18
|
-
.slide-in-up > .ng-leave {
|
|
19
|
-
@include transition(all ease-in-out 250ms);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
// Scale Out
|
|
24
|
-
// Scale from hero (1 in this case) to zero
|
|
25
|
-
// -------------------------------
|
|
26
|
-
|
|
27
|
-
@-webkit-keyframes scaleOut {
|
|
28
|
-
from { -webkit-transform: scale(1); opacity: 1; }
|
|
29
|
-
to { -webkit-transform: scale(0.8); opacity: 0; }
|
|
30
|
-
}
|
|
31
|
-
@keyframes scaleOut {
|
|
32
|
-
from { transform: scale(1); opacity: 1; }
|
|
33
|
-
to { transform: scale(0.8); opacity: 0; }
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
// Super Scale In
|
|
38
|
-
// Scale from super (1.x) to duper (1 in this case)
|
|
39
|
-
// -------------------------------
|
|
40
|
-
|
|
41
|
-
@-webkit-keyframes superScaleIn {
|
|
42
|
-
from { -webkit-transform: scale(1.2); opacity: 0; }
|
|
43
|
-
to { -webkit-transform: scale(1); opacity: 1 }
|
|
44
|
-
}
|
|
45
|
-
@keyframes superScaleIn {
|
|
46
|
-
from { transform: scale(1.2); opacity: 0; }
|
|
47
|
-
to { transform: scale(1); opacity: 1; }
|
|
48
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
.backdrop {
|
|
3
|
-
position: fixed;
|
|
4
|
-
top: 0;
|
|
5
|
-
left: 0;
|
|
6
|
-
z-index: $z-index-backdrop;
|
|
7
|
-
|
|
8
|
-
width: 100%;
|
|
9
|
-
height: 100%;
|
|
10
|
-
|
|
11
|
-
background-color: $loading-backdrop-bg-color;
|
|
12
|
-
|
|
13
|
-
visibility: hidden;
|
|
14
|
-
opacity: 0;
|
|
15
|
-
|
|
16
|
-
&.visible {
|
|
17
|
-
visibility: visible;
|
|
18
|
-
}
|
|
19
|
-
&.active {
|
|
20
|
-
opacity: 1;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
@include transition($loading-backdrop-fadein-duration opacity linear);
|
|
24
|
-
}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* Badges
|
|
4
|
-
* --------------------------------------------------
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.badge {
|
|
8
|
-
@include badge-style($badge-default-bg, $badge-default-text);
|
|
9
|
-
z-index: $z-index-badge;
|
|
10
|
-
display: inline-block;
|
|
11
|
-
padding: 3px 8px;
|
|
12
|
-
min-width: 10px;
|
|
13
|
-
border-radius: $badge-border-radius;
|
|
14
|
-
vertical-align: baseline;
|
|
15
|
-
text-align: center;
|
|
16
|
-
white-space: nowrap;
|
|
17
|
-
font-weight: $badge-font-weight;
|
|
18
|
-
font-size: $badge-font-size;
|
|
19
|
-
line-height: $badge-line-height;
|
|
20
|
-
|
|
21
|
-
&:empty {
|
|
22
|
-
display: none;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
//Be sure to override specificity of rule that 'badge color matches tab color by default'
|
|
27
|
-
.tabs .tab-item .badge,
|
|
28
|
-
.badge {
|
|
29
|
-
&.badge-light {
|
|
30
|
-
@include badge-style($badge-light-bg, $badge-light-text);
|
|
31
|
-
}
|
|
32
|
-
&.badge-stable {
|
|
33
|
-
@include badge-style($badge-stable-bg, $badge-stable-text);
|
|
34
|
-
}
|
|
35
|
-
&.badge-positive {
|
|
36
|
-
@include badge-style($badge-positive-bg, $badge-positive-text);
|
|
37
|
-
}
|
|
38
|
-
&.badge-calm {
|
|
39
|
-
@include badge-style($badge-calm-bg, $badge-calm-text);
|
|
40
|
-
}
|
|
41
|
-
&.badge-assertive {
|
|
42
|
-
@include badge-style($badge-assertive-bg, $badge-assertive-text);
|
|
43
|
-
}
|
|
44
|
-
&.badge-balanced {
|
|
45
|
-
@include badge-style($badge-balanced-bg, $badge-balanced-text);
|
|
46
|
-
}
|
|
47
|
-
&.badge-energized {
|
|
48
|
-
@include badge-style($badge-energized-bg, $badge-energized-text);
|
|
49
|
-
}
|
|
50
|
-
&.badge-royal {
|
|
51
|
-
@include badge-style($badge-royal-bg, $badge-royal-text);
|
|
52
|
-
}
|
|
53
|
-
&.badge-dark {
|
|
54
|
-
@include badge-style($badge-dark-bg, $badge-dark-text);
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
// Quick fix for labels/badges in buttons
|
|
59
|
-
.button .badge {
|
|
60
|
-
position: relative;
|
|
61
|
-
top: -1px;
|
|
62
|
-
}
|
package/lib/ionic/scss/_bar.scss
DELETED
|
@@ -1,417 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* Bar (Headers and Footers)
|
|
4
|
-
* --------------------------------------------------
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.bar {
|
|
8
|
-
@include display-flex();
|
|
9
|
-
@include translate3d(0,0,0);
|
|
10
|
-
@include user-select(none);
|
|
11
|
-
position: absolute;
|
|
12
|
-
right: 0;
|
|
13
|
-
left: 0;
|
|
14
|
-
z-index: $z-index-bar;
|
|
15
|
-
|
|
16
|
-
@include box-sizing(border-box);
|
|
17
|
-
padding: $bar-padding-portrait;
|
|
18
|
-
|
|
19
|
-
width: 100%;
|
|
20
|
-
height: $bar-height;
|
|
21
|
-
border-width: 0;
|
|
22
|
-
border-style: solid;
|
|
23
|
-
border-top: 1px solid transparent;
|
|
24
|
-
border-bottom: 1px solid $bar-default-border;
|
|
25
|
-
|
|
26
|
-
background-color: $bar-default-bg;
|
|
27
|
-
|
|
28
|
-
/* border-width: 1px will actually create 2 device pixels on retina */
|
|
29
|
-
/* this nifty trick sets an actual 1px border on hi-res displays */
|
|
30
|
-
background-size: 0;
|
|
31
|
-
@media (min--moz-device-pixel-ratio: 1.5),
|
|
32
|
-
(-webkit-min-device-pixel-ratio: 1.5),
|
|
33
|
-
(min-device-pixel-ratio: 1.5),
|
|
34
|
-
(min-resolution: 144dpi),
|
|
35
|
-
(min-resolution: 1.5dppx) {
|
|
36
|
-
border: none;
|
|
37
|
-
background-image: linear-gradient(0deg, $bar-default-border, $bar-default-border 50%, transparent 50%);
|
|
38
|
-
background-position: bottom;
|
|
39
|
-
background-size: 100% 1px;
|
|
40
|
-
background-repeat: no-repeat;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
&.bar-clear {
|
|
44
|
-
border: none;
|
|
45
|
-
background: none;
|
|
46
|
-
color: #fff;
|
|
47
|
-
|
|
48
|
-
.button {
|
|
49
|
-
color: #fff;
|
|
50
|
-
}
|
|
51
|
-
.title {
|
|
52
|
-
color: #fff;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
&.item-input-inset {
|
|
57
|
-
.item-input-wrapper {
|
|
58
|
-
margin-top: -1px;
|
|
59
|
-
|
|
60
|
-
input {
|
|
61
|
-
padding-left: 8px;
|
|
62
|
-
width: 94%;
|
|
63
|
-
height: 28px;
|
|
64
|
-
background: transparent;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
&.bar-light {
|
|
70
|
-
@include bar-style($bar-light-bg, $bar-light-border, $bar-light-text);
|
|
71
|
-
&.bar-footer{
|
|
72
|
-
background-image: linear-gradient(180deg, $bar-light-border, $bar-light-border 50%, transparent 50%);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
&.bar-stable {
|
|
76
|
-
@include bar-style($bar-stable-bg, $bar-stable-border, $bar-stable-text);
|
|
77
|
-
&.bar-footer{
|
|
78
|
-
background-image: linear-gradient(180deg, $bar-stable-border, $bar-stable-border 50%, transparent 50%);
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
&.bar-positive {
|
|
82
|
-
@include bar-style($bar-positive-bg, $bar-positive-border, $bar-positive-text);
|
|
83
|
-
&.bar-footer{
|
|
84
|
-
background-image: linear-gradient(180deg, $bar-positive-border, $bar-positive-border 50%, transparent 50%);
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
&.bar-calm {
|
|
88
|
-
@include bar-style($bar-calm-bg, $bar-calm-border, $bar-calm-text);
|
|
89
|
-
&.bar-footer{
|
|
90
|
-
background-image: linear-gradient(180deg, $bar-calm-border, $bar-calm-border 50%, transparent 50%);
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
&.bar-assertive {
|
|
94
|
-
@include bar-style($bar-assertive-bg, $bar-assertive-border, $bar-assertive-text);
|
|
95
|
-
&.bar-footer{
|
|
96
|
-
background-image: linear-gradient(180deg, $bar-assertive-border, $bar-assertive-border 50%, transparent 50%);
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
&.bar-balanced {
|
|
100
|
-
@include bar-style($bar-balanced-bg, $bar-balanced-border, $bar-balanced-text);
|
|
101
|
-
&.bar-footer{
|
|
102
|
-
background-image: linear-gradient(180deg, $bar-balanced-border, $bar-balanced-border 50%, transparent 50%);
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
&.bar-energized {
|
|
106
|
-
@include bar-style($bar-energized-bg, $bar-energized-border, $bar-energized-text);
|
|
107
|
-
&.bar-footer{
|
|
108
|
-
background-image: linear-gradient(180deg, $bar-energized-border, $bar-energized-border 50%, transparent 50%);
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
&.bar-royal {
|
|
112
|
-
@include bar-style($bar-royal-bg, $bar-royal-border, $bar-royal-text);
|
|
113
|
-
&.bar-footer{
|
|
114
|
-
background-image: linear-gradient(180deg, $bar-royal-border, $bar-royal-border 50%, transparent 50%);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
&.bar-dark {
|
|
118
|
-
@include bar-style($bar-dark-bg, $bar-dark-border, $bar-dark-text);
|
|
119
|
-
&.bar-footer{
|
|
120
|
-
background-image: linear-gradient(180deg, $bar-dark-border, $bar-dark-border 50%, transparent 50%);
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
// Title inside of a bar is centered
|
|
125
|
-
.title {
|
|
126
|
-
display: block;
|
|
127
|
-
position: absolute;
|
|
128
|
-
|
|
129
|
-
top: 0;
|
|
130
|
-
right: 0;
|
|
131
|
-
left: 0;
|
|
132
|
-
z-index: $z-index-bar-title;
|
|
133
|
-
overflow: hidden;
|
|
134
|
-
|
|
135
|
-
margin: 0 10px;
|
|
136
|
-
|
|
137
|
-
min-width: 30px;
|
|
138
|
-
height: $bar-height - 1;
|
|
139
|
-
|
|
140
|
-
text-align: center;
|
|
141
|
-
|
|
142
|
-
// Go into ellipsis if too small
|
|
143
|
-
text-overflow: ellipsis;
|
|
144
|
-
white-space: nowrap;
|
|
145
|
-
|
|
146
|
-
font-size: $bar-title-font-size;
|
|
147
|
-
font-weight: $headings-font-weight;
|
|
148
|
-
|
|
149
|
-
line-height: $bar-height;
|
|
150
|
-
|
|
151
|
-
&.title-left {
|
|
152
|
-
text-align: left;
|
|
153
|
-
}
|
|
154
|
-
&.title-right {
|
|
155
|
-
text-align: right;
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
.title a {
|
|
160
|
-
color: inherit;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.button, button {
|
|
164
|
-
z-index: $z-index-bar-button;
|
|
165
|
-
padding: 0 $button-bar-button-padding;
|
|
166
|
-
min-width: initial;
|
|
167
|
-
min-height: $button-bar-button-height - 1;
|
|
168
|
-
font-weight: 400;
|
|
169
|
-
font-size: $button-bar-button-font-size;
|
|
170
|
-
line-height: $button-bar-button-height;
|
|
171
|
-
|
|
172
|
-
&.button-icon:before,
|
|
173
|
-
.icon:before,
|
|
174
|
-
&.icon:before,
|
|
175
|
-
&.icon-left:before,
|
|
176
|
-
&.icon-right:before {
|
|
177
|
-
padding-right: 2px;
|
|
178
|
-
padding-left: 2px;
|
|
179
|
-
font-size: $button-bar-button-icon-size;
|
|
180
|
-
line-height: $button-bar-button-height;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
&.button-icon {
|
|
184
|
-
font-size: $bar-title-font-size;
|
|
185
|
-
.icon:before,
|
|
186
|
-
&:before,
|
|
187
|
-
&.icon-left:before,
|
|
188
|
-
&.icon-right:before {
|
|
189
|
-
vertical-align: top;
|
|
190
|
-
font-size: $button-large-icon-size;
|
|
191
|
-
line-height: $button-bar-button-height;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
&.button-clear {
|
|
195
|
-
padding-right: 2px;
|
|
196
|
-
padding-left: 2px;
|
|
197
|
-
font-weight: 300;
|
|
198
|
-
font-size: $bar-title-font-size;
|
|
199
|
-
|
|
200
|
-
.icon:before,
|
|
201
|
-
&.icon:before,
|
|
202
|
-
&.icon-left:before,
|
|
203
|
-
&.icon-right:before {
|
|
204
|
-
font-size: $button-large-icon-size;
|
|
205
|
-
line-height: $button-bar-button-height;
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
&.back-button {
|
|
210
|
-
display: block;
|
|
211
|
-
margin-right: 5px;
|
|
212
|
-
padding: 0;
|
|
213
|
-
white-space: nowrap;
|
|
214
|
-
font-weight: 400;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
&.back-button.active,
|
|
218
|
-
&.back-button.activated {
|
|
219
|
-
opacity: 0.2;
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.button-bar > .button,
|
|
224
|
-
.buttons > .button {
|
|
225
|
-
min-height: $button-bar-button-height - 1;
|
|
226
|
-
line-height: $button-bar-button-height;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
.button-bar + .button,
|
|
230
|
-
.button + .button-bar {
|
|
231
|
-
margin-left: 5px;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
// Android 4.4 messes with the display property
|
|
235
|
-
.buttons,
|
|
236
|
-
.buttons.primary-buttons,
|
|
237
|
-
.buttons.secondary-buttons {
|
|
238
|
-
display: inherit;
|
|
239
|
-
}
|
|
240
|
-
.buttons span {
|
|
241
|
-
display: inline-block;
|
|
242
|
-
}
|
|
243
|
-
.buttons-left span {
|
|
244
|
-
margin-right: 5px;
|
|
245
|
-
display: inherit;
|
|
246
|
-
}
|
|
247
|
-
.buttons-right span {
|
|
248
|
-
margin-left: 5px;
|
|
249
|
-
display: inherit;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
// Place the last button in a bar on the right of the bar
|
|
253
|
-
.title + .button:last-child,
|
|
254
|
-
> .button + .button:last-child,
|
|
255
|
-
> .button.pull-right,
|
|
256
|
-
.buttons.pull-right,
|
|
257
|
-
.title + .buttons {
|
|
258
|
-
position: absolute;
|
|
259
|
-
top: 5px;
|
|
260
|
-
right: 5px;
|
|
261
|
-
bottom: 5px;
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
.platform-android {
|
|
267
|
-
|
|
268
|
-
.nav-bar-has-subheader .bar {
|
|
269
|
-
background-image: none;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
.bar {
|
|
273
|
-
|
|
274
|
-
.back-button .icon:before {
|
|
275
|
-
font-size: 24px;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
.title {
|
|
279
|
-
font-size: 19px;
|
|
280
|
-
line-height: $bar-height;
|
|
281
|
-
}
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
// Default styles for buttons inside of styled bars
|
|
287
|
-
.bar-light {
|
|
288
|
-
.button {
|
|
289
|
-
@include button-style($bar-light-bg, $bar-light-border, $bar-light-active-bg, $bar-light-active-border, $bar-light-text);
|
|
290
|
-
@include button-clear($bar-light-text, $bar-title-font-size);
|
|
291
|
-
}
|
|
292
|
-
}
|
|
293
|
-
.bar-stable {
|
|
294
|
-
.button {
|
|
295
|
-
@include button-style($bar-stable-bg, $bar-stable-border, $bar-stable-active-bg, $bar-stable-active-border, $bar-stable-text);
|
|
296
|
-
@include button-clear($bar-stable-text, $bar-title-font-size);
|
|
297
|
-
}
|
|
298
|
-
}
|
|
299
|
-
.bar-positive {
|
|
300
|
-
.button {
|
|
301
|
-
@include button-style($bar-positive-bg, $bar-positive-border, $bar-positive-active-bg, $bar-positive-active-border, $bar-positive-text);
|
|
302
|
-
@include button-clear(#fff, $bar-title-font-size);
|
|
303
|
-
}
|
|
304
|
-
}
|
|
305
|
-
.bar-calm {
|
|
306
|
-
.button {
|
|
307
|
-
@include button-style($bar-calm-bg, $bar-calm-border, $bar-calm-active-bg, $bar-calm-active-border, $bar-calm-text);
|
|
308
|
-
@include button-clear(#fff, $bar-title-font-size);
|
|
309
|
-
}
|
|
310
|
-
}
|
|
311
|
-
.bar-assertive {
|
|
312
|
-
.button {
|
|
313
|
-
@include button-style($bar-assertive-bg, $bar-assertive-border, $bar-assertive-active-bg, $bar-assertive-active-border, $bar-assertive-text);
|
|
314
|
-
@include button-clear(#fff, $bar-title-font-size);
|
|
315
|
-
}
|
|
316
|
-
}
|
|
317
|
-
.bar-balanced {
|
|
318
|
-
.button {
|
|
319
|
-
@include button-style($bar-balanced-bg, $bar-balanced-border, $bar-balanced-active-bg, $bar-balanced-active-border, $bar-balanced-text);
|
|
320
|
-
@include button-clear(#fff, $bar-title-font-size);
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
|
-
.bar-energized {
|
|
324
|
-
.button {
|
|
325
|
-
@include button-style($bar-energized-bg, $bar-energized-border, $bar-energized-active-bg, $bar-energized-active-border, $bar-energized-text);
|
|
326
|
-
@include button-clear(#fff, $bar-title-font-size);
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
.bar-royal {
|
|
330
|
-
.button {
|
|
331
|
-
@include button-style($bar-royal-bg, $bar-royal-border, $bar-royal-active-bg, $bar-royal-active-border, $bar-royal-text);
|
|
332
|
-
@include button-clear(#fff, $bar-title-font-size);
|
|
333
|
-
}
|
|
334
|
-
}
|
|
335
|
-
.bar-dark {
|
|
336
|
-
.button {
|
|
337
|
-
@include button-style($bar-dark-bg, $bar-dark-border, $bar-dark-active-bg, $bar-dark-active-border, $bar-dark-text);
|
|
338
|
-
@include button-clear(#fff, $bar-title-font-size);
|
|
339
|
-
}
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
// Header at top
|
|
343
|
-
.bar-header {
|
|
344
|
-
top: 0;
|
|
345
|
-
border-top-width: 0;
|
|
346
|
-
border-bottom-width: 1px;
|
|
347
|
-
&.has-tabs-top{
|
|
348
|
-
border-bottom-width: 0px;
|
|
349
|
-
background-image: none;
|
|
350
|
-
}
|
|
351
|
-
}
|
|
352
|
-
.tabs-top .bar-header{
|
|
353
|
-
border-bottom-width: 0px;
|
|
354
|
-
background-image: none;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
// Footer at bottom
|
|
358
|
-
.bar-footer {
|
|
359
|
-
bottom: 0;
|
|
360
|
-
border-top-width: 1px;
|
|
361
|
-
border-bottom-width: 0;
|
|
362
|
-
background-position: top;
|
|
363
|
-
|
|
364
|
-
height: $bar-footer-height;
|
|
365
|
-
|
|
366
|
-
&.item-input-inset {
|
|
367
|
-
position: absolute;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
.title {
|
|
371
|
-
height: $bar-footer-height - 1;
|
|
372
|
-
line-height: $bar-footer-height;
|
|
373
|
-
}
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
// Don't render padding if the bar is just for tabs
|
|
377
|
-
.bar-tabs {
|
|
378
|
-
padding: 0;
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
.bar-subheader {
|
|
382
|
-
top: $bar-height;
|
|
383
|
-
|
|
384
|
-
height: $bar-subheader-height;
|
|
385
|
-
|
|
386
|
-
.title {
|
|
387
|
-
height: $bar-subheader-height - 1;
|
|
388
|
-
line-height: $bar-subheader-height;
|
|
389
|
-
}
|
|
390
|
-
}
|
|
391
|
-
.bar-subfooter {
|
|
392
|
-
bottom: $bar-footer-height;
|
|
393
|
-
|
|
394
|
-
height: $bar-subfooter-height;
|
|
395
|
-
|
|
396
|
-
.title {
|
|
397
|
-
height: $bar-subfooter-height - 1;
|
|
398
|
-
line-height: $bar-subfooter-height;
|
|
399
|
-
}
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
.nav-bar-block {
|
|
403
|
-
position: absolute;
|
|
404
|
-
top: 0;
|
|
405
|
-
right: 0;
|
|
406
|
-
left: 0;
|
|
407
|
-
z-index: $z-index-bar;
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
.bar .back-button.hide,
|
|
411
|
-
.bar .buttons .hide {
|
|
412
|
-
display: none;
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
.nav-bar-tabs-top .bar {
|
|
416
|
-
background-image: none;
|
|
417
|
-
}
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* Button Bar
|
|
4
|
-
* --------------------------------------------------
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.button-bar {
|
|
8
|
-
@include display-flex();
|
|
9
|
-
@include flex(1);
|
|
10
|
-
width: 100%;
|
|
11
|
-
|
|
12
|
-
&.button-bar-inline {
|
|
13
|
-
display: block;
|
|
14
|
-
width: auto;
|
|
15
|
-
|
|
16
|
-
@include clearfix();
|
|
17
|
-
|
|
18
|
-
> .button {
|
|
19
|
-
width: auto;
|
|
20
|
-
display: inline-block;
|
|
21
|
-
float: left;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
&.bar-light > .button {
|
|
26
|
-
border-color: $button-light-border;
|
|
27
|
-
}
|
|
28
|
-
&.bar-stable > .button {
|
|
29
|
-
border-color: $button-stable-border;
|
|
30
|
-
}
|
|
31
|
-
&.bar-positive > .button {
|
|
32
|
-
border-color: $button-positive-border;
|
|
33
|
-
}
|
|
34
|
-
&.bar-calm > .button {
|
|
35
|
-
border-color: $button-calm-border;
|
|
36
|
-
}
|
|
37
|
-
&.bar-assertive > .button {
|
|
38
|
-
border-color: $button-assertive-border;
|
|
39
|
-
}
|
|
40
|
-
&.bar-balanced > .button {
|
|
41
|
-
border-color: $button-balanced-border;
|
|
42
|
-
}
|
|
43
|
-
&.bar-energized > .button {
|
|
44
|
-
border-color: $button-energized-border;
|
|
45
|
-
}
|
|
46
|
-
&.bar-royal > .button {
|
|
47
|
-
border-color: $button-royal-border;
|
|
48
|
-
}
|
|
49
|
-
&.bar-dark > .button {
|
|
50
|
-
border-color: $button-dark-border;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.button-bar > .button {
|
|
55
|
-
@include flex(1);
|
|
56
|
-
display: block;
|
|
57
|
-
|
|
58
|
-
overflow: hidden;
|
|
59
|
-
|
|
60
|
-
padding: 0 16px;
|
|
61
|
-
|
|
62
|
-
width: 0;
|
|
63
|
-
|
|
64
|
-
border-width: 1px 0px 1px 1px;
|
|
65
|
-
border-radius: 0;
|
|
66
|
-
text-align: center;
|
|
67
|
-
text-overflow: ellipsis;
|
|
68
|
-
white-space: nowrap;
|
|
69
|
-
|
|
70
|
-
&:before,
|
|
71
|
-
.icon:before {
|
|
72
|
-
line-height: 44px;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
&:first-child {
|
|
76
|
-
border-radius: $button-border-radius 0px 0px $button-border-radius;
|
|
77
|
-
}
|
|
78
|
-
&:last-child {
|
|
79
|
-
border-right-width: 1px;
|
|
80
|
-
border-radius: 0px $button-border-radius $button-border-radius 0px;
|
|
81
|
-
}
|
|
82
|
-
&:only-child {
|
|
83
|
-
border-radius: $button-border-radius;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.button-bar > .button-small {
|
|
88
|
-
&:before,
|
|
89
|
-
.icon:before {
|
|
90
|
-
line-height: 28px;
|
|
91
|
-
}
|
|
92
|
-
}
|