my_dashboard 0.5.9 → 0.5.10
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/my_dashboard/version.rb +1 -1
- data/vendor/assets/stylesheets/my_dashboard/my_dashboard.scss +36 -85
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0879f34835674e7dfff908e9cc0f2052d8ad82ac
|
4
|
+
data.tar.gz: b2f090619b2ab5ba4b980a17c93e9f13bd3f221f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 233ead1d6cf65d17d520c87f1338239365dc465b61569edc24436aaaf6a91634398ec5e3be33f23c66524640535ca1e1b96c2356d2423fff6b738ad658cdfa7a
|
7
|
+
data.tar.gz: 850510bab52d9d9acead569ad781d7be17fc191425b3e3870c241d55cee60744b9093dafb8eabb90b622d6a6049ef5179b5d814c74d3942811c95dd620b7fc59
|
data/CHANGELOG.md
CHANGED
data/lib/my_dashboard/version.rb
CHANGED
@@ -6,7 +6,7 @@ $text-color: #fff;
|
|
6
6
|
|
7
7
|
$background-warning-color-1: #e82711;
|
8
8
|
$background-warning-color-2: #9b2d23;
|
9
|
-
$text-warning-color: #
|
9
|
+
$text-warning-color: #fff;
|
10
10
|
|
11
11
|
$background-danger-color-1: #eeae32;
|
12
12
|
$background-danger-color-2: #ff9618;
|
@@ -108,92 +108,21 @@ h3 {
|
|
108
108
|
// ----------------------------------------------------------------------------
|
109
109
|
// Base widget styles
|
110
110
|
// ----------------------------------------------------------------------------
|
111
|
-
|
112
|
-
|
113
|
-
.gridster > ul {
|
114
|
-
display: flex;
|
115
|
-
}
|
116
|
-
|
117
|
-
#container {
|
118
|
-
justify-content: center;
|
119
|
-
}
|
120
|
-
|
121
|
-
.gridster > ul {
|
122
|
-
// align-items: stretch;
|
123
|
-
// align-content: space-between;
|
124
|
-
// justify-content: stretch;
|
125
|
-
// display: flex;
|
126
|
-
// flex-wrap: wrap;
|
127
|
-
align-items: stretch;
|
128
|
-
align-content: space-between;
|
129
|
-
justify-content: flex-start;
|
130
|
-
display: flex;
|
131
|
-
flex-wrap: wrap;
|
132
|
-
flex: 12;
|
133
|
-
}
|
134
|
-
|
135
|
-
.gridster > ul > .gs-w {
|
136
|
-
z-index: 2;
|
137
|
-
display: flex;
|
138
|
-
max-width: 320px;
|
139
|
-
height: auto;
|
140
|
-
width: 320px;
|
141
|
-
padding-bottom: 20px;
|
142
|
-
justify-content: space-around;
|
143
|
-
align-content: space-around;
|
144
|
-
}
|
145
|
-
|
146
|
-
.gridster > ul > li > .widget {
|
147
|
-
display: flex;
|
148
|
-
align-items: center;
|
149
|
-
flex-direction: column;
|
150
|
-
width: 95%;
|
151
|
-
justify-content: space-around;
|
152
|
-
align-content: space-around;
|
153
|
-
}
|
154
|
-
|
155
|
-
.gridster > ul > li > .widget > .more-info,
|
156
|
-
.gridster > ul > li > .widget > .updated-at {
|
157
|
-
font-size: 15px;
|
158
|
-
font-weight: bold;
|
159
|
-
font-family: Arial;
|
160
|
-
}
|
161
|
-
|
162
|
-
.widget {
|
163
|
-
background-image: url("https://www.mlabs.com.br/assets/blocos.png");
|
164
|
-
}
|
165
|
-
|
166
|
-
.gs-w > .widget-number {
|
167
|
-
background-color: #353940;
|
168
|
-
}
|
169
|
-
|
170
|
-
.gs-w > .widget-number > .value,
|
171
|
-
.gs-w > .widget-number > .change-rate,
|
172
|
-
.widget-number > h1.title,
|
173
|
-
.gridster > ul > li > .widget > .more-info,
|
174
|
-
.gridster > ul > li > .widget > .updated-at {
|
175
|
-
color: $text-warning-color;
|
176
|
-
}
|
177
|
-
|
178
|
-
.gs-w > .widget-list {
|
179
|
-
background-color: #6E60A0;
|
180
|
-
}
|
181
|
-
|
182
|
-
.widget-number > h1.title {
|
183
|
-
font-size: 20px;
|
184
|
-
text-transform: uppercase;
|
185
|
-
}
|
186
|
-
|
187
|
-
.change-rate > .fa-arrow-down {
|
188
|
-
color: #FF5335;
|
189
|
-
}
|
190
|
-
|
191
|
-
.change-rate > .fa-arrow-up {
|
192
|
-
color: #5DAE8B;
|
111
|
+
.gridster {
|
112
|
+
margin: 0px auto;
|
193
113
|
}
|
194
114
|
|
195
115
|
.icon-background {
|
196
|
-
|
116
|
+
pointer-events: none;
|
117
|
+
width: 100%!important;
|
118
|
+
height: 100%;
|
119
|
+
position: absolute;
|
120
|
+
left: 0;
|
121
|
+
top: 0;
|
122
|
+
opacity: 0.1;
|
123
|
+
font-size: 275px;
|
124
|
+
text-align: center;
|
125
|
+
margin-top: 82px;
|
197
126
|
}
|
198
127
|
|
199
128
|
.list-nostyle {
|
@@ -205,11 +134,17 @@ h3 {
|
|
205
134
|
}
|
206
135
|
|
207
136
|
.gs_w {
|
137
|
+
width: 100%;
|
138
|
+
display: table;
|
208
139
|
cursor: pointer;
|
209
140
|
}
|
210
141
|
|
211
142
|
.widget {
|
212
|
-
|
143
|
+
text-align: center;
|
144
|
+
width: inherit;
|
145
|
+
height: inherit;
|
146
|
+
display: table-cell;
|
147
|
+
vertical-align: middle;
|
213
148
|
}
|
214
149
|
|
215
150
|
.widget.status-warning {
|
@@ -239,6 +174,22 @@ h3 {
|
|
239
174
|
}
|
240
175
|
}
|
241
176
|
|
177
|
+
.more-info {
|
178
|
+
font-size: 15px;
|
179
|
+
position: absolute;
|
180
|
+
bottom: 32px;
|
181
|
+
left: 0;
|
182
|
+
right: 0;
|
183
|
+
}
|
184
|
+
|
185
|
+
.updated-at {
|
186
|
+
font-size: 15px;
|
187
|
+
position: absolute;
|
188
|
+
bottom: 12px;
|
189
|
+
left: 0;
|
190
|
+
right: 0;
|
191
|
+
}
|
192
|
+
|
242
193
|
#save-gridster {
|
243
194
|
display: none;
|
244
195
|
position: fixed;
|