diff --git a/indra/newview/NACLantispam.cpp b/indra/newview/NACLantispam.cpp index aac555a50..cabd47ed0 100644 --- a/indra/newview/NACLantispam.cpp +++ b/indra/newview/NACLantispam.cpp @@ -111,6 +111,8 @@ void NACLAntiSpamQueue::blockEntry(LLUUID& source) } int NACLAntiSpamQueue::checkEntry(LLUUID& name, U32 multiplier) { + static LLCachedControl enabled(gSavedSettings,"AntiSpamEnabled",false); + if(!enabled) return 0; it=entries.find(name.asString()); if(it != entries.end()) { @@ -200,7 +202,7 @@ void NACLAntiSpamRegistry::setRegisteredQueueTime(U32 name, U32 time) { if(name >= QUEUE_MAX || queues[name] == 0) { - LL_ERRS("AntiSpam") << "CODE BUG: Attempting to use a antispam queue that was not created or was outside of the reasonable range of queues. Queue: " << getQueueName(name) << llendl; + LL_ERRS("AntiSpam") << "CODE BUG: Attempting to set time of antispam queue that was outside of the reasonable range of queues or not created. Queue: " << getQueueName(name) << llendl; return; } @@ -210,7 +212,7 @@ void NACLAntiSpamRegistry::setRegisteredQueueAmount(U32 name, U32 amount) { if(name >= QUEUE_MAX || queues[name] == 0) { - LL_ERRS("AntiSpam") << "CODE BUG: Attempting to use a antispam queue that was not created or was outside of the reasonable range of queues. Queue: " << getQueueName(name) << llendl; + LL_ERRS("AntiSpam") << "CODE BUG: Attempting to set amount for antispam queue that was outside of the reasonable range of queues or not created. Queue: " << getQueueName(name) << llendl; return; } @@ -237,7 +239,7 @@ void NACLAntiSpamRegistry::clearRegisteredQueue(U32 name) { if(name >= QUEUE_MAX || queues[name] == 0) { - LL_ERRS("AntiSpam") << "CODE BUG: Attempting to use a antispam queue that was not created or was outside of the reasonable range of queues. Queue: " << getQueueName(name) << llendl; + LL_ERRS("AntiSpam") << "CODE BUG: Attempting to clear antispam queue that was outside of the reasonable range of queues or not created. Queue: " << getQueueName(name) << llendl; return; } @@ -247,7 +249,7 @@ void NACLAntiSpamRegistry::purgeRegisteredQueue(U32 name) { if(name >= QUEUE_MAX || queues[name] == 0) { - LL_ERRS("AntiSpam") << "CODE BUG: Attempting to use a antispam queue that was not created or was outside of the reasonable range of queues. Queue: " << getQueueName(name) << llendl; + LL_ERRS("AntiSpam") << "CODE BUG: Attempting to purge antispam queue that was outside of the reasonable range of queues or not created. Queue: " << getQueueName(name) << llendl; return; } @@ -263,7 +265,7 @@ void NACLAntiSpamRegistry::blockOnQueue(U32 name, LLUUID& source) { if(name >= QUEUE_MAX || queues[name] == 0) { - LL_ERRS("AntiSpam") << "CODE BUG: Attempting to use a antispam queue that was not created or was outside of the reasonable range of queues. Queue: " << getQueueName(name) << llendl; + LL_ERRS("AntiSpam") << "CODE BUG: Attempting to use a antispam queue that was outside of the reasonable range of queues or not created. Queue: " << getQueueName(name) << llendl; return; } queues[name]->blockEntry(source); @@ -295,7 +297,7 @@ bool NACLAntiSpamRegistry::checkQueue(U32 name, LLUUID& source, U32 multiplier) { if(name >= QUEUE_MAX || queues[name] == 0) { - LL_ERRS("AntiSpam") << "CODE BUG: Attempting to use a antispam queue that was not created or was outside of the reasonable range of queues. Queue: " << getQueueName(name) << llendl; + LL_ERRS("AntiSpam") << "CODE BUG: Attempting to check antispam queue that was outside of the reasonable range of queues or not created. Queue: " << getQueueName(name) << llendl; return false; } result=queues[name]->checkEntry(source,multiplier); @@ -356,6 +358,8 @@ void NACLAntiSpamRegistry::purgeAllQueues() } int NACLAntiSpamRegistry::checkGlobalEntry(LLUUID& name, U32 multiplier) { + static LLCachedControl enabled(gSavedSettings,"AntiSpamEnabled",false); + if(!enabled) return 0; it2=globalEntries.find(name.asString()); if(it2 != globalEntries.end()) { diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index dfa1375a2..36279ab1f 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -930,6 +930,17 @@ Value 0 + AntiSpamEnabled + + Comment + When false, antispam, not relating to dialog blocking, will be turned off. + Persist + 1 + Type + Boolean + Value + 0 + AntiSpamFriendshipOffers Comment @@ -1060,7 +1071,7 @@ Type U32 Value - 20 + 100 _NACL_AntiSpamNewlines @@ -1082,7 +1093,7 @@ Type U32 Value - 20 + 100 AgentChatColor diff --git a/indra/newview/ascentprefschat.cpp b/indra/newview/ascentprefschat.cpp index 5960024bd..d368e07a8 100644 --- a/indra/newview/ascentprefschat.cpp +++ b/indra/newview/ascentprefschat.cpp @@ -96,6 +96,7 @@ LLPrefsAscentChat::LLPrefsAscentChat() childSetEnabled("reset_antispam", started); childSetCommitCallback("reset_antispam", onCommitResetAS, this); + childSetCommitCallback("enable_as", onCommitEnableAS, this); childSetCommitCallback("antispam_checkbox", onCommitDialogBlock, this); childSetCommitCallback("KeywordsOn", onCommitKeywords, this); @@ -250,6 +251,20 @@ void LLPrefsAscentChat::onCommitResetAS(LLUICtrl*, void*) NACLAntiSpamRegistry::purgeAllQueues(); } +//static +void LLPrefsAscentChat::onCommitEnableAS(LLUICtrl* ctrl, void* user_data) +{ + LLPrefsAscentChat* self = (LLPrefsAscentChat*)user_data; + bool enabled = ctrl->getValue().asBoolean(); + self->childSetEnabled("spammsg_checkbox", enabled); + self->childSetEnabled("antispamtime", enabled); + self->childSetEnabled("antispamamount", enabled); + self->childSetEnabled("antispamsoundmulti", enabled); + self->childSetEnabled("antispamsoundpreloadmulti", enabled); + self->childSetEnabled("antispamnewlines", enabled); + self->childSetEnabled("Notify On Spam", enabled); +} + //static void LLPrefsAscentChat::onCommitDialogBlock(LLUICtrl* ctrl, void* user_data) { @@ -344,6 +359,7 @@ void LLPrefsAscentChat::refreshValues() mIMResponseText = gSavedPerAccountSettings.getString("AscentInstantMessageResponse"); //Spam -------------------------------------------------------------------------------- + mEnableAS = gSavedSettings.getBOOL("AntiSpamEnabled"); mGlobalQueue = gSavedSettings.getBOOL("_NACL_AntiSpamGlobalQueue"); mChatSpamCount = gSavedSettings.getU32("_NACL_AntiSpamAmount"); mChatSpamTime = gSavedSettings.getU32("_NACL_AntiSpamTime"); @@ -404,6 +420,15 @@ void LLPrefsAscentChat::refresh() childSetText("im_response", wstring_to_utf8str(auto_response)); //Antispam ------------------------------------------------------------------------ + // sensitivity tuners + childSetEnabled("spammsg_checkbox", mEnableAS); + childSetEnabled("antispamtime", mEnableAS); + childSetEnabled("antispamamount", mEnableAS); + childSetEnabled("antispamsoundmulti", mEnableAS); + childSetEnabled("antispamsoundpreloadmulti", mEnableAS); + childSetEnabled("antispamnewlines", mEnableAS); + childSetEnabled("Notify On Spam", mEnableAS); + // dialog blocking tuners childSetEnabled("Block All Dialogs From", !mBlockDialogSpam); childSetEnabled("Alerts", !mBlockDialogSpam); childSetEnabled("Friendship Offers", !mBlockDialogSpam); @@ -549,6 +574,7 @@ void LLPrefsAscentChat::cancel() gSavedPerAccountSettings.setString("AscentInstantMessageResponse", mIMResponseText); //Spam -------------------------------------------------------------------------------- + gSavedSettings.setBOOL("AntiSpamEnabled", mEnableAS); gSavedSettings.setBOOL("_NACL_AntiSpamGlobalQueue", mGlobalQueue); gSavedSettings.setU32("_NACL_AntiSpamAmount", mChatSpamCount); gSavedSettings.setU32("_NACL_AntiSpamTime", mChatSpamTime); diff --git a/indra/newview/ascentprefschat.h b/indra/newview/ascentprefschat.h index 936646164..661ddc4f6 100644 --- a/indra/newview/ascentprefschat.h +++ b/indra/newview/ascentprefschat.h @@ -57,6 +57,7 @@ protected: static void onCommitTimeDate(LLUICtrl* ctrl, void *userdata); static void onCommitAutoResponse(LLUICtrl* ctrl, void* user_data); static void onCommitResetAS(LLUICtrl*,void*); + static void onCommitEnableAS(LLUICtrl*, void*); static void onCommitDialogBlock(LLUICtrl*, void*); static void onCommitKeywords(LLUICtrl* ctrl, void* user_data); @@ -86,6 +87,7 @@ protected: std::string mIMResponseText; //Spam -------------------------------------------------------------------------------- + BOOL mEnableAS; BOOL mGlobalQueue; U32 mChatSpamCount; U32 mChatSpamTime; diff --git a/indra/newview/llpreviewtexture.cpp b/indra/newview/llpreviewtexture.cpp index d4b0d7099..cfb542b2f 100644 --- a/indra/newview/llpreviewtexture.cpp +++ b/indra/newview/llpreviewtexture.cpp @@ -44,6 +44,7 @@ #include "llinventory.h" #include "llnotificationsutil.h" #include "llresmgr.h" +#include "lltrans.h" #include "lltextbox.h" #include "lltextureview.h" #include "llui.h" @@ -56,13 +57,13 @@ const S32 PREVIEW_TEXTURE_MIN_WIDTH = 300; const S32 PREVIEW_TEXTURE_MIN_HEIGHT = 120; -const F32 PREVIEW_TEXTURE_MAX_ASPECT = 200.f; -const F32 PREVIEW_TEXTURE_MIN_ASPECT = 0.005f; - const S32 CLIENT_RECT_VPAD = 4; const F32 SECONDS_TO_SHOW_FILE_SAVED_MSG = 8.f; +const F32 PREVIEW_TEXTURE_MAX_ASPECT = 200.f; +const F32 PREVIEW_TEXTURE_MIN_ASPECT = 0.005f; + LLPreviewTexture * LLPreviewTexture::sInstance; LLPreviewTexture::LLPreviewTexture(const std::string& name, const LLRect& rect, @@ -163,8 +164,11 @@ LLPreviewTexture::~LLPreviewTexture() { getWindow()->decBusyCount(); } - mImage->setBoostLevel(mImageOldBoostLevel); - mImage = NULL; + if(mImage) + { + mImage->setBoostLevel(mImageOldBoostLevel); + mImage = NULL; + } sInstance = NULL; } @@ -185,14 +189,12 @@ void LLPreviewTexture::init() { childSetAction("Copy To Inventory",LLPreview::onBtnCopyToInv,this); } - else if (mShowKeepDiscard) { childSetAction("Keep",onKeepBtn,this); childSetAction("Discard",onDiscardBtn,this); } - - else + else { // If the buttons are hidden move stuff down to use the space. @@ -233,7 +235,7 @@ void LLPreviewTexture::init() childSetText("uuid", getItemID().asString()); childSetText("uploader", getItemCreatorName()); childSetText("uploadtime", getItemCreationDate()); - childSetText("alphanote", std::string("Loading...")); + childSetText("alphanote", LLTrans::getString("LoadingData")); } } @@ -287,12 +289,12 @@ void LLPreviewTexture::draw() if (!mImage->getIsAlphaMask()) { childSetColor("alphanote", LLColor4::green); - childSetText("alphanote", std::string("No Alpha")); + childSetText("alphanote", getString("No Alpha")); } else { childSetColor("alphanote", LLColor4::red); - childSetText("alphanote", std::string("Has Alpha")); + childSetText("alphanote", getString("Has Alpha")); } mAlphaMaskResult = mImage->getIsAlphaMask(); } @@ -320,8 +322,7 @@ void LLPreviewTexture::draw() if( mLoadingFullImage ) { - // *TODO: Translate - LLFontGL::getFontSansSerif()->renderUTF8(std::string("Receiving:"), 0, + LLFontGL::getFontSansSerif()->renderUTF8(LLTrans::getString("Receiving"), 0, interior.mLeft + 4, interior.mBottom + 4, LLColor4::white, LLFontGL::LEFT, LLFontGL::BOTTOM, @@ -357,8 +358,7 @@ void LLPreviewTexture::draw() } else if(!mSavedFileTimer.hasExpired()) { - // *TODO: Translate - LLFontGL::getFontSansSerif()->renderUTF8(std::string("File Saved"), 0, + LLFontGL::getFontSansSerif()->renderUTF8(LLTrans::getString("FileSaved"), 0, interior.mLeft + 4, interior.mBottom + 4, LLColor4::white, LLFontGL::LEFT, LLFontGL::BOTTOM, @@ -367,6 +367,7 @@ void LLPreviewTexture::draw() } } } + } @@ -408,6 +409,7 @@ void LLPreviewTexture::saveAs_continued(LLViewerInventoryItem const* item, AIFil mSaveFileName = filepicker->getFilename(); mLoadingFullImage = TRUE; getWindow()->incBusyCount(); + mImage->forceToSaveRawImage(0) ;//re-fetch the raw image if the old one is removed. mImage->setLoadedCallback( LLPreviewTexture::onFileLoadedForSave, 0, TRUE, FALSE, new LLUUID( mItemUUID ), &mCallbackTextureList ); @@ -497,7 +499,7 @@ std::string LLPreviewTexture::getItemCreationDate() timeToFormattedString(item->getCreationDate(), gSavedSettings.getString("TimestampFormat"), time); return time; } - return "Unknown"; + return getString("Unknown"); } std::string LLPreviewTexture::getItemCreatorName() @@ -510,7 +512,7 @@ std::string LLPreviewTexture::getItemCreatorName() mCreatorKey = item->getCreatorUUID(); return name; } - return "Unknown"; + return getString("Unknown"); } diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp index 5b13d747b..98b78e2f5 100644 --- a/indra/newview/llviewermedia.cpp +++ b/indra/newview/llviewermedia.cpp @@ -338,7 +338,14 @@ void LLViewerMedia::setVolume(F32 volume) { LLViewerMediaImpl* pimpl = *iter; LLPluginClassMedia* plugin = pimpl->getMediaPlugin(); - plugin->setVolume(volume); + if(plugin) + { + plugin->setVolume(volume); + } + else + { + llwarns << "Plug-in already destroyed" << llendl; + } } } diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 182955f99..a48ac85d7 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -1946,23 +1946,26 @@ void process_improved_im(LLMessageSystem *msg, void **user_data) msg->getStringFast(_PREHASH_MessageBlock, _PREHASH_FromAgentName, name); msg->getStringFast(_PREHASH_MessageBlock, _PREHASH_Message, message); // NaCl - Newline flood protection - LLViewerObject* obj=gObjectList.findObject(from_id); - if(!from_id.isNull() //Not from nothing. - && gAgent.getID() != from_id //Not from self. - && !(obj && obj->permYouOwner())) //Not from own object. - { - static LLCachedControl SpamNewlines(gSavedSettings,"_NACL_AntiSpamNewlines"); - boost::sregex_iterator iter(message.begin(), message.end(), NEWLINES); - if((U32)std::abs(std::distance(iter, boost::sregex_iterator())) > SpamNewlines) + static LLCachedControl AntiSpamEnabled(gSavedSettings,"AntiSpamEnabled",false); + if(AntiSpamEnabled){ + LLViewerObject* obj=gObjectList.findObject(from_id); + if(!from_id.isNull() //Not from nothing. + && gAgent.getID() != from_id //Not from self. + && !(obj && obj->permYouOwner())) //Not from own object. { - NACLAntiSpamRegistry::blockOnQueue((U32)NACLAntiSpamRegistry::QUEUE_IM,from_id); - if(gSavedSettings.getBOOL("AntiSpamNotify")) + static LLCachedControl SpamNewlines(gSavedSettings,"_NACL_AntiSpamNewlines"); + boost::sregex_iterator iter(message.begin(), message.end(), NEWLINES); + if((U32)std::abs(std::distance(iter, boost::sregex_iterator())) > SpamNewlines) { - LLSD args; - args["MESSAGE"] = "Message: Blocked newline flood from "+from_id.asString(); - LLNotificationsUtil::add("SystemMessageTip", args); + NACLAntiSpamRegistry::blockOnQueue((U32)NACLAntiSpamRegistry::QUEUE_IM,from_id); + if(gSavedSettings.getBOOL("AntiSpamNotify")) + { + LLSD args; + args["MESSAGE"] = "Message: Blocked newline flood from "+from_id.asString(); + LLNotificationsUtil::add("SystemMessageTip", args); + } + return; } - return; } } // NaCl End @@ -3519,23 +3522,26 @@ void process_chat_from_simulator(LLMessageSystem *msg, void **user_data) msg->getStringFast(_PREHASH_ChatData, _PREHASH_Message, mesg); // NaCl - Newline flood protection - LLViewerObject* obj=gObjectList.findObject(from_id); - if(!(from_id.isNull()) //Not from nothing. - || !(gAgent.getID() != from_id) //Not from self. - || !(obj && obj->permYouOwner())) //Not from own object. - { - static LLCachedControl SpamNewlines(gSavedSettings,"_NACL_AntiSpamNewlines"); - boost::sregex_iterator iter(mesg.begin(), mesg.end(), NEWLINES); - if((U32)std::abs(std::distance(iter, boost::sregex_iterator())) > SpamNewlines) + static LLCachedControl AntiSpamEnabled(gSavedSettings,"AntiSpamEnabled",false); + if(AntiSpamEnabled){ + LLViewerObject* obj=gObjectList.findObject(from_id); + if(!(from_id.isNull()) //Not from nothing. + || !(gAgent.getID() != from_id) //Not from self. + || !(obj && obj->permYouOwner())) //Not from own object. { - NACLAntiSpamRegistry::blockOnQueue((U32)NACLAntiSpamRegistry::QUEUE_CHAT,owner_id); - if(gSavedSettings.getBOOL("AntiSpamNotify")) + static LLCachedControl SpamNewlines(gSavedSettings,"_NACL_AntiSpamNewlines"); + boost::sregex_iterator iter(mesg.begin(), mesg.end(), NEWLINES); + if((U32)std::abs(std::distance(iter, boost::sregex_iterator())) > SpamNewlines) { - LLSD args; - args["MESSAGE"] = "Chat: Blocked newline flood from "+owner_id.asString(); - LLNotificationsUtil::add("SystemMessageTip", args); + NACLAntiSpamRegistry::blockOnQueue((U32)NACLAntiSpamRegistry::QUEUE_CHAT,owner_id); + if(gSavedSettings.getBOOL("AntiSpamNotify")) + { + LLSD args; + args["MESSAGE"] = "Chat: Blocked newline flood from "+owner_id.asString(); + LLNotificationsUtil::add("SystemMessageTip", args); + } + return; } - return; } } // NaCl End diff --git a/indra/newview/skins/Apollo.xml b/indra/newview/skins/Apollo.xml new file mode 100644 index 000000000..7ac23439e --- /dev/null +++ b/indra/newview/skins/Apollo.xml @@ -0,0 +1,14 @@ + + + skin_name + Apollo + author_name + Basically: Skills Hak - Wisdom - JB Kraft - Linden Lab + additional_author_names + Nomade Zhao + skin_info + Apollo is Gemini with the textures of several "DARK" Skins. + folder_name + apollo + + diff --git a/indra/newview/skins/DarkCatalan.xml b/indra/newview/skins/DarkCatalan.xml new file mode 100644 index 000000000..8db96a5a3 --- /dev/null +++ b/indra/newview/skins/DarkCatalan.xml @@ -0,0 +1,15 @@ + + + skin_name + Dark Catalan + author_name + Nomade Zhao - Skills Hak + additional_author_names + Linden Lab + skin_info + A Catalan Skin inspired by the Skill Hak's Gemini Skin (with love for Selv). +Une Skin "Dark" aux couleurs de la Catalogne, inspirée de la Skin Gemini de Skill Hak (with love for Selv) + folder_name + darkcatalan + + diff --git a/indra/newview/skins/FrenchTouch.xml b/indra/newview/skins/FrenchTouch.xml new file mode 100644 index 000000000..8490a4739 --- /dev/null +++ b/indra/newview/skins/FrenchTouch.xml @@ -0,0 +1,14 @@ + + + skin_name + French Touch + author_name + Nomade Zhao + additional_author_names + 3DX,linden lab + skin_info + A lite skin Blue...White...and Red so, maybe a French touch ?. Skin dans les tons de Bleu de Blanc et de Rouge, d'ou son nom :) + folder_name + frenchtouch + + diff --git a/indra/newview/skins/Italia.xml b/indra/newview/skins/Italia.xml new file mode 100644 index 000000000..22635d82a --- /dev/null +++ b/indra/newview/skins/Italia.xml @@ -0,0 +1,15 @@ + + + skin_name + Italia Dolce Vita + author_name + Nomade Zhao - 3DX + additional_author_names + Linden Lab + skin_info + A skin for my roots ! +Une skin pour mes origines ! + folder_name + italia + + diff --git a/indra/newview/skins/KirstenLite2.xml b/indra/newview/skins/KirstenLite2.xml new file mode 100644 index 000000000..aab5f2c8d --- /dev/null +++ b/indra/newview/skins/KirstenLite2.xml @@ -0,0 +1,14 @@ + + + skin_name + KirstenLite2 + author_name + Kirstenlee Cinquetti + additional_author_names + 3DX,Linden Lab,Nomade Zhao + skin_info + Variations around Kirsten's build 377 - Variations autour de la très jolie skin de Kirstenlee Cinquetti + folder_name + kirstenLite2 + + diff --git a/indra/newview/skins/New_Silver.xml b/indra/newview/skins/New_Silver.xml new file mode 100644 index 000000000..99878edad --- /dev/null +++ b/indra/newview/skins/New_Silver.xml @@ -0,0 +1,14 @@ + + + skin_name + New Silver + author_name + Linden Lab + additional_author_names + Nomade Zhao + skin_info + This is a variation around silver the alternate skin for Linden Lab's Second Life viewer. Variations autour de la Skin Silver, re adaptée pour Singularity + folder_name + new_silver + + diff --git a/indra/newview/skins/OrangeLife.xml b/indra/newview/skins/OrangeLife.xml new file mode 100644 index 000000000..c06518e69 --- /dev/null +++ b/indra/newview/skins/OrangeLife.xml @@ -0,0 +1,15 @@ + + + skin_name + Orange Life + author_name + Nomade Zhao - 3DX + additional_author_names + Linden Lab + skin_info + Orange Life freely inspired by the skin from the open life viewer. +Orange Life, skin inspirée de celle de l'open life viewer. + folder_name + orangelife + + diff --git a/indra/newview/skins/SnowWhite.xml b/indra/newview/skins/SnowWhite.xml new file mode 100644 index 000000000..dd5bc582d --- /dev/null +++ b/indra/newview/skins/SnowWhite.xml @@ -0,0 +1,17 @@ + + + skin_name + Snow White + author_name + James Random - Nomade Zhao + additional_author_names + Linden Lab + skin_info + Just a Funny monochrome skin - some from the White Emerald and some from myself. +Skin monochrome ^^ pourquoi ? ...pourquoi pas ! une envie :) +Joyeux mélange de la White Emerald revisitée +et d'éléments personnels. + folder_name + snowwhite + + diff --git a/indra/newview/skins/StPatrick.xml b/indra/newview/skins/StPatrick.xml new file mode 100644 index 000000000..6ccf1328f --- /dev/null +++ b/indra/newview/skins/StPatrick.xml @@ -0,0 +1,15 @@ + + + skin_name + St Patrick + author_name + Nomade Zhao - 3DX + additional_author_names + Linden Lab + skin_info + A Irish Skin in Green White and Orange . +Une skin aux couleurs de l'Irlande. inspirée de l'open life skin. + folder_name + stpatrick + + diff --git a/indra/newview/skins/apollo/colors.xml b/indra/newview/skins/apollo/colors.xml new file mode 100644 index 000000000..434115514 --- /dev/null +++ b/indra/newview/skins/apollo/colors.xml @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/apollo/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/apollo/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..a60bd521f Binary files /dev/null and b/indra/newview/skins/apollo/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/apollo/textures/0498c309-5306-43cd-82a2-ae31d096cdef.tga b/indra/newview/skins/apollo/textures/0498c309-5306-43cd-82a2-ae31d096cdef.tga new file mode 100644 index 000000000..d7097e3a3 Binary files /dev/null and b/indra/newview/skins/apollo/textures/0498c309-5306-43cd-82a2-ae31d096cdef.tga differ diff --git a/indra/newview/skins/apollo/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga b/indra/newview/skins/apollo/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga new file mode 100644 index 000000000..2d78d07f5 Binary files /dev/null and b/indra/newview/skins/apollo/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga differ diff --git a/indra/newview/skins/apollo/textures/09a324a8-acc1-d9cd-2cbd-7465d90d3a98.tga b/indra/newview/skins/apollo/textures/09a324a8-acc1-d9cd-2cbd-7465d90d3a98.tga new file mode 100644 index 000000000..77d470731 Binary files /dev/null and b/indra/newview/skins/apollo/textures/09a324a8-acc1-d9cd-2cbd-7465d90d3a98.tga differ diff --git a/indra/newview/skins/apollo/textures/0e82d24e-ed45-41bc-b090-94c97c1caab2.tga b/indra/newview/skins/apollo/textures/0e82d24e-ed45-41bc-b090-94c97c1caab2.tga new file mode 100644 index 000000000..b2e5609f1 Binary files /dev/null and b/indra/newview/skins/apollo/textures/0e82d24e-ed45-41bc-b090-94c97c1caab2.tga differ diff --git a/indra/newview/skins/apollo/textures/111b39de-8928-4690-b7b2-e17d5c960277.tga b/indra/newview/skins/apollo/textures/111b39de-8928-4690-b7b2-e17d5c960277.tga new file mode 100644 index 000000000..0febf4edc Binary files /dev/null and b/indra/newview/skins/apollo/textures/111b39de-8928-4690-b7b2-e17d5c960277.tga differ diff --git a/indra/newview/skins/apollo/textures/13dd1d96-6836-461e-8a4c-36003065c59b.tga b/indra/newview/skins/apollo/textures/13dd1d96-6836-461e-8a4c-36003065c59b.tga new file mode 100644 index 000000000..031b3ad34 Binary files /dev/null and b/indra/newview/skins/apollo/textures/13dd1d96-6836-461e-8a4c-36003065c59b.tga differ diff --git a/indra/newview/skins/apollo/textures/34c9398d-bb78-4643-9633-46a2fa3e9637.tga b/indra/newview/skins/apollo/textures/34c9398d-bb78-4643-9633-46a2fa3e9637.tga new file mode 100644 index 000000000..58cd2cd55 Binary files /dev/null and b/indra/newview/skins/apollo/textures/34c9398d-bb78-4643-9633-46a2fa3e9637.tga differ diff --git a/indra/newview/skins/apollo/textures/37c8e000-6aa2-41ef-8f86-e0c2e60bfa42.tga b/indra/newview/skins/apollo/textures/37c8e000-6aa2-41ef-8f86-e0c2e60bfa42.tga new file mode 100644 index 000000000..879b9e618 Binary files /dev/null and b/indra/newview/skins/apollo/textures/37c8e000-6aa2-41ef-8f86-e0c2e60bfa42.tga differ diff --git a/indra/newview/skins/apollo/textures/39801651-26cb-4926-af57-7af9352c273c.tga b/indra/newview/skins/apollo/textures/39801651-26cb-4926-af57-7af9352c273c.tga new file mode 100644 index 000000000..f2fdd074b Binary files /dev/null and b/indra/newview/skins/apollo/textures/39801651-26cb-4926-af57-7af9352c273c.tga differ diff --git a/indra/newview/skins/apollo/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga b/indra/newview/skins/apollo/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga new file mode 100644 index 000000000..e90ab295b Binary files /dev/null and b/indra/newview/skins/apollo/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga differ diff --git a/indra/newview/skins/apollo/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga b/indra/newview/skins/apollo/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga new file mode 100644 index 000000000..340f3213d Binary files /dev/null and b/indra/newview/skins/apollo/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga differ diff --git a/indra/newview/skins/apollo/textures/47a8c844-cd2a-4b1a-be01-df8b1612fe5d.tga b/indra/newview/skins/apollo/textures/47a8c844-cd2a-4b1a-be01-df8b1612fe5d.tga new file mode 100644 index 000000000..505f6ed1c Binary files /dev/null and b/indra/newview/skins/apollo/textures/47a8c844-cd2a-4b1a-be01-df8b1612fe5d.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/white.tga b/indra/newview/skins/apollo/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga similarity index 100% rename from indra/newview/skins/white_emerald/Textures/white.tga rename to indra/newview/skins/apollo/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga diff --git a/indra/newview/skins/apollo/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga b/indra/newview/skins/apollo/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga new file mode 100644 index 000000000..fc720c826 Binary files /dev/null and b/indra/newview/skins/apollo/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga differ diff --git a/indra/newview/skins/apollo/textures/73577b7b-19c3-4050-a19d-36bc2408aa79.tga b/indra/newview/skins/apollo/textures/73577b7b-19c3-4050-a19d-36bc2408aa79.tga new file mode 100644 index 000000000..35846cef3 Binary files /dev/null and b/indra/newview/skins/apollo/textures/73577b7b-19c3-4050-a19d-36bc2408aa79.tga differ diff --git a/indra/newview/skins/apollo/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga b/indra/newview/skins/apollo/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga new file mode 100644 index 000000000..0fc1afb7a Binary files /dev/null and b/indra/newview/skins/apollo/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga differ diff --git a/indra/newview/skins/apollo/textures/74e1a96f-4833-a24d-a1bb-1bce1468b0e7.tga b/indra/newview/skins/apollo/textures/74e1a96f-4833-a24d-a1bb-1bce1468b0e7.tga new file mode 100644 index 000000000..c359f2f31 Binary files /dev/null and b/indra/newview/skins/apollo/textures/74e1a96f-4833-a24d-a1bb-1bce1468b0e7.tga differ diff --git a/indra/newview/skins/apollo/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/apollo/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..b776b11d0 Binary files /dev/null and b/indra/newview/skins/apollo/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/apollo/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga b/indra/newview/skins/apollo/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga new file mode 100644 index 000000000..534ecba91 Binary files /dev/null and b/indra/newview/skins/apollo/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga differ diff --git a/indra/newview/skins/apollo/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga b/indra/newview/skins/apollo/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga new file mode 100644 index 000000000..6cc9ea194 Binary files /dev/null and b/indra/newview/skins/apollo/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga differ diff --git a/indra/newview/skins/apollo/textures/8f761ce3-5939-4d3a-8991-00064fdfacf9.tga b/indra/newview/skins/apollo/textures/8f761ce3-5939-4d3a-8991-00064fdfacf9.tga new file mode 100644 index 000000000..1f9f564fa Binary files /dev/null and b/indra/newview/skins/apollo/textures/8f761ce3-5939-4d3a-8991-00064fdfacf9.tga differ diff --git a/indra/newview/skins/apollo/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga b/indra/newview/skins/apollo/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga new file mode 100644 index 000000000..c8491a0a1 Binary files /dev/null and b/indra/newview/skins/apollo/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga differ diff --git a/indra/newview/skins/apollo/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga b/indra/newview/skins/apollo/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga new file mode 100644 index 000000000..e90ab295b Binary files /dev/null and b/indra/newview/skins/apollo/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga differ diff --git a/indra/newview/skins/apollo/textures/account_id_green.tga b/indra/newview/skins/apollo/textures/account_id_green.tga new file mode 100644 index 000000000..9be215eed Binary files /dev/null and b/indra/newview/skins/apollo/textures/account_id_green.tga differ diff --git a/indra/newview/skins/apollo/textures/account_id_orange.tga b/indra/newview/skins/apollo/textures/account_id_orange.tga new file mode 100644 index 000000000..6b41e8663 Binary files /dev/null and b/indra/newview/skins/apollo/textures/account_id_orange.tga differ diff --git a/indra/newview/skins/apollo/textures/active_speakers.tga b/indra/newview/skins/apollo/textures/active_speakers.tga new file mode 100644 index 000000000..02d3643d7 Binary files /dev/null and b/indra/newview/skins/apollo/textures/active_speakers.tga differ diff --git a/indra/newview/skins/apollo/textures/active_voice_tab.tga b/indra/newview/skins/apollo/textures/active_voice_tab.tga new file mode 100644 index 000000000..2d0dfaabc Binary files /dev/null and b/indra/newview/skins/apollo/textures/active_voice_tab.tga differ diff --git a/indra/newview/skins/apollo/textures/alpha_gradient.tga b/indra/newview/skins/apollo/textures/alpha_gradient.tga new file mode 100644 index 000000000..6fdba25d4 Binary files /dev/null and b/indra/newview/skins/apollo/textures/alpha_gradient.tga differ diff --git a/indra/newview/skins/apollo/textures/arrow_down.tga b/indra/newview/skins/apollo/textures/arrow_down.tga new file mode 100644 index 000000000..81dc9d3b6 Binary files /dev/null and b/indra/newview/skins/apollo/textures/arrow_down.tga differ diff --git a/indra/newview/skins/apollo/textures/arrow_up.tga b/indra/newview/skins/apollo/textures/arrow_up.tga new file mode 100644 index 000000000..22195cf7f Binary files /dev/null and b/indra/newview/skins/apollo/textures/arrow_up.tga differ diff --git a/indra/newview/skins/apollo/textures/avatar_gone.tga b/indra/newview/skins/apollo/textures/avatar_gone.tga new file mode 100644 index 000000000..e5c2c070b Binary files /dev/null and b/indra/newview/skins/apollo/textures/avatar_gone.tga differ diff --git a/indra/newview/skins/apollo/textures/avatar_new.tga b/indra/newview/skins/apollo/textures/avatar_new.tga new file mode 100644 index 000000000..854b70c32 Binary files /dev/null and b/indra/newview/skins/apollo/textures/avatar_new.tga differ diff --git a/indra/newview/skins/apollo/textures/avatar_sound.tga b/indra/newview/skins/apollo/textures/avatar_sound.tga new file mode 100644 index 000000000..ec5dacbf0 Binary files /dev/null and b/indra/newview/skins/apollo/textures/avatar_sound.tga differ diff --git a/indra/newview/skins/apollo/textures/avatar_typing.tga b/indra/newview/skins/apollo/textures/avatar_typing.tga new file mode 100644 index 000000000..2c549025d Binary files /dev/null and b/indra/newview/skins/apollo/textures/avatar_typing.tga differ diff --git a/indra/newview/skins/apollo/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga b/indra/newview/skins/apollo/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga new file mode 100644 index 000000000..7358e86d3 Binary files /dev/null and b/indra/newview/skins/apollo/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga differ diff --git a/indra/newview/skins/apollo/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/apollo/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..54f7c6ece Binary files /dev/null and b/indra/newview/skins/apollo/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/black.tga b/indra/newview/skins/apollo/textures/black.tga similarity index 100% rename from indra/newview/skins/white_emerald/Textures/black.tga rename to indra/newview/skins/apollo/textures/black.tga diff --git a/indra/newview/skins/apollo/textures/btn_chatbar.tga b/indra/newview/skins/apollo/textures/btn_chatbar.tga new file mode 100644 index 000000000..07117925a Binary files /dev/null and b/indra/newview/skins/apollo/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/apollo/textures/btn_chatbar_selected.tga b/indra/newview/skins/apollo/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..3446bf168 Binary files /dev/null and b/indra/newview/skins/apollo/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/apollo/textures/button_anim_pause.tga b/indra/newview/skins/apollo/textures/button_anim_pause.tga new file mode 100644 index 000000000..f4ad7adc0 Binary files /dev/null and b/indra/newview/skins/apollo/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/apollo/textures/button_anim_pause_disabled.tga b/indra/newview/skins/apollo/textures/button_anim_pause_disabled.tga new file mode 100644 index 000000000..4d604c63c Binary files /dev/null and b/indra/newview/skins/apollo/textures/button_anim_pause_disabled.tga differ diff --git a/indra/newview/skins/apollo/textures/button_anim_pause_selected.tga b/indra/newview/skins/apollo/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..64268de2c Binary files /dev/null and b/indra/newview/skins/apollo/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/apollo/textures/button_anim_play.tga b/indra/newview/skins/apollo/textures/button_anim_play.tga new file mode 100644 index 000000000..9843aec5f Binary files /dev/null and b/indra/newview/skins/apollo/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/apollo/textures/button_anim_play_disabled.tga b/indra/newview/skins/apollo/textures/button_anim_play_disabled.tga new file mode 100644 index 000000000..444062f37 Binary files /dev/null and b/indra/newview/skins/apollo/textures/button_anim_play_disabled.tga differ diff --git a/indra/newview/skins/apollo/textures/button_anim_play_selected.tga b/indra/newview/skins/apollo/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..d102c2b06 Binary files /dev/null and b/indra/newview/skins/apollo/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/apollo/textures/button_anim_stop.tga b/indra/newview/skins/apollo/textures/button_anim_stop.tga new file mode 100644 index 000000000..4c28986bf Binary files /dev/null and b/indra/newview/skins/apollo/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/apollo/textures/button_anim_stop_disabled.tga b/indra/newview/skins/apollo/textures/button_anim_stop_disabled.tga new file mode 100644 index 000000000..cf1532a42 Binary files /dev/null and b/indra/newview/skins/apollo/textures/button_anim_stop_disabled.tga differ diff --git a/indra/newview/skins/apollo/textures/button_anim_stop_selected.tga b/indra/newview/skins/apollo/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..afb1536e0 Binary files /dev/null and b/indra/newview/skins/apollo/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/apollo/textures/button_disabled_32x128.tga b/indra/newview/skins/apollo/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..d33fbe464 Binary files /dev/null and b/indra/newview/skins/apollo/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/apollo/textures/button_enabled_32x128.tga b/indra/newview/skins/apollo/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..d33fbe464 Binary files /dev/null and b/indra/newview/skins/apollo/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/apollo/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/apollo/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..a7ef5b78d Binary files /dev/null and b/indra/newview/skins/apollo/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/apollo/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/apollo/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..0db2e5061 Binary files /dev/null and b/indra/newview/skins/apollo/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/apollo/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/apollo/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..2e8d54b35 Binary files /dev/null and b/indra/newview/skins/apollo/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/apollo/textures/ca7609c6-6ec6-32d9-332e-0d8f437ef644.tga b/indra/newview/skins/apollo/textures/ca7609c6-6ec6-32d9-332e-0d8f437ef644.tga new file mode 100644 index 000000000..0dbb8fda4 Binary files /dev/null and b/indra/newview/skins/apollo/textures/ca7609c6-6ec6-32d9-332e-0d8f437ef644.tga differ diff --git a/indra/newview/skins/apollo/textures/cam_rotate_in.tga b/indra/newview/skins/apollo/textures/cam_rotate_in.tga new file mode 100644 index 000000000..129c9982e Binary files /dev/null and b/indra/newview/skins/apollo/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/apollo/textures/cam_rotate_out.tga b/indra/newview/skins/apollo/textures/cam_rotate_out.tga new file mode 100644 index 000000000..bd7c80e29 Binary files /dev/null and b/indra/newview/skins/apollo/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/apollo/textures/cam_tracking_in.tga b/indra/newview/skins/apollo/textures/cam_tracking_in.tga new file mode 100644 index 000000000..1d5b32a3c Binary files /dev/null and b/indra/newview/skins/apollo/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/apollo/textures/cam_tracking_out.tga b/indra/newview/skins/apollo/textures/cam_tracking_out.tga new file mode 100644 index 000000000..8bac4a1f2 Binary files /dev/null and b/indra/newview/skins/apollo/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/apollo/textures/cam_zoom_minus_in.tga b/indra/newview/skins/apollo/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..58cb426be Binary files /dev/null and b/indra/newview/skins/apollo/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/apollo/textures/cam_zoom_out.tga b/indra/newview/skins/apollo/textures/cam_zoom_out.tga new file mode 100644 index 000000000..6b117abc1 Binary files /dev/null and b/indra/newview/skins/apollo/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/apollo/textures/cam_zoom_plus_in.tga b/indra/newview/skins/apollo/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..c427f4ba9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/apollo/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/apollo/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..dfe32943a Binary files /dev/null and b/indra/newview/skins/apollo/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/apollo/textures/checkbox_disabled_false.tga b/indra/newview/skins/apollo/textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..aa57cd211 Binary files /dev/null and b/indra/newview/skins/apollo/textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/apollo/textures/checkbox_disabled_true.tga b/indra/newview/skins/apollo/textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..30bc6d4c9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/apollo/textures/checkbox_enabled_false.tga b/indra/newview/skins/apollo/textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..fb8265b18 Binary files /dev/null and b/indra/newview/skins/apollo/textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/apollo/textures/checkbox_enabled_true.tga b/indra/newview/skins/apollo/textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..1b43d2abb Binary files /dev/null and b/indra/newview/skins/apollo/textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/apollo/textures/checkerboard_transparency_bg.png b/indra/newview/skins/apollo/textures/checkerboard_transparency_bg.png new file mode 100644 index 000000000..9a1693520 Binary files /dev/null and b/indra/newview/skins/apollo/textures/checkerboard_transparency_bg.png differ diff --git a/indra/newview/skins/apollo/textures/circle.tga b/indra/newview/skins/apollo/textures/circle.tga new file mode 100644 index 000000000..d7097e3a3 Binary files /dev/null and b/indra/newview/skins/apollo/textures/circle.tga differ diff --git a/indra/newview/skins/apollo/textures/close_in_blue.tga b/indra/newview/skins/apollo/textures/close_in_blue.tga new file mode 100644 index 000000000..c58e052b8 Binary files /dev/null and b/indra/newview/skins/apollo/textures/close_in_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/close_inactive_blue.tga b/indra/newview/skins/apollo/textures/close_inactive_blue.tga new file mode 100644 index 000000000..2f912df59 Binary files /dev/null and b/indra/newview/skins/apollo/textures/close_inactive_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/closebox.tga b/indra/newview/skins/apollo/textures/closebox.tga new file mode 100644 index 000000000..5e1195526 Binary files /dev/null and b/indra/newview/skins/apollo/textures/closebox.tga differ diff --git a/indra/newview/skins/apollo/textures/color_swatch_alpha.tga b/indra/newview/skins/apollo/textures/color_swatch_alpha.tga new file mode 100644 index 000000000..814a004e6 Binary files /dev/null and b/indra/newview/skins/apollo/textures/color_swatch_alpha.tga differ diff --git a/indra/newview/skins/apollo/textures/combobox_arrow.tga b/indra/newview/skins/apollo/textures/combobox_arrow.tga new file mode 100644 index 000000000..cd592c3df Binary files /dev/null and b/indra/newview/skins/apollo/textures/combobox_arrow.tga differ diff --git a/indra/newview/skins/apollo/textures/crosshairs.tga b/indra/newview/skins/apollo/textures/crosshairs.tga new file mode 100644 index 000000000..ac4d63dc5 Binary files /dev/null and b/indra/newview/skins/apollo/textures/crosshairs.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/darkgray.tga b/indra/newview/skins/apollo/textures/darkgray.tga similarity index 100% rename from indra/newview/skins/white_emerald/Textures/darkgray.tga rename to indra/newview/skins/apollo/textures/darkgray.tga diff --git a/indra/newview/skins/apollo/textures/direction_arrow.tga b/indra/newview/skins/apollo/textures/direction_arrow.tga new file mode 100644 index 000000000..59149e1d5 Binary files /dev/null and b/indra/newview/skins/apollo/textures/direction_arrow.tga differ diff --git a/indra/newview/skins/apollo/textures/down_arrow.png b/indra/newview/skins/apollo/textures/down_arrow.png new file mode 100644 index 000000000..155f80c97 Binary files /dev/null and b/indra/newview/skins/apollo/textures/down_arrow.png differ diff --git a/indra/newview/skins/apollo/textures/e3369e02-93e1-43dc-b9c0-4533db0963d0.tga b/indra/newview/skins/apollo/textures/e3369e02-93e1-43dc-b9c0-4533db0963d0.tga new file mode 100644 index 000000000..0d127f946 Binary files /dev/null and b/indra/newview/skins/apollo/textures/e3369e02-93e1-43dc-b9c0-4533db0963d0.tga differ diff --git a/indra/newview/skins/apollo/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga b/indra/newview/skins/apollo/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga new file mode 100644 index 000000000..6fdba25d4 Binary files /dev/null and b/indra/newview/skins/apollo/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga differ diff --git a/indra/newview/skins/apollo/textures/eye_button_active.tga b/indra/newview/skins/apollo/textures/eye_button_active.tga new file mode 100644 index 000000000..8cda9a6a0 Binary files /dev/null and b/indra/newview/skins/apollo/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/apollo/textures/eye_button_inactive.tga b/indra/newview/skins/apollo/textures/eye_button_inactive.tga new file mode 100644 index 000000000..92a289f11 Binary files /dev/null and b/indra/newview/skins/apollo/textures/eye_button_inactive.tga differ diff --git a/indra/newview/skins/apollo/textures/f9bbb2fe-584b-4c01-86fc-599c69534c1b.tga b/indra/newview/skins/apollo/textures/f9bbb2fe-584b-4c01-86fc-599c69534c1b.tga new file mode 100644 index 000000000..3706c96e0 Binary files /dev/null and b/indra/newview/skins/apollo/textures/f9bbb2fe-584b-4c01-86fc-599c69534c1b.tga differ diff --git a/indra/newview/skins/apollo/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/apollo/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..534ecba91 Binary files /dev/null and b/indra/newview/skins/apollo/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/apollo/textures/ff_edit_mine.tga b/indra/newview/skins/apollo/textures/ff_edit_mine.tga new file mode 100644 index 000000000..8f0c35b98 Binary files /dev/null and b/indra/newview/skins/apollo/textures/ff_edit_mine.tga differ diff --git a/indra/newview/skins/apollo/textures/ff_edit_mine_button.tga b/indra/newview/skins/apollo/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..d2feac64b Binary files /dev/null and b/indra/newview/skins/apollo/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/apollo/textures/ff_edit_theirs.tga b/indra/newview/skins/apollo/textures/ff_edit_theirs.tga new file mode 100644 index 000000000..005ada2de Binary files /dev/null and b/indra/newview/skins/apollo/textures/ff_edit_theirs.tga differ diff --git a/indra/newview/skins/apollo/textures/ff_edit_theirs_button.tga b/indra/newview/skins/apollo/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..ae0f5c977 Binary files /dev/null and b/indra/newview/skins/apollo/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/apollo/textures/ff_online_status_button.tga b/indra/newview/skins/apollo/textures/ff_online_status_button.tga new file mode 100644 index 000000000..30b70ccd4 Binary files /dev/null and b/indra/newview/skins/apollo/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/apollo/textures/ff_visible_map.tga b/indra/newview/skins/apollo/textures/ff_visible_map.tga new file mode 100644 index 000000000..a4dad78da Binary files /dev/null and b/indra/newview/skins/apollo/textures/ff_visible_map.tga differ diff --git a/indra/newview/skins/apollo/textures/ff_visible_map_button.tga b/indra/newview/skins/apollo/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..ca1bb7697 Binary files /dev/null and b/indra/newview/skins/apollo/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/apollo/textures/ff_visible_online.tga b/indra/newview/skins/apollo/textures/ff_visible_online.tga new file mode 100644 index 000000000..74e3a4e31 Binary files /dev/null and b/indra/newview/skins/apollo/textures/ff_visible_online.tga differ diff --git a/indra/newview/skins/apollo/textures/ff_visible_online_button.tga b/indra/newview/skins/apollo/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..f0a4414e0 Binary files /dev/null and b/indra/newview/skins/apollo/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/apollo/textures/flag_blue.tga b/indra/newview/skins/apollo/textures/flag_blue.tga new file mode 100644 index 000000000..e61e7a912 Binary files /dev/null and b/indra/newview/skins/apollo/textures/flag_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/flag_green.tga b/indra/newview/skins/apollo/textures/flag_green.tga new file mode 100644 index 000000000..5f0f05c24 Binary files /dev/null and b/indra/newview/skins/apollo/textures/flag_green.tga differ diff --git a/indra/newview/skins/apollo/textures/flag_orange.tga b/indra/newview/skins/apollo/textures/flag_orange.tga new file mode 100644 index 000000000..6e73c31b5 Binary files /dev/null and b/indra/newview/skins/apollo/textures/flag_orange.tga differ diff --git a/indra/newview/skins/apollo/textures/flag_pink.tga b/indra/newview/skins/apollo/textures/flag_pink.tga new file mode 100644 index 000000000..ccf52b9a4 Binary files /dev/null and b/indra/newview/skins/apollo/textures/flag_pink.tga differ diff --git a/indra/newview/skins/apollo/textures/flag_purple.tga b/indra/newview/skins/apollo/textures/flag_purple.tga new file mode 100644 index 000000000..3ef8f0921 Binary files /dev/null and b/indra/newview/skins/apollo/textures/flag_purple.tga differ diff --git a/indra/newview/skins/apollo/textures/flag_red.tga b/indra/newview/skins/apollo/textures/flag_red.tga new file mode 100644 index 000000000..87afb595a Binary files /dev/null and b/indra/newview/skins/apollo/textures/flag_red.tga differ diff --git a/indra/newview/skins/apollo/textures/flag_yellow.tga b/indra/newview/skins/apollo/textures/flag_yellow.tga new file mode 100644 index 000000000..4c4a64768 Binary files /dev/null and b/indra/newview/skins/apollo/textures/flag_yellow.tga differ diff --git a/indra/newview/skins/apollo/textures/flyout_btn_left.tga b/indra/newview/skins/apollo/textures/flyout_btn_left.tga new file mode 100644 index 000000000..3e4e2625c Binary files /dev/null and b/indra/newview/skins/apollo/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/apollo/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/apollo/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..3e4e2625c Binary files /dev/null and b/indra/newview/skins/apollo/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/apollo/textures/flyout_btn_left_selected.tga b/indra/newview/skins/apollo/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..b8e809c57 Binary files /dev/null and b/indra/newview/skins/apollo/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/apollo/textures/flyout_btn_right.tga b/indra/newview/skins/apollo/textures/flyout_btn_right.tga new file mode 100644 index 000000000..c59ad0043 Binary files /dev/null and b/indra/newview/skins/apollo/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/apollo/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/apollo/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..c59ad0043 Binary files /dev/null and b/indra/newview/skins/apollo/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/apollo/textures/flyout_btn_right_selected.tga b/indra/newview/skins/apollo/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..70afe2d34 Binary files /dev/null and b/indra/newview/skins/apollo/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/apollo/textures/flyout_left.tga b/indra/newview/skins/apollo/textures/flyout_left.tga new file mode 100644 index 000000000..a759112e1 Binary files /dev/null and b/indra/newview/skins/apollo/textures/flyout_left.tga differ diff --git a/indra/newview/skins/apollo/textures/flyout_left_disabled.tga b/indra/newview/skins/apollo/textures/flyout_left_disabled.tga new file mode 100644 index 000000000..a759112e1 Binary files /dev/null and b/indra/newview/skins/apollo/textures/flyout_left_disabled.tga differ diff --git a/indra/newview/skins/apollo/textures/flyout_left_selected.tga b/indra/newview/skins/apollo/textures/flyout_left_selected.tga new file mode 100644 index 000000000..783dc6270 Binary files /dev/null and b/indra/newview/skins/apollo/textures/flyout_left_selected.tga differ diff --git a/indra/newview/skins/apollo/textures/folder_arrow.tga b/indra/newview/skins/apollo/textures/folder_arrow.tga new file mode 100644 index 000000000..734a00a84 Binary files /dev/null and b/indra/newview/skins/apollo/textures/folder_arrow.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_active-speakers-dot-lvl0.tga b/indra/newview/skins/apollo/textures/icn_active-speakers-dot-lvl0.tga new file mode 100644 index 000000000..35846cef3 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_active-speakers-dot-lvl0.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_active-speakers-dot-lvl1.tga b/indra/newview/skins/apollo/textures/icn_active-speakers-dot-lvl1.tga new file mode 100644 index 000000000..1f9f564fa Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_active-speakers-dot-lvl1.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_active-speakers-dot-lvl2.tga b/indra/newview/skins/apollo/textures/icn_active-speakers-dot-lvl2.tga new file mode 100644 index 000000000..b2e5609f1 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_active-speakers-dot-lvl2.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_active-speakers-typing1.tga b/indra/newview/skins/apollo/textures/icn_active-speakers-typing1.tga new file mode 100644 index 000000000..3706c96e0 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_active-speakers-typing1.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_active-speakers-typing2.tga b/indra/newview/skins/apollo/textures/icn_active-speakers-typing2.tga new file mode 100644 index 000000000..0d127f946 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_active-speakers-typing2.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_active-speakers-typing3.tga b/indra/newview/skins/apollo/textures/icn_active-speakers-typing3.tga new file mode 100644 index 000000000..031b3ad34 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_active-speakers-typing3.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_chatbar.tga b/indra/newview/skins/apollo/textures/icn_chatbar.tga new file mode 100644 index 000000000..b89dfc432 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_chatbar.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_clear_lineeditor.tga b/indra/newview/skins/apollo/textures/icn_clear_lineeditor.tga new file mode 100644 index 000000000..8cd8310c6 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_clear_lineeditor.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_label_media.tga b/indra/newview/skins/apollo/textures/icn_label_media.tga new file mode 100644 index 000000000..b16c528e9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_label_media.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_label_music.tga b/indra/newview/skins/apollo/textures/icn_label_music.tga new file mode 100644 index 000000000..515f170b6 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_label_web.tga b/indra/newview/skins/apollo/textures/icn_label_web.tga new file mode 100644 index 000000000..6cacfad7a Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_media-pause.tga b/indra/newview/skins/apollo/textures/icn_media-pause.tga new file mode 100644 index 000000000..0713af0b4 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_media-pause_active.tga b/indra/newview/skins/apollo/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..21384316a Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_media-pause_disabled.tga b/indra/newview/skins/apollo/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..4d604c63c Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_media-pause_enabled.tga b/indra/newview/skins/apollo/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..577f9195d Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_media-play.tga b/indra/newview/skins/apollo/textures/icn_media-play.tga new file mode 100644 index 000000000..bdd9f1611 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_media-play.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_media-play_active.tga b/indra/newview/skins/apollo/textures/icn_media-play_active.tga new file mode 100644 index 000000000..b166a4178 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_media-play_active.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_media-play_disabled.tga b/indra/newview/skins/apollo/textures/icn_media-play_disabled.tga new file mode 100644 index 000000000..444062f37 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_media-play_disabled.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_media-play_enabled.tga b/indra/newview/skins/apollo/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..9ed55f829 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_media-stop_active.tga b/indra/newview/skins/apollo/textures/icn_media-stop_active.tga new file mode 100644 index 000000000..03efac206 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_media-stop_active.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_media-stop_disabled.tga b/indra/newview/skins/apollo/textures/icn_media-stop_disabled.tga new file mode 100644 index 000000000..cf1532a42 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_media-stop_disabled.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_media-stop_enabled.tga b/indra/newview/skins/apollo/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..011b98c49 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_media.tga b/indra/newview/skins/apollo/textures/icn_media.tga new file mode 100644 index 000000000..43dd342c9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_media.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_media_movie.tga b/indra/newview/skins/apollo/textures/icn_media_movie.tga new file mode 100644 index 000000000..b16c528e9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_media_web.tga b/indra/newview/skins/apollo/textures/icn_media_web.tga new file mode 100644 index 000000000..a92ae962b Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_music-pause.tga b/indra/newview/skins/apollo/textures/icn_music-pause.tga new file mode 100644 index 000000000..548ccf4e4 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_music-play.tga b/indra/newview/skins/apollo/textures/icn_music-play.tga new file mode 100644 index 000000000..1a67d3440 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_music.tga b/indra/newview/skins/apollo/textures/icn_music.tga new file mode 100644 index 000000000..9470601db Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_music.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_pause.tga b/indra/newview/skins/apollo/textures/icn_pause.tga new file mode 100644 index 000000000..3bc286f5f Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_pause.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_play.tga b/indra/newview/skins/apollo/textures/icn_play.tga new file mode 100644 index 000000000..a23ef52e3 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_play.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_rounded-text-field.tga b/indra/newview/skins/apollo/textures/icn_rounded-text-field.tga new file mode 100644 index 000000000..1f1e72572 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_rounded-text-field.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_scrollbar.tga b/indra/newview/skins/apollo/textures/icn_scrollbar.tga new file mode 100644 index 000000000..a19a8a5d1 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_scrollbar.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_scrollbar_bg.tga b/indra/newview/skins/apollo/textures/icn_scrollbar_bg.tga new file mode 100644 index 000000000..1e4bc7a8a Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_scrollbar_bg.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_scrollbar_thumb.tga b/indra/newview/skins/apollo/textures/icn_scrollbar_thumb.tga new file mode 100644 index 000000000..d63c31472 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_scrollbar_thumb.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_slide-groove_dark.tga b/indra/newview/skins/apollo/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..ce0bd07e3 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_slide-highlight.tga b/indra/newview/skins/apollo/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..5b971e679 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/apollo/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..e4c1b0980 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/apollo/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..a7d29a14b Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_speaker_dark.tga b/indra/newview/skins/apollo/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..f2f24efb0 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_stop.tga b/indra/newview/skins/apollo/textures/icn_stop.tga new file mode 100644 index 000000000..7a53bccc2 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_stop.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_textfield_enabled.tga b/indra/newview/skins/apollo/textures/icn_textfield_enabled.tga new file mode 100644 index 000000000..fc681a195 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_textfield_enabled.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_toolbar_build.tga b/indra/newview/skins/apollo/textures/icn_toolbar_build.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_toolbar_build.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_toolbar_fly.tga b/indra/newview/skins/apollo/textures/icn_toolbar_fly.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_toolbar_fly.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_toolbar_inventory.tga b/indra/newview/skins/apollo/textures/icn_toolbar_inventory.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_toolbar_inventory.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_toolbar_map.tga b/indra/newview/skins/apollo/textures/icn_toolbar_map.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_toolbar_map.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_toolbar_minimap.tga b/indra/newview/skins/apollo/textures/icn_toolbar_minimap.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_toolbar_minimap.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_toolbar_search.tga b/indra/newview/skins/apollo/textures/icn_toolbar_search.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_toolbar_search.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_toolbar_snapshot.tga b/indra/newview/skins/apollo/textures/icn_toolbar_snapshot.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_toolbar_snapshot.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_voice-call-end.tga b/indra/newview/skins/apollo/textures/icn_voice-call-end.tga new file mode 100644 index 000000000..2da4e856b Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_voice-call-end.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_voice-call-start.tga b/indra/newview/skins/apollo/textures/icn_voice-call-start.tga new file mode 100644 index 000000000..07701cb5a Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_voice-call-start.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_voice-groupfocus.tga b/indra/newview/skins/apollo/textures/icn_voice-groupfocus.tga new file mode 100644 index 000000000..9f48d4609 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_voice-groupfocus.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_voice-localchat.tga b/indra/newview/skins/apollo/textures/icn_voice-localchat.tga new file mode 100644 index 000000000..7cf267eaf Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_voice-localchat.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_voice-pvtfocus.tga b/indra/newview/skins/apollo/textures/icn_voice-pvtfocus.tga new file mode 100644 index 000000000..abadb09aa Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_voice-pvtfocus.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_voice_ptt-off.tga b/indra/newview/skins/apollo/textures/icn_voice_ptt-off.tga new file mode 100644 index 000000000..15ecbdff9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_voice_ptt-off.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_voice_ptt-on-lvl1.tga b/indra/newview/skins/apollo/textures/icn_voice_ptt-on-lvl1.tga new file mode 100644 index 000000000..ae72af131 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_voice_ptt-on-lvl1.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_voice_ptt-on-lvl2.tga b/indra/newview/skins/apollo/textures/icn_voice_ptt-on-lvl2.tga new file mode 100644 index 000000000..4dfc2dd29 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_voice_ptt-on-lvl2.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_voice_ptt-on-lvl3.tga b/indra/newview/skins/apollo/textures/icn_voice_ptt-on-lvl3.tga new file mode 100644 index 000000000..018b0bef4 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_voice_ptt-on-lvl3.tga differ diff --git a/indra/newview/skins/apollo/textures/icn_voice_ptt-on.tga b/indra/newview/skins/apollo/textures/icn_voice_ptt-on.tga new file mode 100644 index 000000000..9eb643110 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icn_voice_ptt-on.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_auction.tga b/indra/newview/skins/apollo/textures/icon_auction.tga new file mode 100644 index 000000000..d121833b4 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_auction.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_avatar_expand.png b/indra/newview/skins/apollo/textures/icon_avatar_expand.png new file mode 100644 index 000000000..47698e9eb Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_avatar_expand.png differ diff --git a/indra/newview/skins/apollo/textures/icon_avatar_offline.tga b/indra/newview/skins/apollo/textures/icon_avatar_offline.tga new file mode 100644 index 000000000..620e0f7c1 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_avatar_offline.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_avatar_online.tga b/indra/newview/skins/apollo/textures/icon_avatar_online.tga new file mode 100644 index 000000000..45221213e Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_avatar_online.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_day_cycle.tga b/indra/newview/skins/apollo/textures/icon_day_cycle.tga new file mode 100644 index 000000000..2d5dee1e9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_day_cycle.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_diurnal.tga b/indra/newview/skins/apollo/textures/icon_diurnal.tga new file mode 100644 index 000000000..fc720c826 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_diurnal.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_event.tga b/indra/newview/skins/apollo/textures/icon_event.tga new file mode 100644 index 000000000..23f246b91 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_event.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_event_adult.tga b/indra/newview/skins/apollo/textures/icon_event_adult.tga new file mode 100644 index 000000000..7202e6734 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_event_adult.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_event_mature.tga b/indra/newview/skins/apollo/textures/icon_event_mature.tga new file mode 100644 index 000000000..61c879bc9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_event_mature.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_for_sale.tga b/indra/newview/skins/apollo/textures/icon_for_sale.tga new file mode 100644 index 000000000..09405d383 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_for_sale.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_for_sale_adult.tga b/indra/newview/skins/apollo/textures/icon_for_sale_adult.tga new file mode 100644 index 000000000..147f724e7 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_for_sale_adult.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_group.tga b/indra/newview/skins/apollo/textures/icon_group.tga new file mode 100644 index 000000000..1e5c31aa3 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_group.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_groupnotice.tga b/indra/newview/skins/apollo/textures/icon_groupnotice.tga new file mode 100644 index 000000000..6b312a9ec Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_groupnotice.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_groupnoticeinventory.tga b/indra/newview/skins/apollo/textures/icon_groupnoticeinventory.tga new file mode 100644 index 000000000..06f59e583 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_groupnoticeinventory.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_lock.tga b/indra/newview/skins/apollo/textures/icon_lock.tga new file mode 100644 index 000000000..5de6cc10e Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_lock.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_place.tga b/indra/newview/skins/apollo/textures/icon_place.tga new file mode 100644 index 000000000..7f842ba65 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_place.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_popular.tga b/indra/newview/skins/apollo/textures/icon_popular.tga new file mode 100644 index 000000000..f1165b8aa Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_popular.tga differ diff --git a/indra/newview/skins/apollo/textures/icon_top_pick.tga b/indra/newview/skins/apollo/textures/icon_top_pick.tga new file mode 100644 index 000000000..7fe119a81 Binary files /dev/null and b/indra/newview/skins/apollo/textures/icon_top_pick.tga differ diff --git a/indra/newview/skins/apollo/textures/info_error.tga b/indra/newview/skins/apollo/textures/info_error.tga new file mode 100644 index 000000000..d5d71ad95 Binary files /dev/null and b/indra/newview/skins/apollo/textures/info_error.tga differ diff --git a/indra/newview/skins/apollo/textures/info_fetching.tga b/indra/newview/skins/apollo/textures/info_fetching.tga new file mode 100644 index 000000000..d9faa4014 Binary files /dev/null and b/indra/newview/skins/apollo/textures/info_fetching.tga differ diff --git a/indra/newview/skins/apollo/textures/info_unknown.tga b/indra/newview/skins/apollo/textures/info_unknown.tga new file mode 100644 index 000000000..b04e4b064 Binary files /dev/null and b/indra/newview/skins/apollo/textures/info_unknown.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_animation.tga b/indra/newview/skins/apollo/textures/inv_folder_animation.tga new file mode 100644 index 000000000..ffe56a15f Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_animation.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_bodypart.tga b/indra/newview/skins/apollo/textures/inv_folder_bodypart.tga new file mode 100644 index 000000000..10076c380 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_bodypart.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_callingcard.tga b/indra/newview/skins/apollo/textures/inv_folder_callingcard.tga new file mode 100644 index 000000000..b5d08a816 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_callingcard.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_clothing.tga b/indra/newview/skins/apollo/textures/inv_folder_clothing.tga new file mode 100644 index 000000000..5467b3bf8 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_clothing.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_gesture.tga b/indra/newview/skins/apollo/textures/inv_folder_gesture.tga new file mode 100644 index 000000000..400a8e5c7 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_gesture.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_landmark.tga b/indra/newview/skins/apollo/textures/inv_folder_landmark.tga new file mode 100644 index 000000000..901526259 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_landmark.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_lostandfound.tga b/indra/newview/skins/apollo/textures/inv_folder_lostandfound.tga new file mode 100644 index 000000000..7451c35b8 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_lostandfound.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_notecard.tga b/indra/newview/skins/apollo/textures/inv_folder_notecard.tga new file mode 100644 index 000000000..d8ebca11a Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_notecard.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_object.tga b/indra/newview/skins/apollo/textures/inv_folder_object.tga new file mode 100644 index 000000000..c7951ccce Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_object.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_plain_closed.tga b/indra/newview/skins/apollo/textures/inv_folder_plain_closed.tga new file mode 100644 index 000000000..b46f97d11 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_plain_closed.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_plain_open.tga b/indra/newview/skins/apollo/textures/inv_folder_plain_open.tga new file mode 100644 index 000000000..c4b0f3f61 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_plain_open.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_script.tga b/indra/newview/skins/apollo/textures/inv_folder_script.tga new file mode 100644 index 000000000..c280d4282 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_script.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_snapshot.tga b/indra/newview/skins/apollo/textures/inv_folder_snapshot.tga new file mode 100644 index 000000000..8b2dfa5fa Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_snapshot.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_sound.tga b/indra/newview/skins/apollo/textures/inv_folder_sound.tga new file mode 100644 index 000000000..e0ebed0d3 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_sound.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_texture.tga b/indra/newview/skins/apollo/textures/inv_folder_texture.tga new file mode 100644 index 000000000..2d69c84f6 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_texture.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_folder_trash.tga b/indra/newview/skins/apollo/textures/inv_folder_trash.tga new file mode 100644 index 000000000..e6ffad1e0 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_folder_trash.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_animation.tga b/indra/newview/skins/apollo/textures/inv_item_animation.tga new file mode 100644 index 000000000..715189fda Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_animation.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_attach.tga b/indra/newview/skins/apollo/textures/inv_item_attach.tga new file mode 100644 index 000000000..2da7ef8e7 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_attach.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_callingcard_offline.tga b/indra/newview/skins/apollo/textures/inv_item_callingcard_offline.tga new file mode 100644 index 000000000..70e7a2645 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_callingcard_offline.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_callingcard_online.tga b/indra/newview/skins/apollo/textures/inv_item_callingcard_online.tga new file mode 100644 index 000000000..8e394063b Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_callingcard_online.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_clothing.tga b/indra/newview/skins/apollo/textures/inv_item_clothing.tga new file mode 100644 index 000000000..b41096371 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_clothing.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_eyes.tga b/indra/newview/skins/apollo/textures/inv_item_eyes.tga new file mode 100644 index 000000000..0cfebb69d Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_eyes.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_gesture.tga b/indra/newview/skins/apollo/textures/inv_item_gesture.tga new file mode 100644 index 000000000..95c1da44e Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_gesture.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_gloves.tga b/indra/newview/skins/apollo/textures/inv_item_gloves.tga new file mode 100644 index 000000000..6f55738ee Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_gloves.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_hair.tga b/indra/newview/skins/apollo/textures/inv_item_hair.tga new file mode 100644 index 000000000..13ffe09c3 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_hair.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_jacket.tga b/indra/newview/skins/apollo/textures/inv_item_jacket.tga new file mode 100644 index 000000000..a1b518c63 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_jacket.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_landmark.tga b/indra/newview/skins/apollo/textures/inv_item_landmark.tga new file mode 100644 index 000000000..addf5eb0e Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_landmark.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_landmark_visited.tga b/indra/newview/skins/apollo/textures/inv_item_landmark_visited.tga new file mode 100644 index 000000000..b16f9a1b8 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_landmark_visited.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_notecard.tga b/indra/newview/skins/apollo/textures/inv_item_notecard.tga new file mode 100644 index 000000000..c7b3bf557 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_notecard.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_object.tga b/indra/newview/skins/apollo/textures/inv_item_object.tga new file mode 100644 index 000000000..9c407b1d5 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_object.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_object_multi.tga b/indra/newview/skins/apollo/textures/inv_item_object_multi.tga new file mode 100644 index 000000000..d2ed12df3 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_object_multi.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_pants.tga b/indra/newview/skins/apollo/textures/inv_item_pants.tga new file mode 100644 index 000000000..517c94712 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_pants.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_script.tga b/indra/newview/skins/apollo/textures/inv_item_script.tga new file mode 100644 index 000000000..8e602f595 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_script.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_script_dangerous.tga b/indra/newview/skins/apollo/textures/inv_item_script_dangerous.tga new file mode 100644 index 000000000..b5a1bc947 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_script_dangerous.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_shape.tga b/indra/newview/skins/apollo/textures/inv_item_shape.tga new file mode 100644 index 000000000..d28bb2583 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_shape.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_shirt.tga b/indra/newview/skins/apollo/textures/inv_item_shirt.tga new file mode 100644 index 000000000..b41096371 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_shirt.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_shoes.tga b/indra/newview/skins/apollo/textures/inv_item_shoes.tga new file mode 100644 index 000000000..f124ed458 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_shoes.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_skin.tga b/indra/newview/skins/apollo/textures/inv_item_skin.tga new file mode 100644 index 000000000..169fbc1d5 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_skin.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_skirt.tga b/indra/newview/skins/apollo/textures/inv_item_skirt.tga new file mode 100644 index 000000000..cd0292210 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_skirt.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_snapshot.tga b/indra/newview/skins/apollo/textures/inv_item_snapshot.tga new file mode 100644 index 000000000..fcf7316bd Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_snapshot.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_socks.tga b/indra/newview/skins/apollo/textures/inv_item_socks.tga new file mode 100644 index 000000000..0ccb575ce Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_socks.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_sound.tga b/indra/newview/skins/apollo/textures/inv_item_sound.tga new file mode 100644 index 000000000..1bb8adfa1 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_sound.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_texture.tga b/indra/newview/skins/apollo/textures/inv_item_texture.tga new file mode 100644 index 000000000..7016ae080 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_texture.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_underpants.tga b/indra/newview/skins/apollo/textures/inv_item_underpants.tga new file mode 100644 index 000000000..b9f29c688 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_underpants.tga differ diff --git a/indra/newview/skins/apollo/textures/inv_item_undershirt.tga b/indra/newview/skins/apollo/textures/inv_item_undershirt.tga new file mode 100644 index 000000000..a62b1d853 Binary files /dev/null and b/indra/newview/skins/apollo/textures/inv_item_undershirt.tga differ diff --git a/indra/newview/skins/apollo/textures/lag_status_critical.tga b/indra/newview/skins/apollo/textures/lag_status_critical.tga new file mode 100644 index 000000000..bbc71d9e7 Binary files /dev/null and b/indra/newview/skins/apollo/textures/lag_status_critical.tga differ diff --git a/indra/newview/skins/apollo/textures/lag_status_good.tga b/indra/newview/skins/apollo/textures/lag_status_good.tga new file mode 100644 index 000000000..680ba90f1 Binary files /dev/null and b/indra/newview/skins/apollo/textures/lag_status_good.tga differ diff --git a/indra/newview/skins/apollo/textures/lag_status_warning.tga b/indra/newview/skins/apollo/textures/lag_status_warning.tga new file mode 100644 index 000000000..13ce3cc39 Binary files /dev/null and b/indra/newview/skins/apollo/textures/lag_status_warning.tga differ diff --git a/indra/newview/skins/apollo/textures/legend.tga b/indra/newview/skins/apollo/textures/legend.tga new file mode 100644 index 000000000..0dbb8fda4 Binary files /dev/null and b/indra/newview/skins/apollo/textures/legend.tga differ diff --git a/indra/newview/skins/apollo/textures/lightgray.tga b/indra/newview/skins/apollo/textures/lightgray.tga new file mode 100644 index 000000000..2063d685a Binary files /dev/null and b/indra/newview/skins/apollo/textures/lightgray.tga differ diff --git a/indra/newview/skins/apollo/textures/map_avatar_16.tga b/indra/newview/skins/apollo/textures/map_avatar_16.tga new file mode 100644 index 000000000..ce129e359 Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_avatar_16.tga differ diff --git a/indra/newview/skins/apollo/textures/map_avatar_32.tga b/indra/newview/skins/apollo/textures/map_avatar_32.tga new file mode 100644 index 000000000..aebeab409 Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_avatar_32.tga differ diff --git a/indra/newview/skins/apollo/textures/map_avatar_8.tga b/indra/newview/skins/apollo/textures/map_avatar_8.tga new file mode 100644 index 000000000..28552f223 Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_avatar_8.tga differ diff --git a/indra/newview/skins/apollo/textures/map_avatar_above_32.tga b/indra/newview/skins/apollo/textures/map_avatar_above_32.tga new file mode 100644 index 000000000..65bd0561a Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_avatar_above_32.tga differ diff --git a/indra/newview/skins/apollo/textures/map_avatar_above_8.tga b/indra/newview/skins/apollo/textures/map_avatar_above_8.tga new file mode 100644 index 000000000..193428e53 Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_avatar_above_8.tga differ diff --git a/indra/newview/skins/apollo/textures/map_avatar_below_32.tga b/indra/newview/skins/apollo/textures/map_avatar_below_32.tga new file mode 100644 index 000000000..496c44b36 Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_avatar_below_32.tga differ diff --git a/indra/newview/skins/apollo/textures/map_avatar_below_8.tga b/indra/newview/skins/apollo/textures/map_avatar_below_8.tga new file mode 100644 index 000000000..9e14bfab9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_avatar_below_8.tga differ diff --git a/indra/newview/skins/apollo/textures/map_avatar_you_32.tga b/indra/newview/skins/apollo/textures/map_avatar_you_32.tga new file mode 100644 index 000000000..782207efd Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_avatar_you_32.tga differ diff --git a/indra/newview/skins/apollo/textures/map_avatar_you_8.tga b/indra/newview/skins/apollo/textures/map_avatar_you_8.tga new file mode 100644 index 000000000..61f319fd9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_avatar_you_8.tga differ diff --git a/indra/newview/skins/apollo/textures/map_event.tga b/indra/newview/skins/apollo/textures/map_event.tga new file mode 100644 index 000000000..103c5e535 Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_event.tga differ diff --git a/indra/newview/skins/apollo/textures/map_event_adult.tga b/indra/newview/skins/apollo/textures/map_event_adult.tga new file mode 100644 index 000000000..7202e6734 Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_event_adult.tga differ diff --git a/indra/newview/skins/apollo/textures/map_event_mature.tga b/indra/newview/skins/apollo/textures/map_event_mature.tga new file mode 100644 index 000000000..23f246b91 Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_event_mature.tga differ diff --git a/indra/newview/skins/apollo/textures/map_home.tga b/indra/newview/skins/apollo/textures/map_home.tga new file mode 100644 index 000000000..7478de371 Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_home.tga differ diff --git a/indra/newview/skins/apollo/textures/map_infohub.tga b/indra/newview/skins/apollo/textures/map_infohub.tga new file mode 100644 index 000000000..173b93e39 Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_infohub.tga differ diff --git a/indra/newview/skins/apollo/textures/map_telehub.tga b/indra/newview/skins/apollo/textures/map_telehub.tga new file mode 100644 index 000000000..d89bcfa40 Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_telehub.tga differ diff --git a/indra/newview/skins/apollo/textures/map_track_16.tga b/indra/newview/skins/apollo/textures/map_track_16.tga new file mode 100644 index 000000000..451ce24cf Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_track_16.tga differ diff --git a/indra/newview/skins/apollo/textures/map_track_8.tga b/indra/newview/skins/apollo/textures/map_track_8.tga new file mode 100644 index 000000000..53425ff45 Binary files /dev/null and b/indra/newview/skins/apollo/textures/map_track_8.tga differ diff --git a/indra/newview/skins/apollo/textures/media_icon.tga b/indra/newview/skins/apollo/textures/media_icon.tga new file mode 100644 index 000000000..289520cde Binary files /dev/null and b/indra/newview/skins/apollo/textures/media_icon.tga differ diff --git a/indra/newview/skins/apollo/textures/minimize.tga b/indra/newview/skins/apollo/textures/minimize.tga new file mode 100644 index 000000000..a21fd9148 Binary files /dev/null and b/indra/newview/skins/apollo/textures/minimize.tga differ diff --git a/indra/newview/skins/apollo/textures/minimize_inactive.tga b/indra/newview/skins/apollo/textures/minimize_inactive.tga new file mode 100644 index 000000000..d7e1b4057 Binary files /dev/null and b/indra/newview/skins/apollo/textures/minimize_inactive.tga differ diff --git a/indra/newview/skins/apollo/textures/minimize_pressed.tga b/indra/newview/skins/apollo/textures/minimize_pressed.tga new file mode 100644 index 000000000..573452ce9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/minimize_pressed.tga differ diff --git a/indra/newview/skins/apollo/textures/missing_asset.tga b/indra/newview/skins/apollo/textures/missing_asset.tga new file mode 100644 index 000000000..9a43f4db5 Binary files /dev/null and b/indra/newview/skins/apollo/textures/missing_asset.tga differ diff --git a/indra/newview/skins/apollo/textures/move_backward_in.tga b/indra/newview/skins/apollo/textures/move_backward_in.tga new file mode 100644 index 000000000..74bfba196 Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/apollo/textures/move_backward_out.tga b/indra/newview/skins/apollo/textures/move_backward_out.tga new file mode 100644 index 000000000..2d1b6a057 Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/apollo/textures/move_down_in.tga b/indra/newview/skins/apollo/textures/move_down_in.tga new file mode 100644 index 000000000..90b0c76d5 Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_down_in.tga differ diff --git a/indra/newview/skins/apollo/textures/move_down_out.tga b/indra/newview/skins/apollo/textures/move_down_out.tga new file mode 100644 index 000000000..2c97b9891 Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_down_out.tga differ diff --git a/indra/newview/skins/apollo/textures/move_forward_in.tga b/indra/newview/skins/apollo/textures/move_forward_in.tga new file mode 100644 index 000000000..5f1735552 Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/apollo/textures/move_forward_out.tga b/indra/newview/skins/apollo/textures/move_forward_out.tga new file mode 100644 index 000000000..b07c1008e Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/apollo/textures/move_left_in.tga b/indra/newview/skins/apollo/textures/move_left_in.tga new file mode 100644 index 000000000..8ba5abdd2 Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_left_in.tga differ diff --git a/indra/newview/skins/apollo/textures/move_left_out.tga b/indra/newview/skins/apollo/textures/move_left_out.tga new file mode 100644 index 000000000..d659ba94b Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_left_out.tga differ diff --git a/indra/newview/skins/apollo/textures/move_right_in.tga b/indra/newview/skins/apollo/textures/move_right_in.tga new file mode 100644 index 000000000..6dd30876f Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_right_in.tga differ diff --git a/indra/newview/skins/apollo/textures/move_right_out.tga b/indra/newview/skins/apollo/textures/move_right_out.tga new file mode 100644 index 000000000..93df92f36 Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_right_out.tga differ diff --git a/indra/newview/skins/apollo/textures/move_turn_left_in.tga b/indra/newview/skins/apollo/textures/move_turn_left_in.tga new file mode 100644 index 000000000..db410d697 Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/apollo/textures/move_turn_left_out.tga b/indra/newview/skins/apollo/textures/move_turn_left_out.tga new file mode 100644 index 000000000..19cad118a Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/apollo/textures/move_turn_right_in.tga b/indra/newview/skins/apollo/textures/move_turn_right_in.tga new file mode 100644 index 000000000..e22898c2a Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/apollo/textures/move_turn_right_out.tga b/indra/newview/skins/apollo/textures/move_turn_right_out.tga new file mode 100644 index 000000000..41ecb3fdd Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/apollo/textures/move_up_in.tga b/indra/newview/skins/apollo/textures/move_up_in.tga new file mode 100644 index 000000000..54c641f5b Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_up_in.tga differ diff --git a/indra/newview/skins/apollo/textures/move_up_out.tga b/indra/newview/skins/apollo/textures/move_up_out.tga new file mode 100644 index 000000000..9d76219bd Binary files /dev/null and b/indra/newview/skins/apollo/textures/move_up_out.tga differ diff --git a/indra/newview/skins/apollo/textures/music_icon.tga b/indra/newview/skins/apollo/textures/music_icon.tga new file mode 100644 index 000000000..aeaff02e0 Binary files /dev/null and b/indra/newview/skins/apollo/textures/music_icon.tga differ diff --git a/indra/newview/skins/apollo/textures/mute_icon.tga b/indra/newview/skins/apollo/textures/mute_icon.tga new file mode 100644 index 000000000..879b9e618 Binary files /dev/null and b/indra/newview/skins/apollo/textures/mute_icon.tga differ diff --git a/indra/newview/skins/apollo/textures/notify_box_icon.tga b/indra/newview/skins/apollo/textures/notify_box_icon.tga new file mode 100644 index 000000000..0672c89ee Binary files /dev/null and b/indra/newview/skins/apollo/textures/notify_box_icon.tga differ diff --git a/indra/newview/skins/apollo/textures/notify_caution_icon.tga b/indra/newview/skins/apollo/textures/notify_caution_icon.tga new file mode 100644 index 000000000..abc23d1d7 Binary files /dev/null and b/indra/newview/skins/apollo/textures/notify_caution_icon.tga differ diff --git a/indra/newview/skins/apollo/textures/notify_next.png b/indra/newview/skins/apollo/textures/notify_next.png new file mode 100644 index 000000000..6faa14a99 Binary files /dev/null and b/indra/newview/skins/apollo/textures/notify_next.png differ diff --git a/indra/newview/skins/apollo/textures/notify_tip_icon.tga b/indra/newview/skins/apollo/textures/notify_tip_icon.tga new file mode 100644 index 000000000..f79a634a9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/notify_tip_icon.tga differ diff --git a/indra/newview/skins/apollo/textures/object_cone.tga b/indra/newview/skins/apollo/textures/object_cone.tga new file mode 100644 index 000000000..3cd51dfeb Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_cone.tga differ diff --git a/indra/newview/skins/apollo/textures/object_cone_active.tga b/indra/newview/skins/apollo/textures/object_cone_active.tga new file mode 100644 index 000000000..ab8137c05 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_cone_active.tga differ diff --git a/indra/newview/skins/apollo/textures/object_cube.tga b/indra/newview/skins/apollo/textures/object_cube.tga new file mode 100644 index 000000000..3395522c2 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_cube.tga differ diff --git a/indra/newview/skins/apollo/textures/object_cube_active.tga b/indra/newview/skins/apollo/textures/object_cube_active.tga new file mode 100644 index 000000000..40886cf0d Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_cube_active.tga differ diff --git a/indra/newview/skins/apollo/textures/object_cylinder.tga b/indra/newview/skins/apollo/textures/object_cylinder.tga new file mode 100644 index 000000000..2d13f3be6 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_cylinder.tga differ diff --git a/indra/newview/skins/apollo/textures/object_cylinder_active.tga b/indra/newview/skins/apollo/textures/object_cylinder_active.tga new file mode 100644 index 000000000..328d10355 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_cylinder_active.tga differ diff --git a/indra/newview/skins/apollo/textures/object_grass.tga b/indra/newview/skins/apollo/textures/object_grass.tga new file mode 100644 index 000000000..8b1943d18 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_grass.tga differ diff --git a/indra/newview/skins/apollo/textures/object_grass_active.tga b/indra/newview/skins/apollo/textures/object_grass_active.tga new file mode 100644 index 000000000..55cdbaa3a Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_grass_active.tga differ diff --git a/indra/newview/skins/apollo/textures/object_hemi_cone.tga b/indra/newview/skins/apollo/textures/object_hemi_cone.tga new file mode 100644 index 000000000..2cd4a33b0 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_hemi_cone.tga differ diff --git a/indra/newview/skins/apollo/textures/object_hemi_cone_active.tga b/indra/newview/skins/apollo/textures/object_hemi_cone_active.tga new file mode 100644 index 000000000..459c723b9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_hemi_cone_active.tga differ diff --git a/indra/newview/skins/apollo/textures/object_hemi_cylinder.tga b/indra/newview/skins/apollo/textures/object_hemi_cylinder.tga new file mode 100644 index 000000000..669f78f89 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_hemi_cylinder.tga differ diff --git a/indra/newview/skins/apollo/textures/object_hemi_cylinder_active.tga b/indra/newview/skins/apollo/textures/object_hemi_cylinder_active.tga new file mode 100644 index 000000000..154ab9b13 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_hemi_cylinder_active.tga differ diff --git a/indra/newview/skins/apollo/textures/object_hemi_sphere.tga b/indra/newview/skins/apollo/textures/object_hemi_sphere.tga new file mode 100644 index 000000000..d1815a5a9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_hemi_sphere.tga differ diff --git a/indra/newview/skins/apollo/textures/object_hemi_sphere_active.tga b/indra/newview/skins/apollo/textures/object_hemi_sphere_active.tga new file mode 100644 index 000000000..e5e0c45c7 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_hemi_sphere_active.tga differ diff --git a/indra/newview/skins/apollo/textures/object_prism.tga b/indra/newview/skins/apollo/textures/object_prism.tga new file mode 100644 index 000000000..099026cc4 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_prism.tga differ diff --git a/indra/newview/skins/apollo/textures/object_prism_active.tga b/indra/newview/skins/apollo/textures/object_prism_active.tga new file mode 100644 index 000000000..fa9d0b98d Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_prism_active.tga differ diff --git a/indra/newview/skins/apollo/textures/object_pyramid.tga b/indra/newview/skins/apollo/textures/object_pyramid.tga new file mode 100644 index 000000000..7927c8b4e Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_pyramid.tga differ diff --git a/indra/newview/skins/apollo/textures/object_pyramid_active.tga b/indra/newview/skins/apollo/textures/object_pyramid_active.tga new file mode 100644 index 000000000..b20b33e26 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_pyramid_active.tga differ diff --git a/indra/newview/skins/apollo/textures/object_ring.tga b/indra/newview/skins/apollo/textures/object_ring.tga new file mode 100644 index 000000000..49603f1bd Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_ring.tga differ diff --git a/indra/newview/skins/apollo/textures/object_ring_active.tga b/indra/newview/skins/apollo/textures/object_ring_active.tga new file mode 100644 index 000000000..0229818c6 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_ring_active.tga differ diff --git a/indra/newview/skins/apollo/textures/object_sphere.tga b/indra/newview/skins/apollo/textures/object_sphere.tga new file mode 100644 index 000000000..7bfae3b6d Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_sphere.tga differ diff --git a/indra/newview/skins/apollo/textures/object_sphere_active.tga b/indra/newview/skins/apollo/textures/object_sphere_active.tga new file mode 100644 index 000000000..6d27f4fc1 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_sphere_active.tga differ diff --git a/indra/newview/skins/apollo/textures/object_tetrahedron.tga b/indra/newview/skins/apollo/textures/object_tetrahedron.tga new file mode 100644 index 000000000..717881b4e Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_tetrahedron.tga differ diff --git a/indra/newview/skins/apollo/textures/object_tetrahedron_active.tga b/indra/newview/skins/apollo/textures/object_tetrahedron_active.tga new file mode 100644 index 000000000..fc0a609f6 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_tetrahedron_active.tga differ diff --git a/indra/newview/skins/apollo/textures/object_torus.tga b/indra/newview/skins/apollo/textures/object_torus.tga new file mode 100644 index 000000000..33d493106 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_torus.tga differ diff --git a/indra/newview/skins/apollo/textures/object_torus_active.tga b/indra/newview/skins/apollo/textures/object_torus_active.tga new file mode 100644 index 000000000..44f42ed8e Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_torus_active.tga differ diff --git a/indra/newview/skins/apollo/textures/object_tree.tga b/indra/newview/skins/apollo/textures/object_tree.tga new file mode 100644 index 000000000..880a2fa2a Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_tree.tga differ diff --git a/indra/newview/skins/apollo/textures/object_tree_active.tga b/indra/newview/skins/apollo/textures/object_tree_active.tga new file mode 100644 index 000000000..219f1f829 Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_tree_active.tga differ diff --git a/indra/newview/skins/apollo/textures/object_tube.tga b/indra/newview/skins/apollo/textures/object_tube.tga new file mode 100644 index 000000000..49ee35ede Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_tube.tga differ diff --git a/indra/newview/skins/apollo/textures/object_tube_active.tga b/indra/newview/skins/apollo/textures/object_tube_active.tga new file mode 100644 index 000000000..655ebb01f Binary files /dev/null and b/indra/newview/skins/apollo/textures/object_tube_active.tga differ diff --git a/indra/newview/skins/apollo/textures/payment_info_charter.tga b/indra/newview/skins/apollo/textures/payment_info_charter.tga new file mode 100644 index 000000000..6205da7b4 Binary files /dev/null and b/indra/newview/skins/apollo/textures/payment_info_charter.tga differ diff --git a/indra/newview/skins/apollo/textures/payment_info_filled.tga b/indra/newview/skins/apollo/textures/payment_info_filled.tga new file mode 100644 index 000000000..65e619692 Binary files /dev/null and b/indra/newview/skins/apollo/textures/payment_info_filled.tga differ diff --git a/indra/newview/skins/apollo/textures/payment_info_used.tga b/indra/newview/skins/apollo/textures/payment_info_used.tga new file mode 100644 index 000000000..345b3b302 Binary files /dev/null and b/indra/newview/skins/apollo/textures/payment_info_used.tga differ diff --git a/indra/newview/skins/apollo/textures/preview.png b/indra/newview/skins/apollo/textures/preview.png new file mode 100644 index 000000000..d045ac734 Binary files /dev/null and b/indra/newview/skins/apollo/textures/preview.png differ diff --git a/indra/newview/skins/apollo/textures/progress_fill.tga b/indra/newview/skins/apollo/textures/progress_fill.tga new file mode 100644 index 000000000..a913fe762 Binary files /dev/null and b/indra/newview/skins/apollo/textures/progress_fill.tga differ diff --git a/indra/newview/skins/apollo/textures/progressbar_fill.tga b/indra/newview/skins/apollo/textures/progressbar_fill.tga new file mode 100644 index 000000000..266f47288 Binary files /dev/null and b/indra/newview/skins/apollo/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/apollo/textures/progressbar_track.tga b/indra/newview/skins/apollo/textures/progressbar_track.tga new file mode 100644 index 000000000..4b84e9ec9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/apollo/textures/propertyline.tga b/indra/newview/skins/apollo/textures/propertyline.tga new file mode 100644 index 000000000..0c504eea7 Binary files /dev/null and b/indra/newview/skins/apollo/textures/propertyline.tga differ diff --git a/indra/newview/skins/apollo/textures/ptt_lock_off.tga b/indra/newview/skins/apollo/textures/ptt_lock_off.tga new file mode 100644 index 000000000..d66f49840 Binary files /dev/null and b/indra/newview/skins/apollo/textures/ptt_lock_off.tga differ diff --git a/indra/newview/skins/apollo/textures/ptt_lock_on.tga b/indra/newview/skins/apollo/textures/ptt_lock_on.tga new file mode 100644 index 000000000..432db2f00 Binary files /dev/null and b/indra/newview/skins/apollo/textures/ptt_lock_on.tga differ diff --git a/indra/newview/skins/apollo/textures/radio_active_false.tga b/indra/newview/skins/apollo/textures/radio_active_false.tga new file mode 100644 index 000000000..3fdaecb5b Binary files /dev/null and b/indra/newview/skins/apollo/textures/radio_active_false.tga differ diff --git a/indra/newview/skins/apollo/textures/radio_active_true.tga b/indra/newview/skins/apollo/textures/radio_active_true.tga new file mode 100644 index 000000000..8d7520a21 Binary files /dev/null and b/indra/newview/skins/apollo/textures/radio_active_true.tga differ diff --git a/indra/newview/skins/apollo/textures/radio_inactive_false.tga b/indra/newview/skins/apollo/textures/radio_inactive_false.tga new file mode 100644 index 000000000..6cc182a27 Binary files /dev/null and b/indra/newview/skins/apollo/textures/radio_inactive_false.tga differ diff --git a/indra/newview/skins/apollo/textures/radio_inactive_true.tga b/indra/newview/skins/apollo/textures/radio_inactive_true.tga new file mode 100644 index 000000000..c8a4e5b2c Binary files /dev/null and b/indra/newview/skins/apollo/textures/radio_inactive_true.tga differ diff --git a/indra/newview/skins/apollo/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/apollo/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..8290bfa65 Binary files /dev/null and b/indra/newview/skins/apollo/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/restore.tga b/indra/newview/skins/apollo/textures/restore.tga new file mode 100644 index 000000000..5e369fdfc Binary files /dev/null and b/indra/newview/skins/apollo/textures/restore.tga differ diff --git a/indra/newview/skins/apollo/textures/restore_inactive.tga b/indra/newview/skins/apollo/textures/restore_inactive.tga new file mode 100644 index 000000000..ce545d90d Binary files /dev/null and b/indra/newview/skins/apollo/textures/restore_inactive.tga differ diff --git a/indra/newview/skins/apollo/textures/restore_pressed.tga b/indra/newview/skins/apollo/textures/restore_pressed.tga new file mode 100644 index 000000000..8a25087be Binary files /dev/null and b/indra/newview/skins/apollo/textures/restore_pressed.tga differ diff --git a/indra/newview/skins/apollo/textures/rounded_square.tga b/indra/newview/skins/apollo/textures/rounded_square.tga new file mode 100644 index 000000000..4f4bf05f8 Binary files /dev/null and b/indra/newview/skins/apollo/textures/rounded_square.tga differ diff --git a/indra/newview/skins/apollo/textures/rounded_square_soft.tga b/indra/newview/skins/apollo/textures/rounded_square_soft.tga new file mode 100644 index 000000000..4f4bf05f8 Binary files /dev/null and b/indra/newview/skins/apollo/textures/rounded_square_soft.tga differ diff --git a/indra/newview/skins/apollo/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/apollo/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..cd592c3df Binary files /dev/null and b/indra/newview/skins/apollo/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/scrollbutton_down_out_blue.tga b/indra/newview/skins/apollo/textures/scrollbutton_down_out_blue.tga new file mode 100644 index 000000000..cd592c3df Binary files /dev/null and b/indra/newview/skins/apollo/textures/scrollbutton_down_out_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/apollo/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..b65d199ae Binary files /dev/null and b/indra/newview/skins/apollo/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/scrollbutton_left_out_blue.tga b/indra/newview/skins/apollo/textures/scrollbutton_left_out_blue.tga new file mode 100644 index 000000000..b65d199ae Binary files /dev/null and b/indra/newview/skins/apollo/textures/scrollbutton_left_out_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/apollo/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..9b571add3 Binary files /dev/null and b/indra/newview/skins/apollo/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/scrollbutton_right_out_blue.tga b/indra/newview/skins/apollo/textures/scrollbutton_right_out_blue.tga new file mode 100644 index 000000000..9b571add3 Binary files /dev/null and b/indra/newview/skins/apollo/textures/scrollbutton_right_out_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/apollo/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..8e78742ff Binary files /dev/null and b/indra/newview/skins/apollo/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/scrollbutton_up_out_blue.tga b/indra/newview/skins/apollo/textures/scrollbutton_up_out_blue.tga new file mode 100644 index 000000000..8e78742ff Binary files /dev/null and b/indra/newview/skins/apollo/textures/scrollbutton_up_out_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/skin_thumbnail_dark.png b/indra/newview/skins/apollo/textures/skin_thumbnail_dark.png new file mode 100644 index 000000000..2cac82923 Binary files /dev/null and b/indra/newview/skins/apollo/textures/skin_thumbnail_dark.png differ diff --git a/indra/newview/skins/apollo/textures/skin_thumbnail_default.png b/indra/newview/skins/apollo/textures/skin_thumbnail_default.png new file mode 100644 index 000000000..40fe64bb4 Binary files /dev/null and b/indra/newview/skins/apollo/textures/skin_thumbnail_default.png differ diff --git a/indra/newview/skins/apollo/textures/skin_thumbnail_gred.png b/indra/newview/skins/apollo/textures/skin_thumbnail_gred.png new file mode 100644 index 000000000..827135499 Binary files /dev/null and b/indra/newview/skins/apollo/textures/skin_thumbnail_gred.png differ diff --git a/indra/newview/skins/apollo/textures/skin_thumbnail_phoenix.png b/indra/newview/skins/apollo/textures/skin_thumbnail_phoenix.png new file mode 100644 index 000000000..ab35bc0ab Binary files /dev/null and b/indra/newview/skins/apollo/textures/skin_thumbnail_phoenix.png differ diff --git a/indra/newview/skins/apollo/textures/skin_thumbnail_pslgreen.png b/indra/newview/skins/apollo/textures/skin_thumbnail_pslgreen.png new file mode 100644 index 000000000..73e117e9f Binary files /dev/null and b/indra/newview/skins/apollo/textures/skin_thumbnail_pslgreen.png differ diff --git a/indra/newview/skins/apollo/textures/skin_thumbnail_pslpurple.png b/indra/newview/skins/apollo/textures/skin_thumbnail_pslpurple.png new file mode 100644 index 000000000..902ad82b1 Binary files /dev/null and b/indra/newview/skins/apollo/textures/skin_thumbnail_pslpurple.png differ diff --git a/indra/newview/skins/apollo/textures/skin_thumbnail_ruby.png b/indra/newview/skins/apollo/textures/skin_thumbnail_ruby.png new file mode 100644 index 000000000..d45e75ad0 Binary files /dev/null and b/indra/newview/skins/apollo/textures/skin_thumbnail_ruby.png differ diff --git a/indra/newview/skins/apollo/textures/skin_thumbnail_saphire.png b/indra/newview/skins/apollo/textures/skin_thumbnail_saphire.png new file mode 100644 index 000000000..7ec8e1991 Binary files /dev/null and b/indra/newview/skins/apollo/textures/skin_thumbnail_saphire.png differ diff --git a/indra/newview/skins/apollo/textures/skin_thumbnail_silver.png b/indra/newview/skins/apollo/textures/skin_thumbnail_silver.png new file mode 100644 index 000000000..51707bb9d Binary files /dev/null and b/indra/newview/skins/apollo/textures/skin_thumbnail_silver.png differ diff --git a/indra/newview/skins/apollo/textures/slim_icon_16_viewer.tga b/indra/newview/skins/apollo/textures/slim_icon_16_viewer.tga new file mode 100644 index 000000000..552181d36 Binary files /dev/null and b/indra/newview/skins/apollo/textures/slim_icon_16_viewer.tga differ diff --git a/indra/newview/skins/apollo/textures/sm_rounded_corners_simple.tga b/indra/newview/skins/apollo/textures/sm_rounded_corners_simple.tga new file mode 100644 index 000000000..85157e461 Binary files /dev/null and b/indra/newview/skins/apollo/textures/sm_rounded_corners_simple.tga differ diff --git a/indra/newview/skins/apollo/textures/smicon_warn.tga b/indra/newview/skins/apollo/textures/smicon_warn.tga new file mode 100644 index 000000000..90ccaa07e Binary files /dev/null and b/indra/newview/skins/apollo/textures/smicon_warn.tga differ diff --git a/indra/newview/skins/apollo/textures/spacer24.tga b/indra/newview/skins/apollo/textures/spacer24.tga new file mode 100644 index 000000000..c7cab6b38 Binary files /dev/null and b/indra/newview/skins/apollo/textures/spacer24.tga differ diff --git a/indra/newview/skins/apollo/textures/spacer35.tga b/indra/newview/skins/apollo/textures/spacer35.tga new file mode 100644 index 000000000..b88bc6680 Binary files /dev/null and b/indra/newview/skins/apollo/textures/spacer35.tga differ diff --git a/indra/newview/skins/apollo/textures/spin_down_in_blue.tga b/indra/newview/skins/apollo/textures/spin_down_in_blue.tga new file mode 100644 index 000000000..b9eb36ba9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/spin_down_in_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/spin_down_out_blue.tga b/indra/newview/skins/apollo/textures/spin_down_out_blue.tga new file mode 100644 index 000000000..c9cb5e8bf Binary files /dev/null and b/indra/newview/skins/apollo/textures/spin_down_out_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/spin_up_in_blue.tga b/indra/newview/skins/apollo/textures/spin_up_in_blue.tga new file mode 100644 index 000000000..b604b8843 Binary files /dev/null and b/indra/newview/skins/apollo/textures/spin_up_in_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/spin_up_out_blue.tga b/indra/newview/skins/apollo/textures/spin_up_out_blue.tga new file mode 100644 index 000000000..4e3941e45 Binary files /dev/null and b/indra/newview/skins/apollo/textures/spin_up_out_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/square_btn_32x128.tga b/indra/newview/skins/apollo/textures/square_btn_32x128.tga new file mode 100644 index 000000000..d23d413aa Binary files /dev/null and b/indra/newview/skins/apollo/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/apollo/textures/square_btn_selected_32x128.tga b/indra/newview/skins/apollo/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..2f48098d2 Binary files /dev/null and b/indra/newview/skins/apollo/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/apollo/textures/startup_logo.j2c b/indra/newview/skins/apollo/textures/startup_logo.j2c new file mode 100644 index 000000000..589e69a6b Binary files /dev/null and b/indra/newview/skins/apollo/textures/startup_logo.j2c differ diff --git a/indra/newview/skins/apollo/textures/status_busy.tga b/indra/newview/skins/apollo/textures/status_busy.tga new file mode 100644 index 000000000..7743d9c7b Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_busy.tga differ diff --git a/indra/newview/skins/apollo/textures/status_buy_currency.tga b/indra/newview/skins/apollo/textures/status_buy_currency.tga new file mode 100644 index 000000000..d72078aa0 Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/apollo/textures/status_buy_currency_pressed.tga b/indra/newview/skins/apollo/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..acb047932 Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/apollo/textures/status_buy_land.tga b/indra/newview/skins/apollo/textures/status_buy_land.tga new file mode 100644 index 000000000..490383717 Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/apollo/textures/status_buy_land_pressed.tga b/indra/newview/skins/apollo/textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..af5d1896f Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/apollo/textures/status_health.tga b/indra/newview/skins/apollo/textures/status_health.tga new file mode 100644 index 000000000..3d5f455fc Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_health.tga differ diff --git a/indra/newview/skins/apollo/textures/status_money.tga b/indra/newview/skins/apollo/textures/status_money.tga new file mode 100644 index 000000000..d5be31fc6 Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_money.tga differ diff --git a/indra/newview/skins/apollo/textures/status_no_build.tga b/indra/newview/skins/apollo/textures/status_no_build.tga new file mode 100644 index 000000000..8e471e185 Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_no_build.tga differ diff --git a/indra/newview/skins/apollo/textures/status_no_fly.tga b/indra/newview/skins/apollo/textures/status_no_fly.tga new file mode 100644 index 000000000..cde2700ab Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_no_fly.tga differ diff --git a/indra/newview/skins/apollo/textures/status_no_push.tga b/indra/newview/skins/apollo/textures/status_no_push.tga new file mode 100644 index 000000000..5ccbfa50f Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_no_push.tga differ diff --git a/indra/newview/skins/apollo/textures/status_no_scripts.tga b/indra/newview/skins/apollo/textures/status_no_scripts.tga new file mode 100644 index 000000000..52ecdb1b8 Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_no_scripts.tga differ diff --git a/indra/newview/skins/apollo/textures/status_no_voice.tga b/indra/newview/skins/apollo/textures/status_no_voice.tga new file mode 100644 index 000000000..4ab4498cb Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_no_voice.tga differ diff --git a/indra/newview/skins/apollo/textures/status_script_debug.tga b/indra/newview/skins/apollo/textures/status_script_debug.tga new file mode 100644 index 000000000..6fca61483 Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_script_debug.tga differ diff --git a/indra/newview/skins/apollo/textures/status_search.tga b/indra/newview/skins/apollo/textures/status_search.tga new file mode 100644 index 000000000..3ac10c476 Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_search.tga differ diff --git a/indra/newview/skins/apollo/textures/status_search_btn.png b/indra/newview/skins/apollo/textures/status_search_btn.png new file mode 100644 index 000000000..67f61332b Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_search_btn.png differ diff --git a/indra/newview/skins/apollo/textures/status_search_btn_pressed.png b/indra/newview/skins/apollo/textures/status_search_btn_pressed.png new file mode 100644 index 000000000..1437273d3 Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_search_btn_pressed.png differ diff --git a/indra/newview/skins/apollo/textures/status_voice.tga b/indra/newview/skins/apollo/textures/status_voice.tga new file mode 100644 index 000000000..4ab4498cb Binary files /dev/null and b/indra/newview/skins/apollo/textures/status_voice.tga differ diff --git a/indra/newview/skins/apollo/textures/tab_background_darkpurple.tga b/indra/newview/skins/apollo/textures/tab_background_darkpurple.tga new file mode 100644 index 000000000..8169f9869 Binary files /dev/null and b/indra/newview/skins/apollo/textures/tab_background_darkpurple.tga differ diff --git a/indra/newview/skins/apollo/textures/tab_background_lightgrey.tga b/indra/newview/skins/apollo/textures/tab_background_lightgrey.tga new file mode 100644 index 000000000..c2f8818f7 Binary files /dev/null and b/indra/newview/skins/apollo/textures/tab_background_lightgrey.tga differ diff --git a/indra/newview/skins/apollo/textures/tab_background_purple.tga b/indra/newview/skins/apollo/textures/tab_background_purple.tga new file mode 100644 index 000000000..aa01b3cb6 Binary files /dev/null and b/indra/newview/skins/apollo/textures/tab_background_purple.tga differ diff --git a/indra/newview/skins/apollo/textures/tab_bottom_blue.tga b/indra/newview/skins/apollo/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..e6de7a5a1 Binary files /dev/null and b/indra/newview/skins/apollo/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/apollo/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..685d4da55 Binary files /dev/null and b/indra/newview/skins/apollo/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/tab_left.tga b/indra/newview/skins/apollo/textures/tab_left.tga new file mode 100644 index 000000000..0220020e8 Binary files /dev/null and b/indra/newview/skins/apollo/textures/tab_left.tga differ diff --git a/indra/newview/skins/apollo/textures/tab_left_selected.tga b/indra/newview/skins/apollo/textures/tab_left_selected.tga new file mode 100644 index 000000000..485f324d1 Binary files /dev/null and b/indra/newview/skins/apollo/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/apollo/textures/tab_top_blue.tga b/indra/newview/skins/apollo/textures/tab_top_blue.tga new file mode 100644 index 000000000..ddcd519f2 Binary files /dev/null and b/indra/newview/skins/apollo/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/tab_top_selected_be.tga b/indra/newview/skins/apollo/textures/tab_top_selected_be.tga new file mode 100644 index 000000000..5ec91963c Binary files /dev/null and b/indra/newview/skins/apollo/textures/tab_top_selected_be.tga differ diff --git a/indra/newview/skins/apollo/textures/tab_top_selected_blue.tga b/indra/newview/skins/apollo/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..1e871986e Binary files /dev/null and b/indra/newview/skins/apollo/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/apollo/textures/tab_toplue.tga b/indra/newview/skins/apollo/textures/tab_toplue.tga new file mode 100644 index 000000000..75ae593aa Binary files /dev/null and b/indra/newview/skins/apollo/textures/tab_toplue.tga differ diff --git a/indra/newview/skins/apollo/textures/tabarea.tga b/indra/newview/skins/apollo/textures/tabarea.tga new file mode 100644 index 000000000..5517aebfc Binary files /dev/null and b/indra/newview/skins/apollo/textures/tabarea.tga differ diff --git a/indra/newview/skins/apollo/textures/tearoff_pressed.tga b/indra/newview/skins/apollo/textures/tearoff_pressed.tga new file mode 100644 index 000000000..8581ab701 Binary files /dev/null and b/indra/newview/skins/apollo/textures/tearoff_pressed.tga differ diff --git a/indra/newview/skins/apollo/textures/tearoffbox.tga b/indra/newview/skins/apollo/textures/tearoffbox.tga new file mode 100644 index 000000000..27af31c4d Binary files /dev/null and b/indra/newview/skins/apollo/textures/tearoffbox.tga differ diff --git a/indra/newview/skins/apollo/textures/textures.xml b/indra/newview/skins/apollo/textures/textures.xml new file mode 100644 index 000000000..2c4b0cbea --- /dev/null +++ b/indra/newview/skins/apollo/textures/textures.xml @@ -0,0 +1,382 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/apollo/textures/tool_dozer.tga b/indra/newview/skins/apollo/textures/tool_dozer.tga new file mode 100644 index 000000000..bf3a8999d Binary files /dev/null and b/indra/newview/skins/apollo/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/apollo/textures/tool_dozer_active.tga b/indra/newview/skins/apollo/textures/tool_dozer_active.tga new file mode 100644 index 000000000..09c0e79f9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/apollo/textures/tool_zoom.tga b/indra/newview/skins/apollo/textures/tool_zoom.tga new file mode 100644 index 000000000..67692e95b Binary files /dev/null and b/indra/newview/skins/apollo/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/apollo/textures/tool_zoom_active.tga b/indra/newview/skins/apollo/textures/tool_zoom_active.tga new file mode 100644 index 000000000..084ff39be Binary files /dev/null and b/indra/newview/skins/apollo/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/apollo/textures/toolbar_bg.tga b/indra/newview/skins/apollo/textures/toolbar_bg.tga new file mode 100644 index 000000000..3a0577627 Binary files /dev/null and b/indra/newview/skins/apollo/textures/toolbar_bg.tga differ diff --git a/indra/newview/skins/apollo/textures/toolbar_btn_disabled.tga b/indra/newview/skins/apollo/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..d33fbe464 Binary files /dev/null and b/indra/newview/skins/apollo/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/apollo/textures/toolbar_btn_enabled.tga b/indra/newview/skins/apollo/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..d33fbe464 Binary files /dev/null and b/indra/newview/skins/apollo/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/apollo/textures/toolbar_btn_selected.tga b/indra/newview/skins/apollo/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..1b46118b9 Binary files /dev/null and b/indra/newview/skins/apollo/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/apollo/textures/toolbar_tab.tga b/indra/newview/skins/apollo/textures/toolbar_tab.tga new file mode 100644 index 000000000..5ea1a28d2 Binary files /dev/null and b/indra/newview/skins/apollo/textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/apollo/textures/up_arrow.png b/indra/newview/skins/apollo/textures/up_arrow.png new file mode 100644 index 000000000..fe68ad49d Binary files /dev/null and b/indra/newview/skins/apollo/textures/up_arrow.png differ diff --git a/indra/newview/skins/apollo/textures/up_arrow.tga b/indra/newview/skins/apollo/textures/up_arrow.tga new file mode 100644 index 000000000..c2bd8cceb Binary files /dev/null and b/indra/newview/skins/apollo/textures/up_arrow.tga differ diff --git a/indra/newview/skins/apollo/textures/uv_test2.tga b/indra/newview/skins/apollo/textures/uv_test2.tga new file mode 100644 index 000000000..a16000d1e Binary files /dev/null and b/indra/newview/skins/apollo/textures/uv_test2.tga differ diff --git a/indra/newview/skins/apollo/textures/white.tga b/indra/newview/skins/apollo/textures/white.tga new file mode 100644 index 000000000..9fe68631c Binary files /dev/null and b/indra/newview/skins/apollo/textures/white.tga differ diff --git a/indra/newview/skins/darkcatalan/colors.xml b/indra/newview/skins/darkcatalan/colors.xml new file mode 100644 index 000000000..e2579eeee --- /dev/null +++ b/indra/newview/skins/darkcatalan/colors.xml @@ -0,0 +1,221 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/darkcatalan/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/darkcatalan/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..24e794269 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/0498c309-5306-43cd-82a2-ae31d096cdef.tga b/indra/newview/skins/darkcatalan/textures/0498c309-5306-43cd-82a2-ae31d096cdef.tga new file mode 100644 index 000000000..d7097e3a3 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/0498c309-5306-43cd-82a2-ae31d096cdef.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga b/indra/newview/skins/darkcatalan/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga new file mode 100644 index 000000000..eff64a7ed Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/09a324a8-acc1-d9cd-2cbd-7465d90d3a98.tga b/indra/newview/skins/darkcatalan/textures/09a324a8-acc1-d9cd-2cbd-7465d90d3a98.tga new file mode 100644 index 000000000..77d470731 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/09a324a8-acc1-d9cd-2cbd-7465d90d3a98.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/0e82d24e-ed45-41bc-b090-94c97c1caab2.tga b/indra/newview/skins/darkcatalan/textures/0e82d24e-ed45-41bc-b090-94c97c1caab2.tga new file mode 100644 index 000000000..b2e5609f1 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/0e82d24e-ed45-41bc-b090-94c97c1caab2.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/111b39de-8928-4690-b7b2-e17d5c960277.tga b/indra/newview/skins/darkcatalan/textures/111b39de-8928-4690-b7b2-e17d5c960277.tga new file mode 100644 index 000000000..0febf4edc Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/111b39de-8928-4690-b7b2-e17d5c960277.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/13dd1d96-6836-461e-8a4c-36003065c59b.tga b/indra/newview/skins/darkcatalan/textures/13dd1d96-6836-461e-8a4c-36003065c59b.tga new file mode 100644 index 000000000..031b3ad34 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/13dd1d96-6836-461e-8a4c-36003065c59b.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/34c9398d-bb78-4643-9633-46a2fa3e9637.tga b/indra/newview/skins/darkcatalan/textures/34c9398d-bb78-4643-9633-46a2fa3e9637.tga new file mode 100644 index 000000000..58cd2cd55 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/34c9398d-bb78-4643-9633-46a2fa3e9637.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/37c8e000-6aa2-41ef-8f86-e0c2e60bfa42.tga b/indra/newview/skins/darkcatalan/textures/37c8e000-6aa2-41ef-8f86-e0c2e60bfa42.tga new file mode 100644 index 000000000..879b9e618 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/37c8e000-6aa2-41ef-8f86-e0c2e60bfa42.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/39801651-26cb-4926-af57-7af9352c273c.tga b/indra/newview/skins/darkcatalan/textures/39801651-26cb-4926-af57-7af9352c273c.tga new file mode 100644 index 000000000..f2fdd074b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/39801651-26cb-4926-af57-7af9352c273c.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga b/indra/newview/skins/darkcatalan/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga new file mode 100644 index 000000000..908120eb6 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga b/indra/newview/skins/darkcatalan/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga new file mode 100644 index 000000000..81cf94ed6 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/47a8c844-cd2a-4b1a-be01-df8b1612fe5d.tga b/indra/newview/skins/darkcatalan/textures/47a8c844-cd2a-4b1a-be01-df8b1612fe5d.tga new file mode 100644 index 000000000..505f6ed1c Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/47a8c844-cd2a-4b1a-be01-df8b1612fe5d.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga b/indra/newview/skins/darkcatalan/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga new file mode 100644 index 000000000..55e379309 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga b/indra/newview/skins/darkcatalan/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga new file mode 100644 index 000000000..fc720c826 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/73577b7b-19c3-4050-a19d-36bc2408aa79.tga b/indra/newview/skins/darkcatalan/textures/73577b7b-19c3-4050-a19d-36bc2408aa79.tga new file mode 100644 index 000000000..35846cef3 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/73577b7b-19c3-4050-a19d-36bc2408aa79.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga b/indra/newview/skins/darkcatalan/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga new file mode 100644 index 000000000..41b1a2728 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/74e1a96f-4833-a24d-a1bb-1bce1468b0e7.tga b/indra/newview/skins/darkcatalan/textures/74e1a96f-4833-a24d-a1bb-1bce1468b0e7.tga new file mode 100644 index 000000000..c359f2f31 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/74e1a96f-4833-a24d-a1bb-1bce1468b0e7.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/darkcatalan/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..bef5051c5 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga b/indra/newview/skins/darkcatalan/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga new file mode 100644 index 000000000..a5e751398 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga b/indra/newview/skins/darkcatalan/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga new file mode 100644 index 000000000..e2e1aba96 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/8f761ce3-5939-4d3a-8991-00064fdfacf9.tga b/indra/newview/skins/darkcatalan/textures/8f761ce3-5939-4d3a-8991-00064fdfacf9.tga new file mode 100644 index 000000000..1f9f564fa Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/8f761ce3-5939-4d3a-8991-00064fdfacf9.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga b/indra/newview/skins/darkcatalan/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga new file mode 100644 index 000000000..c8491a0a1 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga b/indra/newview/skins/darkcatalan/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga new file mode 100644 index 000000000..fc2326e01 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/account_id_green.tga b/indra/newview/skins/darkcatalan/textures/account_id_green.tga new file mode 100644 index 000000000..9be215eed Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/account_id_green.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/account_id_orange.tga b/indra/newview/skins/darkcatalan/textures/account_id_orange.tga new file mode 100644 index 000000000..6b41e8663 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/account_id_orange.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/active_speakers.tga b/indra/newview/skins/darkcatalan/textures/active_speakers.tga new file mode 100644 index 000000000..02d3643d7 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/active_speakers.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/active_voice_tab.tga b/indra/newview/skins/darkcatalan/textures/active_voice_tab.tga new file mode 100644 index 000000000..1c86f3f82 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/active_voice_tab.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/alpha_gradient.tga b/indra/newview/skins/darkcatalan/textures/alpha_gradient.tga new file mode 100644 index 000000000..6fdba25d4 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/alpha_gradient.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/arrow_down.tga b/indra/newview/skins/darkcatalan/textures/arrow_down.tga new file mode 100644 index 000000000..b66155ba2 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/arrow_down.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/arrow_up.tga b/indra/newview/skins/darkcatalan/textures/arrow_up.tga new file mode 100644 index 000000000..b8be0ee98 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/arrow_up.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/avatar_gone.tga b/indra/newview/skins/darkcatalan/textures/avatar_gone.tga new file mode 100644 index 000000000..e5c2c070b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/avatar_gone.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/avatar_new.tga b/indra/newview/skins/darkcatalan/textures/avatar_new.tga new file mode 100644 index 000000000..854b70c32 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/avatar_new.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/avatar_sound.tga b/indra/newview/skins/darkcatalan/textures/avatar_sound.tga new file mode 100644 index 000000000..ec5dacbf0 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/avatar_sound.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/avatar_typing.tga b/indra/newview/skins/darkcatalan/textures/avatar_typing.tga new file mode 100644 index 000000000..ec2ce4556 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/avatar_typing.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga b/indra/newview/skins/darkcatalan/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga new file mode 100644 index 000000000..7358e86d3 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/darkcatalan/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..747989e08 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/black.tga b/indra/newview/skins/darkcatalan/textures/black.tga new file mode 100644 index 000000000..86d5a0c94 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/black.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/btn_chatbar.tga b/indra/newview/skins/darkcatalan/textures/btn_chatbar.tga new file mode 100644 index 000000000..09d34551c Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/btn_chatbar_selected.tga b/indra/newview/skins/darkcatalan/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..2790486de Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/button_anim_pause.tga b/indra/newview/skins/darkcatalan/textures/button_anim_pause.tga new file mode 100644 index 000000000..696137a36 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/button_anim_pause_disabled.tga b/indra/newview/skins/darkcatalan/textures/button_anim_pause_disabled.tga new file mode 100644 index 000000000..ae54a1f25 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/button_anim_pause_disabled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/button_anim_pause_selected.tga b/indra/newview/skins/darkcatalan/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..adced5208 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/button_anim_play.tga b/indra/newview/skins/darkcatalan/textures/button_anim_play.tga new file mode 100644 index 000000000..c75f2f328 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/button_anim_play_disabled.tga b/indra/newview/skins/darkcatalan/textures/button_anim_play_disabled.tga new file mode 100644 index 000000000..58efaa196 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/button_anim_play_disabled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/button_anim_play_selected.tga b/indra/newview/skins/darkcatalan/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..bd2f37967 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/button_anim_stop.tga b/indra/newview/skins/darkcatalan/textures/button_anim_stop.tga new file mode 100644 index 000000000..3f31d588b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/button_anim_stop_disabled.tga b/indra/newview/skins/darkcatalan/textures/button_anim_stop_disabled.tga new file mode 100644 index 000000000..4f3aaa888 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/button_anim_stop_disabled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/button_anim_stop_selected.tga b/indra/newview/skins/darkcatalan/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..31b8bf6c6 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/button_disabled_32x128.tga b/indra/newview/skins/darkcatalan/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..e2d414a8c Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/button_enabled_32x128.tga b/indra/newview/skins/darkcatalan/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..88c579f17 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/darkcatalan/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..4dbaab62a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/darkcatalan/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..71e7f35a9 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/darkcatalan/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..2149cc114 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/ca7609c6-6ec6-32d9-332e-0d8f437ef644.tga b/indra/newview/skins/darkcatalan/textures/ca7609c6-6ec6-32d9-332e-0d8f437ef644.tga new file mode 100644 index 000000000..0dbb8fda4 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/ca7609c6-6ec6-32d9-332e-0d8f437ef644.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/cam_rotate_in.tga b/indra/newview/skins/darkcatalan/textures/cam_rotate_in.tga new file mode 100644 index 000000000..37f7faed3 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/cam_rotate_out.tga b/indra/newview/skins/darkcatalan/textures/cam_rotate_out.tga new file mode 100644 index 000000000..f8267f404 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/cam_tracking_in.tga b/indra/newview/skins/darkcatalan/textures/cam_tracking_in.tga new file mode 100644 index 000000000..6a51d4dcc Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/cam_tracking_out.tga b/indra/newview/skins/darkcatalan/textures/cam_tracking_out.tga new file mode 100644 index 000000000..961533729 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/cam_zoom_minus_in.tga b/indra/newview/skins/darkcatalan/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..b428b5db6 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/cam_zoom_out.tga b/indra/newview/skins/darkcatalan/textures/cam_zoom_out.tga new file mode 100644 index 000000000..b428b5db6 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/cam_zoom_plus_in.tga b/indra/newview/skins/darkcatalan/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..b428b5db6 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/darkcatalan/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..9a52b1723 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/checkbox_disabled_false.tga b/indra/newview/skins/darkcatalan/textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..8a3e38dea Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/checkbox_disabled_true.tga b/indra/newview/skins/darkcatalan/textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..ecbeffb24 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/checkbox_enabled_false.tga b/indra/newview/skins/darkcatalan/textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..0daa5df2c Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/checkbox_enabled_true.tga b/indra/newview/skins/darkcatalan/textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..137fa836c Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/checkerboard_transparency_bg.png b/indra/newview/skins/darkcatalan/textures/checkerboard_transparency_bg.png new file mode 100644 index 000000000..9a1693520 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/checkerboard_transparency_bg.png differ diff --git a/indra/newview/skins/darkcatalan/textures/circle.tga b/indra/newview/skins/darkcatalan/textures/circle.tga new file mode 100644 index 000000000..d7097e3a3 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/circle.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/close_in_blue.tga b/indra/newview/skins/darkcatalan/textures/close_in_blue.tga new file mode 100644 index 000000000..8200eba32 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/close_in_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/close_inactive_blue.tga b/indra/newview/skins/darkcatalan/textures/close_inactive_blue.tga new file mode 100644 index 000000000..191c5d3e8 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/close_inactive_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/closebox.tga b/indra/newview/skins/darkcatalan/textures/closebox.tga new file mode 100644 index 000000000..294d4fb24 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/closebox.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/color_swatch_alpha.tga b/indra/newview/skins/darkcatalan/textures/color_swatch_alpha.tga new file mode 100644 index 000000000..814a004e6 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/color_swatch_alpha.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/combobox_arrow.tga b/indra/newview/skins/darkcatalan/textures/combobox_arrow.tga new file mode 100644 index 000000000..ad08f32bb Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/combobox_arrow.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/crosshairs.tga b/indra/newview/skins/darkcatalan/textures/crosshairs.tga new file mode 100644 index 000000000..ac4d63dc5 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/crosshairs.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/darkgray.tga b/indra/newview/skins/darkcatalan/textures/darkgray.tga new file mode 100644 index 000000000..2063d685a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/darkgray.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/direction_arrow.tga b/indra/newview/skins/darkcatalan/textures/direction_arrow.tga new file mode 100644 index 000000000..496658818 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/direction_arrow.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/down_arrow.png b/indra/newview/skins/darkcatalan/textures/down_arrow.png new file mode 100644 index 000000000..155f80c97 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/down_arrow.png differ diff --git a/indra/newview/skins/darkcatalan/textures/e3369e02-93e1-43dc-b9c0-4533db0963d0.tga b/indra/newview/skins/darkcatalan/textures/e3369e02-93e1-43dc-b9c0-4533db0963d0.tga new file mode 100644 index 000000000..0d127f946 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/e3369e02-93e1-43dc-b9c0-4533db0963d0.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga b/indra/newview/skins/darkcatalan/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga new file mode 100644 index 000000000..6fdba25d4 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/eye_button_active.tga b/indra/newview/skins/darkcatalan/textures/eye_button_active.tga new file mode 100644 index 000000000..1bbacb4b7 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/eye_button_inactive.tga b/indra/newview/skins/darkcatalan/textures/eye_button_inactive.tga new file mode 100644 index 000000000..6cefcabf8 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/eye_button_inactive.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/f9bbb2fe-584b-4c01-86fc-599c69534c1b.tga b/indra/newview/skins/darkcatalan/textures/f9bbb2fe-584b-4c01-86fc-599c69534c1b.tga new file mode 100644 index 000000000..3706c96e0 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/f9bbb2fe-584b-4c01-86fc-599c69534c1b.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/darkcatalan/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..96f308ebb Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/ff_edit_mine.tga b/indra/newview/skins/darkcatalan/textures/ff_edit_mine.tga new file mode 100644 index 000000000..a386a1248 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/ff_edit_mine.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/ff_edit_mine_button.tga b/indra/newview/skins/darkcatalan/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..d1160dbe4 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/ff_edit_theirs.tga b/indra/newview/skins/darkcatalan/textures/ff_edit_theirs.tga new file mode 100644 index 000000000..81bd6b390 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/ff_edit_theirs.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/ff_edit_theirs_button.tga b/indra/newview/skins/darkcatalan/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..e88452b25 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/ff_online_status_button.tga b/indra/newview/skins/darkcatalan/textures/ff_online_status_button.tga new file mode 100644 index 000000000..4a69b6bce Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/ff_visible_map.tga b/indra/newview/skins/darkcatalan/textures/ff_visible_map.tga new file mode 100644 index 000000000..eafdaf13a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/ff_visible_map.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/ff_visible_map_button.tga b/indra/newview/skins/darkcatalan/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..77ccfe45c Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/ff_visible_online.tga b/indra/newview/skins/darkcatalan/textures/ff_visible_online.tga new file mode 100644 index 000000000..edf05fb21 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/ff_visible_online.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/ff_visible_online_button.tga b/indra/newview/skins/darkcatalan/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..c6665d488 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/flag_blue.tga b/indra/newview/skins/darkcatalan/textures/flag_blue.tga new file mode 100644 index 000000000..e61e7a912 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/flag_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/flag_green.tga b/indra/newview/skins/darkcatalan/textures/flag_green.tga new file mode 100644 index 000000000..5f0f05c24 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/flag_green.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/flag_orange.tga b/indra/newview/skins/darkcatalan/textures/flag_orange.tga new file mode 100644 index 000000000..6e73c31b5 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/flag_orange.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/flag_pink.tga b/indra/newview/skins/darkcatalan/textures/flag_pink.tga new file mode 100644 index 000000000..ccf52b9a4 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/flag_pink.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/flag_purple.tga b/indra/newview/skins/darkcatalan/textures/flag_purple.tga new file mode 100644 index 000000000..3ef8f0921 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/flag_purple.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/flag_red.tga b/indra/newview/skins/darkcatalan/textures/flag_red.tga new file mode 100644 index 000000000..87afb595a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/flag_red.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/flag_yellow.tga b/indra/newview/skins/darkcatalan/textures/flag_yellow.tga new file mode 100644 index 000000000..4c4a64768 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/flag_yellow.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/flyout_btn_left.tga b/indra/newview/skins/darkcatalan/textures/flyout_btn_left.tga new file mode 100644 index 000000000..5d48aa081 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/darkcatalan/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..a4edec715 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/flyout_btn_left_selected.tga b/indra/newview/skins/darkcatalan/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..d8d1ebaf5 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/flyout_btn_right.tga b/indra/newview/skins/darkcatalan/textures/flyout_btn_right.tga new file mode 100644 index 000000000..6f715d6ec Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/darkcatalan/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..f76485480 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/flyout_btn_right_selected.tga b/indra/newview/skins/darkcatalan/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..bd543c53d Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/folder_arrow.tga b/indra/newview/skins/darkcatalan/textures/folder_arrow.tga new file mode 100644 index 000000000..77d470731 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/folder_arrow.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_active-speakers-dot-lvl0.tga b/indra/newview/skins/darkcatalan/textures/icn_active-speakers-dot-lvl0.tga new file mode 100644 index 000000000..35846cef3 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_active-speakers-dot-lvl0.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_active-speakers-dot-lvl1.tga b/indra/newview/skins/darkcatalan/textures/icn_active-speakers-dot-lvl1.tga new file mode 100644 index 000000000..1f9f564fa Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_active-speakers-dot-lvl1.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_active-speakers-dot-lvl2.tga b/indra/newview/skins/darkcatalan/textures/icn_active-speakers-dot-lvl2.tga new file mode 100644 index 000000000..b2e5609f1 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_active-speakers-dot-lvl2.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_active-speakers-typing1.tga b/indra/newview/skins/darkcatalan/textures/icn_active-speakers-typing1.tga new file mode 100644 index 000000000..3706c96e0 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_active-speakers-typing1.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_active-speakers-typing2.tga b/indra/newview/skins/darkcatalan/textures/icn_active-speakers-typing2.tga new file mode 100644 index 000000000..0d127f946 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_active-speakers-typing2.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_active-speakers-typing3.tga b/indra/newview/skins/darkcatalan/textures/icn_active-speakers-typing3.tga new file mode 100644 index 000000000..031b3ad34 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_active-speakers-typing3.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_chat_overlay.tga b/indra/newview/skins/darkcatalan/textures/icn_chat_overlay.tga new file mode 100644 index 000000000..e3fc83c9f Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_chat_overlay.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_chatbar.tga b/indra/newview/skins/darkcatalan/textures/icn_chatbar.tga new file mode 100644 index 000000000..221dc9dc7 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_chatbar.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_clear_lineeditor.tga b/indra/newview/skins/darkcatalan/textures/icn_clear_lineeditor.tga new file mode 100644 index 000000000..8cd8310c6 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_clear_lineeditor.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_label_media.tga b/indra/newview/skins/darkcatalan/textures/icn_label_media.tga new file mode 100644 index 000000000..6fa60f094 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_label_media.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_label_music.tga b/indra/newview/skins/darkcatalan/textures/icn_label_music.tga new file mode 100644 index 000000000..df23ce67f Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_label_web.tga b/indra/newview/skins/darkcatalan/textures/icn_label_web.tga new file mode 100644 index 000000000..b2ee3bbc3 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_media-pause.tga b/indra/newview/skins/darkcatalan/textures/icn_media-pause.tga new file mode 100644 index 000000000..d940faab9 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_media-pause_active.tga b/indra/newview/skins/darkcatalan/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..adced5208 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_media-pause_disabled.tga b/indra/newview/skins/darkcatalan/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..ae54a1f25 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_media-pause_enabled.tga b/indra/newview/skins/darkcatalan/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..696137a36 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_media-play.tga b/indra/newview/skins/darkcatalan/textures/icn_media-play.tga new file mode 100644 index 000000000..3aa44e5a1 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_media-play.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_media-play_active.tga b/indra/newview/skins/darkcatalan/textures/icn_media-play_active.tga new file mode 100644 index 000000000..3989508d8 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_media-play_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_media-play_disabled.tga b/indra/newview/skins/darkcatalan/textures/icn_media-play_disabled.tga new file mode 100644 index 000000000..058792ead Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_media-play_disabled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_media-play_enabled.tga b/indra/newview/skins/darkcatalan/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..feecf4d9b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_media-stop_active.tga b/indra/newview/skins/darkcatalan/textures/icn_media-stop_active.tga new file mode 100644 index 000000000..31b8bf6c6 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_media-stop_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_media-stop_disabled.tga b/indra/newview/skins/darkcatalan/textures/icn_media-stop_disabled.tga new file mode 100644 index 000000000..4f3aaa888 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_media-stop_disabled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_media-stop_enabled.tga b/indra/newview/skins/darkcatalan/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..3f31d588b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_media.tga b/indra/newview/skins/darkcatalan/textures/icn_media.tga new file mode 100644 index 000000000..6fa60f094 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_media.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_media_movie.tga b/indra/newview/skins/darkcatalan/textures/icn_media_movie.tga new file mode 100644 index 000000000..6fa60f094 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_media_web.tga b/indra/newview/skins/darkcatalan/textures/icn_media_web.tga new file mode 100644 index 000000000..b2ee3bbc3 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_music-pause.tga b/indra/newview/skins/darkcatalan/textures/icn_music-pause.tga new file mode 100644 index 000000000..1735dbe45 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_music-play.tga b/indra/newview/skins/darkcatalan/textures/icn_music-play.tga new file mode 100644 index 000000000..9eca4af88 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_music.tga b/indra/newview/skins/darkcatalan/textures/icn_music.tga new file mode 100644 index 000000000..df23ce67f Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_music.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_pause.tga b/indra/newview/skins/darkcatalan/textures/icn_pause.tga new file mode 100644 index 000000000..567b1c0c6 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_pause.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_play.tga b/indra/newview/skins/darkcatalan/textures/icn_play.tga new file mode 100644 index 000000000..c1335a867 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_play.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_rounded-text-field.tga b/indra/newview/skins/darkcatalan/textures/icn_rounded-text-field.tga new file mode 100644 index 000000000..7da504f93 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_rounded-text-field.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_scrollbar.tga b/indra/newview/skins/darkcatalan/textures/icn_scrollbar.tga new file mode 100644 index 000000000..a19a8a5d1 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_scrollbar.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_scrollbar_bg.tga b/indra/newview/skins/darkcatalan/textures/icn_scrollbar_bg.tga new file mode 100644 index 000000000..1e4bc7a8a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_scrollbar_bg.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_scrollbar_thumb.tga b/indra/newview/skins/darkcatalan/textures/icn_scrollbar_thumb.tga new file mode 100644 index 000000000..d63c31472 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_scrollbar_thumb.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_slide-groove_dark.tga b/indra/newview/skins/darkcatalan/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..0021ad9d4 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_slide-highlight.tga b/indra/newview/skins/darkcatalan/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..d4e81d833 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/darkcatalan/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..1a2c625d0 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/darkcatalan/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..a7d29a14b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_speaker_dark.tga b/indra/newview/skins/darkcatalan/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..b0a5936fd Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_stop.tga b/indra/newview/skins/darkcatalan/textures/icn_stop.tga new file mode 100644 index 000000000..f8575b9ee Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_stop.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_textfield_enabled.tga b/indra/newview/skins/darkcatalan/textures/icn_textfield_enabled.tga new file mode 100644 index 000000000..fc681a195 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_textfield_enabled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_toolbar_build.tga b/indra/newview/skins/darkcatalan/textures/icn_toolbar_build.tga new file mode 100644 index 000000000..f585a7181 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_toolbar_build.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_toolbar_fly.tga b/indra/newview/skins/darkcatalan/textures/icn_toolbar_fly.tga new file mode 100644 index 000000000..d6822828c Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_toolbar_fly.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_toolbar_inventory.tga b/indra/newview/skins/darkcatalan/textures/icn_toolbar_inventory.tga new file mode 100644 index 000000000..21b1f944a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_toolbar_inventory.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_toolbar_map.tga b/indra/newview/skins/darkcatalan/textures/icn_toolbar_map.tga new file mode 100644 index 000000000..44c1b9645 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_toolbar_map.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_toolbar_minimap.tga b/indra/newview/skins/darkcatalan/textures/icn_toolbar_minimap.tga new file mode 100644 index 000000000..e18683cd0 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_toolbar_minimap.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_toolbar_radar.tga b/indra/newview/skins/darkcatalan/textures/icn_toolbar_radar.tga new file mode 100644 index 000000000..bc17b03b5 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_toolbar_radar.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_toolbar_search.tga b/indra/newview/skins/darkcatalan/textures/icn_toolbar_search.tga new file mode 100644 index 000000000..71c1a36a5 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_toolbar_search.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_toolbar_snapshot.tga b/indra/newview/skins/darkcatalan/textures/icn_toolbar_snapshot.tga new file mode 100644 index 000000000..be3f61205 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_toolbar_snapshot.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_voice-call-end.tga b/indra/newview/skins/darkcatalan/textures/icn_voice-call-end.tga new file mode 100644 index 000000000..2da4e856b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_voice-call-end.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_voice-call-start.tga b/indra/newview/skins/darkcatalan/textures/icn_voice-call-start.tga new file mode 100644 index 000000000..07701cb5a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_voice-call-start.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_voice-groupfocus.tga b/indra/newview/skins/darkcatalan/textures/icn_voice-groupfocus.tga new file mode 100644 index 000000000..9f48d4609 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_voice-groupfocus.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_voice-localchat.tga b/indra/newview/skins/darkcatalan/textures/icn_voice-localchat.tga new file mode 100644 index 000000000..56a869b78 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_voice-localchat.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_voice-pvtfocus.tga b/indra/newview/skins/darkcatalan/textures/icn_voice-pvtfocus.tga new file mode 100644 index 000000000..abadb09aa Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_voice-pvtfocus.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-off.tga b/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-off.tga new file mode 100644 index 000000000..07616f17f Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-off.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-on-lvl1.tga b/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-on-lvl1.tga new file mode 100644 index 000000000..ae72af131 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-on-lvl1.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-on-lvl2.tga b/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-on-lvl2.tga new file mode 100644 index 000000000..4dfc2dd29 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-on-lvl2.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-on-lvl3.tga b/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-on-lvl3.tga new file mode 100644 index 000000000..018b0bef4 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-on-lvl3.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-on.tga b/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-on.tga new file mode 100644 index 000000000..9eb643110 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icn_voice_ptt-on.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_auction.tga b/indra/newview/skins/darkcatalan/textures/icon_auction.tga new file mode 100644 index 000000000..d121833b4 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_auction.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_avatar_expand.png b/indra/newview/skins/darkcatalan/textures/icon_avatar_expand.png new file mode 100644 index 000000000..47698e9eb Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_avatar_expand.png differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_avatar_offline.tga b/indra/newview/skins/darkcatalan/textures/icon_avatar_offline.tga new file mode 100644 index 000000000..d139d7f4e Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_avatar_offline.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_avatar_online.tga b/indra/newview/skins/darkcatalan/textures/icon_avatar_online.tga new file mode 100644 index 000000000..9709a9d15 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_avatar_online.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_day_cycle.tga b/indra/newview/skins/darkcatalan/textures/icon_day_cycle.tga new file mode 100644 index 000000000..2d5dee1e9 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_day_cycle.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_diurnal.tga b/indra/newview/skins/darkcatalan/textures/icon_diurnal.tga new file mode 100644 index 000000000..fc720c826 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_diurnal.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_event.tga b/indra/newview/skins/darkcatalan/textures/icon_event.tga new file mode 100644 index 000000000..7805dbce6 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_event.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_event_mature.tga b/indra/newview/skins/darkcatalan/textures/icon_event_mature.tga new file mode 100644 index 000000000..61c879bc9 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_event_mature.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_for_sale.tga b/indra/newview/skins/darkcatalan/textures/icon_for_sale.tga new file mode 100644 index 000000000..455b1aeb1 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_for_sale.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_group.tga b/indra/newview/skins/darkcatalan/textures/icon_group.tga new file mode 100644 index 000000000..22122d6cf Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_group.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_groupnotice.tga b/indra/newview/skins/darkcatalan/textures/icon_groupnotice.tga new file mode 100644 index 000000000..edf2c6180 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_groupnotice.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_groupnoticeinventory.tga b/indra/newview/skins/darkcatalan/textures/icon_groupnoticeinventory.tga new file mode 100644 index 000000000..f31390632 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_groupnoticeinventory.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_lock.tga b/indra/newview/skins/darkcatalan/textures/icon_lock.tga new file mode 100644 index 000000000..23521aa11 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_lock.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_place.tga b/indra/newview/skins/darkcatalan/textures/icon_place.tga new file mode 100644 index 000000000..2170c9849 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_place.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_popular.tga b/indra/newview/skins/darkcatalan/textures/icon_popular.tga new file mode 100644 index 000000000..f1165b8aa Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_popular.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/icon_top_pick.tga b/indra/newview/skins/darkcatalan/textures/icon_top_pick.tga new file mode 100644 index 000000000..7fe119a81 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/icon_top_pick.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/info_error.tga b/indra/newview/skins/darkcatalan/textures/info_error.tga new file mode 100644 index 000000000..d5d71ad95 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/info_error.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/info_fetching.tga b/indra/newview/skins/darkcatalan/textures/info_fetching.tga new file mode 100644 index 000000000..d9faa4014 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/info_fetching.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/info_unknown.tga b/indra/newview/skins/darkcatalan/textures/info_unknown.tga new file mode 100644 index 000000000..b04e4b064 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/info_unknown.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_animation.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_animation.tga new file mode 100644 index 000000000..1b4df7a2d Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_animation.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_bodypart.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_bodypart.tga new file mode 100644 index 000000000..abcb1bda7 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_bodypart.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_callingcard.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_callingcard.tga new file mode 100644 index 000000000..db7d8f7b0 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_callingcard.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_clothing.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_clothing.tga new file mode 100644 index 000000000..d214789cb Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_clothing.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_gesture.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_gesture.tga new file mode 100644 index 000000000..83accbb1e Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_gesture.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_landmark.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_landmark.tga new file mode 100644 index 000000000..6923dd228 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_landmark.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_lostandfound.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_lostandfound.tga new file mode 100644 index 000000000..67f9a9a83 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_lostandfound.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_notecard.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_notecard.tga new file mode 100644 index 000000000..400ef3cc4 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_notecard.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_object.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_object.tga new file mode 100644 index 000000000..c3d04bf27 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_object.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_plain_closed.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_plain_closed.tga new file mode 100644 index 000000000..e351836e2 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_plain_closed.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_plain_open.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_plain_open.tga new file mode 100644 index 000000000..7bc80347b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_plain_open.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_script.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_script.tga new file mode 100644 index 000000000..3e1a164da Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_script.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_snapshot.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_snapshot.tga new file mode 100644 index 000000000..d32538d9c Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_snapshot.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_sound.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_sound.tga new file mode 100644 index 000000000..5e54c4774 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_sound.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_texture.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_texture.tga new file mode 100644 index 000000000..4fe75d07d Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_texture.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_folder_trash.tga b/indra/newview/skins/darkcatalan/textures/inv_folder_trash.tga new file mode 100644 index 000000000..54043e9cf Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_folder_trash.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_animation.tga b/indra/newview/skins/darkcatalan/textures/inv_item_animation.tga new file mode 100644 index 000000000..2b12b2809 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_animation.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_attach.tga b/indra/newview/skins/darkcatalan/textures/inv_item_attach.tga new file mode 100644 index 000000000..053899332 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_attach.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_callingcard_offline.tga b/indra/newview/skins/darkcatalan/textures/inv_item_callingcard_offline.tga new file mode 100644 index 000000000..44222d306 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_callingcard_offline.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_callingcard_online.tga b/indra/newview/skins/darkcatalan/textures/inv_item_callingcard_online.tga new file mode 100644 index 000000000..42be4d2e1 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_callingcard_online.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_clothing.tga b/indra/newview/skins/darkcatalan/textures/inv_item_clothing.tga new file mode 100644 index 000000000..4c4c9391b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_clothing.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_eyes.tga b/indra/newview/skins/darkcatalan/textures/inv_item_eyes.tga new file mode 100644 index 000000000..053ffbe23 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_eyes.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_gesture.tga b/indra/newview/skins/darkcatalan/textures/inv_item_gesture.tga new file mode 100644 index 000000000..52ac90c90 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_gesture.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_gloves.tga b/indra/newview/skins/darkcatalan/textures/inv_item_gloves.tga new file mode 100644 index 000000000..26041711b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_gloves.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_hair.tga b/indra/newview/skins/darkcatalan/textures/inv_item_hair.tga new file mode 100644 index 000000000..03156a7b7 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_hair.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_jacket.tga b/indra/newview/skins/darkcatalan/textures/inv_item_jacket.tga new file mode 100644 index 000000000..f37c593d8 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_jacket.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_landmark.tga b/indra/newview/skins/darkcatalan/textures/inv_item_landmark.tga new file mode 100644 index 000000000..c161deb38 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_landmark.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_landmark_visited.tga b/indra/newview/skins/darkcatalan/textures/inv_item_landmark_visited.tga new file mode 100644 index 000000000..372a0f63f Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_landmark_visited.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_notecard.tga b/indra/newview/skins/darkcatalan/textures/inv_item_notecard.tga new file mode 100644 index 000000000..2534d1b2a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_notecard.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_object.tga b/indra/newview/skins/darkcatalan/textures/inv_item_object.tga new file mode 100644 index 000000000..edad15fdc Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_object.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_object_multi.tga b/indra/newview/skins/darkcatalan/textures/inv_item_object_multi.tga new file mode 100644 index 000000000..7af666b61 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_object_multi.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_pants.tga b/indra/newview/skins/darkcatalan/textures/inv_item_pants.tga new file mode 100644 index 000000000..ec3246ea7 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_pants.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_script.tga b/indra/newview/skins/darkcatalan/textures/inv_item_script.tga new file mode 100644 index 000000000..e396d0986 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_script.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_script_dangerous.tga b/indra/newview/skins/darkcatalan/textures/inv_item_script_dangerous.tga new file mode 100644 index 000000000..1ee742a8b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_script_dangerous.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_shape.tga b/indra/newview/skins/darkcatalan/textures/inv_item_shape.tga new file mode 100644 index 000000000..5d9db4e44 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_shape.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_shirt.tga b/indra/newview/skins/darkcatalan/textures/inv_item_shirt.tga new file mode 100644 index 000000000..2e1c627da Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_shirt.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_shoes.tga b/indra/newview/skins/darkcatalan/textures/inv_item_shoes.tga new file mode 100644 index 000000000..ae93bfe70 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_shoes.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_skin.tga b/indra/newview/skins/darkcatalan/textures/inv_item_skin.tga new file mode 100644 index 000000000..f0d7f2059 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_skin.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_skirt.tga b/indra/newview/skins/darkcatalan/textures/inv_item_skirt.tga new file mode 100644 index 000000000..d8f397285 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_skirt.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_snapshot.tga b/indra/newview/skins/darkcatalan/textures/inv_item_snapshot.tga new file mode 100644 index 000000000..c9d41a68d Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_snapshot.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_socks.tga b/indra/newview/skins/darkcatalan/textures/inv_item_socks.tga new file mode 100644 index 000000000..dabcf6d82 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_socks.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_sound.tga b/indra/newview/skins/darkcatalan/textures/inv_item_sound.tga new file mode 100644 index 000000000..efa113226 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_sound.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_texture.tga b/indra/newview/skins/darkcatalan/textures/inv_item_texture.tga new file mode 100644 index 000000000..fc5a42061 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_texture.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_underpants.tga b/indra/newview/skins/darkcatalan/textures/inv_item_underpants.tga new file mode 100644 index 000000000..e712f9c5d Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_underpants.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/inv_item_undershirt.tga b/indra/newview/skins/darkcatalan/textures/inv_item_undershirt.tga new file mode 100644 index 000000000..c7b4aae78 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/inv_item_undershirt.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/lag_status_critical.tga b/indra/newview/skins/darkcatalan/textures/lag_status_critical.tga new file mode 100644 index 000000000..bbc71d9e7 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/lag_status_critical.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/lag_status_good.tga b/indra/newview/skins/darkcatalan/textures/lag_status_good.tga new file mode 100644 index 000000000..680ba90f1 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/lag_status_good.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/lag_status_warning.tga b/indra/newview/skins/darkcatalan/textures/lag_status_warning.tga new file mode 100644 index 000000000..13ce3cc39 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/lag_status_warning.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/legend.tga b/indra/newview/skins/darkcatalan/textures/legend.tga new file mode 100644 index 000000000..0dbb8fda4 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/legend.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/lightgray.tga b/indra/newview/skins/darkcatalan/textures/lightgray.tga new file mode 100644 index 000000000..2063d685a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/lightgray.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_avatar_16.tga b/indra/newview/skins/darkcatalan/textures/map_avatar_16.tga new file mode 100644 index 000000000..ce129e359 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_avatar_16.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_avatar_32.tga b/indra/newview/skins/darkcatalan/textures/map_avatar_32.tga new file mode 100644 index 000000000..aebeab409 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_avatar_32.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_avatar_8.tga b/indra/newview/skins/darkcatalan/textures/map_avatar_8.tga new file mode 100644 index 000000000..28552f223 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_avatar_8.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_avatar_above_32.tga b/indra/newview/skins/darkcatalan/textures/map_avatar_above_32.tga new file mode 100644 index 000000000..6fa1ddb50 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_avatar_above_32.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_avatar_above_8.tga b/indra/newview/skins/darkcatalan/textures/map_avatar_above_8.tga new file mode 100644 index 000000000..59b4c8565 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_avatar_above_8.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_avatar_below_32.tga b/indra/newview/skins/darkcatalan/textures/map_avatar_below_32.tga new file mode 100644 index 000000000..f7700282b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_avatar_below_32.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_avatar_below_8.tga b/indra/newview/skins/darkcatalan/textures/map_avatar_below_8.tga new file mode 100644 index 000000000..a95ad3420 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_avatar_below_8.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_avatar_you_32.tga b/indra/newview/skins/darkcatalan/textures/map_avatar_you_32.tga new file mode 100644 index 000000000..782207efd Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_avatar_you_32.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_avatar_you_8.tga b/indra/newview/skins/darkcatalan/textures/map_avatar_you_8.tga new file mode 100644 index 000000000..61f319fd9 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_avatar_you_8.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_event.tga b/indra/newview/skins/darkcatalan/textures/map_event.tga new file mode 100644 index 000000000..c229b379a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_event.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_event_mature.tga b/indra/newview/skins/darkcatalan/textures/map_event_mature.tga new file mode 100644 index 000000000..61c879bc9 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_event_mature.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_home.tga b/indra/newview/skins/darkcatalan/textures/map_home.tga new file mode 100644 index 000000000..7478de371 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_home.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_infohub.tga b/indra/newview/skins/darkcatalan/textures/map_infohub.tga new file mode 100644 index 000000000..d0134fa5f Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_infohub.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_telehub.tga b/indra/newview/skins/darkcatalan/textures/map_telehub.tga new file mode 100644 index 000000000..ef63a3eb7 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_telehub.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_track_16.tga b/indra/newview/skins/darkcatalan/textures/map_track_16.tga new file mode 100644 index 000000000..451ce24cf Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_track_16.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/map_track_8.tga b/indra/newview/skins/darkcatalan/textures/map_track_8.tga new file mode 100644 index 000000000..53425ff45 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/map_track_8.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/media_icon.tga b/indra/newview/skins/darkcatalan/textures/media_icon.tga new file mode 100644 index 000000000..289520cde Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/media_icon.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/minimize.tga b/indra/newview/skins/darkcatalan/textures/minimize.tga new file mode 100644 index 000000000..a21fd9148 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/minimize.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/minimize_inactive.tga b/indra/newview/skins/darkcatalan/textures/minimize_inactive.tga new file mode 100644 index 000000000..fcd62aa35 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/minimize_inactive.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/minimize_pressed.tga b/indra/newview/skins/darkcatalan/textures/minimize_pressed.tga new file mode 100644 index 000000000..0061dd5f5 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/minimize_pressed.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/missing_asset.tga b/indra/newview/skins/darkcatalan/textures/missing_asset.tga new file mode 100644 index 000000000..9a43f4db5 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/missing_asset.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_backward_in.tga b/indra/newview/skins/darkcatalan/textures/move_backward_in.tga new file mode 100644 index 000000000..60c42a3db Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_backward_out.tga b/indra/newview/skins/darkcatalan/textures/move_backward_out.tga new file mode 100644 index 000000000..7924b16f9 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_down_in.tga b/indra/newview/skins/darkcatalan/textures/move_down_in.tga new file mode 100644 index 000000000..9e9294675 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_down_in.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_down_out.tga b/indra/newview/skins/darkcatalan/textures/move_down_out.tga new file mode 100644 index 000000000..4a140a445 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_down_out.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_forward_in.tga b/indra/newview/skins/darkcatalan/textures/move_forward_in.tga new file mode 100644 index 000000000..55b6ad443 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_forward_out.tga b/indra/newview/skins/darkcatalan/textures/move_forward_out.tga new file mode 100644 index 000000000..4506ce406 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_left_in.tga b/indra/newview/skins/darkcatalan/textures/move_left_in.tga new file mode 100644 index 000000000..e62af31ae Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_left_in.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_left_out.tga b/indra/newview/skins/darkcatalan/textures/move_left_out.tga new file mode 100644 index 000000000..354108834 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_left_out.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_right_in.tga b/indra/newview/skins/darkcatalan/textures/move_right_in.tga new file mode 100644 index 000000000..79d8dd99d Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_right_in.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_right_out.tga b/indra/newview/skins/darkcatalan/textures/move_right_out.tga new file mode 100644 index 000000000..7d4e91eb4 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_right_out.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_turn_left_in.tga b/indra/newview/skins/darkcatalan/textures/move_turn_left_in.tga new file mode 100644 index 000000000..da2a63a26 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_turn_left_out.tga b/indra/newview/skins/darkcatalan/textures/move_turn_left_out.tga new file mode 100644 index 000000000..0ebeea6db Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_turn_right_in.tga b/indra/newview/skins/darkcatalan/textures/move_turn_right_in.tga new file mode 100644 index 000000000..c72186c1b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_turn_right_out.tga b/indra/newview/skins/darkcatalan/textures/move_turn_right_out.tga new file mode 100644 index 000000000..b0a959c10 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_up_in.tga b/indra/newview/skins/darkcatalan/textures/move_up_in.tga new file mode 100644 index 000000000..e785285cd Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_up_in.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/move_up_out.tga b/indra/newview/skins/darkcatalan/textures/move_up_out.tga new file mode 100644 index 000000000..536d7929a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/move_up_out.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/music_icon.tga b/indra/newview/skins/darkcatalan/textures/music_icon.tga new file mode 100644 index 000000000..aeaff02e0 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/music_icon.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/mute_icon.tga b/indra/newview/skins/darkcatalan/textures/mute_icon.tga new file mode 100644 index 000000000..879b9e618 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/mute_icon.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/notify_box_icon.tga b/indra/newview/skins/darkcatalan/textures/notify_box_icon.tga new file mode 100644 index 000000000..f6e5b93f5 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/notify_box_icon.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/notify_caution_icon.tga b/indra/newview/skins/darkcatalan/textures/notify_caution_icon.tga new file mode 100644 index 000000000..48c76ad91 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/notify_caution_icon.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/notify_next.png b/indra/newview/skins/darkcatalan/textures/notify_next.png new file mode 100644 index 000000000..6faa14a99 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/notify_next.png differ diff --git a/indra/newview/skins/darkcatalan/textures/notify_tip_icon.tga b/indra/newview/skins/darkcatalan/textures/notify_tip_icon.tga new file mode 100644 index 000000000..45f791e5f Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/notify_tip_icon.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_cone.tga b/indra/newview/skins/darkcatalan/textures/object_cone.tga new file mode 100644 index 000000000..3e02ab038 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_cone.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_cone_active.tga b/indra/newview/skins/darkcatalan/textures/object_cone_active.tga new file mode 100644 index 000000000..22c9cedc6 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_cone_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_cube.tga b/indra/newview/skins/darkcatalan/textures/object_cube.tga new file mode 100644 index 000000000..d062c567b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_cube.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_cube_active.tga b/indra/newview/skins/darkcatalan/textures/object_cube_active.tga new file mode 100644 index 000000000..8aee65371 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_cube_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_cylinder.tga b/indra/newview/skins/darkcatalan/textures/object_cylinder.tga new file mode 100644 index 000000000..061f52792 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_cylinder.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_cylinder_active.tga b/indra/newview/skins/darkcatalan/textures/object_cylinder_active.tga new file mode 100644 index 000000000..356c4d38e Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_cylinder_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_grass.tga b/indra/newview/skins/darkcatalan/textures/object_grass.tga new file mode 100644 index 000000000..a4520e750 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_grass.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_grass_active.tga b/indra/newview/skins/darkcatalan/textures/object_grass_active.tga new file mode 100644 index 000000000..427d1f06e Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_grass_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_hemi_cone.tga b/indra/newview/skins/darkcatalan/textures/object_hemi_cone.tga new file mode 100644 index 000000000..5f4619fc2 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_hemi_cone.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_hemi_cone_active.tga b/indra/newview/skins/darkcatalan/textures/object_hemi_cone_active.tga new file mode 100644 index 000000000..546ec6b6d Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_hemi_cone_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_hemi_cylinder.tga b/indra/newview/skins/darkcatalan/textures/object_hemi_cylinder.tga new file mode 100644 index 000000000..b69bce638 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_hemi_cylinder.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_hemi_cylinder_active.tga b/indra/newview/skins/darkcatalan/textures/object_hemi_cylinder_active.tga new file mode 100644 index 000000000..231d9f43d Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_hemi_cylinder_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_hemi_sphere.tga b/indra/newview/skins/darkcatalan/textures/object_hemi_sphere.tga new file mode 100644 index 000000000..1335977be Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_hemi_sphere.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_hemi_sphere_active.tga b/indra/newview/skins/darkcatalan/textures/object_hemi_sphere_active.tga new file mode 100644 index 000000000..f4a615fbd Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_hemi_sphere_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_prism.tga b/indra/newview/skins/darkcatalan/textures/object_prism.tga new file mode 100644 index 000000000..836bbdccb Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_prism.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_prism_active.tga b/indra/newview/skins/darkcatalan/textures/object_prism_active.tga new file mode 100644 index 000000000..05588d82b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_prism_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_pyramid.tga b/indra/newview/skins/darkcatalan/textures/object_pyramid.tga new file mode 100644 index 000000000..fad84f1fe Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_pyramid.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_pyramid_active.tga b/indra/newview/skins/darkcatalan/textures/object_pyramid_active.tga new file mode 100644 index 000000000..fe45b6e3a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_pyramid_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_ring.tga b/indra/newview/skins/darkcatalan/textures/object_ring.tga new file mode 100644 index 000000000..82854d65f Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_ring.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_ring_active.tga b/indra/newview/skins/darkcatalan/textures/object_ring_active.tga new file mode 100644 index 000000000..f477f82fe Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_ring_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_sphere.tga b/indra/newview/skins/darkcatalan/textures/object_sphere.tga new file mode 100644 index 000000000..0762a4e2d Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_sphere.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_sphere_active.tga b/indra/newview/skins/darkcatalan/textures/object_sphere_active.tga new file mode 100644 index 000000000..213e7010d Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_sphere_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_tetrahedron.tga b/indra/newview/skins/darkcatalan/textures/object_tetrahedron.tga new file mode 100644 index 000000000..267ce7a07 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_tetrahedron.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_tetrahedron_active.tga b/indra/newview/skins/darkcatalan/textures/object_tetrahedron_active.tga new file mode 100644 index 000000000..16e1f2e0c Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_tetrahedron_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_torus.tga b/indra/newview/skins/darkcatalan/textures/object_torus.tga new file mode 100644 index 000000000..4cba84de0 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_torus.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_torus_active.tga b/indra/newview/skins/darkcatalan/textures/object_torus_active.tga new file mode 100644 index 000000000..56273a566 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_torus_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_tree.tga b/indra/newview/skins/darkcatalan/textures/object_tree.tga new file mode 100644 index 000000000..2e43c70bb Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_tree.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_tree_active.tga b/indra/newview/skins/darkcatalan/textures/object_tree_active.tga new file mode 100644 index 000000000..b43e6f28d Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_tree_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_tube.tga b/indra/newview/skins/darkcatalan/textures/object_tube.tga new file mode 100644 index 000000000..19ad1cb8b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_tube.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/object_tube_active.tga b/indra/newview/skins/darkcatalan/textures/object_tube_active.tga new file mode 100644 index 000000000..26a2966a0 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/object_tube_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/payment_info_charter.tga b/indra/newview/skins/darkcatalan/textures/payment_info_charter.tga new file mode 100644 index 000000000..6205da7b4 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/payment_info_charter.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/payment_info_filled.tga b/indra/newview/skins/darkcatalan/textures/payment_info_filled.tga new file mode 100644 index 000000000..65e619692 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/payment_info_filled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/payment_info_used.tga b/indra/newview/skins/darkcatalan/textures/payment_info_used.tga new file mode 100644 index 000000000..345b3b302 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/payment_info_used.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/preview.png b/indra/newview/skins/darkcatalan/textures/preview.png new file mode 100644 index 000000000..2a9a6f579 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/preview.png differ diff --git a/indra/newview/skins/darkcatalan/textures/progress_fill.tga b/indra/newview/skins/darkcatalan/textures/progress_fill.tga new file mode 100644 index 000000000..5c618cd12 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/progress_fill.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/progressbar_fill.tga b/indra/newview/skins/darkcatalan/textures/progressbar_fill.tga new file mode 100644 index 000000000..0981e756f Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/progressbar_track.tga b/indra/newview/skins/darkcatalan/textures/progressbar_track.tga new file mode 100644 index 000000000..6ced1d839 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/propertyline.tga b/indra/newview/skins/darkcatalan/textures/propertyline.tga new file mode 100644 index 000000000..0c504eea7 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/propertyline.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/ptt_lock_off.tga b/indra/newview/skins/darkcatalan/textures/ptt_lock_off.tga new file mode 100644 index 000000000..8acf031ab Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/ptt_lock_off.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/ptt_lock_on.tga b/indra/newview/skins/darkcatalan/textures/ptt_lock_on.tga similarity index 100% rename from indra/newview/skins/white_emerald/Textures/ptt_lock_on.tga rename to indra/newview/skins/darkcatalan/textures/ptt_lock_on.tga diff --git a/indra/newview/skins/darkcatalan/textures/radio_active_false.tga b/indra/newview/skins/darkcatalan/textures/radio_active_false.tga new file mode 100644 index 000000000..8a3e38dea Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/radio_active_false.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/radio_active_true.tga b/indra/newview/skins/darkcatalan/textures/radio_active_true.tga new file mode 100644 index 000000000..ecbeffb24 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/radio_active_true.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/radio_inactive_false.tga b/indra/newview/skins/darkcatalan/textures/radio_inactive_false.tga new file mode 100644 index 000000000..748f00935 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/radio_inactive_false.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/radio_inactive_true.tga b/indra/newview/skins/darkcatalan/textures/radio_inactive_true.tga new file mode 100644 index 000000000..98c9eb88b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/radio_inactive_true.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/darkcatalan/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..d5da367e5 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/restore.tga b/indra/newview/skins/darkcatalan/textures/restore.tga new file mode 100644 index 000000000..87910e288 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/restore.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/restore_inactive.tga b/indra/newview/skins/darkcatalan/textures/restore_inactive.tga new file mode 100644 index 000000000..dbbec7ea1 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/restore_inactive.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/restore_pressed.tga b/indra/newview/skins/darkcatalan/textures/restore_pressed.tga new file mode 100644 index 000000000..1922ca881 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/restore_pressed.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/darkcatalan/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..5e7379950 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/scrollbutton_down_out_blue.tga b/indra/newview/skins/darkcatalan/textures/scrollbutton_down_out_blue.tga new file mode 100644 index 000000000..a31ddbb90 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/scrollbutton_down_out_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/darkcatalan/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..480842a3b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/scrollbutton_left_out_blue.tga b/indra/newview/skins/darkcatalan/textures/scrollbutton_left_out_blue.tga new file mode 100644 index 000000000..a25e973b5 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/scrollbutton_left_out_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/darkcatalan/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..6d7f13bfc Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/scrollbutton_right_out_blue.tga b/indra/newview/skins/darkcatalan/textures/scrollbutton_right_out_blue.tga new file mode 100644 index 000000000..2c8535db8 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/scrollbutton_right_out_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/darkcatalan/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..4c6a8fe41 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/scrollbutton_up_out_blue.tga b/indra/newview/skins/darkcatalan/textures/scrollbutton_up_out_blue.tga new file mode 100644 index 000000000..1304a6adb Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/scrollbutton_up_out_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/slim_icon_16_viewer.tga b/indra/newview/skins/darkcatalan/textures/slim_icon_16_viewer.tga new file mode 100644 index 000000000..552181d36 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/slim_icon_16_viewer.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/sm_rounded_corners_simple.tga b/indra/newview/skins/darkcatalan/textures/sm_rounded_corners_simple.tga new file mode 100644 index 000000000..85157e461 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/sm_rounded_corners_simple.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/smicon_warn.tga b/indra/newview/skins/darkcatalan/textures/smicon_warn.tga new file mode 100644 index 000000000..90ccaa07e Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/smicon_warn.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/spacer24.tga b/indra/newview/skins/darkcatalan/textures/spacer24.tga new file mode 100644 index 000000000..c7cab6b38 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/spacer24.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/spacer35.tga b/indra/newview/skins/darkcatalan/textures/spacer35.tga new file mode 100644 index 000000000..b88bc6680 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/spacer35.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/spin_down_in_blue.tga b/indra/newview/skins/darkcatalan/textures/spin_down_in_blue.tga new file mode 100644 index 000000000..60f2fd589 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/spin_down_in_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/spin_down_out_blue.tga b/indra/newview/skins/darkcatalan/textures/spin_down_out_blue.tga new file mode 100644 index 000000000..a5506b814 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/spin_down_out_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/spin_up_in_blue.tga b/indra/newview/skins/darkcatalan/textures/spin_up_in_blue.tga new file mode 100644 index 000000000..8f5c643f3 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/spin_up_in_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/spin_up_out_blue.tga b/indra/newview/skins/darkcatalan/textures/spin_up_out_blue.tga new file mode 100644 index 000000000..e4f730959 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/spin_up_out_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/square_btn_32x128.tga b/indra/newview/skins/darkcatalan/textures/square_btn_32x128.tga new file mode 100644 index 000000000..7c1e5f9dc Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/square_btn_selected_32x128.tga b/indra/newview/skins/darkcatalan/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..a7a32811b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/startup_logo.j2c b/indra/newview/skins/darkcatalan/textures/startup_logo.j2c new file mode 100644 index 000000000..c9ea92b9e Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/startup_logo.j2c differ diff --git a/indra/newview/skins/darkcatalan/textures/startup_logo.jpg b/indra/newview/skins/darkcatalan/textures/startup_logo.jpg new file mode 100644 index 000000000..333df5779 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/startup_logo.jpg differ diff --git a/indra/newview/skins/darkcatalan/textures/status_busy.tga b/indra/newview/skins/darkcatalan/textures/status_busy.tga new file mode 100644 index 000000000..7743d9c7b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_busy.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/status_buy_currency.tga b/indra/newview/skins/darkcatalan/textures/status_buy_currency.tga new file mode 100644 index 000000000..4b9c7980e Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/status_buy_currency_pressed.tga b/indra/newview/skins/darkcatalan/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..d2418f357 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/status_buy_land.tga b/indra/newview/skins/darkcatalan/textures/status_buy_land.tga new file mode 100644 index 000000000..57208fe05 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/status_buy_land_pressed.tga b/indra/newview/skins/darkcatalan/textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..412e4920d Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/status_health.tga b/indra/newview/skins/darkcatalan/textures/status_health.tga new file mode 100644 index 000000000..3d5f455fc Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_health.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/status_money.tga b/indra/newview/skins/darkcatalan/textures/status_money.tga new file mode 100644 index 000000000..d5be31fc6 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_money.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/status_no_build.tga b/indra/newview/skins/darkcatalan/textures/status_no_build.tga new file mode 100644 index 000000000..8e471e185 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_no_build.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/status_no_fly.tga b/indra/newview/skins/darkcatalan/textures/status_no_fly.tga new file mode 100644 index 000000000..cde2700ab Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_no_fly.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/status_no_push.tga b/indra/newview/skins/darkcatalan/textures/status_no_push.tga new file mode 100644 index 000000000..5ccbfa50f Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_no_push.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/status_no_scripts.tga b/indra/newview/skins/darkcatalan/textures/status_no_scripts.tga new file mode 100644 index 000000000..52ecdb1b8 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_no_scripts.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/status_no_voice.tga b/indra/newview/skins/darkcatalan/textures/status_no_voice.tga new file mode 100644 index 000000000..4ab4498cb Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_no_voice.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/status_script_debug.tga b/indra/newview/skins/darkcatalan/textures/status_script_debug.tga new file mode 100644 index 000000000..6fca61483 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_script_debug.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/status_search.tga b/indra/newview/skins/darkcatalan/textures/status_search.tga new file mode 100644 index 000000000..3ac10c476 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_search.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/status_search_btn.png b/indra/newview/skins/darkcatalan/textures/status_search_btn.png new file mode 100644 index 000000000..67f61332b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_search_btn.png differ diff --git a/indra/newview/skins/darkcatalan/textures/status_search_btn_pressed.png b/indra/newview/skins/darkcatalan/textures/status_search_btn_pressed.png new file mode 100644 index 000000000..1437273d3 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_search_btn_pressed.png differ diff --git a/indra/newview/skins/darkcatalan/textures/status_voice.tga b/indra/newview/skins/darkcatalan/textures/status_voice.tga new file mode 100644 index 000000000..4ab4498cb Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/status_voice.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tab_background_darkpurple.tga b/indra/newview/skins/darkcatalan/textures/tab_background_darkpurple.tga new file mode 100644 index 000000000..8169f9869 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tab_background_darkpurple.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tab_background_lightgrey.tga b/indra/newview/skins/darkcatalan/textures/tab_background_lightgrey.tga new file mode 100644 index 000000000..c2f8818f7 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tab_background_lightgrey.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tab_background_purple.tga b/indra/newview/skins/darkcatalan/textures/tab_background_purple.tga new file mode 100644 index 000000000..aa01b3cb6 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tab_background_purple.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tab_bottom_blue.tga b/indra/newview/skins/darkcatalan/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..fa23f915d Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/darkcatalan/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..84e845d8a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tab_left.tga b/indra/newview/skins/darkcatalan/textures/tab_left.tga new file mode 100644 index 000000000..ac8516543 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tab_left.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tab_left_selected.tga b/indra/newview/skins/darkcatalan/textures/tab_left_selected.tga new file mode 100644 index 000000000..c875db790 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tab_top_blue.tga b/indra/newview/skins/darkcatalan/textures/tab_top_blue.tga new file mode 100644 index 000000000..76b25249d Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tab_top_selected_blue.tga b/indra/newview/skins/darkcatalan/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..b96a4c46b Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tabarea.tga b/indra/newview/skins/darkcatalan/textures/tabarea.tga new file mode 100644 index 000000000..5517aebfc Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tabarea.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tearoff_pressed.tga b/indra/newview/skins/darkcatalan/textures/tearoff_pressed.tga new file mode 100644 index 000000000..620d109de Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tearoff_pressed.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tearoffbox.tga b/indra/newview/skins/darkcatalan/textures/tearoffbox.tga new file mode 100644 index 000000000..0670d2e91 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tearoffbox.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/textures.xml b/indra/newview/skins/darkcatalan/textures/textures.xml new file mode 100644 index 000000000..2c4b0cbea --- /dev/null +++ b/indra/newview/skins/darkcatalan/textures/textures.xml @@ -0,0 +1,382 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/darkcatalan/textures/tool_dozer.tga b/indra/newview/skins/darkcatalan/textures/tool_dozer.tga new file mode 100644 index 000000000..9eee56aea Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tool_dozer_active.tga b/indra/newview/skins/darkcatalan/textures/tool_dozer_active.tga new file mode 100644 index 000000000..30f2f85eb Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tool_zoom.tga b/indra/newview/skins/darkcatalan/textures/tool_zoom.tga new file mode 100644 index 000000000..d247f4982 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/tool_zoom_active.tga b/indra/newview/skins/darkcatalan/textures/tool_zoom_active.tga new file mode 100644 index 000000000..72cadc52f Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/toolbar_bg.tga b/indra/newview/skins/darkcatalan/textures/toolbar_bg.tga new file mode 100644 index 000000000..88c5da69e Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/toolbar_bg.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/toolbar_btn_disabled.tga b/indra/newview/skins/darkcatalan/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..e2d414a8c Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/toolbar_btn_enabled.tga b/indra/newview/skins/darkcatalan/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..88c579f17 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/toolbar_btn_selected.tga b/indra/newview/skins/darkcatalan/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..4dbaab62a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/toolbar_tab.tga b/indra/newview/skins/darkcatalan/textures/toolbar_tab.tga new file mode 100644 index 000000000..fa9b3784e Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/up_arrow.png b/indra/newview/skins/darkcatalan/textures/up_arrow.png new file mode 100644 index 000000000..601dc39f4 Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/up_arrow.png differ diff --git a/indra/newview/skins/darkcatalan/textures/up_arrow.tga b/indra/newview/skins/darkcatalan/textures/up_arrow.tga new file mode 100644 index 000000000..debefb69a Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/up_arrow.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/uv_test2.tga b/indra/newview/skins/darkcatalan/textures/uv_test2.tga new file mode 100644 index 000000000..a16000d1e Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/uv_test2.tga differ diff --git a/indra/newview/skins/darkcatalan/textures/white.tga b/indra/newview/skins/darkcatalan/textures/white.tga new file mode 100644 index 000000000..9fe68631c Binary files /dev/null and b/indra/newview/skins/darkcatalan/textures/white.tga differ diff --git a/indra/newview/skins/darkorange/colors.xml b/indra/newview/skins/darkorange/colors.xml index 87e646e51..f3ff107f0 100644 --- a/indra/newview/skins/darkorange/colors.xml +++ b/indra/newview/skins/darkorange/colors.xml @@ -72,7 +72,6 @@ - diff --git a/indra/newview/skins/default/xui/en-us/floater_instant_message.xml b/indra/newview/skins/default/xui/en-us/floater_instant_message.xml index 432cf712a..233b7645d 100644 --- a/indra/newview/skins/default/xui/en-us/floater_instant_message.xml +++ b/indra/newview/skins/default/xui/en-us/floater_instant_message.xml @@ -12,8 +12,8 @@ Text chat is not available for this call. Inventory item offered