@woosmap/ui 3.144.0 → 3.145.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/package.json +1 -1
- package/src/components/Card/Card.js +77 -13
- package/src/components/Card/Card.stories.js +47 -8
- package/src/components/Card/Card.styl +94 -0
- package/src/images/products/product-address-sq.png +0 -0
- package/src/images/products/product-address.png +0 -0
- package/src/images/products/product-distance-sq.png +0 -0
- package/src/images/products/product-distance.png +0 -0
- package/src/images/products/product-geofencing-sq.png +0 -0
- package/src/images/products/product-geofencing.png +0 -0
- package/src/images/products/product-geolocation-sq.png +0 -0
- package/src/images/products/product-geolocation.png +0 -0
- package/src/images/products/product-indoor-database-sq.png +0 -0
- package/src/images/products/product-indoor-database.png +0 -0
- package/src/images/products/product-indoor-distance-sq.png +0 -0
- package/src/images/products/product-indoor-distance.png +0 -0
- package/src/images/products/product-indoor-mapping-sq.png +0 -0
- package/src/images/products/product-indoor-mapping.png +0 -0
- package/src/images/products/product-indoor-search-sq.png +0 -0
- package/src/images/products/product-indoor-search.png +0 -0
- package/src/images/products/product-localities-sq.png +0 -0
- package/src/images/products/product-localities-uk-sq.png +0 -0
- package/src/images/products/product-localities-uk.png +0 -0
- package/src/images/products/product-localities.png +0 -0
- package/src/images/products/product-map-sq.png +0 -0
- package/src/images/products/product-map.png +0 -0
- package/src/images/products/product-mapping-sq.png +0 -0
- package/src/images/products/product-mapping.png +0 -0
- package/src/images/products/product-merchant-sq.png +0 -0
- package/src/images/products/product-merchant.png +0 -0
- package/src/images/products/product-multisearch-sq.png +0 -0
- package/src/images/products/product-multisearch.png +0 -0
- package/src/images/products/product-storelocator-sq.png +0 -0
- package/src/images/products/product-storelocator.png +0 -0
- package/src/images/products/product-stores-sq.png +0 -0
- package/src/images/products/product-stores.png +0 -0
- package/src/images/products/product-traffic-sq.png +0 -0
- package/src/images/products/product-traffic.png +0 -0
- package/src/styles/console/badge.styl +39 -0
- package/src/styles/console/colors.styl +17 -1
- package/src/styles/style-console.styl +1 -0
- package/src/styles/website/colors.styl +17 -0
- package/src/styles/website/dropdown.styl +10 -0
package/package.json
CHANGED
|
@@ -13,6 +13,11 @@ import addressImg from '../../images/products/product-address.png';
|
|
|
13
13
|
import mapImg from '../../images/products/product-map.png';
|
|
14
14
|
import trafficImg from '../../images/products/product-traffic.png';
|
|
15
15
|
import merchantImg from '../../images/products/product-merchant.png';
|
|
16
|
+
import indoorMappingImg from '../../images/products/product-indoor-mapping.png';
|
|
17
|
+
import indoorSearchImg from '../../images/products/product-indoor-search.png';
|
|
18
|
+
import indoorDistanceImg from '../../images/products/product-indoor-distance.png';
|
|
19
|
+
import indoorDatabaseImg from '../../images/products/product-indoor-database.png';
|
|
20
|
+
|
|
16
21
|
import localitiesImgSq from '../../images/products/product-localities-sq.png';
|
|
17
22
|
import localitiesUkImgSq from '../../images/products/product-localities-uk-sq.png';
|
|
18
23
|
import geolocationImgSq from '../../images/products/product-geolocation-sq.png';
|
|
@@ -22,6 +27,10 @@ import addressImgSq from '../../images/products/product-address-sq.png';
|
|
|
22
27
|
import mapImgSq from '../../images/products/product-map-sq.png';
|
|
23
28
|
import trafficImgSq from '../../images/products/product-traffic-sq.png';
|
|
24
29
|
import merchantImgSq from '../../images/products/product-merchant-sq.png';
|
|
30
|
+
import indoorMappingImgSq from '../../images/products/product-indoor-mapping-sq.png';
|
|
31
|
+
import indoorSearchImgSq from '../../images/products/product-indoor-search-sq.png';
|
|
32
|
+
import indoorDistanceImgSq from '../../images/products/product-indoor-distance-sq.png';
|
|
33
|
+
import indoorDatabaseImgSq from '../../images/products/product-indoor-database-sq.png';
|
|
25
34
|
|
|
26
35
|
const productImg = {
|
|
27
36
|
LOCALITIES: localitiesImg,
|
|
@@ -33,6 +42,10 @@ const productImg = {
|
|
|
33
42
|
MAP: mapImg,
|
|
34
43
|
TRAFFIC: trafficImg,
|
|
35
44
|
MERCHANTS: merchantImg,
|
|
45
|
+
INDOOR_MAPPING: indoorMappingImg,
|
|
46
|
+
INDOOR_SEARCH: indoorSearchImg,
|
|
47
|
+
INDOOR_DISTANCE: indoorDistanceImg,
|
|
48
|
+
INDOOR_DATABASE: indoorDatabaseImg,
|
|
36
49
|
};
|
|
37
50
|
const productImgSq = {
|
|
38
51
|
LOCALITIES: localitiesImgSq,
|
|
@@ -44,6 +57,10 @@ const productImgSq = {
|
|
|
44
57
|
MAP: mapImgSq,
|
|
45
58
|
TRAFFIC: trafficImgSq,
|
|
46
59
|
MERCHANTS: merchantImgSq,
|
|
60
|
+
INDOOR_MAPPING: indoorMappingImgSq,
|
|
61
|
+
INDOOR_SEARCH: indoorSearchImgSq,
|
|
62
|
+
INDOOR_DISTANCE: indoorDistanceImgSq,
|
|
63
|
+
INDOOR_DATABASE: indoorDatabaseImgSq,
|
|
47
64
|
};
|
|
48
65
|
|
|
49
66
|
class Header extends Component {
|
|
@@ -91,6 +108,28 @@ Footer.propTypes = {
|
|
|
91
108
|
children: PropTypes.node.isRequired,
|
|
92
109
|
};
|
|
93
110
|
|
|
111
|
+
class Aside extends Component {
|
|
112
|
+
render() {
|
|
113
|
+
const { children, isGreyBg, isSmall, ...rest } = this.props;
|
|
114
|
+
const greyClass = isGreyBg ? 'card__aside--grey' : null;
|
|
115
|
+
const smallClass = isSmall ? 'card__aside--small' : null;
|
|
116
|
+
return (
|
|
117
|
+
<div className={cl('card__aside', greyClass, smallClass)} {...rest}>
|
|
118
|
+
{children}
|
|
119
|
+
</div>
|
|
120
|
+
);
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
Aside.propTypes = {
|
|
125
|
+
children: PropTypes.node.isRequired,
|
|
126
|
+
isGreyBg: PropTypes.bool,
|
|
127
|
+
isSmall: PropTypes.bool,
|
|
128
|
+
};
|
|
129
|
+
Aside.defaultProps = {
|
|
130
|
+
isGreyBg: false,
|
|
131
|
+
isSmall: false,
|
|
132
|
+
};
|
|
94
133
|
class Card extends Component {
|
|
95
134
|
render() {
|
|
96
135
|
const {
|
|
@@ -107,6 +146,8 @@ class Card extends Component {
|
|
|
107
146
|
size,
|
|
108
147
|
testId,
|
|
109
148
|
isNew,
|
|
149
|
+
orientation,
|
|
150
|
+
asideContent,
|
|
110
151
|
...rest
|
|
111
152
|
} = this.props;
|
|
112
153
|
|
|
@@ -125,12 +166,30 @@ class Card extends Component {
|
|
|
125
166
|
default:
|
|
126
167
|
imgSize = productImg[product];
|
|
127
168
|
}
|
|
169
|
+
const cardContent = (
|
|
170
|
+
<>
|
|
171
|
+
<div className={itemClass}>
|
|
172
|
+
{useIcon ? (
|
|
173
|
+
<Icon icon={product.toLowerCase()} size={iconSize} alt={product} />
|
|
174
|
+
) : (
|
|
175
|
+
<img className="card__img" src={imgSize} alt={product} />
|
|
176
|
+
)}
|
|
177
|
+
{isNew && !isList ? <div className="card__new-label">{tr('New')}</div> : null}
|
|
178
|
+
</div>
|
|
179
|
+
<div className="card__content">
|
|
180
|
+
{isNew && isList ? <div className="card__new-label">{tr('New')}</div> : null}
|
|
181
|
+
{children}
|
|
182
|
+
</div>
|
|
183
|
+
</>
|
|
184
|
+
);
|
|
128
185
|
return (
|
|
129
186
|
<div
|
|
130
187
|
role="button"
|
|
131
188
|
className={cl(
|
|
132
189
|
'card',
|
|
190
|
+
`card--${orientation}`,
|
|
133
191
|
`card--${size}`,
|
|
192
|
+
{ 'card--aside': asideContent },
|
|
134
193
|
{ 'card--no-border': noBorder },
|
|
135
194
|
{ 'card--clickable': isClickable },
|
|
136
195
|
`card--${product.toLowerCase()}`,
|
|
@@ -144,31 +203,29 @@ class Card extends Component {
|
|
|
144
203
|
tabIndex="0"
|
|
145
204
|
data-testid={testId}
|
|
146
205
|
>
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
<
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
<div className="card__content">
|
|
156
|
-
{isNew && isList ? <div className="card__new-label">{tr('New')}</div> : null}
|
|
157
|
-
{children}
|
|
158
|
-
</div>
|
|
206
|
+
{asideContent ? (
|
|
207
|
+
<>
|
|
208
|
+
<div className="card__wrapper">{cardContent}</div>
|
|
209
|
+
{asideContent}
|
|
210
|
+
</>
|
|
211
|
+
) : (
|
|
212
|
+
cardContent
|
|
213
|
+
)}
|
|
159
214
|
</div>
|
|
160
215
|
);
|
|
161
216
|
}
|
|
162
217
|
}
|
|
163
218
|
|
|
164
219
|
Card.defaultProps = {
|
|
220
|
+
asideContent: null,
|
|
165
221
|
size: 'normal',
|
|
222
|
+
orientation: 'horizontal',
|
|
166
223
|
useIcon: false,
|
|
167
224
|
isList: false,
|
|
168
225
|
className: null,
|
|
169
226
|
active: false,
|
|
170
227
|
onClick: null,
|
|
171
|
-
product:
|
|
228
|
+
product: null,
|
|
172
229
|
iconSize: 38,
|
|
173
230
|
isClickable: false,
|
|
174
231
|
noBorder: false,
|
|
@@ -177,7 +234,9 @@ Card.defaultProps = {
|
|
|
177
234
|
};
|
|
178
235
|
|
|
179
236
|
Card.propTypes = {
|
|
237
|
+
asideContent: PropTypes.node,
|
|
180
238
|
size: PropTypes.oneOf(['small', 'large', 'normal']),
|
|
239
|
+
orientation: PropTypes.oneOf(['horizontal', 'vertical']),
|
|
181
240
|
testId: PropTypes.string,
|
|
182
241
|
children: PropTypes.node.isRequired,
|
|
183
242
|
useIcon: PropTypes.bool,
|
|
@@ -196,6 +255,10 @@ Card.propTypes = {
|
|
|
196
255
|
'TRAFFIC',
|
|
197
256
|
'MERCHANTS',
|
|
198
257
|
'LOCALITIES',
|
|
258
|
+
'INDOOR_MAPPING',
|
|
259
|
+
'INDOOR_SEARCH',
|
|
260
|
+
'INDOOR_DISTANCE',
|
|
261
|
+
'INDOOR_DATABASE',
|
|
199
262
|
]),
|
|
200
263
|
iconSize: PropTypes.number,
|
|
201
264
|
isClickable: PropTypes.bool,
|
|
@@ -207,4 +270,5 @@ export default Object.assign(Card, {
|
|
|
207
270
|
Header,
|
|
208
271
|
Body,
|
|
209
272
|
Footer,
|
|
273
|
+
Aside,
|
|
210
274
|
});
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import Card from './Card';
|
|
3
|
+
import Button from '../Button/Button';
|
|
4
|
+
import Switch from '../Switch/Switch';
|
|
3
5
|
import Label from '../Label/Label';
|
|
4
6
|
import Tooltip from '../Tooltip/Tooltip';
|
|
5
7
|
import SimpleCard from './SimpleCard';
|
|
8
|
+
import mapImgSq from '../../images/products/product-map-sq.png';
|
|
9
|
+
import indoorDatabaseImgSq from '../../images/products/product-indoor-database-sq.png';
|
|
6
10
|
|
|
7
11
|
const Story = {
|
|
8
12
|
title: 'base/Card',
|
|
@@ -10,29 +14,64 @@ const Story = {
|
|
|
10
14
|
};
|
|
11
15
|
|
|
12
16
|
export default Story;
|
|
17
|
+
const renderAsideContent = () => (
|
|
18
|
+
<>
|
|
19
|
+
<Card.Aside isGreyBg isSmall>
|
|
20
|
+
<div className="card__aside__title">Plugged to</div>
|
|
21
|
+
<div className="card__aside__body">
|
|
22
|
+
<img className="card__aside__body__image" src={indoorDatabaseImgSq} alt="Database API" />
|
|
23
|
+
<span className="card__aside__body__title">Indoor Database API</span>
|
|
24
|
+
</div>
|
|
25
|
+
</Card.Aside>
|
|
26
|
+
<Card.Aside>
|
|
27
|
+
<div className="card__aside__title">Work with</div>
|
|
28
|
+
<div className="card__aside__body">
|
|
29
|
+
<img className="card__aside__body__image" src={mapImgSq} alt="Map API" />
|
|
30
|
+
<span className="card__aside__body__title">Map API</span>
|
|
31
|
+
</div>
|
|
32
|
+
<div className="card__aside__footer">Will be atomatically activated</div>
|
|
33
|
+
</Card.Aside>
|
|
34
|
+
</>
|
|
35
|
+
);
|
|
13
36
|
|
|
14
37
|
const Template = () => (
|
|
15
38
|
<div className="flex-column mbib--large">
|
|
16
|
-
<Card
|
|
39
|
+
<Card asideContent={renderAsideContent()} orientation="vertical" size="small" product="INDOOR_MAPPING">
|
|
17
40
|
<Card.Header>
|
|
18
|
-
<h4 className="card__header__title">
|
|
41
|
+
<h4 className="card__header__title">Geolocation API</h4>
|
|
19
42
|
</Card.Header>
|
|
20
43
|
<Card.Body>
|
|
21
|
-
<p className="card__body__desc">
|
|
44
|
+
<p className="card__body__desc">
|
|
45
|
+
A dual-function API for automated location services : App and website background customisation and
|
|
46
|
+
list of stores nearby. Automatically retrieve and analyse your user location in your mobile
|
|
47
|
+
application or on your website to personalise it, and list your nearby points of sale. Propose the
|
|
48
|
+
suitable country, currency or language, catchment area, or initialise your map display around the
|
|
49
|
+
end user and retrieve your own Points of Interest, with less clicks.
|
|
50
|
+
</p>
|
|
51
|
+
<Button type="link-primary" label="Discover" />
|
|
22
52
|
</Card.Body>
|
|
23
53
|
<Card.Footer>
|
|
24
|
-
<
|
|
54
|
+
<Switch text="Activate" />
|
|
25
55
|
</Card.Footer>
|
|
26
56
|
</Card>
|
|
27
|
-
<Card
|
|
57
|
+
<Card orientation="vertical" size="large" product="TRAFFIC">
|
|
28
58
|
<Card.Header>
|
|
29
|
-
<h4 className="card__header__title">
|
|
59
|
+
<h4 className="card__header__title">Traffic API</h4>
|
|
60
|
+
<div className="card__status">
|
|
61
|
+
<div className="badge badge--active badge--small" />
|
|
62
|
+
<span className="card__status__label">Activated</span>
|
|
63
|
+
<Button type="link-flex" label="99 groups" />
|
|
64
|
+
</div>
|
|
30
65
|
</Card.Header>
|
|
31
66
|
<Card.Body>
|
|
32
|
-
<p className="card__body__desc">
|
|
67
|
+
<p className="card__body__desc">
|
|
68
|
+
The Woosmap Traffic API is a service that provides travel distances and durations with traffic.
|
|
69
|
+
Compared to the Woosmap Distance API this API uses traffic information when returning duration
|
|
70
|
+
times.
|
|
71
|
+
</p>
|
|
33
72
|
</Card.Body>
|
|
34
73
|
<Card.Footer>
|
|
35
|
-
<
|
|
74
|
+
<Button label="Discover" />
|
|
36
75
|
</Card.Footer>
|
|
37
76
|
</Card>
|
|
38
77
|
</div>
|
|
@@ -20,6 +20,18 @@
|
|
|
20
20
|
&__img
|
|
21
21
|
display block
|
|
22
22
|
br(1)
|
|
23
|
+
&__status
|
|
24
|
+
display flex
|
|
25
|
+
align-items center
|
|
26
|
+
margin-top .4rem
|
|
27
|
+
mbi(.4)
|
|
28
|
+
&__label
|
|
29
|
+
color $secondary60
|
|
30
|
+
.badge
|
|
31
|
+
&--small
|
|
32
|
+
margin-right .6rem
|
|
33
|
+
.btn
|
|
34
|
+
color $secondary60
|
|
23
35
|
&--normal
|
|
24
36
|
.card
|
|
25
37
|
&__img
|
|
@@ -52,6 +64,88 @@
|
|
|
52
64
|
border .1rem solid $secondary40
|
|
53
65
|
&--no-border
|
|
54
66
|
border 0
|
|
67
|
+
&--vertical
|
|
68
|
+
&.card--large
|
|
69
|
+
br(1)
|
|
70
|
+
flex-direction column
|
|
71
|
+
width 26rem
|
|
72
|
+
.card
|
|
73
|
+
&__img
|
|
74
|
+
border-radius .9rem .9rem 0 0
|
|
75
|
+
max-width 100%
|
|
76
|
+
width 100%
|
|
77
|
+
&__content
|
|
78
|
+
padding-bottom 2rem
|
|
79
|
+
&__header
|
|
80
|
+
&__title
|
|
81
|
+
line-height 2.6rem
|
|
82
|
+
font-weight 600
|
|
83
|
+
&__body
|
|
84
|
+
&__desc
|
|
85
|
+
margin-bottom 1rem
|
|
86
|
+
&.card--small
|
|
87
|
+
flex-direction row
|
|
88
|
+
width 26rem
|
|
89
|
+
&.card--aside
|
|
90
|
+
flex-direction column
|
|
91
|
+
.card
|
|
92
|
+
&__img
|
|
93
|
+
br()
|
|
94
|
+
sq(5)
|
|
95
|
+
margin 1.4rem
|
|
96
|
+
&__content
|
|
97
|
+
mbib(1.2)
|
|
98
|
+
padding 0
|
|
99
|
+
margin 1.4rem 1.4rem 1.4rem 0
|
|
100
|
+
&__header
|
|
101
|
+
&__title
|
|
102
|
+
font-size 1.6rem
|
|
103
|
+
line-height 1
|
|
104
|
+
font-weight 600
|
|
105
|
+
&__body
|
|
106
|
+
mbib(.6)
|
|
107
|
+
&__footer
|
|
108
|
+
padding-top 1rem
|
|
109
|
+
&__aside
|
|
110
|
+
padding 1.4rem
|
|
111
|
+
font-size $fontSizeSmall
|
|
112
|
+
&:not(.card__aside--small)
|
|
113
|
+
mbib(1.1)
|
|
114
|
+
&--grey
|
|
115
|
+
background-color $dark3
|
|
116
|
+
&__body
|
|
117
|
+
mbi(1.4)
|
|
118
|
+
display flex
|
|
119
|
+
align-items center
|
|
120
|
+
&__image
|
|
121
|
+
sq(3)
|
|
122
|
+
br()
|
|
123
|
+
&__title
|
|
124
|
+
font-weight 600
|
|
125
|
+
font-size $fontSize
|
|
126
|
+
&__footer
|
|
127
|
+
color $dark40
|
|
128
|
+
&--small
|
|
129
|
+
mbi(1)
|
|
130
|
+
display flex
|
|
131
|
+
align-items center
|
|
132
|
+
font-size $fontSizeSmall
|
|
133
|
+
.card__aside
|
|
134
|
+
&__body
|
|
135
|
+
mbi(1)
|
|
136
|
+
&__image
|
|
137
|
+
sq(2.2)
|
|
138
|
+
br(50)
|
|
139
|
+
&__title
|
|
140
|
+
font-size $fontSizeSmall
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
&__wrapper
|
|
145
|
+
display flex
|
|
146
|
+
padding-bottom 1rem
|
|
147
|
+
&__aside
|
|
148
|
+
border-top .1rem solid $borderColor
|
|
55
149
|
&.active
|
|
56
150
|
cursor default
|
|
57
151
|
border-color $secondary60
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
.badge
|
|
2
|
+
br(50)
|
|
3
|
+
sq(1.4)
|
|
4
|
+
margin-right 1.4rem
|
|
5
|
+
flex-shrink 0
|
|
6
|
+
background-color $secondary20
|
|
7
|
+
&--line
|
|
8
|
+
br()
|
|
9
|
+
width 2.6rem
|
|
10
|
+
height .4rem
|
|
11
|
+
&--small
|
|
12
|
+
sq(1)
|
|
13
|
+
margin-right .6rem
|
|
14
|
+
&--active
|
|
15
|
+
background $success2
|
|
16
|
+
&--localities
|
|
17
|
+
background-color $localities
|
|
18
|
+
&--geolocation
|
|
19
|
+
background-color $geolocation
|
|
20
|
+
&--distance
|
|
21
|
+
background-color $distance
|
|
22
|
+
&--stores
|
|
23
|
+
background-color $stores
|
|
24
|
+
&--address
|
|
25
|
+
background-color $address
|
|
26
|
+
&--map
|
|
27
|
+
background-color $map
|
|
28
|
+
&--merchant
|
|
29
|
+
background-color $merchant
|
|
30
|
+
&--traffic
|
|
31
|
+
background-color $traffic
|
|
32
|
+
&--indoor-mapping
|
|
33
|
+
background-color $indoorMapping
|
|
34
|
+
&--indoor-search
|
|
35
|
+
background-color $indoorSearch
|
|
36
|
+
&--indoor-distance
|
|
37
|
+
background-color $indoorDistance
|
|
38
|
+
&--indoor-database
|
|
39
|
+
background-color $indoorDatabase
|
|
@@ -398,7 +398,23 @@ $mapping = #B9715A
|
|
|
398
398
|
$mapping10 = rgba($mapping, .1)
|
|
399
399
|
$mappingDark = #96503A
|
|
400
400
|
|
|
401
|
-
|
|
402
401
|
$showcases = #68668E
|
|
403
402
|
$showcases10 = rgba($showcases, .1)
|
|
404
403
|
$showcasesDark = #444177
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
$indoorMapping = #B7B38B
|
|
407
|
+
$indoorMapping10 = rgba($indoorMapping, .1)
|
|
408
|
+
$indoorMappingDark = #918C66
|
|
409
|
+
|
|
410
|
+
$indoorSearch = #DBC649
|
|
411
|
+
$indoorSearch10 = rgba($indoorSearch, .1)
|
|
412
|
+
$indoorSearchDark = #B7A134
|
|
413
|
+
|
|
414
|
+
$indoorDistance = #E5AA53
|
|
415
|
+
$indoorDistance10 = rgba($indoorDistance, .1)
|
|
416
|
+
$indoorDistanceDark = #BF873C
|
|
417
|
+
|
|
418
|
+
$indoorDatabase = #A09B8A
|
|
419
|
+
$indoorDatabase10 = rgba($indoorDatabase, .1)
|
|
420
|
+
$indoorDatabaseDark = #7C7663
|
|
@@ -339,3 +339,20 @@ $showcasesDark = #444177
|
|
|
339
339
|
$indoor = #B7B38B
|
|
340
340
|
$indoor10 = rgba($indoor, .1)
|
|
341
341
|
$indoorDark = #77735A
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
$indoorMapping = #B7B38B
|
|
345
|
+
$indoorMapping10 = rgba($indoorMapping, .1)
|
|
346
|
+
$indoorMappingDark = #918C66
|
|
347
|
+
|
|
348
|
+
$indoorSearch = #DBC649
|
|
349
|
+
$indoorSearch10 = rgba($indoorSearch, .1)
|
|
350
|
+
$indoorSearchDark = #B7A134
|
|
351
|
+
|
|
352
|
+
$indoorDistance = #E5AA53
|
|
353
|
+
$indoorDistance10 = rgba($indoorDistance, .1)
|
|
354
|
+
$indoorDistanceDark = #BF873C
|
|
355
|
+
|
|
356
|
+
$indoorDatabase = #A09B8A
|
|
357
|
+
$indoorDatabase10 = rgba($indoorDatabase, .1)
|
|
358
|
+
$indoorDatabaseDark = #7C7663
|
|
@@ -62,6 +62,16 @@
|
|
|
62
62
|
background $mappingDark !important
|
|
63
63
|
&.showcases
|
|
64
64
|
background $showcasesDark !important
|
|
65
|
+
&.indoor
|
|
66
|
+
background $indoorDark !important
|
|
67
|
+
&.indoor-mapping
|
|
68
|
+
background $indoorMappingDark !important
|
|
69
|
+
&.indoor-search
|
|
70
|
+
background $indoorSearchDark !important
|
|
71
|
+
&.indoor-distance
|
|
72
|
+
background $indoorDistanceDark !important
|
|
73
|
+
&.indoor-database
|
|
74
|
+
background $indoorDatabaseDark !important
|
|
65
75
|
&__desc
|
|
66
76
|
color $dark !important
|
|
67
77
|
&__icon
|