active_skin 0.0.11 → 0.0.12
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/app/assets/stylesheets/active_skin.sass +8 -7
- data/lib/active_skin/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: 5d30e41cdd9c5dc8ebada370b8c86713d12909ce
|
4
|
+
data.tar.gz: efffb532bd7a4242c6898540d2a7da0e172821ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee5ca09be0a09de5eff7bb6bacfa964bf19231b48e2a80dcbc08aaeb502397753d5f15a1707dcbdee51ec34053d43c031d6b835bf1a7d9c39bedaf3e9eb42490
|
7
|
+
data.tar.gz: 3f516d4780b9be198631fcc95a740723bafd11b40c2c3ca11be95165a2d777eedce5a5decfcbc38d2198c0a8e4d45ce34ce6493fa3d7be5f8a674c971abd4d37
|
@@ -5,17 +5,18 @@ $skinTextTable: #7f8c8d !default
|
|
5
5
|
$skinActiveColor: #e73c3c !default
|
6
6
|
$skinHeaderBck: #1e2a33 !default
|
7
7
|
$skinHeaderTextColor: #FFFFFF !default
|
8
|
+
$skinFontFamily: 'Source Sans Pro', sans-serif !default
|
8
9
|
$panelHeaderBck: #2c3e50 !default
|
9
10
|
$panelHeaderTextColor: #FFFFFF !default
|
10
11
|
$skinLogo: #fff image-url("active_skin/default_logo.png") no-repeat 30px 0 !default
|
11
12
|
|
12
13
|
html
|
13
14
|
background: #ecf0f1
|
14
|
-
font-family:
|
15
|
+
font-family: $skinFontFamily
|
15
16
|
|
16
17
|
body.active_admin
|
17
18
|
background: #ecf0f1
|
18
|
-
font-family:
|
19
|
+
font-family: $skinFontFamily
|
19
20
|
padding-bottom: 80px
|
20
21
|
|
21
22
|
#header
|
@@ -173,7 +174,7 @@ table.index_table
|
|
173
174
|
.pagination
|
174
175
|
margin-top: -2px
|
175
176
|
a, span.page.current
|
176
|
-
font-family:
|
177
|
+
font-family: $skinFontFamily
|
177
178
|
border: 1px solid #d3d8dc
|
178
179
|
background: #ecf0f1
|
179
180
|
@include no-shadow()
|
@@ -220,7 +221,7 @@ table.index_table
|
|
220
221
|
font-weight: normal
|
221
222
|
font-size: 13px
|
222
223
|
text-transform: uppercase
|
223
|
-
font-family:
|
224
|
+
font-family: $skinFontFamily
|
224
225
|
padding: 7px 0
|
225
226
|
|
226
227
|
#footer
|
@@ -310,7 +311,7 @@ form fieldset.inputs
|
|
310
311
|
|
311
312
|
.attributes_table table th, .attributes_table table td
|
312
313
|
padding: 10px 0
|
313
|
-
font-family:
|
314
|
+
font-family: $skinFontFamily
|
314
315
|
color: #95a5a6
|
315
316
|
.attributes_table table th
|
316
317
|
font-weight: normal
|
@@ -336,7 +337,7 @@ body.logged_out
|
|
336
337
|
border: none
|
337
338
|
> h2
|
338
339
|
background: $panelHeaderBck
|
339
|
-
font-family:
|
340
|
+
font-family: $skinFontFamily
|
340
341
|
color: #fff
|
341
342
|
@include no-shadow()
|
342
343
|
@include rounded(0)
|
@@ -367,7 +368,7 @@ form input[type=url],
|
|
367
368
|
form input[type=tel],
|
368
369
|
form textarea
|
369
370
|
@include rounded(0)
|
370
|
-
font-family:
|
371
|
+
font-family: $skinFontFamily
|
371
372
|
padding: 5px 10px
|
372
373
|
|
373
374
|
form.filter_form .filter_form_field.filter_date_range input[type=text]
|
data/lib/active_skin/version.rb
CHANGED