diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2024-01-29 01:21:51 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2024-01-29 01:21:51 +0000 |
commit | d871f351056b7422656e647104aeaae2b9e8a584 (patch) | |
tree | 3572f67f2a80e0be36d558d2356639c1f015f57b | |
parent | 28455bc4dc5028cac9c2a555473605038b14bc20 (diff) | |
download | redmine-d871f351056b7422656e647104aeaae2b9e8a584.tar.gz redmine-d871f351056b7422656e647104aeaae2b9e8a584.zip |
Import application.css in themes using absolute url (#39111).
git-svn-id: https://svn.redmine.org/redmine/trunk@22661 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | public/themes/alternate/stylesheets/application.css | 2 | ||||
-rw-r--r-- | public/themes/classic/stylesheets/application.css | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/public/themes/alternate/stylesheets/application.css b/public/themes/alternate/stylesheets/application.css index 573010254..080c190ab 100644 --- a/public/themes/alternate/stylesheets/application.css +++ b/public/themes/alternate/stylesheets/application.css @@ -15,7 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -@import url(../../../stylesheets/application.css); +@import url(/application.css); body, #wrapper { background-color:#EEEEEE; } #header, #top-menu { margin: 0px 10px 0px 11px; } diff --git a/public/themes/classic/stylesheets/application.css b/public/themes/classic/stylesheets/application.css index dca3733b4..64ebb11c1 100644 --- a/public/themes/classic/stylesheets/application.css +++ b/public/themes/classic/stylesheets/application.css @@ -15,7 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -@import url(../../../stylesheets/application.css); +@import url(/application.css); body{ color:#303030; background:#e8eaec; } @@ -51,7 +51,7 @@ h2, h3, h4, .wiki h1, .wiki h2, .wiki h3 { border-bottom: 0px; color:#606060; fo h2, .wiki h1 { letter-spacing:-1px; } h4 { border-bottom: dotted 1px #c0c0c0; } -#top-menu a.home, #top-menu a.my-page, #top-menu a.projects, #top-menu a.administration, #top-menu a.help { +#top-menu a.home, #top-menu a.my-page, #top-menu a.projects, #top-menu a.administration, #top-menu a.help { background-position: 0% 40%; background-repeat: no-repeat; padding-left: 20px; |