mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 23:38:53 +00:00
Attempt to fix input rounding on ios
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<header class="content-header">
|
||||
<h1 class="page-title">{{with .LinkTitle}}{{ . |markdownify}}{{else}}{{ .Title | markdownify }}{{end}}</h1>
|
||||
<div class="content-header-links">
|
||||
<a target="_blank" class="edit-link" href="{{.Site.Params.ghdocsrepo}}edit/master/content/{{.File.Path}}"><span class="edit">Edit Page</span><i class="icon-pencil" aria-hidden="true"></i></a>
|
||||
<a target="_blank" class="edit-link" href="{{.Site.Params.ghdocsrepo}}edit/master/content/{{.File.Path}}"><i class="icon-pencil" aria-hidden="true"></i></a>
|
||||
</div>
|
||||
{{with .Params.tags}}
|
||||
<ul class="tags">
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<header class="content-header">
|
||||
<h1 class="page-title {{.Section}}">{{ .Title | markdownify }}</h1>
|
||||
<div class="content-header-links">
|
||||
<a target="_blank" class="edit-link" href="{{.Site.Params.ghdocsrepo}}edit/master/content/{{.File.Path}}"><span class="edit">Edit Page</span><i class="icon-pencil" aria-hidden="true"></i></a>
|
||||
<a target="_blank" title="Edit {{.Title}} on GitHub" class="edit-link" href="{{.Site.Params.ghdocsrepo}}edit/master/content/{{.File.Path}}"><i class="icon-pencil" aria-hidden="true"></i></a>
|
||||
{{- if .Params.godocref -}}
|
||||
<a target="_blank" class="godoc-link" href="{{.Params.godocref}}" title="See the corresponding Golang Documentation for {{$title}}."><span class="godocs">GoDocs</span>
|
||||
{{ partial "svg-icons/godoc-icon.html" .}}
|
||||
|
||||
@@ -411,7 +411,7 @@ input[type="search"] {
|
||||
/* 1 */
|
||||
box-sizing: content-box;
|
||||
/* 2 */
|
||||
border-radius: 0px;
|
||||
border-radius: 0px!important;
|
||||
outline:none;
|
||||
}
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ h1.page-title {
|
||||
padding-bottom: .75em;
|
||||
@include MQ(M) {
|
||||
font-size: 2.25em;
|
||||
padding-top: 1em;
|
||||
padding-top: 0px;
|
||||
}
|
||||
i[class^="icon-"] {
|
||||
margin-left: -.15em;
|
||||
|
||||
@@ -46,7 +46,7 @@ aside#toc {
|
||||
}
|
||||
@include MQ(XL) {
|
||||
box-shadow: none;
|
||||
top: $site-header-height + 70px;
|
||||
top: $site-header-height + 20px;
|
||||
left: calc(#{$site-navigation-width} + #{$content-max-width} + 48px);
|
||||
bottom:auto;
|
||||
opacity: 1;
|
||||
|
||||
@@ -64,7 +64,7 @@ header.content-header {
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
text-transform:uppercase;
|
||||
width:110px;
|
||||
width:auto;
|
||||
// text-align:center;
|
||||
a {
|
||||
position: relative;
|
||||
@@ -95,7 +95,7 @@ header.content-header {
|
||||
}
|
||||
}
|
||||
i.icon-pencil {
|
||||
font-size: 24px;
|
||||
font-size: 20px;
|
||||
position: relative;
|
||||
bottom: 4px;
|
||||
}
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user