better_styles 0.0.0.333 → 0.0.0.334
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 +8 -8
- data/assets/stylesheets/better/content/_box.scss +1 -1
- data/assets/stylesheets/better/layout/_section.scss +5 -5
- data/assets/stylesheets/better/templates/_fixed_aside_to_header.scss +1 -1
- data/assets/stylesheets/better/templates/_icon_aside.scss +2 -2
- data/lib/better_styles/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NjY4ZWJlY2Q0MmY2NzdmYjM4NzRlOGFjOWJmNzBmMDUwOTMyMDBlMQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MmQ1MTZlYWQ1YTgyYTBkMDEzMGE3ZjI3Nzc3Zjk5NDk2NTk5NmU4ZQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZGE3NmExMDhkYzRlMjBmZjRmYTM2Y2Y5NDM3MjY2OGI1Y2RiYWY2YmIyOGM1
|
10
|
+
NzJlNmU5NTRmMWJlN2Q1ZTMxNjA5Njg1YzUwMGNlMGQ5YjBkMGQyMjkzY2Vm
|
11
|
+
NWE1YzMxZWIzOTc4Njg2YjU3Nzg1M2U4MGMwMjJjZDY3N2RlZDk=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NDUwZDVmZjIzMjgwMGZlYTYwYWJkYzYyZjE4NjQxMzRlMjM1NGEzMmM1MmRj
|
14
|
+
MmNjZGEwYmM4MGU5YjFiYjY4NDMyM2ZkMmExMGVlZWE2ZTliY2ZlM2VlNjYy
|
15
|
+
YjZjMjg2YzlmYjlhYTU5OTVkYjhhOTkzOWQ2NzMxOTQ5YWM3ZDA=
|
@@ -74,26 +74,26 @@
|
|
74
74
|
//
|
75
75
|
&.hard-top {
|
76
76
|
border-top: solid 1px $main-border-color;
|
77
|
-
|
77
|
+
box-shadow: inset 0 1px 1px 0 rgba(255,255,255,.75);
|
78
78
|
}
|
79
79
|
&.hard-bottom {
|
80
80
|
border-bottom: solid 1px rgba(255,255,255,.75);
|
81
81
|
@include box-shadow( inset 0 -1px 1px 0 $main-border-color );
|
82
82
|
}
|
83
83
|
&.hard-top.hard-bottom {
|
84
|
-
|
84
|
+
box-shadow: inset 0 1px 1px 0 rgba(255,255,255,.75), inset 0 -1px 1px 0 $main-border-color;
|
85
85
|
}
|
86
86
|
|
87
87
|
&.dotted-top {
|
88
88
|
border-top: dotted 2px $gray-light;
|
89
|
-
|
89
|
+
box-shadow: inset 0 1px 1px 0 rgba(255,255,255,.75);
|
90
90
|
}
|
91
91
|
&.dotted-bottom {
|
92
92
|
border-bottom: dotted 2px $gray-light;
|
93
|
-
|
93
|
+
box-shadow: 0 1px 1px 0 rgba(255,255,255,.75);
|
94
94
|
}
|
95
95
|
&.dotted-top, &.dotted-bottom {
|
96
|
-
|
96
|
+
box-shadow: inset 0 1px 1px 0 rgba(255,255,255,.75), 0 1px 1px 0 rgba(255,255,255,.75);
|
97
97
|
}
|
98
98
|
|
99
99
|
//
|
@@ -32,9 +32,9 @@ $filterAside-width: 15rem;
|
|
32
32
|
|
33
33
|
|
34
34
|
.main-aside, .filter-aside, .main-content, .right-aside, .app-logo {
|
35
|
-
|
35
|
+
transition: all 1s ease;
|
36
36
|
}
|
37
|
-
body {
|
37
|
+
body { transition: padding 1s ease; min-height: 100%; }
|
38
38
|
|
39
39
|
|
40
40
|
.main-content {
|