Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Django Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Tobias Mieves
Django Core
Commits
65908df2
Commit
65908df2
authored
1 year ago
by
Tobias Mieves
Browse files
Options
Downloads
Patches
Plain Diff
feat: Add word-break and hyphens-auto to better deal with text
parent
505edbdc
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!26
Add word-break and hyphens-auto to better deal with text
Pipeline
#206644
passed with warnings
1 year ago
Stage: test
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
templates/base-clear.html
+7
-7
7 additions, 7 deletions
templates/base-clear.html
templates/base.html
+5
-6
5 additions, 6 deletions
templates/base.html
with
12 additions
and
13 deletions
templates/base-clear.html
+
7
−
7
View file @
65908df2
{% load static %}
<!DOCTYPE html>
<html>
<html
lang=
"de"
>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
{% block title %}Core{% endblock %}
</title>
<link
href=
"{% static 'core/css/output.css' %}"
rel=
"stylesheet"
type=
"text/css"
>
{#
<meta
http-equiv=
"refresh"
content=
"10"
>
#
}
{% block head %}{% endblock %
}
</head>
<body>
<body
class=
"break-words hyphens-auto"
>
{% block content %}
{% endblock %}
</body>
...
...
This diff is collapsed.
Click to expand it.
templates/base.html
+
5
−
6
View file @
65908df2
{% load static %}
<!DOCTYPE html>
<html>
<html
lang=
"de"
>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
{% block title %}Core{% endblock %}
</title>
<link
href=
"{% static 'core/css/output.css' %}"
rel=
"stylesheet"
type=
"text/css"
>
{#
<meta
http-equiv=
"refresh"
content=
"10"
>
#}
{% block head %}{% endblock %}
</head>
<body>
<div
class=
"drawer"
>
<div
class=
"drawer
break-words hyphens-auto
"
>
<input
id=
"drawer"
type=
"checkbox"
class=
"drawer-toggle"
/>
<div
class=
"drawer-content flex flex-col"
>
<!-- Navbar -->
...
...
@@ -69,7 +68,7 @@
</div>
</div>
<!-- Page content here -->
<main
class=
"p-4 w-full"
>
<main
class=
"p-4 w-full
break-words hyphens-auto
"
>
{% block content %}
Content
{% endblock %}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment