1
0

Move images to be contained in the theme.

This commit is contained in:
Tim Almdal 2010-09-23 17:29:53 -07:00
parent 0968e9c952
commit 8aaa2ee714
16 changed files with 25 additions and 15 deletions

View File

@ -11,9 +11,8 @@
* 5) States and interactions * 5) States and interactions
* 6) Positioning and order * 6) Positioning and order
* 7) Navigation and menus * 7) Navigation and menus
* 8) Browser hacks * 8) jQuery and jQuery UI
* 9) jQuery and jQuery UI * 9) Right-to-left language styles
* 10) Right-to-left language styles
*/ */
/** ******************************************************************* /** *******************************************************************
@ -706,18 +705,18 @@ li.g-error select {
.g-denied, .g-denied,
tr.g-error td.g-error, tr.g-error td.g-error,
#g-add-photos-status .g-error { #g-add-photos-status .g-error {
background: #f6cbca url('images/ico-error.png') no-repeat .4em 50%; background: #f6cbca url('../images/ico-error.png') no-repeat .4em 50%;
color: #f00; color: #f00;
} }
.g-info { .g-info {
background: #e8e8e8 url('images/ico-info.png') no-repeat .4em 50%; background: #e8e8e8 url('../images/ico-info.png') no-repeat .4em 50%;
} }
.g-success, .g-success,
.g-allowed, .g-allowed,
#g-add-photos-status .g-success { #g-add-photos-status .g-success {
background: #d9efc2 url('images/ico-success.png') no-repeat .4em 50%; background: #d9efc2 url('../images/ico-success.png') no-repeat .4em 50%;
} }
tr.g-success { tr.g-success {
@ -725,12 +724,12 @@ tr.g-success {
} }
tr.g-success td.g-success { tr.g-success td.g-success {
background-image: url('images/ico-success.png'); background-image: url('../images/ico-success.png');
} }
.g-warning, .g-warning,
tr.g-warning td.g-warning { tr.g-warning td.g-warning {
background: #fcf9ce url('images/ico-warning.png') no-repeat .4em 50%; background: #fcf9ce url('../images/ico-warning.png') no-repeat .4em 50%;
} }
form .g-error { form .g-error {
@ -773,11 +772,11 @@ form .g-error {
.g-loading-large, .g-loading-large,
.g-dialog-loading-large { .g-dialog-loading-large {
background: #e8e8e8 url('images/loading-large.gif') no-repeat center center !important; background: #e8e8e8 url('../images/loading-large.gif') no-repeat center center !important;
} }
.g-loading-small { .g-loading-small {
background: #e8e8e8 url('images/loading-small.gif') no-repeat center center !important; background: #e8e8e8 url('../images/loading-small.gif') no-repeat center center !important;
} }
/** ******************************************************************* /** *******************************************************************
@ -1148,7 +1147,7 @@ div#g-action-status {
} }
.g-breadcrumbs li { .g-breadcrumbs li {
background: transparent url('images/ico-separator.gif') no-repeat scroll left center; background: transparent url('../images/ico-separator.gif') no-repeat scroll left center;
float: left; float: left;
padding: 1em 8px 1em 18px; padding: 1em 8px 1em 18px;
} }
@ -1257,6 +1256,11 @@ div#g-action-status {
background-color: #cfc; background-color: #cfc;
} }
/* Autocomplete ~~~~~~~~~~ */
.ac_loading {
background: white url('../images/loading-small.gif') right center no-repeat !important;
}
/*************** STUFF THAT NEEDS A HOME ****************/ /*************** STUFF THAT NEEDS A HOME ****************/
#g-admin-g2-import-notes { #g-admin-g2-import-notes {
@ -1290,7 +1294,13 @@ div#g-action-status {
list-style-type: disc; list-style-type: disc;
} }
/* Right to left styles ~~~~~~~~~~~~~~~~~~~~ */ /** *******************************************************************
* 9) Right to left language styles
*********************************************************************/
.rtl {
direction: rtl;
}
.rtl #g-header, .rtl #g-header,
.rtl #g-content, .rtl #g-content,
@ -1359,7 +1369,7 @@ div#g-action-status {
} }
.rtl .g-breadcrumbs li { .rtl .g-breadcrumbs li {
background: transparent url('images/ico-separator-rtl.gif') no-repeat scroll right center; background: transparent url('../images/ico-separator-rtl.gif') no-repeat scroll right center;
padding: 1em 18px 1em 8px; padding: 1em 18px 1em 8px;
} }
@ -1469,7 +1479,7 @@ div#g-action-status {
.rtl .sf-sub-indicator { .rtl .sf-sub-indicator {
left: .75em !important; left: .75em !important;
right: auto; right: auto;
background: url('superfish/images/arrows-ffffff-rtl.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */ background: url('../../../lib/superfish/images/arrows-ffffff-rtl.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
} }
.rtl a > .sf-sub-indicator { /* give all except IE6 the correct values */ .rtl a > .sf-sub-indicator { /* give all except IE6 the correct values */
top: .8em; top: .8em;
@ -1515,7 +1525,7 @@ div#g-action-status {
/*** shadows for all but IE6 ***/ /*** shadows for all but IE6 ***/
.rtl .sf-shadow ul { .rtl .sf-shadow ul {
background: url('superfish/images/shadow.png') no-repeat bottom left; background: url('../../../lib/superfish/images/shadow.png') no-repeat bottom left;
padding: 0 0 9px 8px; padding: 0 0 9px 8px;
border-top-right-radius: 0; border-top-right-radius: 0;
border-bottom-left-radius: 0; border-bottom-left-radius: 0;

Binary file not shown.

After

Width:  |  Height:  |  Size: 604 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 916 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 715 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 701 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 778 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 749 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 476 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 617 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 537 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 666 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 673 B