File tree 2 files changed +23
-3
lines changed
2 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 29
29
background-image : none;
30
30
}
31
31
32
- .views-nav a .is-active {
32
+ .demo-active . views-nav a .is-active {
33
33
background-image : url(../ img/arrow-right.svg);
34
34
color : # 999 ;
35
35
}
36
36
37
37
.views-main .view {
38
- display : none;
38
+ border-radius : 0 ;
39
+ border-top-width : 0 ;
39
40
margin-left : 27% ;
40
41
}
41
42
42
- .views-main .view .is-active {
43
+ .demo-active .views-main .view {
44
+ display : none;
45
+ }
46
+
47
+ .views-main .view : first-child ,
48
+ .demo-active .views-main .view {
49
+ border-top-left-radius : 0.5em ;
50
+ border-top-right-radius : 0.5em ;
51
+ border-top-width : 2px ;
52
+ }
53
+
54
+ .views-main .view : last-child ,
55
+ .demo-active .views-main .view {
56
+ border-bottom-left-radius : 0.5em ;
57
+ border-bottom-right-radius : 0.5em ;
58
+ }
59
+
60
+ .demo-active .views-main .view .is-active {
43
61
display : block;
44
62
}
45
63
Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ <h2>Where to get it</h2>
142
142
// are turned off. I would not recommend using this outside
143
143
// the context of this demo... consider it a placeholder for
144
144
// "your large layout logic here".
145
+ $viewContainer . addClass ( 'demo-active' ) ;
145
146
$ ( 'a[data-pushview]' ) . on ( 'click' , function ( event ) {
146
147
var href = $ ( this ) . attr ( 'href' )
147
148
, $target = $ ( href )
@@ -158,6 +159,7 @@ <h2>Where to get it</h2>
158
159
} )
159
160
// This is called when the plugin is _about_ to activate.
160
161
. on ( 'slideViewBeforeOn' , function ( ) {
162
+ $viewContainer . removeClass ( 'demo-active' ) ;
161
163
// Remove the event we bound to these elements in the
162
164
// previous function so that SimpleSlideView can use
163
165
// them without conflicts.
You can’t perform that action at this time.
0 commit comments