viniBaxter-desk_front 16.0.0 → 17.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/viniBaxter/desk_front/version.rb +1 -1
- data/lib/viniBaxter/sass/desk_front/dashkit/_avatar.scss +17 -17
- data/lib/viniBaxter/sass/desk_front/landing/spa_landing/theme/_card.scss +1 -1
- data/lib/viniBaxter/sass/desk_front/landing/spa_landing/theme/_device.scss +23 -16
- data/lib/viniBaxter/sass/desk_front/landing/spa_landing/theme/utilities/_overlay.scss +6 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4bd1dcb2086219ea057d4517d3e4a8f201f63527c3d09b63cfd3b808d551311
|
4
|
+
data.tar.gz: 8342cb5ed6ba2541b732ee65a938e4ee3a9f17bd1e2bfc7829e4d2d951659999
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4fafd57aefaba9344e6d0036f584fade6554769d8e7336df9eda3abee1eeab8b22e38dd270d74ce5b9f90c935a4ab460b7665e7f6be16278c0824f2e7069a53
|
7
|
+
data.tar.gz: b41ed0e962dc5cd1e5b63fc609a69e41fb865755e23a5704c5f4694212761f56e6d401dd7db27296fa3508516f408718aa7689156c25665abff1ebd5c3e39073
|
@@ -19,14 +19,13 @@
|
|
19
19
|
position: absolute;
|
20
20
|
width: 0;
|
21
21
|
height: 0;
|
22
|
-
background-image: url(image-path(
|
23
|
-
|
24
|
-
|
25
|
-
|
22
|
+
background-image: url(image-path('desk_front/avatar-status.svg')),
|
23
|
+
url(image-path('desk_front/avatar-group.svg')),
|
24
|
+
url(image-path('desk_front/avatar-group-hover.svg')),
|
25
|
+
url(image-path('desk_front/avatar-group-hover-last.svg'));
|
26
26
|
}
|
27
27
|
}
|
28
28
|
|
29
|
-
|
30
29
|
.avatar-img {
|
31
30
|
width: 100%;
|
32
31
|
height: 100%;
|
@@ -44,12 +43,12 @@
|
|
44
43
|
color: $avatar-title-color;
|
45
44
|
}
|
46
45
|
|
47
|
-
|
48
46
|
// Status
|
49
47
|
|
50
48
|
.avatar-online,
|
51
|
-
.avatar-offline
|
52
|
-
|
49
|
+
.avatar-offline,
|
50
|
+
.card-notselected,
|
51
|
+
.card-selected {
|
53
52
|
&::before {
|
54
53
|
content: '';
|
55
54
|
position: absolute;
|
@@ -61,12 +60,13 @@
|
|
61
60
|
}
|
62
61
|
|
63
62
|
.avatar-img {
|
64
|
-
mask-image: url(image-path(
|
63
|
+
mask-image: url(image-path('desk_front/avatar-status.svg'));
|
65
64
|
mask-size: 100% 100%;
|
66
65
|
}
|
67
66
|
}
|
68
67
|
|
69
|
-
.avatar-online::before
|
68
|
+
.avatar-online::before,
|
69
|
+
.card-selected::before {
|
70
70
|
background-color: $success;
|
71
71
|
}
|
72
72
|
|
@@ -74,6 +74,9 @@
|
|
74
74
|
background-color: $gray-500;
|
75
75
|
}
|
76
76
|
|
77
|
+
.card-notselected::before {
|
78
|
+
background-color: $warning;
|
79
|
+
}
|
77
80
|
|
78
81
|
// Sizing
|
79
82
|
|
@@ -113,7 +116,6 @@
|
|
113
116
|
}
|
114
117
|
}
|
115
118
|
|
116
|
-
|
117
119
|
// Ratio
|
118
120
|
|
119
121
|
.avatar.avatar-4by3 {
|
@@ -140,7 +142,6 @@
|
|
140
142
|
width: $avatar-size-xxl * 4 / 3;
|
141
143
|
}
|
142
144
|
|
143
|
-
|
144
145
|
// Group
|
145
146
|
|
146
147
|
.avatar-group {
|
@@ -173,9 +174,9 @@
|
|
173
174
|
}
|
174
175
|
|
175
176
|
// Add some spacing between avatars
|
176
|
-
|
177
|
+
|
177
178
|
.avatar:not(:last-child) {
|
178
|
-
mask-image: url(image-path(
|
179
|
+
mask-image: url(image-path('desk_front/avatar-group.svg'));
|
179
180
|
mask-size: 100% 100%;
|
180
181
|
}
|
181
182
|
|
@@ -186,13 +187,12 @@
|
|
186
187
|
z-index: 1;
|
187
188
|
|
188
189
|
+ .avatar {
|
189
|
-
mask-image: url(image-path(
|
190
|
+
mask-image: url(image-path('desk_front/avatar-group-hover.svg'));
|
190
191
|
mask-size: 100% 100%;
|
191
192
|
|
192
193
|
&:last-child {
|
193
|
-
mask-image: url(image-path(
|
194
|
+
mask-image: url(image-path('desk_front/avatar-group-hover-last.svg'));
|
194
195
|
}
|
195
196
|
}
|
196
197
|
}
|
197
|
-
|
198
198
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
//
|
1
|
+
avatar-online//
|
2
2
|
// device.scss
|
3
3
|
// Theme component
|
4
4
|
//
|
@@ -12,7 +12,7 @@
|
|
12
12
|
}
|
13
13
|
|
14
14
|
.device::before {
|
15
|
-
content:
|
15
|
+
content: '';
|
16
16
|
background-color: $light;
|
17
17
|
}
|
18
18
|
|
@@ -22,24 +22,26 @@
|
|
22
22
|
object-fit: cover;
|
23
23
|
}
|
24
24
|
|
25
|
-
|
26
25
|
//
|
27
26
|
// Single devices
|
28
27
|
//
|
29
28
|
|
30
29
|
.device-iphonex::before,
|
31
30
|
.device-iphonex > .device-screen {
|
32
|
-
top: 7.784431138%;
|
33
|
-
|
31
|
+
top: 7.784431138%;
|
32
|
+
left: 16.4021164%;
|
33
|
+
width: 66.137566137%;
|
34
|
+
height: 80.838323353%;
|
34
35
|
}
|
35
36
|
|
36
37
|
.device-macbook::before,
|
37
38
|
.device-macbook > .device-screen {
|
38
|
-
top: 11.53846154%;
|
39
|
-
|
39
|
+
top: 11.53846154%;
|
40
|
+
left: 13.38709677%;
|
41
|
+
width: 73.548387096%;
|
42
|
+
height: 73.076923076%;
|
40
43
|
}
|
41
44
|
|
42
|
-
|
43
45
|
//
|
44
46
|
// Combos
|
45
47
|
//
|
@@ -57,15 +59,16 @@
|
|
57
59
|
}
|
58
60
|
|
59
61
|
.device-combo-iphonex-iphonex > .device-iphonex {
|
60
|
-
|
61
62
|
&:first-child {
|
62
|
-
bottom: 0;
|
63
|
+
bottom: 0;
|
64
|
+
left: 0;
|
63
65
|
width: 65.5260116%;
|
64
66
|
z-index: 1;
|
65
67
|
}
|
66
68
|
|
67
69
|
&:last-child {
|
68
|
-
top: 0;
|
70
|
+
top: 0;
|
71
|
+
right: 0;
|
69
72
|
width: 72.8323699%;
|
70
73
|
}
|
71
74
|
}
|
@@ -87,17 +90,21 @@
|
|
87
90
|
}
|
88
91
|
|
89
92
|
.device-combo-macbook-iphonex > .device-macbook {
|
90
|
-
top: 0;
|
93
|
+
top: 0;
|
94
|
+
left: 0;
|
91
95
|
}
|
92
96
|
|
93
97
|
.device-combo-iphonex-macbook > .device-macbook {
|
94
|
-
top: 0;
|
98
|
+
top: 0;
|
99
|
+
right: 0;
|
95
100
|
}
|
96
101
|
|
97
102
|
.device-combo-macbook-iphonex > .device-iphonex {
|
98
|
-
bottom: 0;
|
103
|
+
bottom: 0;
|
104
|
+
right: 0;
|
99
105
|
}
|
100
106
|
|
101
107
|
.device-combo-iphonex-macbook > .device-iphonex {
|
102
|
-
bottom: 0;
|
103
|
-
|
108
|
+
bottom: 0;
|
109
|
+
left: 0;
|
110
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: viniBaxter-desk_front
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 17.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- viny baxter
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06-
|
11
|
+
date: 2020-06-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|