1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-12-01 13:24:10 +01:00

Merge pull request #388 from owncloud/remove-appswebroot

remove %appswebroot% as it is completely useless
This commit is contained in:
Thomas Tanghus 2014-02-03 14:24:32 -08:00
commit 512b279d1c
2 changed files with 14 additions and 14 deletions

View File

@ -251,7 +251,7 @@ span.ui-icon { margin: 1px 3px 10px 0px; }
text-indent: 18px; text-indent: 18px;
} }
/* TODO: Use @import url('%appswebroot%/contacts/css/[no-]svg.css); instead. */ /* TODO: Use @import url('../css/[no-]svg.css); instead. */
/*.no-svg .add { background-image:url('%webroot%/core/img/actions/add.png'); }*/ /*.no-svg .add { background-image:url('%webroot%/core/img/actions/add.png'); }*/
.no-svg .delete { background-image:url('%webroot%/core/img/actions/delete.png'); } .no-svg .delete { background-image:url('%webroot%/core/img/actions/delete.png'); }
@ -264,9 +264,9 @@ span.ui-icon { margin: 1px 3px 10px 0px; }
.no-svg .export, .no-svg .shared { background-image:url('%webroot%/core/img/actions/shared.png'); } .no-svg .export, .no-svg .shared { background-image:url('%webroot%/core/img/actions/shared.png'); }
.no-svg .globe { background-image:url('%webroot%/core/img/actions/public.png'); } .no-svg .globe { background-image:url('%webroot%/core/img/actions/public.png'); }
.no-svg .settings { background-image:url('%webroot%/core/img/actions/settings.svg'); } .no-svg .settings { background-image:url('%webroot%/core/img/actions/settings.svg'); }
.no-svg .starred { background-image:url('%appswebroot%/contacts/img/starred.png'); background-size: contain; } .no-svg .starred { background-image:url('../img/starred.png'); background-size: contain; }
.no-svg .checked { background-image:url('%appswebroot%/contacts/img/checkmark-green.png'); } .no-svg .checked { background-image:url('../img/checkmark-green.png'); }
.no-svg .checked.disabled { background-image:url('%appswebroot%/contacts/img/checkmark-gray.png'); cursor: default; } .no-svg .checked.disabled { background-image:url('../img/checkmark-gray.png'); cursor: default; }
.svg .action.text, .svg .icon.text, .svg .svg.text { .svg .action.text, .svg .icon.text, .svg .svg.text {
background-size: 16px 16px; background-size: 16px 16px;
@ -285,9 +285,9 @@ span.ui-icon { margin: 1px 3px 10px 0px; }
.svg .export,.svg .shared { background-image:url('%webroot%/core/img/actions/shared.svg'); } .svg .export,.svg .shared { background-image:url('%webroot%/core/img/actions/shared.svg'); }
.svg .globe { background-image:url('%webroot%/core/img/actions/public.svg'); } .svg .globe { background-image:url('%webroot%/core/img/actions/public.svg'); }
.svg .settings { background-image:url('%webroot%/core/img/actions/settings.svg'); } .svg .settings { background-image:url('%webroot%/core/img/actions/settings.svg'); }
.svg .starred { background-image:url('%appswebroot%/contacts/img/starred.svg'); background-size: contain; } .svg .starred { background-image:url('../img/starred.svg'); background-size: contain; }
.svg .checked { background-image:url('%appswebroot%/contacts/img/checkmark-green.svg'); } .svg .checked { background-image:url('../img/checkmark-green.svg'); }
.svg .checked.disabled { background-image:url('%appswebroot%/contacts/img/checkmark-gray.svg'); cursor: default; } .svg .checked.disabled { background-image:url('../img/checkmark-gray.svg'); cursor: default; }
.transparent{ opacity: 0.6; } .transparent{ opacity: 0.6; }
.float { float: left; display: inline-block; width: auto; } .float { float: left; display: inline-block; width: auto; }
@ -595,13 +595,13 @@ input[type=checkbox].propertytype { width: 10px; }
padding-left: 20px; padding-left: 20px;
font-weight: normal; font-weight: normal;
} }
.no-svg .favorite { display: inline-block; float: left; height: 20px; width: 20px; background-image:url('%appswebroot%/contacts/img/inactive_star.png'); } .no-svg .favorite { display: inline-block; float: left; height: 20px; width: 20px; background-image:url('../img/inactive_star.png'); }
.no-svg .favorite.active, .favorite:hover { background-image:url('%appswebroot%/contacts/img/active_star.png'); } .no-svg .favorite.active, .favorite:hover { background-image:url('../img/active_star.png'); }
.no-svg .favorite.inactive { background-image:url('%appswebroot%/contacts/img/inactive_star.png'); } .no-svg .favorite.inactive { background-image:url('../img/inactive_star.png'); }
.svg .favorite { display: inline-block; float: left; height: 20px; width: 20px; background-image:url('%appswebroot%/contacts/img/inactive_star.svg'); background-size:contain; } .svg .favorite { display: inline-block; float: left; height: 20px; width: 20px; background-image:url('../img/inactive_star.svg'); background-size:contain; }
.svg .favorite.active, .favorite:hover { background-image:url('%appswebroot%/contacts/img/active_star.svg'); } .svg .favorite.active, .favorite:hover { background-image:url('../img/active_star.svg'); }
.svg .favorite.inactive { background-image:url('%appswebroot%/contacts/img/inactive_star.svg'); background-size:contain; } .svg .favorite.inactive { background-image:url('../img/inactive_star.svg'); background-size:contain; }
#app-content { #app-content {
top: 44px; top: 44px;

View File

@ -90,7 +90,7 @@
.oc-addnew .create-button { .oc-addnew .create-button {
border-radius: 0; border-radius: 0;
background-image: url('%appswebroot%/contacts/img/checkmark-gray.svg'); background-image: url('../img/checkmark-gray.svg');
border-top-right-radius: 5px; border-top-right-radius: 5px;
border-bottom-right-radius: 5px; border-bottom-right-radius: 5px;
} }