1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-03-18 06:58:17 +00:00

Use absolute URL (propshaft default format) for images in jstoolbar.css (#39111).

git-svn-id: https://svn.redmine.org/redmine/trunk@22658 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu 2024-01-29 01:05:28 +00:00
parent 3aa12a2e5d
commit bb49949eb7

View File

@ -84,7 +84,7 @@
} }
.jstElements .help { float: right; margin-right: 0.5em; padding-top: 8px; font-size: 0.9em; } .jstElements .help { float: right; margin-right: 0.5em; padding-top: 8px; font-size: 0.9em; }
.jstElements .help a {padding: 2px 0 2px 20px; background: url(../images/help.png) no-repeat 0 50%;} .jstElements .help a {padding: 2px 0 2px 20px; background: url(./help.png) no-repeat 0 50%;}
.table-generator td { .table-generator td {
border: 2px solid #ccc; border: 2px solid #ccc;
@ -105,59 +105,59 @@
/* Buttons /* Buttons
-------------------------------------------------------- */ -------------------------------------------------------- */
.jstb_strong { .jstb_strong {
background-image: url(../images/jstoolbar/bt_strong.png); background-image: url(/jstoolbar/bt_strong.png);
} }
.jstb_em { .jstb_em {
background-image: url(../images/jstoolbar/bt_em.png); background-image: url(/jstoolbar/bt_em.png);
} }
.jstb_ins { .jstb_ins {
background-image: url(../images/jstoolbar/bt_ins.png); background-image: url(/jstoolbar/bt_ins.png);
} }
.jstb_del { .jstb_del {
background-image: url(../images/jstoolbar/bt_del.png); background-image: url(/jstoolbar/bt_del.png);
} }
.jstb_code { .jstb_code {
background-image: url(../images/jstoolbar/bt_code.png); background-image: url(/jstoolbar/bt_code.png);
} }
.jstb_h1 { .jstb_h1 {
background-image: url(../images/jstoolbar/bt_h1.png); background-image: url(/jstoolbar/bt_h1.png);
} }
.jstb_h2 { .jstb_h2 {
background-image: url(../images/jstoolbar/bt_h2.png); background-image: url(/jstoolbar/bt_h2.png);
} }
.jstb_h3 { .jstb_h3 {
background-image: url(../images/jstoolbar/bt_h3.png); background-image: url(/jstoolbar/bt_h3.png);
} }
.jstb_ul { .jstb_ul {
background-image: url(../images/jstoolbar/bt_ul.png); background-image: url(/jstoolbar/bt_ul.png);
} }
.jstb_ol { .jstb_ol {
background-image: url(../images/jstoolbar/bt_ol.png); background-image: url(/jstoolbar/bt_ol.png);
} }
.jstb_tl { .jstb_tl {
background-image: url(../images/jstoolbar/bt_tl.png); background-image: url(/jstoolbar/bt_tl.png);
} }
.jstb_bq { .jstb_bq {
background-image: url(../images/jstoolbar/bt_bq.png); background-image: url(/jstoolbar/bt_bq.png);
} }
.jstb_unbq { .jstb_unbq {
background-image: url(../images/jstoolbar/bt_bq_remove.png); background-image: url(/jstoolbar/bt_bq_remove.png);
} }
.jstb_pre { .jstb_pre {
background-image: url(../images/jstoolbar/bt_pre.png); background-image: url(/jstoolbar/bt_pre.png);
} }
.jstb_precode { .jstb_precode {
background-image: url(../images/jstoolbar/bt_precode.png); background-image: url(/jstoolbar/bt_precode.png);
} }
.jstb_link { .jstb_link {
background-image: url(../images/jstoolbar/bt_link.png); background-image: url(/jstoolbar/bt_link.png);
} }
.jstb_img { .jstb_img {
background-image: url(../images/jstoolbar/bt_img.png); background-image: url(/jstoolbar/bt_img.png);
} }
.jstb_table { .jstb_table {
background-image: url(../images/jstoolbar/bt_table.png); background-image: url(/jstoolbar/bt_table.png);
} }
.jstb_help { .jstb_help {
background-image: url(../images/help.png); background-image: url(/help.png);
} }