1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-26 12:42:30 +03:00

Don't highlight the header (“Aelve Guide | Haskell”) as a link

It's not particularly useful since people are already used to headers being
links.
This commit is contained in:
Artyom 2017-02-01 02:48:07 +03:00
parent 7b4b3c0a9d
commit bedc5f3b8f
No known key found for this signature in database
GPG Key ID: B8E35A33FF522710
2 changed files with 6 additions and 11 deletions

View File

@ -528,13 +528,6 @@ renderEdit globalState edit = do
-- TODO: use “data Direction = Up | Down” for directions instead of Bool
-- | Render the header on the </haskell> subpage: “Aelve Guide | Haskell”.
haskellHeaderMain :: (MonadReader Config m) => HtmlT m ()
haskellHeaderMain = do
h1_ $ "Aelve Guide " >> span_ "| Haskell"
renderSubtitle
-- | Same as 'haskellHeaderMain', but used on subpages of </haskell>. Links
-- to the main page.
haskellHeader :: (MonadReader Config m) => HtmlT m ()
haskellHeader = do
h1_ $ mkLink ("Aelve Guide " >> span_ "| Haskell") "/haskell"
@ -547,10 +540,7 @@ renderHaskellRoot
renderHaskellRoot globalState mbSearchQuery =
wrapPage "Aelve Guide | Haskell" $ do
onPageLoad $ JS.expandHash ()
case mbSearchQuery of
Nothing -> haskellHeaderMain
-- A search page isn't the main page, so we need a link to the main page
Just _ -> haskellHeader
haskellHeader
renderNoScriptWarning
renderSearch mbSearchQuery
textInput [

View File

@ -31,6 +31,11 @@ body {
font-weight: 200;
}
#main > h1 a {
color: inherit;
text-decoration: none;
}
.subtitle {
font-weight: 500;
color: #e03;