Project

General

Profile

Defect #43508 » fix.patch

Katsuya HIDAKA, 2025-11-21 03:55

View differences:

app/assets/stylesheets/legacy-icons-compat.css
142 142
.icon-file.application-zip:not(:has(svg)) { background-image: url(/files/zip.png); }
143 143
.icon-file.application-gzip:not(:has(svg)) { background-image: url(/files/zip.png); }
144 144
.icon-copy-link:not(:has(svg)) { background-image: url(/copy_link.png); }
145

  
146
/* For responsive.css */
147

  
148
@media screen and (max-width: 899px) {
149
  #admin-menu a.icon:not(:has(svg)) {
150
    padding-left: 20px !important;
151
  }
152

  
153
  #content>.contextual a.icon:not(:has(svg)),
154
  p.buttons a.icon:not(:has(svg)) {
155
    background-position-x: 4px;
156
    padding-left: 25px;
157
  }
158
}
159

  
160
/* For rtl.css */
161

  
162
html[dir="rtl"] #admin-menu a:not(:has(svg)) {padding-left:0;padding-right:20px;}
163
html[dir="rtl"] #admin-menu a.selected:not(:has(svg)) {padding-left:0!important; padding-right:20px!important; background-position:right 2px 40%;}
164

  
165
html[dir="rtl"] a.collapsible:not(:has(svg)) {padding-left:0px; padding-right:12px; background: url(/arrow_down.png) no-repeat right 0px top 50%;}
166
html[dir="rtl"] a.collapsible.collapsed:not(:has(svg)) {background-image: url(/arrow_left.png);}
167

  
168
html[dir="rtl"] span.search_for_watchers a:not(:has(svg)),
169
html[dir="rtl"] span.add_attachment a:not(:has(svg)) {padding-left:0px; padding-right:16px; background: url(/bullet_add.png) no-repeat right 50%; }
170

  
171
html[dir="rtl"] fieldset.collapsible>legend:not(:has(svg)) {padding-left:0px; padding-right:18px; background: url(/arrow_down.png) no-repeat right 50%;}
172
html[dir="rtl"] fieldset.collapsible.collapsed>legend:not(:has(svg)) { background-image: url(/arrow_left.png); }
173

  
174
html[dir="rtl"] div.flash.error:not(:has(svg)),
175
html[dir="rtl"] #errorExplanation:not(:has(svg)) {
176
  background: url(/exclamation.png) right 8px top 50% no-repeat var(--oc-red-1);
177
}
178

  
179
html[dir="rtl"] div.flash.notice:not(:has(svg)) {
180
  background: url(/true.png) right 8px top 5px no-repeat var(--oc-green-1);
181
}
182

  
183
html[dir="rtl"] div.flash.warning:not(:has(svg)),
184
html[dir="rtl"] .conflict {
185
  background: url(/warning.png) right 8px top 5px no-repeat var(--oc-yellow-1);
186
  text-align:right;
187
}
188

  
189
html[dir="rtl"] .icon:not(:has(svg)) {
190
  background-position: right 50%;
191
  padding-left:0; padding-right:20px;
192
}
193

  
194
/* For scm.css */
195

  
196
body.controller-repositories li.change:not(:has(svg)) {
197
    background-image: url(/bullet_black.png);
198
    background-position: 1px 2px;
199
    background-repeat: no-repeat;
200
}
201
body.controller-repositories li.change.folder:not(:has(svg)) { background-image: url(/folder_open.png); }
202

  
203
body.controller-repositories li.change.change-A:not(:has(svg)) { background-image: url(/bullet_add.png); }
204
body.controller-repositories li.change.change-M:not(:has(svg)) { background-image: url(/bullet_orange.png); }
205
body.controller-repositories li.change.change-C:not(:has(svg)) { background-image: url(/bullet_blue.png); }
206
body.controller-repositories li.change.change-R:not(:has(svg)) { background-image: url(/bullet_purple.png); }
207
body.controller-repositories li.change.change-D:not(:has(svg)) { background-image: url(/bullet_delete.png); }
(5-5/5)