@aarhus-university/au-lib-react-components 9.11.17 → 10.0.0
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/.eslintrc.js +44 -0
- package/README.md +19 -20
- package/babel.config.js +7 -6
- package/build/umd/all.css +1 -1
- package/build/umd/all.css.map +1 -1
- package/build/umd/all.js +1 -1
- package/build/umd/all.js.map +1 -1
- package/build/umd/alphabox.js +1 -1
- package/build/umd/alphabox.js.map +1 -1
- package/build/umd/databox.js +1 -2
- package/build/umd/databox.js.map +1 -1
- package/build/umd/diagramme.js +1 -1
- package/build/umd/diagramme.js.map +1 -1
- package/build/umd/flowbox.js +1 -1
- package/build/umd/flowbox.js.map +1 -1
- package/build/umd/universe.js +1 -1
- package/build/umd/universe.js.map +1 -1
- package/package.json +66 -60
- package/src/components/{delphinus/AUAlertComponent.js → AUAlertComponent.tsx} +70 -85
- package/src/components/{AutoSuggestComponent.js → AUAutoSuggestComponent.js} +45 -19
- package/src/components/AUCalendarComponent.tsx +493 -0
- package/src/components/AUContentToggleComponent.tsx +33 -0
- package/src/components/AUDatepickerComponent.tsx +117 -0
- package/src/components/AUMobilePrefixComponent.tsx +15 -0
- package/src/components/{delphinus/AUModalComponent.js → AUModalComponent.tsx} +78 -94
- package/src/components/{form/AUReceiptComponent.js → AUReceiptComponent.tsx} +33 -40
- package/src/components/AUSpinnerComponent.tsx +67 -0
- package/src/components/{delphinus/AUSubNavComponent.js → AUSubNavComponent.tsx} +38 -53
- package/src/components/{form/AUSubmitButtonContainerComponent.js → AUSubmitButtonContainerComponent.tsx} +31 -39
- package/src/components/{delphinus/AUTabbedContentComponent.js → AUTabbedContentComponent.tsx} +145 -150
- package/src/components/{delphinus/AUTableComponent.js → AUTableComponent.tsx} +24 -28
- package/src/components/{delphinus/AUToastComponent.js → AUToastComponent.tsx} +104 -91
- package/src/components/{delphinus/AUToolbarComponent.js → AUToolbarComponent.tsx} +45 -48
- package/src/components/profile/AUProfileActions.js +128 -128
- package/src/components/profile/AUProfileAvatarComponent.js +83 -83
- package/src/components/profile/AUProfileAvatarV2Component.js +91 -91
- package/src/components/profile/AUProfileAvatarV3Component.tsx +42 -0
- package/src/components/profile/AUProfileContainerComponent.js +283 -283
- package/src/components/profile/AUProfileHooks.js +30 -30
- package/src/components/profile/AUProfileItemComponent.js +54 -54
- package/src/components/profile/AUProfileLanguageComponent.js +131 -131
- package/src/components/profile/{AUProfileLoginComponent.js → AUProfileLoginComponent.tsx} +3 -18
- package/src/components/profile/AUProfileMailComponent.js +307 -307
- package/src/components/profile/AUProfileMobileComponent.js +164 -164
- package/src/components/profile/AUProfileNameComponent.js +253 -253
- package/src/components/profile/AUProfileNextOfKinComponent.js +216 -216
- package/src/components/profile/AUProfileReducer.js +230 -230
- package/src/components/profile/AUProfileWidgetComponent.js +95 -95
- package/src/components/profile/AUProfileWidgetV2Component.js +116 -116
- package/src/components/profile/{AUProfileWidgetV3Component.js → AUProfileWidgetV3Component.tsx} +122 -130
- package/src/components/wrapping/AUEmbedComponent.js +47 -47
- package/src/{components → layout-2016/components}/alphabox/AlphaBoxComponent.js +28 -25
- package/src/{components → layout-2016/components}/alphabox/AlphaBoxContentComponent.js +25 -14
- package/src/{components → layout-2016/components/common}/AUCollapsibleComponent.js +1 -22
- package/src/{components → layout-2016/components/common}/AUSpinnerComponent.js +2 -24
- package/src/{components → layout-2016/components}/databox/DataBoxAlphabetComponent.js +1 -1
- package/src/{components → layout-2016/components}/databox/DataBoxAssociationComponent.js +2 -2
- package/src/{components → layout-2016/components}/databox/DataBoxButtonComponent.js +7 -3
- package/src/{components → layout-2016/components}/databox/DataBoxComponent.js +2 -2
- package/src/{components → layout-2016/components}/databox/DataBoxGroupingComponent.js +2 -0
- package/src/{components → layout-2016/components}/databox/DataBoxSearchResultComponent.js +1 -5
- package/src/{components → layout-2016/components}/databox/DataBoxStackedAssociationComponent.js +1 -5
- package/src/{components → layout-2016/components}/databox/DataBoxSuggestionComponent.js +0 -0
- package/src/{components → layout-2016/components/diagramme}/AUDiagrammeComponent.js +5 -6
- package/src/{components → layout-2016/components}/flowbox/FlowBoxComponent.js +8 -8
- package/src/{components → layout-2016/components}/flowbox/FlowBoxPhoneComponent.js +3 -5
- package/src/{components → layout-2016/components}/profile/AUProfileAvatar2016Component.js +6 -2
- package/src/{components → layout-2016/components}/universe/StaffTopComponent.js +4 -3
- package/src/{components → layout-2016/components}/universe/StudentTopComponent.js +0 -0
- package/src/{components → layout-2016/components}/universe/UniverseContainerComponent.js +11 -8
- package/src/layout-2016/lib/all.js +3 -0
- package/src/{lib → layout-2016/lib}/au-alphabox.js +1 -3
- package/src/{lib → layout-2016/lib}/au-databox.js +6 -9
- package/src/{lib → layout-2016/lib}/au-diagramme.js +2 -4
- package/src/{lib → layout-2016/lib}/au-flowbox.js +1 -3
- package/src/{lib → layout-2016/lib}/universe.js +0 -0
- package/src/lib/{helpers.js → helpers.ts} +44 -66
- package/src/{components/delphinus/hooks.js → lib/hooks.ts} +33 -28
- package/src/lib/{i18n.js → i18n.ts} +600 -601
- package/src/lib/{tracking.js → tracking.ts} +69 -65
- package/src/lib/{wrapping.js → wrapping.ts} +21 -16
- package/src/styles/_settings.scss +10 -10
- package/src/styles/alphabox.scss +222 -208
- package/src/styles/app.scss +7 -13
- package/src/styles/autosuggest.scss +57 -57
- package/src/styles/databox.scss +563 -563
- package/src/styles/diagramme.scss +119 -119
- package/src/styles/flowbox.scss +72 -72
- package/src/styles/maps.scss +395 -395
- package/tsconfig.json +47 -0
- package/types/common/interfaces/gui.d.ts +52 -0
- package/types/common/interfaces/model.d.ts +29 -0
- package/types/common/main.d.ts +5 -0
- package/types/common/package.json +5 -0
- package/types/common/payloads.d.ts +0 -0
- package/types/common/props.d.ts +165 -0
- package/{src/config/webpack.umd.config.js → webpack.config.js} +20 -16
- package/.eslintrc +0 -19
- package/build/dev.html +0 -329
- package/build/umd/auAuth.js +0 -2
- package/build/umd/auAuth.js.map +0 -1
- package/build/umd/databox.js.LICENSE.txt +0 -5
- package/build/umd/news.js +0 -2
- package/build/umd/news.js.map +0 -1
- package/src/all.js +0 -3
- package/src/app.js +0 -263
- package/src/components/AUAlertComponent.js +0 -158
- package/src/components/AUAmountComponent.js +0 -84
- package/src/components/AUBannerComponent.js +0 -99
- package/src/components/AUCalendarComponent.js +0 -393
- package/src/components/AUDatepickerComponent.js +0 -105
- package/src/components/AUFilterCheckboxComponent.js +0 -122
- package/src/components/AUFocusComponent.js +0 -55
- package/src/components/AUModalComponent.js +0 -94
- package/src/components/AUPaginationComponent.js +0 -103
- package/src/components/context/AUUserContextComponent.js +0 -91
- package/src/components/context/ImpersonateComponent.js +0 -54
- package/src/components/delphinus/AUCalendarComponent.js +0 -487
- package/src/components/delphinus/AUContentToggleComponent.js +0 -32
- package/src/components/delphinus/AUDatepickerComponent.js +0 -164
- package/src/components/delphinus/AULoginComponent.js +0 -65
- package/src/components/delphinus/AUSpinnerComponent.js +0 -114
- package/src/components/form/AUMobilePrefixComponent.js +0 -18
- package/src/components/news/EventLayout1Component.js +0 -94
- package/src/components/news/EventLayout2Component.js +0 -90
- package/src/components/news/EventLayout3Component.js +0 -68
- package/src/components/news/NewsCategoriesComponent.js +0 -21
- package/src/components/news/NewsCollageBannerComponent.js +0 -71
- package/src/components/news/NewsCollageBannerRSSComponent.js +0 -79
- package/src/components/news/NewsColumnsComponent.js +0 -125
- package/src/components/news/NewsLanguageChangeComponent.js +0 -74
- package/src/components/news/NewsLayout1Component.js +0 -80
- package/src/components/news/NewsLayout2Component.js +0 -80
- package/src/components/news/NewsLayout3Component.js +0 -81
- package/src/components/news/NewsLayout4Component.js +0 -80
- package/src/components/news/NewsLayout5Component.js +0 -61
- package/src/components/news/NewsLayout6Component.js +0 -55
- package/src/components/news/NewsLayout7Component.js +0 -58
- package/src/components/news/NewsLayout8Component.js +0 -57
- package/src/components/news/NewsListComponent.js +0 -291
- package/src/components/news/NewsPopUpComponent.js +0 -591
- package/src/components/news/NewsRSSComponent.js +0 -74
- package/src/components/news/NewsSocialComponent.js +0 -104
- package/src/components/news/NewsSubHeaderComponent.js +0 -19
- package/src/components/password/AUChangePasswordComponent.js +0 -177
- package/src/components/password/AUCurrentPasswordComponent.js +0 -72
- package/src/components/password/AUNewPasswordComponent.js +0 -143
- package/src/components/password/AUPasswordActions.js +0 -101
- package/src/components/password/AUPasswordHooks.js +0 -47
- package/src/components/password/AUPasswordReducer.js +0 -78
- package/src/components/password/AUPasswordRequirementsComponent.js +0 -29
- package/src/components/profile/AUProfileAvatarV3Component.js +0 -80
- package/src/config/webpack.dev.config.js +0 -47
- package/src/index.js +0 -6
- package/src/lib/au-auth.js +0 -227
- package/src/lib/au-news.js +0 -371
- package/src/lib/menu.js +0 -10
- package/src/lib/urlHandler.js +0 -63
- package/src/lib/validation.js +0 -181
- package/src/styles/alert.scss +0 -39
- package/src/styles/calendar.scss +0 -112
- package/src/styles/filtercheckbox.scss +0 -5
- package/src/styles/modal.scss +0 -35
- package/src/styles/pagination.scss +0 -11
- package/src/styles/spinner.scss +0 -30
package/src/styles/databox.scss
CHANGED
|
@@ -1,564 +1,564 @@
|
|
|
1
|
-
$span-height: 20px;
|
|
2
|
-
$span-minimum-padding: $span-height - 6px;
|
|
3
|
-
$span-factor: 2;
|
|
4
|
-
$span-padding-tb: $span-factor+$span-minimum-padding;
|
|
5
|
-
$span-border-top: 1px;
|
|
6
|
-
$span-total-height: $span-height+2 * $span-padding-tb;
|
|
7
|
-
$span-height-responsive: 51px;
|
|
8
|
-
$span-minimum-padding-responsive: 0px;
|
|
9
|
-
$span-padding-tb-responsive: $span-factor+$span-minimum-padding-responsive;
|
|
10
|
-
$span-total-height-responsive: $span-height-responsive+2 * $span-padding-tb-responsive;
|
|
11
|
-
$input-text-top: 11px;
|
|
12
|
-
$input-text-top-responsive: $span-padding-tb-responsive - $span-minimum-padding-responsive;
|
|
13
|
-
$box-height-1: 1 * $span-height-responsive;
|
|
14
|
-
$box-height-2: 2 * $span-height-responsive;
|
|
15
|
-
$box-height-3: 3 * $span-height-responsive;
|
|
16
|
-
$box-height-4: 4 * $span-height-responsive;
|
|
17
|
-
$box-height-5: 5 * $span-height-responsive;
|
|
18
|
-
$box-height-6: 6 * $span-height-responsive;
|
|
19
|
-
$content-color: #f0f0f0;
|
|
20
|
-
$box-text-indent: 1rem;
|
|
21
|
-
$focus-indent: 24px;
|
|
22
|
-
$focus-bottom-1: $box-height-1+$focus-indent;
|
|
23
|
-
$focus-bottom-2: $box-height-2+$focus-indent;
|
|
24
|
-
$focus-bottom-3: $box-height-3+$focus-indent;
|
|
25
|
-
$focus-bottom-4: $box-height-4+$focus-indent;
|
|
26
|
-
.au_databox {
|
|
27
|
-
margin-bottom: 2em;
|
|
28
|
-
position: relative;
|
|
29
|
-
.button-wrapper {
|
|
30
|
-
position: relative;
|
|
31
|
-
>div {
|
|
32
|
-
width: 100%;
|
|
33
|
-
position: absolute;
|
|
34
|
-
bottom: 0;
|
|
35
|
-
}
|
|
36
|
-
@media (max-width: 640px) {
|
|
37
|
-
background-image: none !important;
|
|
38
|
-
height: auto !important;
|
|
39
|
-
position: static;
|
|
40
|
-
overflow: auto;
|
|
41
|
-
>div {
|
|
42
|
-
position: static;
|
|
43
|
-
}
|
|
44
|
-
.db-button {
|
|
45
|
-
float: none;
|
|
46
|
-
width: 100% !important;
|
|
47
|
-
>span {
|
|
48
|
-
border-left: 0 !important;
|
|
49
|
-
height: $span-height-responsive; //padding: $span-padding-tb-responsive 0px;
|
|
50
|
-
}
|
|
51
|
-
>input[type=text] {
|
|
52
|
-
left: 70px;
|
|
53
|
-
top: 11px;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
.buttons-5 {
|
|
57
|
-
&.first-line-full {
|
|
58
|
-
.button-wrapper {
|
|
59
|
-
height: auto;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
.buttons-6 {
|
|
64
|
-
.button-wrapper {
|
|
65
|
-
height: auto;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
.au_focus {
|
|
70
|
-
margin-bottom: 0;
|
|
71
|
-
padding-left: 1rem;
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
.content {
|
|
75
|
-
width: 100%;
|
|
76
|
-
background: $content-color;
|
|
77
|
-
padding: $box-text-indent 0;
|
|
78
|
-
overflow: auto;
|
|
79
|
-
>div {
|
|
80
|
-
padding: 0 $box-text-indent;
|
|
81
|
-
position: relative;
|
|
82
|
-
.expandall {
|
|
83
|
-
position: absolute;
|
|
84
|
-
right: 10px;
|
|
85
|
-
top: 0;
|
|
86
|
-
text-decoration: underline;
|
|
87
|
-
cursor: pointer;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
ul {
|
|
91
|
-
margin-top: 0;
|
|
92
|
-
margin-left: 0;
|
|
93
|
-
ul {
|
|
94
|
-
margin-top: .65rem;
|
|
95
|
-
}
|
|
96
|
-
li {
|
|
97
|
-
a {
|
|
98
|
-
text-decoration: none;
|
|
99
|
-
&:hover {
|
|
100
|
-
text-decoration: underline;
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
ul.letters {
|
|
106
|
-
display: flex;
|
|
107
|
-
justify-content: flex-start;
|
|
108
|
-
flex-flow: row wrap;
|
|
109
|
-
font-size: 1.1rem;
|
|
110
|
-
margin-top: .15rem;
|
|
111
|
-
margin-bottom: .75rem;
|
|
112
|
-
margin-left: 0;
|
|
113
|
-
padding-bottom: .75rem;
|
|
114
|
-
border-bottom: 1px solid #ccc;
|
|
115
|
-
li {
|
|
116
|
-
padding: 0;
|
|
117
|
-
margin: 2px 2px;
|
|
118
|
-
background-color: #aaa;
|
|
119
|
-
text-align: center;
|
|
120
|
-
font-size: 1.2rem;
|
|
121
|
-
&.available {
|
|
122
|
-
button {
|
|
123
|
-
cursor: pointer;
|
|
124
|
-
color: #fff;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
&.active {
|
|
128
|
-
font-weight: bold;
|
|
129
|
-
}
|
|
130
|
-
&:before {
|
|
131
|
-
content: '';
|
|
132
|
-
}
|
|
133
|
-
button {
|
|
134
|
-
font-family: $font-passata-regular;
|
|
135
|
-
color: #ccc;
|
|
136
|
-
text-transform: uppercase;
|
|
137
|
-
width: 20px;
|
|
138
|
-
line-height: inherit;
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
.au_collapsible {
|
|
143
|
-
margin-bottom: 0;
|
|
144
|
-
padding: .6rem 0;
|
|
145
|
-
>.csc-header {
|
|
146
|
-
margin-bottom: 1rem;
|
|
147
|
-
&:after {
|
|
148
|
-
font-size: 24px;
|
|
149
|
-
}
|
|
150
|
-
h3 {
|
|
151
|
-
margin: 0;
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
&.au_collapsed {
|
|
155
|
-
>.csc-header {
|
|
156
|
-
margin-bottom: 0;
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
& .au_focus {
|
|
162
|
-
margin-left: 24px;
|
|
163
|
-
position: absolute;
|
|
164
|
-
margin-bottom: 0;
|
|
165
|
-
&.before {
|
|
166
|
-
position: static;
|
|
167
|
-
padding: 1.5em 0 1.5em 14px;
|
|
168
|
-
margin-left: 0;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
.clear {
|
|
172
|
-
clear: both;
|
|
173
|
-
}
|
|
174
|
-
&.width-full {
|
|
175
|
-
width: 100%;
|
|
176
|
-
}
|
|
177
|
-
.db-button {
|
|
178
|
-
float: left;
|
|
179
|
-
text-indent: $box-text-indent;
|
|
180
|
-
color: #fff;
|
|
181
|
-
position: relative;
|
|
182
|
-
text-align: left;
|
|
183
|
-
padding: 0;
|
|
184
|
-
margin: 0;
|
|
185
|
-
border: 0;
|
|
186
|
-
font: 1.7272727273rem $font-passata-regular;
|
|
187
|
-
&:not(.db-search),
|
|
188
|
-
&.search-filter {
|
|
189
|
-
cursor: pointer;
|
|
190
|
-
}
|
|
191
|
-
>span {
|
|
192
|
-
display: block;
|
|
193
|
-
border-top: $span-border-top solid #fff;
|
|
194
|
-
padding: $span-padding-tb 0px;
|
|
195
|
-
line-height: 1;
|
|
196
|
-
a {
|
|
197
|
-
color: #fff;
|
|
198
|
-
text-decoration: none;
|
|
199
|
-
&:hover {
|
|
200
|
-
text-decoration: underline;
|
|
201
|
-
}
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
$input-left: 65px;
|
|
205
|
-
input[type=text] {
|
|
206
|
-
font-size: 1.25rem;
|
|
207
|
-
position: absolute;
|
|
208
|
-
top: $input-text-top;
|
|
209
|
-
left: $input-left;
|
|
210
|
-
background: #fff url($findicon) no-repeat right center;
|
|
211
|
-
background: rgba(255, 255, 255, .75) url($findicon) no-repeat right center;
|
|
212
|
-
border: 0;
|
|
213
|
-
width: calc(100% - #{$input-left} - #{$box-text-indent});
|
|
214
|
-
padding: 0;
|
|
215
|
-
margin: 0;
|
|
216
|
-
height: 32px;
|
|
217
|
-
text-indent: 10px;
|
|
218
|
-
&.active {
|
|
219
|
-
background: #fff;
|
|
220
|
-
background: rgba(255, 255, 255, .75);
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
&.overlay {
|
|
224
|
-
background: rgb(204, 204, 204);
|
|
225
|
-
background: rgba(204, 204, 204, .25);
|
|
226
|
-
}
|
|
227
|
-
&.active {
|
|
228
|
-
background: $content-color;
|
|
229
|
-
color: #000;
|
|
230
|
-
a {
|
|
231
|
-
color: #000;
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
&.collapse {
|
|
236
|
-
.db-button {
|
|
237
|
-
&:after {
|
|
238
|
-
color: #fff;
|
|
239
|
-
opacity: 0.8;
|
|
240
|
-
font-family: 'au_icons';
|
|
241
|
-
content: '+';
|
|
242
|
-
float: right;
|
|
243
|
-
font-size: 32px;
|
|
244
|
-
position: absolute;
|
|
245
|
-
top: 10px;
|
|
246
|
-
right: 0;
|
|
247
|
-
margin-right: .3em;
|
|
248
|
-
}
|
|
249
|
-
&.active:after {
|
|
250
|
-
color: #000;
|
|
251
|
-
opacity: 1;
|
|
252
|
-
content: '-'
|
|
253
|
-
}
|
|
254
|
-
&.db-search:after {
|
|
255
|
-
content: '';
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
&.stacked {
|
|
260
|
-
.button-wrapper {
|
|
261
|
-
background-image: none !important;
|
|
262
|
-
height: auto !important;
|
|
263
|
-
position: static;
|
|
264
|
-
>div {
|
|
265
|
-
position: static;
|
|
266
|
-
}
|
|
267
|
-
.db-button {
|
|
268
|
-
float: none;
|
|
269
|
-
width: 100% !important;
|
|
270
|
-
>span {
|
|
271
|
-
border-left: 0 !important;
|
|
272
|
-
height: $span-height-responsive; //padding: $span-padding-tb-responsive 0px;
|
|
273
|
-
}
|
|
274
|
-
>input[type=text] {
|
|
275
|
-
left: 70px;
|
|
276
|
-
top: 11px;
|
|
277
|
-
}
|
|
278
|
-
}
|
|
279
|
-
.buttons-5 {
|
|
280
|
-
&.first-line-full {
|
|
281
|
-
.button-wrapper {
|
|
282
|
-
height: auto;
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
.buttons-6 {
|
|
287
|
-
.button-wrapper {
|
|
288
|
-
height: auto;
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
}
|
|
292
|
-
.content {
|
|
293
|
-
padding-top: 0;
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
&.buttons-1 {
|
|
297
|
-
.au_focus {
|
|
298
|
-
bottom: $focus-bottom-1;
|
|
299
|
-
}
|
|
300
|
-
.button-wrapper {
|
|
301
|
-
height: $box-height-1;
|
|
302
|
-
}
|
|
303
|
-
.db-button {
|
|
304
|
-
width: 100%;
|
|
305
|
-
>span {
|
|
306
|
-
text-indent: -9999px;
|
|
307
|
-
}
|
|
308
|
-
>input[type=text] {
|
|
309
|
-
left: 14px;
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
}
|
|
313
|
-
&.buttons-2 {
|
|
314
|
-
.button-wrapper {
|
|
315
|
-
height: $box-height-1;
|
|
316
|
-
}
|
|
317
|
-
.au_focus {
|
|
318
|
-
bottom: $focus-bottom-1;
|
|
319
|
-
}
|
|
320
|
-
.db-button {
|
|
321
|
-
width: 50%;
|
|
322
|
-
&:nth-child(2) span {
|
|
323
|
-
border-left: 1px solid #fff;
|
|
324
|
-
}
|
|
325
|
-
}
|
|
326
|
-
}
|
|
327
|
-
&.buttons-3 {
|
|
328
|
-
.button-wrapper {
|
|
329
|
-
height: $box-height-1;
|
|
330
|
-
}
|
|
331
|
-
.au_focus {
|
|
332
|
-
bottom: $focus-bottom-1;
|
|
333
|
-
}
|
|
334
|
-
&.first-line-full {
|
|
335
|
-
.button-wrapper {
|
|
336
|
-
height: $box-height-2;
|
|
337
|
-
}
|
|
338
|
-
.au_focus {
|
|
339
|
-
bottom: $focus-bottom-2;
|
|
340
|
-
}
|
|
341
|
-
.button-1 {
|
|
342
|
-
width: 100%;
|
|
343
|
-
}
|
|
344
|
-
.button-2,
|
|
345
|
-
.button-3 {
|
|
346
|
-
width: 50%;
|
|
347
|
-
}
|
|
348
|
-
.button-2 span {
|
|
349
|
-
border-left: 0;
|
|
350
|
-
}
|
|
351
|
-
.button-3 span {
|
|
352
|
-
border-left: 1px solid #fff;
|
|
353
|
-
}
|
|
354
|
-
}
|
|
355
|
-
.button-1,
|
|
356
|
-
.button-3 {
|
|
357
|
-
width: 33%;
|
|
358
|
-
}
|
|
359
|
-
.button-2 {
|
|
360
|
-
width: 34%;
|
|
361
|
-
}
|
|
362
|
-
.button-2,
|
|
363
|
-
.button-3 {
|
|
364
|
-
span {
|
|
365
|
-
border-left: 1px solid #fff;
|
|
366
|
-
}
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
&.buttons-4 {
|
|
370
|
-
.button-wrapper {
|
|
371
|
-
height: $box-height-2;
|
|
372
|
-
}
|
|
373
|
-
.au_focus {
|
|
374
|
-
bottom: $focus-bottom-2;
|
|
375
|
-
}
|
|
376
|
-
&.first-line-full {
|
|
377
|
-
.button-1 {
|
|
378
|
-
width: 100%;
|
|
379
|
-
}
|
|
380
|
-
.button-2 span {
|
|
381
|
-
border-left: 0;
|
|
382
|
-
}
|
|
383
|
-
.button-2,
|
|
384
|
-
.button-4 {
|
|
385
|
-
width: 33%;
|
|
386
|
-
}
|
|
387
|
-
.button-3 {
|
|
388
|
-
width: 34%;
|
|
389
|
-
}
|
|
390
|
-
.button-3,
|
|
391
|
-
.button-4 {
|
|
392
|
-
span {
|
|
393
|
-
border-left: 1px solid #fff;
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
.db-button {
|
|
398
|
-
width: 50%;
|
|
399
|
-
}
|
|
400
|
-
.button-2,
|
|
401
|
-
.button-4 {
|
|
402
|
-
span {
|
|
403
|
-
border-left: 1px solid #fff;
|
|
404
|
-
}
|
|
405
|
-
}
|
|
406
|
-
}
|
|
407
|
-
&.buttons-5 {
|
|
408
|
-
.button-wrapper {
|
|
409
|
-
height: $box-height-3;
|
|
410
|
-
}
|
|
411
|
-
.au_focus {
|
|
412
|
-
bottom: $focus-bottom-3;
|
|
413
|
-
}
|
|
414
|
-
&.first-line-full {
|
|
415
|
-
.button-wrapper {
|
|
416
|
-
height: $box-height-2;
|
|
417
|
-
}
|
|
418
|
-
.au_focus {
|
|
419
|
-
bottom: $focus-bottom-2;
|
|
420
|
-
}
|
|
421
|
-
.button-1 {
|
|
422
|
-
width: 100%;
|
|
423
|
-
}
|
|
424
|
-
.button-2,
|
|
425
|
-
.button-3,
|
|
426
|
-
.button-4,
|
|
427
|
-
.button-5 {
|
|
428
|
-
width: 25%;
|
|
429
|
-
}
|
|
430
|
-
.button-3,
|
|
431
|
-
.button-4,
|
|
432
|
-
.button-5 {
|
|
433
|
-
span {
|
|
434
|
-
border-left: 1px solid #fff;
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
}
|
|
438
|
-
.button-1 {
|
|
439
|
-
width: 100%;
|
|
440
|
-
}
|
|
441
|
-
.button-2,
|
|
442
|
-
.button-3,
|
|
443
|
-
.button-4,
|
|
444
|
-
.button-5 {
|
|
445
|
-
width: 50%;
|
|
446
|
-
}
|
|
447
|
-
.button-3,
|
|
448
|
-
.button-5 {
|
|
449
|
-
span {
|
|
450
|
-
border-left: 1px solid #fff;
|
|
451
|
-
}
|
|
452
|
-
}
|
|
453
|
-
}
|
|
454
|
-
&.buttons-6 {
|
|
455
|
-
&.first-line-full {
|
|
456
|
-
.button-wrapper {
|
|
457
|
-
height: $box-height-2;
|
|
458
|
-
}
|
|
459
|
-
.au_focus {
|
|
460
|
-
bottom: $focus-bottom-2;
|
|
461
|
-
}
|
|
462
|
-
.button-1 {
|
|
463
|
-
width: 100%;
|
|
464
|
-
}
|
|
465
|
-
.db-button.button-2 {
|
|
466
|
-
span {
|
|
467
|
-
border-left: none;
|
|
468
|
-
}
|
|
469
|
-
}
|
|
470
|
-
.button-2,
|
|
471
|
-
.button-3,
|
|
472
|
-
.button-4,
|
|
473
|
-
.button-5,
|
|
474
|
-
.button-6 {
|
|
475
|
-
width: 20%;
|
|
476
|
-
}
|
|
477
|
-
.button-3,
|
|
478
|
-
.button-4,
|
|
479
|
-
.button-5,
|
|
480
|
-
.button-6 {
|
|
481
|
-
span {
|
|
482
|
-
border-left: 1px solid #fff;
|
|
483
|
-
}
|
|
484
|
-
}
|
|
485
|
-
}
|
|
486
|
-
.button-wrapper {
|
|
487
|
-
height: $box-height-3;
|
|
488
|
-
}
|
|
489
|
-
.au_focus {
|
|
490
|
-
bottom: $focus-bottom-3;
|
|
491
|
-
}
|
|
492
|
-
.db-button {
|
|
493
|
-
width: 50%;
|
|
494
|
-
&:nth-child(even) span {
|
|
495
|
-
border-left: 1px solid #fff;
|
|
496
|
-
}
|
|
497
|
-
}
|
|
498
|
-
}
|
|
499
|
-
&.buttons-7 {
|
|
500
|
-
.button-wrapper {
|
|
501
|
-
height: $box-height-3;
|
|
502
|
-
}
|
|
503
|
-
.au_focus {
|
|
504
|
-
bottom: $focus-bottom-3;
|
|
505
|
-
}
|
|
506
|
-
&.first-line-full {
|
|
507
|
-
.button-wrapper {
|
|
508
|
-
height: $box-height-2;
|
|
509
|
-
}
|
|
510
|
-
.au_focus {
|
|
511
|
-
bottom: $focus-bottom-2;
|
|
512
|
-
}
|
|
513
|
-
.button-1 {
|
|
514
|
-
width: 100%;
|
|
515
|
-
}
|
|
516
|
-
.button-2,
|
|
517
|
-
.button-3,
|
|
518
|
-
.button-4,
|
|
519
|
-
.button-5,
|
|
520
|
-
.button-6,
|
|
521
|
-
.button-7 {
|
|
522
|
-
width: 16.66667%;
|
|
523
|
-
}
|
|
524
|
-
.button-3,
|
|
525
|
-
.button-4,
|
|
526
|
-
.button-5,
|
|
527
|
-
.button-6,
|
|
528
|
-
.button-7 {
|
|
529
|
-
span {
|
|
530
|
-
border-left: 1px solid #fff;
|
|
531
|
-
}
|
|
532
|
-
}
|
|
533
|
-
}
|
|
534
|
-
.button-1 {
|
|
535
|
-
width: 100%;
|
|
536
|
-
}
|
|
537
|
-
.button-2,
|
|
538
|
-
.button-4,
|
|
539
|
-
.button-5,
|
|
540
|
-
.button-7 {
|
|
541
|
-
width: 33%;
|
|
542
|
-
}
|
|
543
|
-
.button-3,
|
|
544
|
-
.button-6 {
|
|
545
|
-
width: 34%;
|
|
546
|
-
}
|
|
547
|
-
.button-3,
|
|
548
|
-
.button-4,
|
|
549
|
-
.button-6,
|
|
550
|
-
.button-7 {
|
|
551
|
-
span {
|
|
552
|
-
border-left: 1px solid #fff;
|
|
553
|
-
}
|
|
554
|
-
}
|
|
555
|
-
}
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
.utility-links .au_databox.stacked {
|
|
559
|
-
margin-bottom: 0;
|
|
560
|
-
.content {
|
|
561
|
-
max-height: 200px;
|
|
562
|
-
overflow: auto;
|
|
563
|
-
}
|
|
1
|
+
$span-height: 20px;
|
|
2
|
+
$span-minimum-padding: $span-height - 6px;
|
|
3
|
+
$span-factor: 2;
|
|
4
|
+
$span-padding-tb: $span-factor+$span-minimum-padding;
|
|
5
|
+
$span-border-top: 1px;
|
|
6
|
+
$span-total-height: $span-height+2 * $span-padding-tb;
|
|
7
|
+
$span-height-responsive: 51px;
|
|
8
|
+
$span-minimum-padding-responsive: 0px;
|
|
9
|
+
$span-padding-tb-responsive: $span-factor+$span-minimum-padding-responsive;
|
|
10
|
+
$span-total-height-responsive: $span-height-responsive+2 * $span-padding-tb-responsive;
|
|
11
|
+
$input-text-top: 11px;
|
|
12
|
+
$input-text-top-responsive: $span-padding-tb-responsive - $span-minimum-padding-responsive;
|
|
13
|
+
$box-height-1: 1 * $span-height-responsive;
|
|
14
|
+
$box-height-2: 2 * $span-height-responsive;
|
|
15
|
+
$box-height-3: 3 * $span-height-responsive;
|
|
16
|
+
$box-height-4: 4 * $span-height-responsive;
|
|
17
|
+
$box-height-5: 5 * $span-height-responsive;
|
|
18
|
+
$box-height-6: 6 * $span-height-responsive;
|
|
19
|
+
$content-color: #f0f0f0;
|
|
20
|
+
$box-text-indent: 1rem;
|
|
21
|
+
$focus-indent: 24px;
|
|
22
|
+
$focus-bottom-1: $box-height-1+$focus-indent;
|
|
23
|
+
$focus-bottom-2: $box-height-2+$focus-indent;
|
|
24
|
+
$focus-bottom-3: $box-height-3+$focus-indent;
|
|
25
|
+
$focus-bottom-4: $box-height-4+$focus-indent;
|
|
26
|
+
.au_databox {
|
|
27
|
+
margin-bottom: 2em;
|
|
28
|
+
position: relative;
|
|
29
|
+
.button-wrapper {
|
|
30
|
+
position: relative;
|
|
31
|
+
>div {
|
|
32
|
+
width: 100%;
|
|
33
|
+
position: absolute;
|
|
34
|
+
bottom: 0;
|
|
35
|
+
}
|
|
36
|
+
@media (max-width: 640px) {
|
|
37
|
+
background-image: none !important;
|
|
38
|
+
height: auto !important;
|
|
39
|
+
position: static;
|
|
40
|
+
overflow: auto;
|
|
41
|
+
>div {
|
|
42
|
+
position: static;
|
|
43
|
+
}
|
|
44
|
+
.db-button {
|
|
45
|
+
float: none;
|
|
46
|
+
width: 100% !important;
|
|
47
|
+
>span {
|
|
48
|
+
border-left: 0 !important;
|
|
49
|
+
height: $span-height-responsive; //padding: $span-padding-tb-responsive 0px;
|
|
50
|
+
}
|
|
51
|
+
>input[type=text] {
|
|
52
|
+
left: 70px;
|
|
53
|
+
top: 11px;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
.buttons-5 {
|
|
57
|
+
&.first-line-full {
|
|
58
|
+
.button-wrapper {
|
|
59
|
+
height: auto;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
.buttons-6 {
|
|
64
|
+
.button-wrapper {
|
|
65
|
+
height: auto;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
.au_focus {
|
|
70
|
+
margin-bottom: 0;
|
|
71
|
+
padding-left: 1rem;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
.content {
|
|
75
|
+
width: 100%;
|
|
76
|
+
background: $content-color;
|
|
77
|
+
padding: $box-text-indent 0;
|
|
78
|
+
overflow: auto;
|
|
79
|
+
>div {
|
|
80
|
+
padding: 0 $box-text-indent;
|
|
81
|
+
position: relative;
|
|
82
|
+
.expandall {
|
|
83
|
+
position: absolute;
|
|
84
|
+
right: 10px;
|
|
85
|
+
top: 0;
|
|
86
|
+
text-decoration: underline;
|
|
87
|
+
cursor: pointer;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
ul {
|
|
91
|
+
margin-top: 0;
|
|
92
|
+
margin-left: 0;
|
|
93
|
+
ul {
|
|
94
|
+
margin-top: .65rem;
|
|
95
|
+
}
|
|
96
|
+
li {
|
|
97
|
+
a {
|
|
98
|
+
text-decoration: none;
|
|
99
|
+
&:hover {
|
|
100
|
+
text-decoration: underline;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
ul.letters {
|
|
106
|
+
display: flex;
|
|
107
|
+
justify-content: flex-start;
|
|
108
|
+
flex-flow: row wrap;
|
|
109
|
+
font-size: 1.1rem;
|
|
110
|
+
margin-top: .15rem;
|
|
111
|
+
margin-bottom: .75rem;
|
|
112
|
+
margin-left: 0;
|
|
113
|
+
padding-bottom: .75rem;
|
|
114
|
+
border-bottom: 1px solid #ccc;
|
|
115
|
+
li {
|
|
116
|
+
padding: 0;
|
|
117
|
+
margin: 2px 2px;
|
|
118
|
+
background-color: #aaa;
|
|
119
|
+
text-align: center;
|
|
120
|
+
font-size: 1.2rem;
|
|
121
|
+
&.available {
|
|
122
|
+
button {
|
|
123
|
+
cursor: pointer;
|
|
124
|
+
color: #fff;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
&.active {
|
|
128
|
+
font-weight: bold;
|
|
129
|
+
}
|
|
130
|
+
&:before {
|
|
131
|
+
content: '';
|
|
132
|
+
}
|
|
133
|
+
button {
|
|
134
|
+
font-family: $font-passata-regular;
|
|
135
|
+
color: #ccc;
|
|
136
|
+
text-transform: uppercase;
|
|
137
|
+
width: 20px;
|
|
138
|
+
line-height: inherit;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
.au_collapsible {
|
|
143
|
+
margin-bottom: 0;
|
|
144
|
+
padding: .6rem 0;
|
|
145
|
+
>.csc-header {
|
|
146
|
+
margin-bottom: 1rem;
|
|
147
|
+
&:after {
|
|
148
|
+
font-size: 24px;
|
|
149
|
+
}
|
|
150
|
+
h3 {
|
|
151
|
+
margin: 0;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
&.au_collapsed {
|
|
155
|
+
>.csc-header {
|
|
156
|
+
margin-bottom: 0;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
& .au_focus {
|
|
162
|
+
margin-left: 24px;
|
|
163
|
+
position: absolute;
|
|
164
|
+
margin-bottom: 0;
|
|
165
|
+
&.before {
|
|
166
|
+
position: static;
|
|
167
|
+
padding: 1.5em 0 1.5em 14px;
|
|
168
|
+
margin-left: 0;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
.clear {
|
|
172
|
+
clear: both;
|
|
173
|
+
}
|
|
174
|
+
&.width-full {
|
|
175
|
+
width: 100%;
|
|
176
|
+
}
|
|
177
|
+
.db-button {
|
|
178
|
+
float: left;
|
|
179
|
+
text-indent: $box-text-indent;
|
|
180
|
+
color: #fff;
|
|
181
|
+
position: relative;
|
|
182
|
+
text-align: left;
|
|
183
|
+
padding: 0;
|
|
184
|
+
margin: 0;
|
|
185
|
+
border: 0;
|
|
186
|
+
font: 1.7272727273rem $font-passata-regular;
|
|
187
|
+
&:not(.db-search),
|
|
188
|
+
&.search-filter {
|
|
189
|
+
cursor: pointer;
|
|
190
|
+
}
|
|
191
|
+
>span {
|
|
192
|
+
display: block;
|
|
193
|
+
border-top: $span-border-top solid #fff;
|
|
194
|
+
padding: $span-padding-tb 0px;
|
|
195
|
+
line-height: 1;
|
|
196
|
+
a {
|
|
197
|
+
color: #fff;
|
|
198
|
+
text-decoration: none;
|
|
199
|
+
&:hover {
|
|
200
|
+
text-decoration: underline;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
$input-left: 65px;
|
|
205
|
+
input[type=text] {
|
|
206
|
+
font-size: 1.25rem;
|
|
207
|
+
position: absolute;
|
|
208
|
+
top: $input-text-top;
|
|
209
|
+
left: $input-left;
|
|
210
|
+
background: #fff url($findicon) no-repeat right center;
|
|
211
|
+
background: rgba(255, 255, 255, .75) url($findicon) no-repeat right center;
|
|
212
|
+
border: 0;
|
|
213
|
+
width: calc(100% - #{$input-left} - #{$box-text-indent});
|
|
214
|
+
padding: 0;
|
|
215
|
+
margin: 0;
|
|
216
|
+
height: 32px;
|
|
217
|
+
text-indent: 10px;
|
|
218
|
+
&.active {
|
|
219
|
+
background: #fff;
|
|
220
|
+
background: rgba(255, 255, 255, .75);
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
&.overlay {
|
|
224
|
+
background: rgb(204, 204, 204);
|
|
225
|
+
background: rgba(204, 204, 204, .25);
|
|
226
|
+
}
|
|
227
|
+
&.active {
|
|
228
|
+
background: $content-color;
|
|
229
|
+
color: #000;
|
|
230
|
+
a {
|
|
231
|
+
color: #000;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
&.collapse {
|
|
236
|
+
.db-button {
|
|
237
|
+
&:after {
|
|
238
|
+
color: #fff;
|
|
239
|
+
opacity: 0.8;
|
|
240
|
+
font-family: 'au_icons';
|
|
241
|
+
content: '+';
|
|
242
|
+
float: right;
|
|
243
|
+
font-size: 32px;
|
|
244
|
+
position: absolute;
|
|
245
|
+
top: 10px;
|
|
246
|
+
right: 0;
|
|
247
|
+
margin-right: .3em;
|
|
248
|
+
}
|
|
249
|
+
&.active:after {
|
|
250
|
+
color: #000;
|
|
251
|
+
opacity: 1;
|
|
252
|
+
content: '-'
|
|
253
|
+
}
|
|
254
|
+
&.db-search:after {
|
|
255
|
+
content: '';
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
&.stacked {
|
|
260
|
+
.button-wrapper {
|
|
261
|
+
background-image: none !important;
|
|
262
|
+
height: auto !important;
|
|
263
|
+
position: static;
|
|
264
|
+
>div {
|
|
265
|
+
position: static;
|
|
266
|
+
}
|
|
267
|
+
.db-button {
|
|
268
|
+
float: none;
|
|
269
|
+
width: 100% !important;
|
|
270
|
+
>span {
|
|
271
|
+
border-left: 0 !important;
|
|
272
|
+
height: $span-height-responsive; //padding: $span-padding-tb-responsive 0px;
|
|
273
|
+
}
|
|
274
|
+
>input[type=text] {
|
|
275
|
+
left: 70px;
|
|
276
|
+
top: 11px;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
.buttons-5 {
|
|
280
|
+
&.first-line-full {
|
|
281
|
+
.button-wrapper {
|
|
282
|
+
height: auto;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
.buttons-6 {
|
|
287
|
+
.button-wrapper {
|
|
288
|
+
height: auto;
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
.content {
|
|
293
|
+
padding-top: 0;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
&.buttons-1 {
|
|
297
|
+
.au_focus {
|
|
298
|
+
bottom: $focus-bottom-1;
|
|
299
|
+
}
|
|
300
|
+
.button-wrapper {
|
|
301
|
+
height: $box-height-1;
|
|
302
|
+
}
|
|
303
|
+
.db-button {
|
|
304
|
+
width: 100%;
|
|
305
|
+
>span {
|
|
306
|
+
text-indent: -9999px;
|
|
307
|
+
}
|
|
308
|
+
>input[type=text] {
|
|
309
|
+
left: 14px;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
&.buttons-2 {
|
|
314
|
+
.button-wrapper {
|
|
315
|
+
height: $box-height-1;
|
|
316
|
+
}
|
|
317
|
+
.au_focus {
|
|
318
|
+
bottom: $focus-bottom-1;
|
|
319
|
+
}
|
|
320
|
+
.db-button {
|
|
321
|
+
width: 50%;
|
|
322
|
+
&:nth-child(2) span {
|
|
323
|
+
border-left: 1px solid #fff;
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
&.buttons-3 {
|
|
328
|
+
.button-wrapper {
|
|
329
|
+
height: $box-height-1;
|
|
330
|
+
}
|
|
331
|
+
.au_focus {
|
|
332
|
+
bottom: $focus-bottom-1;
|
|
333
|
+
}
|
|
334
|
+
&.first-line-full {
|
|
335
|
+
.button-wrapper {
|
|
336
|
+
height: $box-height-2;
|
|
337
|
+
}
|
|
338
|
+
.au_focus {
|
|
339
|
+
bottom: $focus-bottom-2;
|
|
340
|
+
}
|
|
341
|
+
.button-1 {
|
|
342
|
+
width: 100%;
|
|
343
|
+
}
|
|
344
|
+
.button-2,
|
|
345
|
+
.button-3 {
|
|
346
|
+
width: 50%;
|
|
347
|
+
}
|
|
348
|
+
.button-2 span {
|
|
349
|
+
border-left: 0;
|
|
350
|
+
}
|
|
351
|
+
.button-3 span {
|
|
352
|
+
border-left: 1px solid #fff;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
.button-1,
|
|
356
|
+
.button-3 {
|
|
357
|
+
width: 33%;
|
|
358
|
+
}
|
|
359
|
+
.button-2 {
|
|
360
|
+
width: 34%;
|
|
361
|
+
}
|
|
362
|
+
.button-2,
|
|
363
|
+
.button-3 {
|
|
364
|
+
span {
|
|
365
|
+
border-left: 1px solid #fff;
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
&.buttons-4 {
|
|
370
|
+
.button-wrapper {
|
|
371
|
+
height: $box-height-2;
|
|
372
|
+
}
|
|
373
|
+
.au_focus {
|
|
374
|
+
bottom: $focus-bottom-2;
|
|
375
|
+
}
|
|
376
|
+
&.first-line-full {
|
|
377
|
+
.button-1 {
|
|
378
|
+
width: 100%;
|
|
379
|
+
}
|
|
380
|
+
.button-2 span {
|
|
381
|
+
border-left: 0;
|
|
382
|
+
}
|
|
383
|
+
.button-2,
|
|
384
|
+
.button-4 {
|
|
385
|
+
width: 33%;
|
|
386
|
+
}
|
|
387
|
+
.button-3 {
|
|
388
|
+
width: 34%;
|
|
389
|
+
}
|
|
390
|
+
.button-3,
|
|
391
|
+
.button-4 {
|
|
392
|
+
span {
|
|
393
|
+
border-left: 1px solid #fff;
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
.db-button {
|
|
398
|
+
width: 50%;
|
|
399
|
+
}
|
|
400
|
+
.button-2,
|
|
401
|
+
.button-4 {
|
|
402
|
+
span {
|
|
403
|
+
border-left: 1px solid #fff;
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
&.buttons-5 {
|
|
408
|
+
.button-wrapper {
|
|
409
|
+
height: $box-height-3;
|
|
410
|
+
}
|
|
411
|
+
.au_focus {
|
|
412
|
+
bottom: $focus-bottom-3;
|
|
413
|
+
}
|
|
414
|
+
&.first-line-full {
|
|
415
|
+
.button-wrapper {
|
|
416
|
+
height: $box-height-2;
|
|
417
|
+
}
|
|
418
|
+
.au_focus {
|
|
419
|
+
bottom: $focus-bottom-2;
|
|
420
|
+
}
|
|
421
|
+
.button-1 {
|
|
422
|
+
width: 100%;
|
|
423
|
+
}
|
|
424
|
+
.button-2,
|
|
425
|
+
.button-3,
|
|
426
|
+
.button-4,
|
|
427
|
+
.button-5 {
|
|
428
|
+
width: 25%;
|
|
429
|
+
}
|
|
430
|
+
.button-3,
|
|
431
|
+
.button-4,
|
|
432
|
+
.button-5 {
|
|
433
|
+
span {
|
|
434
|
+
border-left: 1px solid #fff;
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
.button-1 {
|
|
439
|
+
width: 100%;
|
|
440
|
+
}
|
|
441
|
+
.button-2,
|
|
442
|
+
.button-3,
|
|
443
|
+
.button-4,
|
|
444
|
+
.button-5 {
|
|
445
|
+
width: 50%;
|
|
446
|
+
}
|
|
447
|
+
.button-3,
|
|
448
|
+
.button-5 {
|
|
449
|
+
span {
|
|
450
|
+
border-left: 1px solid #fff;
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
&.buttons-6 {
|
|
455
|
+
&.first-line-full {
|
|
456
|
+
.button-wrapper {
|
|
457
|
+
height: $box-height-2;
|
|
458
|
+
}
|
|
459
|
+
.au_focus {
|
|
460
|
+
bottom: $focus-bottom-2;
|
|
461
|
+
}
|
|
462
|
+
.button-1 {
|
|
463
|
+
width: 100%;
|
|
464
|
+
}
|
|
465
|
+
.db-button.button-2 {
|
|
466
|
+
span {
|
|
467
|
+
border-left: none;
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
.button-2,
|
|
471
|
+
.button-3,
|
|
472
|
+
.button-4,
|
|
473
|
+
.button-5,
|
|
474
|
+
.button-6 {
|
|
475
|
+
width: 20%;
|
|
476
|
+
}
|
|
477
|
+
.button-3,
|
|
478
|
+
.button-4,
|
|
479
|
+
.button-5,
|
|
480
|
+
.button-6 {
|
|
481
|
+
span {
|
|
482
|
+
border-left: 1px solid #fff;
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
.button-wrapper {
|
|
487
|
+
height: $box-height-3;
|
|
488
|
+
}
|
|
489
|
+
.au_focus {
|
|
490
|
+
bottom: $focus-bottom-3;
|
|
491
|
+
}
|
|
492
|
+
.db-button {
|
|
493
|
+
width: 50%;
|
|
494
|
+
&:nth-child(even) span {
|
|
495
|
+
border-left: 1px solid #fff;
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
&.buttons-7 {
|
|
500
|
+
.button-wrapper {
|
|
501
|
+
height: $box-height-3;
|
|
502
|
+
}
|
|
503
|
+
.au_focus {
|
|
504
|
+
bottom: $focus-bottom-3;
|
|
505
|
+
}
|
|
506
|
+
&.first-line-full {
|
|
507
|
+
.button-wrapper {
|
|
508
|
+
height: $box-height-2;
|
|
509
|
+
}
|
|
510
|
+
.au_focus {
|
|
511
|
+
bottom: $focus-bottom-2;
|
|
512
|
+
}
|
|
513
|
+
.button-1 {
|
|
514
|
+
width: 100%;
|
|
515
|
+
}
|
|
516
|
+
.button-2,
|
|
517
|
+
.button-3,
|
|
518
|
+
.button-4,
|
|
519
|
+
.button-5,
|
|
520
|
+
.button-6,
|
|
521
|
+
.button-7 {
|
|
522
|
+
width: 16.66667%;
|
|
523
|
+
}
|
|
524
|
+
.button-3,
|
|
525
|
+
.button-4,
|
|
526
|
+
.button-5,
|
|
527
|
+
.button-6,
|
|
528
|
+
.button-7 {
|
|
529
|
+
span {
|
|
530
|
+
border-left: 1px solid #fff;
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
.button-1 {
|
|
535
|
+
width: 100%;
|
|
536
|
+
}
|
|
537
|
+
.button-2,
|
|
538
|
+
.button-4,
|
|
539
|
+
.button-5,
|
|
540
|
+
.button-7 {
|
|
541
|
+
width: 33%;
|
|
542
|
+
}
|
|
543
|
+
.button-3,
|
|
544
|
+
.button-6 {
|
|
545
|
+
width: 34%;
|
|
546
|
+
}
|
|
547
|
+
.button-3,
|
|
548
|
+
.button-4,
|
|
549
|
+
.button-6,
|
|
550
|
+
.button-7 {
|
|
551
|
+
span {
|
|
552
|
+
border-left: 1px solid #fff;
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
.utility-links .au_databox.stacked {
|
|
559
|
+
margin-bottom: 0;
|
|
560
|
+
.content {
|
|
561
|
+
max-height: 200px;
|
|
562
|
+
overflow: auto;
|
|
563
|
+
}
|
|
564
564
|
}
|