Skip to content

Commit

Permalink
trying to fix static files issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bukeme committed Aug 20, 2023
1 parent 28ce647 commit 0da9b65
Show file tree
Hide file tree
Showing 155 changed files with 1,890 additions and 2,778 deletions.
Binary file modified socialnetwork/__pycache__/settings.cpython-39.pyc
Binary file not shown.

Large diffs are not rendered by default.

Binary file added staticfiles/admin/css/base.1f418065fc2c.css.gz
Binary file not shown.
Binary file removed staticfiles/admin/css/base.64976e0f7339.css.gz
Binary file not shown.
360 changes: 137 additions & 223 deletions staticfiles/admin/css/base.css

Large diffs are not rendered by default.

Binary file modified staticfiles/admin/css/base.css.gz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -84,18 +84,18 @@

#toolbar form input {
border-radius: 4px;
font-size: 0.875rem;
font-size: 14px;
padding: 5px;
color: var(--body-fg);
}

#toolbar #searchbar {
height: 1.1875rem;
height: 19px;
border: 1px solid var(--border-color);
padding: 2px 5px;
margin: 0;
vertical-align: top;
font-size: 0.8125rem;
font-size: 13px;
max-width: 100%;
}

Expand All @@ -105,7 +105,7 @@

#toolbar form input[type="submit"] {
border: 1px solid var(--border-color);
font-size: 0.8125rem;
font-size: 13px;
padding: 4px 8px;
margin: 0;
vertical-align: middle;
Expand All @@ -125,10 +125,6 @@
margin-right: 4px;
}

#changelist-search .help {
word-break: break-word;
}

/* FILTER COLUMN */

#changelist-filter {
Expand All @@ -140,43 +136,20 @@
}

#changelist-filter h2 {
font-size: 0.875rem;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.5px;
padding: 5px 15px;
margin-bottom: 12px;
border-bottom: none;
}

#changelist-filter h3,
#changelist-filter details summary {
#changelist-filter h3 {
font-weight: 400;
padding: 0 15px;
margin-bottom: 10px;
}

#changelist-filter details summary > * {
display: inline;
}

#changelist-filter details > summary {
list-style-type: none;
}

#changelist-filter details > summary::-webkit-details-marker {
display: none;
}

#changelist-filter details > summary::before {
content: '→';
font-weight: bold;
color: var(--link-hover-color);
}

#changelist-filter details[open] > summary::before {
content: '↓';
}

#changelist-filter ul {
margin: 5px 0;
padding: 0 15px 15px;
Expand All @@ -196,7 +169,8 @@
#changelist-filter a {
display: block;
color: var(--body-quiet-color);
word-break: break-word;
text-overflow: ellipsis;
overflow-x: hidden;
}

#changelist-filter li.selected {
Expand All @@ -216,34 +190,83 @@
}

#changelist-filter #changelist-filter-clear a {
font-size: 0.8125rem;
font-size: 13px;
padding-bottom: 10px;
border-bottom: 1px solid var(--hairline-color);
}

/* DATE DRILLDOWN */

.change-list .toplinks {
display: flex;
padding-bottom: 5px;
flex-wrap: wrap;
gap: 3px 17px;
font-weight: bold;
.change-list ul.toplinks {
display: block;
float: left;
padding: 0;
margin: 0;
width: 100%;
}

.change-list .toplinks a {
font-size: 0.8125rem;
.change-list ul.toplinks li {
padding: 3px 6px;
font-weight: bold;
list-style-type: none;
display: inline-block;
}

.change-list .toplinks .date-back {
.change-list ul.toplinks .date-back a {
color: var(--body-quiet-color);
}

.change-list .toplinks .date-back:focus,
.change-list .toplinks .date-back:hover {
.change-list ul.toplinks .date-back a:focus,
.change-list ul.toplinks .date-back a:hover {
color: var(--link-hover-color);
}

/* PAGINATOR */

.paginator {
font-size: 13px;
padding-top: 10px;
padding-bottom: 10px;
line-height: 22px;
margin: 0;
border-top: 1px solid var(--hairline-color);
width: 100%;
}

.paginator a:link, .paginator a:visited {
padding: 2px 6px;
background: var(--button-bg);
text-decoration: none;
color: var(--button-fg);
}

.paginator a.showall {
border: none;
background: none;
color: var(--link-fg);
}

.paginator a.showall:focus, .paginator a.showall:hover {
background: none;
color: var(--link-hover-color);
}

.paginator .end {
margin-right: 6px;
}

.paginator .this-page {
padding: 2px 6px;
font-weight: bold;
font-size: 13px;
vertical-align: top;
}

.paginator a:focus, .paginator a:hover {
color: white;
background: var(--link-hover-color);
}

/* ACTIONS */

.filtered .actions {
Expand All @@ -255,31 +278,31 @@
vertical-align: baseline;
}

/* Once the :has() pseudo-class is supported by all browsers, the tr.selected
selector and the JS adding the class can be removed. */
#changelist table tbody tr.selected {
background-color: var(--selected-row);
}

#changelist table tbody tr:has(input[type=checkbox]:checked) {
background-color: var(--selected-row);
}

#changelist .actions {
padding: 10px;
background: var(--body-bg);
border-top: none;
border-bottom: none;
line-height: 1.5rem;
line-height: 24px;
color: var(--body-quiet-color);
width: 100%;
}

#changelist .actions.selected { /* XXX Probably unused? */
background: var(--body-bg);
border-top: 1px solid var(--body-bg);
border-bottom: 1px solid #edecd6;
}

#changelist .actions span.all,
#changelist .actions span.action-counter,
#changelist .actions span.clear,
#changelist .actions span.question {
font-size: 0.8125rem;
font-size: 13px;
margin: 0 0.5em;
}

Expand All @@ -289,11 +312,11 @@

#changelist .actions select {
vertical-align: top;
height: 1.5rem;
height: 24px;
color: var(--body-fg);
border: 1px solid var(--border-color);
border-radius: 4px;
font-size: 0.875rem;
font-size: 14px;
padding: 0 0 0 4px;
margin: 0;
margin-left: 10px;
Expand All @@ -306,17 +329,17 @@
#changelist .actions label {
display: inline-block;
vertical-align: middle;
font-size: 0.8125rem;
font-size: 13px;
}

#changelist .actions .button {
font-size: 0.8125rem;
font-size: 13px;
border: 1px solid var(--border-color);
border-radius: 4px;
background: var(--body-bg);
box-shadow: 0 -15px 20px -10px rgba(0, 0, 0, 0.15) inset;
cursor: pointer;
height: 1.5rem;
height: 24px;
line-height: 1;
padding: 4px 8px;
margin: 0;
Expand Down
Binary file not shown.
Loading

0 comments on commit 0da9b65

Please sign in to comment.