Adding ICS button. Make sidebar not sticky.
This commit is contained in:
parent
25eb491f24
commit
8055071b8b
|
@ -14,8 +14,8 @@ import Regex
|
||||||
|
|
||||||
-- External modules
|
-- External modules
|
||||||
|
|
||||||
import Html exposing (Html, text, div, ul, li, span, i, h4, small)
|
import Html exposing (Html, text, div, ul, li, span, i, h4, small, a)
|
||||||
import Html.Attributes exposing (class, classList, style)
|
import Html.Attributes exposing (class, classList, style, href)
|
||||||
import Html.Events exposing (onClick)
|
import Html.Events exposing (onClick)
|
||||||
import Date.Extra exposing (Interval(..), equalBy)
|
import Date.Extra exposing (Interval(..), equalBy)
|
||||||
|
|
||||||
|
@ -60,9 +60,7 @@ filterSidebar model =
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "col-sm-3", True )
|
[ ( "col-sm-3", True )
|
||||||
, ( "col-sm-push-9", True )
|
, ( "col-sm-push-9", True )
|
||||||
, ( "schedule-sidebar", True )
|
|
||||||
, ( "schedule-filter", True )
|
, ( "schedule-filter", True )
|
||||||
, ( "sticky", True )
|
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
[ h4 [] [ text "Filter" ]
|
[ h4 [] [ text "Filter" ]
|
||||||
|
@ -86,6 +84,34 @@ filterSidebar model =
|
||||||
model.eventInstances
|
model.eventInstances
|
||||||
.videoState
|
.videoState
|
||||||
]
|
]
|
||||||
|
, icsButton model
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
icsButton : Model -> Html Msg
|
||||||
|
icsButton model =
|
||||||
|
let
|
||||||
|
filterString =
|
||||||
|
case filterToString model.filter of
|
||||||
|
"" ->
|
||||||
|
""
|
||||||
|
|
||||||
|
filter ->
|
||||||
|
"?" ++ filter
|
||||||
|
|
||||||
|
icsURL =
|
||||||
|
model.flags.ics_button_href ++ filterString
|
||||||
|
in
|
||||||
|
a
|
||||||
|
[ classList
|
||||||
|
[ ( "btn", True )
|
||||||
|
, ( "btn-default", True )
|
||||||
|
]
|
||||||
|
, href <| icsURL
|
||||||
|
]
|
||||||
|
[ i [ classList [ ( "fa", True ), ( "fa-calendar", True ) ] ]
|
||||||
|
[]
|
||||||
|
, text " ICS file with these filters"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -233,10 +233,6 @@ footer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.schedule-sidebar {
|
|
||||||
top: 120px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sticky {
|
.sticky {
|
||||||
position: sticky;
|
position: sticky;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
|
|
Loading…
Reference in a new issue