1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-20 07:21:12 +00:00

Fix: attachments_fields id to class change not properly reflected in all CSS (#28259).

Patch by Felix Schäfer.


git-svn-id: http://svn.redmine.org/redmine/trunk@17219 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2018-03-02 04:33:22 +00:00
parent e1023a26ac
commit 7ca9f6f1cb
2 changed files with 8 additions and 8 deletions

View File

@ -816,19 +816,19 @@
} }
/* attachment upload form */ /* attachment upload form */
#attachments_fields span { .attachments_fields span {
position: relative; position: relative;
clear: both; clear: both;
margin-bottom: 1em; margin-bottom: 1em;
white-space: normal; white-space: normal;
} }
#attachments_fields span a.remove-upload { .attachments_fields span a.remove-upload {
position: absolute; position: absolute;
top: 0; top: 0;
right: 0; right: 0;
} }
#attachments_fields input.description { .attachments_fields input.description {
margin-left: 0; margin-left: 0;
width: 100%; width: 100%;
} }

View File

@ -207,12 +207,12 @@ fieldset#notified_events .parent {padding-left:0px; padding-right:20px; }
.check_box_group {padding:2px 2px 4px 4px;} .check_box_group {padding:2px 2px 4px 4px;}
.check_box_group label {margin-right: 0px !important; text-align: right;} .check_box_group label {margin-right: 0px !important; text-align: right;}
#attachments_fields input.description {margin-left:0px; margin-right:4px;} .attachments_fields input.description {margin-left:0px; margin-right:4px;}
#attachments_fields input.filename {background:url(../images/attachment.png) no-repeat right 1px top 50%; padding-left:0px; padding-right:18px;} .attachments_fields input.filename {background:url(../images/attachment.png) no-repeat right 1px top 50%; padding-left:0px; padding-right:18px;}
#attachments_fields .ajax-waiting input.filename {background:url(../images/hourglass.png) no-repeat right top 50%;} .attachments_fields .ajax-waiting input.filename {background:url(../images/hourglass.png) no-repeat right top 50%;}
#attachments_fields .ajax-loading input.filename {background:url(../images/loading.gif) no-repeat right top 50%;} .attachments_fields .ajax-loading input.filename {background:url(../images/loading.gif) no-repeat right top 50%;}
#attachments_fields div.ui-progressbar {margin: 2px 8px -5px 0;} .attachments_fields div.ui-progressbar {margin: 2px 8px -5px 0;}
a.remove-upload {background: url(../images/delete.png) no-repeat right 1px top 50%; padding-left:0px; padding-right:16px;} a.remove-upload {background: url(../images/delete.png) no-repeat right 1px top 50%; padding-left:0px; padding-right:16px;}