aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/static/css/content (follow)
Commit message (Collapse)AuthorAgeLines
* Dark: Restore border on github cardsGravatar hedy2024-01-18-0/+4
|
* Dark: Use original light theme colors everywhereGravatar hedy2024-01-18-4/+0
| | | | | Adjusted box-shadow for dark mode to be more readable, unfortunately this gave it a little neomorphism effect...
* Dark: For content pages using transparent images...Gravatar hedy2024-01-17-4/+10
| | | | | | | | | | ...which are unreadable in dark mode, use `has-dark-mode-background` class. ![](/img.png){: class="has-dark-mode-background" } Like this. And it will be given a nice light gray background and a subtle padding & border.
* Fix typo in page.cssGravatar ~hedy2024-01-17-0/+1
|
* Merge branch 'main' into gdwr-dark-themeGravatar ~hedy2024-01-13-0/+13
|\
| * Fixed truncated dropdown menu (#1138)Gravatar sarzz2024-01-06-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * removing padding-right from discord button in nav * fixing dropdown menu on contributing page for sub-articles * Revert "fixing dropdown menu on contributing page for sub-articles" This reverts commit 2d158ddbb8f1d27dd7d8b0b9282554365cf042e3. * fixing dropdown menu on contributing page for sub-articles * Revert "removing padding-right from discord button in nav" This reverts commit e6642932611de307f5386928be0a1dd7e94cd134. * lint fix * fixing dropdown menu for mobile screen * Update pydis_site/static/css/content/page.css Co-authored-by: wookie184 <[email protected]> --------- Co-authored-by: wookie184 <[email protected]>
* | Dark: Fix colors on content pagesGravatar hedy2024-01-13-0/+4
| |
* | Dark: Use link color of better contrastGravatar hedy2024-01-13-0/+8
| |
* | Dark: Fix colors for bulma cards shadow & bordersGravatar hedy2024-01-06-0/+12
|/
* Fixed inconsistent column heights in the contributing ↵Gravatar Steve2023-07-17-0/+9
| | | | section(python-discord#1036)
* Hide edit-on-github link on small screensGravatar Johannes Christ2023-05-06-0/+6
|
* Put 'Edit on GitHub' on breadcrum row with Sub-Articles dropdownGravatar hedy2023-05-06-0/+4
|
* Add Tag MetadataGravatar Hassan Abouelela2022-08-16-1/+5
| | | | | | | Uses the commit API to obtain tag metadata such as when it was last edited, and by whom. Signed-off-by: Hassan Abouelela <[email protected]>
* Change Hyperlink Color On HoverGravatar Hassan Abouelela2022-08-14-0/+4
| | | | Signed-off-by: Hassan Abouelela <[email protected]>
* Add Tag Group SupportGravatar Hassan Abouelela2022-08-14-8/+7
| | | | | | | Adds support for tag groups in content. This involves some modification to the routing, and templating. Signed-off-by: Hassan Abouelela <[email protected]>
* Set Link Color For Sub-elementsGravatar Hassan Abouelela2022-08-13-0/+6
| | | | Signed-off-by: Hassan Abouelela <[email protected]>
* Add Tag Page TemplateGravatar Hassan Abouelela2022-08-13-0/+7
| | | | | | Add a template for the tag page itself, and add a route to use it. Signed-off-by: Hassan Abouelela <[email protected]>
* Refactor: collapsibles as a stand-alone componentGravatar Leon Sandøy2022-01-30-13/+0
|
* Restructure bot contributing guide (#591)Gravatar Boris Muratov2021-10-17-0/+13
| | | | | | | | | | | | | * Restructure bot contributing guide Restructures the bot guide to focus on getting users "through the door" first, and slowly adding additional information and options. The guide is built in terms of showing ways to run the bot and how to achieve it, rather than listing all of the information for each configuration and environment variable right away. That said, the attempt was to still present the reader with the full information they need, and to still be able to use as a quick reference for contributors who are already familiar with the project. As a style choice, this guide incorporates collapsible elements, which required some CSS and JS additions. This could be resolved with the bulma-collapsible extension, but it doesn't seem to function well inside django templates. The guide includes an optional config.yml to use with the test server template. This is a temporary measure until we get the bootstrapping application going. This guide additionally splits the bot account creation and obtaining Discord ID's guides and they didn't seem related. The original file is kept for now as it is used by other guides at the moment.
* Increase padding between text and images in lists.Gravatar kosayoda2021-04-19-0/+9
| | | | | | This has a caveat in that there may be additional padding if the first thing in a list item is an image, but it is very unlikely in practice, so it's not handled for now.
* Allow adding a table of contents to a page.Gravatar kosayoda2021-03-29-0/+19
|
* Document additional markdown features.Gravatar kosayoda2021-03-29-0/+20
| | | | | Adds image caption capabilities and documents missing HTML extensions available.
* Replace `markdown2` with `markdown` and `python-frontmatter`.Gravatar kosayoda2021-03-24-7/+22
| | | | | | This allows us to properly escape codeblocks within markdown, permalink to headers on a page, and decouples getting metadata from a file and getting generated HTML from the Markdown content.
* Rename `articles` to `pages`.Gravatar kosayoda2021-03-23-0/+0
| | | | | | Articles was a good name, but we want an `articles` category in the future. `/pages/guides/` and `/pages/articles/` are clearer in name than `/articles/guides/` and `/articles/articles/`.
* Style <pre> tag backgrounds same as <code>.Gravatar kosayoda2021-03-23-0/+9
| | | | | This makes it consistent with the django-wiki version of the code blocks, which looks neater.
* Change guides system to content systemGravatar ks1292020-10-04-0/+7
As this system will be used for more than just guides, I had to do some refactoring to match this system with plans. Basically now there isn't guides, but articles instead.