Skip to content

Commit

Permalink
Reuse import-export css
Browse files Browse the repository at this point in the history
  • Loading branch information
yalef committed Nov 2, 2023
1 parent 3c44732 commit ad6f027
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 116 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,119 +4,3 @@ ins {
del {
color: black;
}

.import-preview .errors {
position: relative;
}

.validation-error-count {
display: inline-block;
background-color: #e40000;
border-radius: 6px;
color: white;
font-size: 0.9em;
position: relative;
font-weight: bold;
margin-top: -2px;
padding: 0.2em 0.4em;
}

.validation-error-container {
position: absolute;
opacity: 0;
pointer-events: none;
background-color: #ffc1c1;
padding: 14px 15px 10px;
top: 25px;
margin: 0 0 20px 0;
width: 200px;
z-index: 2;
}

table.import-preview tr.skip {
background-color: #d2d2d2;
}

table.import-preview tr.new {
background-color: #bdd8b2;
}

table.import-preview tr.delete {
background-color: #f9bebf;
}

table.import-preview tr.update {
background-color: #fdfdcf;
}

.import-preview td:hover .validation-error-count {
z-index: 3;
}
.import-preview td:hover .validation-error-container {
opacity: 1;
pointer-events: auto;
}

.validation-error-list {
margin: 0;
padding: 0;
}

.validation-error-list li {
list-style: none;
margin: 0;
}

.validation-error-list > li > ul {
margin: 8px 0;
padding: 0;
}

.validation-error-list > li > ul > li {
padding: 0;
margin: 0 0 10px;
line-height: 1.28em;
}

.validation-error-field-label {
display: block;
border-bottom: 1px solid #e40000;
color: #e40000;
text-transform: uppercase;
font-weight: bold;
font-size: 0.85em;
}

@media (prefers-color-scheme: dark) {
table.import-preview tr.skip {
background-color: #2d2d2d;
}

table.import-preview tr.new {
background-color: #42274d;
}

table.import-preview tr.delete {
background-color: #064140;
}

table.import-preview tr.update {
background-color: #020230;
}

.validation-error-container {
background-color: #003e3e;
}

/*
these declarations are necessary to forcibly override the
formatting applied by the diff-match-patch python library
*/
table.import-preview td ins {
background-color: #190019 !important;
}

table.import-preview td del {
background-color: #001919 !important;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<script type="text/javascript" src="{% static 'admin/js/jquery.init.js' %}"></script>
<script type="text/javascript" src="{% static 'import_export_extensions/js/admin/admin.js' %}"></script>
<link rel="stylesheet" type="text/css" href="{% static "import_export_extensions/css/admin/import_result_diff.css" %}"/>
<link rel="stylesheet" type="text/css" href="{% static "import_export/import.css"" %}"/>
{% endblock %}


Expand Down

0 comments on commit ad6f027

Please sign in to comment.