bookends 3.1.0 → 3.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/bookends/_glostick.scss +10 -10
- data/lib/bookends/version.rb +1 -1
- 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: d3f9b360b274fef4e33f93711e5e809679b36b8d
|
4
|
+
data.tar.gz: 4d5c4edeb43cfb39673fd07cc4ed8364edfb0f63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 401ed67dda067774ecc5f4d313150074629e65d20218cfa463fc33ea3367fe1d394b3c8932fec8638ddd8d37779f700b66c02dad3db5bbe2200548596ea4ea43
|
7
|
+
data.tar.gz: ccb8ac5bbac89e90185549935c668d471aa9d9e80fef7e52fefdc223202dcda3e134b1b726d6068ca28bb1e6d7a82f32d033fec66af64aa39124c9ba12c0aea7
|
@@ -12,7 +12,7 @@ $gs-asset-path: 'bookends/glostick_icons';
|
|
12
12
|
}
|
13
13
|
|
14
14
|
.glostick__user .icon-navigator-toggle {
|
15
|
-
background: url("#{$gs-asset-path}/navigator.svg");
|
15
|
+
background: asset-url("#{$gs-asset-path}/navigator.svg");
|
16
16
|
background-size: 19px 16px;
|
17
17
|
background-repeat: no-repeat;
|
18
18
|
background-position: center center;
|
@@ -23,7 +23,7 @@ $gs-asset-path: 'bookends/glostick_icons';
|
|
23
23
|
cursor: pointer;
|
24
24
|
|
25
25
|
.home-page & {
|
26
|
-
background: url("#{$gs-asset-path}/navigator-purple.svg");
|
26
|
+
background: asset-url("#{$gs-asset-path}/navigator-purple.svg");
|
27
27
|
background-size: 19px 16px;
|
28
28
|
background-repeat: no-repeat;
|
29
29
|
background-position: center center;
|
@@ -188,33 +188,33 @@ $gs-asset-path: 'bookends/glostick_icons';
|
|
188
188
|
}
|
189
189
|
|
190
190
|
.glostick__menu__item--dashboard {
|
191
|
-
background-image: url("#{$gs-asset-path}/dashboard.svg");
|
191
|
+
background-image: asset-url("#{$gs-asset-path}/dashboard.svg");
|
192
192
|
}
|
193
193
|
|
194
194
|
.glostick__menu__item--databases {
|
195
|
-
background-image: url("#{$gs-asset-path}/databases.svg");
|
195
|
+
background-image: asset-url("#{$gs-asset-path}/databases.svg");
|
196
196
|
}
|
197
197
|
|
198
198
|
.glostick__menu__item--dataclips {
|
199
|
-
background-image: url("#{$gs-asset-path}/dataclips.svg");
|
199
|
+
background-image: asset-url("#{$gs-asset-path}/dataclips.svg");
|
200
200
|
}
|
201
201
|
|
202
202
|
.glostick__menu__item--elements {
|
203
|
-
background-image: url("#{$gs-asset-path}/elements.svg");
|
203
|
+
background-image: asset-url("#{$gs-asset-path}/elements.svg");
|
204
204
|
}
|
205
205
|
|
206
206
|
.glostick__menu__item--support {
|
207
|
-
background-image: url("#{$gs-asset-path}/support.svg");
|
207
|
+
background-image: asset-url("#{$gs-asset-path}/support.svg");
|
208
208
|
}
|
209
209
|
|
210
210
|
.glostick__menu__item--docs {
|
211
|
-
background-image: url("#{$gs-asset-path}/docs.svg");
|
211
|
+
background-image: asset-url("#{$gs-asset-path}/docs.svg");
|
212
212
|
}
|
213
213
|
|
214
214
|
.glostick__menu__item--settings {
|
215
|
-
background-image: url("#{$gs-asset-path}/settings.svg");
|
215
|
+
background-image: asset-url("#{$gs-asset-path}/settings.svg");
|
216
216
|
}
|
217
217
|
|
218
218
|
.glostick__menu__item--signout {
|
219
|
-
background-image: url("#{$gs-asset-path}/signout.svg");
|
219
|
+
background-image: asset-url("#{$gs-asset-path}/signout.svg");
|
220
220
|
}
|
data/lib/bookends/version.rb
CHANGED