viniBaxter-desk_front 16.0.0 → 17.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f3f1a9bb5462d6c7e4ac3767750648d0bbf42eb95be68782e4782a56831d26a
4
- data.tar.gz: e7382b14fdcc63ed4533d0c7f7b157129fd7263b7fc7ebaf81a84395c1128370
3
+ metadata.gz: f4bd1dcb2086219ea057d4517d3e4a8f201f63527c3d09b63cfd3b808d551311
4
+ data.tar.gz: 8342cb5ed6ba2541b732ee65a938e4ee3a9f17bd1e2bfc7829e4d2d951659999
5
5
  SHA512:
6
- metadata.gz: 54a7aedd6ef2fea27de95910a1891d71d67d73420037ec05090961517b8157a261fe0369d239e88c176a927f8f2ae6871f561f3762485ef204a028f2d982160c
7
- data.tar.gz: 290862fa3e6824495fd5e04dd166f9a92193fece2f988e3e123556ae86d18817ccae0e53ffa351ade53ccc6af7841c3cc062f53649e3b7defc63e91caffb5c64
6
+ metadata.gz: b4fafd57aefaba9344e6d0036f584fade6554769d8e7336df9eda3abee1eeab8b22e38dd270d74ce5b9f90c935a4ab460b7665e7f6be16278c0824f2e7069a53
7
+ data.tar.gz: b41ed0e962dc5cd1e5b63fc609a69e41fb865755e23a5704c5f4694212761f56e6d401dd7db27296fa3508516f408718aa7689156c25665abff1ebd5c3e39073
@@ -1,5 +1,5 @@
1
1
  module ViniBaxter
2
2
  module DeskFront
3
- VERSION = "16.0.0"
3
+ VERSION = "17.0.0"
4
4
  end
5
5
  end
@@ -19,14 +19,13 @@
19
19
  position: absolute;
20
20
  width: 0;
21
21
  height: 0;
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"));
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("desk_front/avatar-status.svg"));
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("desk_front/avatar-group.svg"));
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("desk_front/avatar-group-hover.svg"));
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("desk_front/avatar-group-hover-last.svg"));
194
+ mask-image: url(image-path('desk_front/avatar-group-hover-last.svg'));
194
195
  }
195
196
  }
196
197
  }
197
-
198
198
  }
@@ -15,7 +15,7 @@
15
15
  font-weight: 800;
16
16
  font-family: circular;
17
17
  &.place {
18
- font-size: 1vw;
18
+ font-size: 4vh;
19
19
  }
20
20
  }
21
21
 
@@ -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%; left: 16.4021164%;
33
- width: 66.137566137%; height: 80.838323353%;
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%; left: 13.38709677%;
39
- width: 73.548387096%; height: 73.076923076%;
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; left: 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; right: 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; left: 0;
93
+ top: 0;
94
+ left: 0;
91
95
  }
92
96
 
93
97
  .device-combo-iphonex-macbook > .device-macbook {
94
- top: 0; right: 0;
98
+ top: 0;
99
+ right: 0;
95
100
  }
96
101
 
97
102
  .device-combo-macbook-iphonex > .device-iphonex {
98
- bottom: 0; right: 0;
103
+ bottom: 0;
104
+ right: 0;
99
105
  }
100
106
 
101
107
  .device-combo-iphonex-macbook > .device-iphonex {
102
- bottom: 0; left: 0;
103
- }
108
+ bottom: 0;
109
+ left: 0;
110
+ }
@@ -48,6 +48,12 @@
48
48
  &::before {
49
49
  opacity: 0;
50
50
  }
51
+ h5 {
52
+ color: $light !important;
53
+ }
54
+ // .badge {
55
+ // display: block;
56
+ // }
51
57
  }
52
58
  }
53
59
  }
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: 16.0.0
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-18 00:00:00.000000000 Z
11
+ date: 2020-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler