-
Notifications
You must be signed in to change notification settings - Fork 695
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
💄Update boilerplate generator theme #2047
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
6c9b25a
💬 Change order of items
lluerich bbc5473
💄 Update styles and UI
lluerich e2041e8
🐛 Fix dropdown bug on touch devices
lluerich 682f056
💄 Update stylesheet to match other code-snippets
lluerich b50a692
♻️ Move changes to boilerplate specific stylesheet
lluerich 9f6c3be
💄 Change behaviour of dropdown
lluerich c4154f9
💄 Increase line-height and font-size
lluerich 9b07987
💄 Add indicator state to dropdown caret
lluerich 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
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 |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
Monokai style | ||
*/ | ||
|
||
.hljs { | ||
display: block; | ||
overflow-x: auto; | ||
padding: 0.5em; | ||
background: #272822; color: #ddd; | ||
} | ||
|
||
.hljs-tag { | ||
color: #f8f8f2; | ||
} | ||
|
||
.hljs-number { | ||
color: #ae81ff; | ||
} | ||
|
||
.hljs-keyword, | ||
.hljs-selector-tag, | ||
.hljs-literal, | ||
.hljs-strong, | ||
.hljs-name { | ||
color: #f15a5a; | ||
} | ||
|
||
.hljs-code, | ||
.hljs-attribute { | ||
color: #66d9ef; | ||
} | ||
|
||
.hljs-class .hljs-title { | ||
color: #ffffff; | ||
} | ||
|
||
.hljs-symbol, | ||
.hljs-regexp, | ||
.hljs-link { | ||
color: #bf79db; | ||
} | ||
|
||
.hljs-string { | ||
color: #e6db74; | ||
} | ||
|
||
.hljs-attr, | ||
.hljs-bullet, | ||
.hljs-subst, | ||
.hljs-title, | ||
.hljs-section, | ||
.hljs-emphasis, | ||
.hljs-type, | ||
.hljs-built_in, | ||
.hljs-builtin-name, | ||
.hljs-selector-pseudo, | ||
.hljs-addition, | ||
.hljs-variable, | ||
.hljs-template-tag, | ||
.hljs-template-variable { | ||
color: #a6e22e; | ||
} | ||
|
||
.hljs-comment, | ||
.hljs-quote, | ||
.hljs-deletion, | ||
.hljs-meta { | ||
color: #75715e; | ||
} | ||
|
||
.hljs-keyword, | ||
.hljs-selector-tag, | ||
.hljs-literal, | ||
.hljs-doctag, | ||
.hljs-title, | ||
.hljs-section, | ||
.hljs-type, | ||
.hljs-selector-id { | ||
font-weight: normal; | ||
} |
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 |
---|---|---|
|
@@ -19,6 +19,9 @@ | |
} | ||
|
||
&-selected { | ||
.amp-mode-touch & { | ||
position: relative; | ||
} | ||
border: 0; | ||
|
||
&:focus, &:hover { | ||
|
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.
I think a better place for this would be
/frontend/scss/
.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.
It would indeed be a better place, but I forgot that the boilerplate generator uses it;s own build. So, please ignore and leave things as they are :-).
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.
So should I revert the changes completely or just leave them in the state I submitted yesterday? :-)