-
-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor mobile and Safari fixes #129
Open
emiltoteb
wants to merge
7
commits into
kiwitcms:source
Choose a base branch
from
emiltoteb:emiltoteb_safari_and_tabs
base: source
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
6c79737
Merge pull request #1 from kiwitcms/source
emiltoteb 50badd9
Merge remote-tracking branch 'upstream/source' into source
emiltoteb 15e61e0
Source update
emiltoteb c54352f
Combined fix
emiltoteb 23252c7
Merge branch 'source' of https://github.com/emiltoteb/kiwitcms.github…
emiltoteb b5868ed
Safari transparent issue (#128)
emiltoteb aa4f5e7
Minor mobile order fix
emiltoteb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,11 +110,20 @@ code { | |
font-size: inherit; | ||
border-radius: 2px; | ||
border: 1px solid var(--trans-green); | ||
overflow: scroll; | ||
width: fit-content; | ||
max-width: 86vw; | ||
display: inline-grid; | ||
overflow-wrap: normal!important; | ||
} | ||
p > code{ | ||
margin-bottom:0!important; | ||
} | ||
|
||
pre > code { | ||
border: none; | ||
padding: 0; | ||
padding: 0; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. again. different formatting |
||
display:inline; | ||
} | ||
|
||
/* pre > code > span { */ | ||
|
@@ -227,7 +236,7 @@ transform: rotate(90deg); | |
} | ||
|
||
.ghost-btn { | ||
background: transparent; | ||
background: rgba(255, 255, 255, 0); | ||
border: 2px solid white; | ||
} | ||
.ghost-btn:hover { | ||
|
@@ -249,7 +258,7 @@ header { | |
grid-template-areas: "lead video"; | ||
align-items: center; | ||
column-gap: var(--grid-gap); | ||
background-image: linear-gradient(to top, var(--white) 0%, transparent 5%), url("/theme/images/header-pattern.png"); | ||
background-image: linear-gradient(to top, var(--white) 0%, rgba(255, 255, 255, 0) 5%), url("/theme/images/header-pattern.png"); | ||
background-size: cover, contain; | ||
background-attachment: scroll, fixed; | ||
background-repeat: no-repeat; | ||
|
@@ -391,7 +400,7 @@ header .video a { | |
/* S FEATURES */ | ||
|
||
#features { | ||
background-image: linear-gradient(to top, var(--dark-green), var(--dark-green) 50%, transparent 50%, transparent); | ||
background-image: linear-gradient(to top, var(--dark-green), var(--dark-green) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0)); | ||
padding-top: 0; | ||
margin-top: calc(var(--unusable-padding) * -1 - 10px); | ||
} | ||
|
@@ -450,6 +459,11 @@ header .video a { | |
padding: var(--x3-padding) var(--unusable-padding); | ||
} | ||
|
||
#quick-links div > *{ | ||
float:left; | ||
grid-column: 1 / 2; | ||
} | ||
|
||
#quick-links div { | ||
background: var(--white); | ||
filter: var(--light-shadow); | ||
|
@@ -559,12 +573,18 @@ summary, #plans-modal h3{ | |
} | ||
|
||
/* S PRICING > Details */ | ||
#pricing summary::-webkit-details-marker{ | ||
summary::-webkit-details-marker{ | ||
display: none; | ||
} | ||
#pricing summary::marker{ | ||
summary::marker{ | ||
display:none; | ||
} | ||
::-webkit-details-marker { display:none; } | ||
|
||
summary{ | ||
list-style-image: none; | ||
} | ||
|
||
|
||
#pricing summary:after { | ||
height: 20px; | ||
|
@@ -993,7 +1013,7 @@ footer .mail { | |
body.page section{ | ||
gap: var(--x3-padding); | ||
padding-top: 150px; | ||
background-image: linear-gradient(to top, var(--white), transparent), url(/theme/images/pattern-v2.png); | ||
background-image: linear-gradient(to top, var(--white), rgba(255, 255, 255, 0)), url(/theme/images/pattern-v2.png); | ||
background-size: auto 500px, auto 500px; | ||
background-position: top right; | ||
background-repeat: no-repeat; | ||
|
@@ -1097,8 +1117,8 @@ font-size: 25px; | |
#blog-list, #blog-article{ | ||
gap: var(--x3-padding); | ||
padding-top: 150px; | ||
background-image: linear-gradient(to top, var(--white), transparent), url(/theme/images/pattern-v2.png); | ||
background-size: auto 500px, auto 500px; | ||
background-image: linear-gradient(to top, var(--white), rgba(255, 255, 255, 0)), url(/theme/images/pattern-v2.png); | ||
background-size: 1000px 500px, auto 500px; | ||
background-position: top right; | ||
background-repeat: no-repeat; | ||
} | ||
|
@@ -1138,17 +1158,18 @@ font-size: 25px; | |
} | ||
#blog-list article.blog-list .content *, #blog-article article.content *{ | ||
margin-bottom:var(--x1-padding); | ||
max-width: 86vw; | ||
overflow-wrap: break-word; | ||
} | ||
#blog-list article.blog-list .content img, #blog-article article.content img{ | ||
max-width: 100%; | ||
} | ||
#blog-list article.blog-list .content pre, #blog-article article.content pre{ | ||
white-space: pre-wrap; | ||
white-space: -moz-pre-wrap; | ||
white-space: -o-pre-wrap; | ||
word-wrap: break-word; | ||
font-family: "Source Code Pro", monospace; | ||
overflow: scroll; | ||
width: fit-content; | ||
max-width: 86vw; | ||
background: var(--light-gray); | ||
} | ||
#blog-list article.blog-list .content a, #blog-article article.content a{ | ||
overflow-wrap: anywhere; | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the formatting is different on this line and the one above it. let's unify it