diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 98e61ede2..4ae918fa7 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -66,6 +66,7 @@ include_directories( set(viewer_SOURCE_FILES dofloaterhex.cpp dohexeditor.cpp + floatersculptpreview.cpp hgfloatertexteditor.cpp hippogridmanager.cpp hipporestrequest.cpp @@ -510,6 +511,7 @@ set(viewer_HEADER_FILES dofloaterhex.h dohexeditor.h + floatersculptpreview.h hgfloatertexteditor.h hippogridmanager.h hipporestrequest.h diff --git a/indra/newview/floatersculptpreview.cpp b/indra/newview/floatersculptpreview.cpp new file mode 100644 index 000000000..34ee97645 --- /dev/null +++ b/indra/newview/floatersculptpreview.cpp @@ -0,0 +1,864 @@ +/** + * @file LLFloaterSculptPreview.cpp + * @brief LLFloaterSculptPreview class implementation + * + * $LicenseInfo:firstyear=2004&license=viewergpl$ + * + * Copyright (c) 2004-2009, Linden Research, Inc. + * + * Second Life Viewer Source Code + * The source code in this file ("Source Code") is provided by Linden Lab + * to you under the terms of the GNU General Public License, version 2.0 + * ("GPL"), unless you have obtained a separate licensing agreement + * ("Other License"), formally executed by you and Linden Lab. Terms of + * the GPL can be found in doc/GPL-license.txt in this distribution, or + * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2 + * + * There are special exceptions to the terms and conditions of the GPL as + * it is applied to this Source Code. View the full text of the exception + * in the file doc/FLOSS-exception.txt in this software distribution, or + * online at + * http://secondlifegrid.net/programs/open_source/licensing/flossexception + * + * By copying, modifying or distributing this software, you acknowledge + * that you have read and understood your obligations described above, + * and agree to abide by those obligations. + * + * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO + * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, + * COMPLETENESS OR PERFORMANCE. + * $/LicenseInfo$ + */ + +#include "llviewerprecompiledheaders.h" + +#include "floatersculptpreview.h" + +#include "llimagebmp.h" +#include "llimagetga.h" +#include "llimagejpeg.h" +#include "llimagepng.h" + +#include "llagent.h" +#include "llbutton.h" +#include "llcombobox.h" +#include "lldrawable.h" +#include "lldrawpoolavatar.h" +#include "llrender.h" +#include "llface.h" +#include "llfocusmgr.h" +#include "lltextbox.h" +#include "lltoolmgr.h" +#include "llui.h" +#include "llviewercamera.h" +#include "llviewerwindow.h" +#include "llvoavatar.h" +#include "pipeline.h" +#include "lluictrlfactory.h" +#include "llviewerimagelist.h" +#include "llstring.h" +#include "llviewercontrol.h" + +//static +S32 LLFloaterSculptPreview::sUploadAmount = 10; + +const S32 PREVIEW_BORDER_WIDTH = 2; +const S32 PREVIEW_RESIZE_HANDLE_SIZE = S32(RESIZE_HANDLE_WIDTH * OO_SQRT2) + PREVIEW_BORDER_WIDTH; +const S32 PREVIEW_HPAD = PREVIEW_RESIZE_HANDLE_SIZE; +const S32 PREF_BUTTON_HEIGHT = 0; +const S32 PREVIEW_TEXTURE_HEIGHT = 512; + + +//----------------------------------------------------------------------------- +// LLFloaterSculptPreview() +//----------------------------------------------------------------------------- +LLFloaterSculptPreview::LLFloaterSculptPreview(LLImageRaw* src) : + //LLFloaterNameDesc(filename), + mAvatarPreview(NULL), + mSculptedPreview(NULL) +{ + mLastMouseX = 0; + mLastMouseY = 0; + mImagep = NULL ; + mRawImagep = src; +} + +LLFloaterSculptPreview* LLFloaterSculptPreview::show(LLImageRaw* src) +{ + LLFloaterSculptPreview* floaterp = new LLFloaterSculptPreview(src); + + llinfos << (floaterp->mRawImagep.notNull() ? "has raw image" : "no raw image") << llendl; + //floaterp->loadImage(src); + // Builds and adds to gFloaterView + LLUICtrlFactory::getInstance()->buildFloater(floaterp, "floater_sculpt_preview.xml"); + + gFloaterView->addChild(floaterp); + floaterp->open(); /*Flawfinder: ignore*/ + + gFloaterView->adjustToFitScreen(floaterp, FALSE); + + llinfos << "build and adjusted" << llendl; + return floaterp; + +} + +//----------------------------------------------------------------------------- +// postBuild() +//----------------------------------------------------------------------------- +BOOL LLFloaterSculptPreview::postBuild() +{ + childSetLabelArg("ok_btn", "[AMOUNT]", llformat("%d",sUploadAmount)); + + LLCtrlSelectionInterface* iface = childGetSelectionInterface("clothing_type_combo"); + if (iface) + { + iface->selectFirstItem(); + } + childSetCommitCallback("clothing_type_combo", onPreviewTypeCommit, this); + + mPreviewRect.set(PREVIEW_HPAD, + PREVIEW_TEXTURE_HEIGHT, + getRect().getWidth() - PREVIEW_HPAD, + PREVIEW_HPAD + PREF_BUTTON_HEIGHT + PREVIEW_HPAD); + mPreviewImageRect.set(0.f, 1.f, 1.f, 0.f); + + childHide("bad_image_text"); + + if (mRawImagep.notNull() && gAgent.getRegion() != NULL) + { + mAvatarPreview = new LLPreviewAvatar(256, 256); + mAvatarPreview->setPreviewTarget("mPelvis", "mUpperBodyMesh0", mRawImagep, 2.f, FALSE); + + mSculptedPreview = new LLPreviewSculpted(256, 256); + mSculptedPreview->setPreviewTarget(mRawImagep, 2.0f); + + if (mRawImagep->getWidth() * mRawImagep->getHeight () <= LL_IMAGE_REZ_LOSSLESS_CUTOFF * LL_IMAGE_REZ_LOSSLESS_CUTOFF) + childEnable("lossless_check"); + + gSavedSettings.setBOOL("EmeraldTemporaryUpload",FALSE); + childSetValue("temp_check",FALSE); + } + else + { + mAvatarPreview = NULL; + mSculptedPreview = NULL; + childShow("bad_image_text"); + childDisable("clothing_type_combo"); + childDisable("ok_btn"); + } + + return TRUE; +} + +//----------------------------------------------------------------------------- +// LLFloaterSculptPreview() +//----------------------------------------------------------------------------- +LLFloaterSculptPreview::~LLFloaterSculptPreview() +{ + clearAllPreviewTextures(); + + mRawImagep = NULL; + delete mAvatarPreview; + delete mSculptedPreview; + + mImagep = NULL ; +} + +//static +//----------------------------------------------------------------------------- +// onPreviewTypeCommit() +//----------------------------------------------------------------------------- +void LLFloaterSculptPreview::onPreviewTypeCommit(LLUICtrl* ctrl, void* userdata) +{ + LLFloaterSculptPreview *fp =(LLFloaterSculptPreview *)userdata; + + if (!fp->mAvatarPreview || !fp->mSculptedPreview) + { + return; + } + + S32 which_mode = 0; + + LLCtrlSelectionInterface* iface = fp->childGetSelectionInterface("clothing_type_combo"); + if (iface) + { + which_mode = iface->getFirstSelectedIndex(); + } + + switch(which_mode) + { + case 0: + break; + case 1: + fp->mAvatarPreview->setPreviewTarget("mSkull", "mHairMesh0", fp->mRawImagep, 0.4f, FALSE); + break; + case 2: + fp->mAvatarPreview->setPreviewTarget("mSkull", "mHeadMesh0", fp->mRawImagep, 0.4f, FALSE); + break; + case 3: + fp->mAvatarPreview->setPreviewTarget("mChest", "mUpperBodyMesh0", fp->mRawImagep, 1.0f, FALSE); + break; + case 4: + fp->mAvatarPreview->setPreviewTarget("mKneeLeft", "mLowerBodyMesh0", fp->mRawImagep, 1.2f, FALSE); + break; + case 5: + fp->mAvatarPreview->setPreviewTarget("mSkull", "mHeadMesh0", fp->mRawImagep, 0.4f, TRUE); + break; + case 6: + fp->mAvatarPreview->setPreviewTarget("mChest", "mUpperBodyMesh0", fp->mRawImagep, 1.2f, TRUE); + break; + case 7: + fp->mAvatarPreview->setPreviewTarget("mKneeLeft", "mLowerBodyMesh0", fp->mRawImagep, 1.2f, TRUE); + break; + case 8: + fp->mAvatarPreview->setPreviewTarget("mKneeLeft", "mSkirtMesh0", fp->mRawImagep, 1.3f, FALSE); + break; + case 9: + fp->mSculptedPreview->setPreviewTarget(fp->mRawImagep, 2.0f); + break; + default: + break; + } + + fp->mAvatarPreview->refresh(); + fp->mSculptedPreview->refresh(); +} + + +//----------------------------------------------------------------------------- +// clearAllPreviewTextures() +//----------------------------------------------------------------------------- +void LLFloaterSculptPreview::clearAllPreviewTextures() +{ + if (mAvatarPreview) + { + mAvatarPreview->clearPreviewTexture("mHairMesh0"); + mAvatarPreview->clearPreviewTexture("mUpperBodyMesh0"); + mAvatarPreview->clearPreviewTexture("mLowerBodyMesh0"); + mAvatarPreview->clearPreviewTexture("mHeadMesh0"); + mAvatarPreview->clearPreviewTexture("mUpperBodyMesh0"); + mAvatarPreview->clearPreviewTexture("mLowerBodyMesh0"); + mAvatarPreview->clearPreviewTexture("mSkirtMesh0"); + } +} + +//----------------------------------------------------------------------------- +// draw() +//----------------------------------------------------------------------------- +void LLFloaterSculptPreview::draw() +{ + LLFloater::draw(); + LLRect r = getRect(); + + if (mRawImagep.notNull()) + { + LLCtrlSelectionInterface* iface = childGetSelectionInterface("clothing_type_combo"); + U32 selected = 0; + if (iface) + selected = iface->getFirstSelectedIndex(); + + if (selected <= 0) + { + gl_rect_2d_checkerboard(mPreviewRect); + LLGLDisable gls_alpha(GL_ALPHA_TEST); + + if(mImagep.notNull()) + { + gGL.getTexUnit(0)->bindManual(LLTexUnit::TT_TEXTURE, mImagep->getTexName()); + } + else + { + mImagep = new LLImageGL(mRawImagep, FALSE) ; + + gGL.getTexUnit(0)->unbind(mImagep->getTarget()) ; + gGL.getTexUnit(0)->bindManual(LLTexUnit::TT_TEXTURE, mImagep->getTexName()); + stop_glerror(); + + gGL.getTexUnit(0)->setTextureFilteringOption(LLTexUnit::TFO_BILINEAR); + + gGL.getTexUnit(0)->setTextureAddressMode(LLTexUnit::TAM_CLAMP); + if (mAvatarPreview) + { + mAvatarPreview->setTexture(mImagep->getTexName()); + mSculptedPreview->setTexture(mImagep->getTexName()); + } + } + + gGL.color3f(1.f, 1.f, 1.f); + gGL.begin( LLRender::QUADS ); + { + gGL.texCoord2f(mPreviewImageRect.mLeft, mPreviewImageRect.mTop); + gGL.vertex2i(PREVIEW_HPAD, PREVIEW_TEXTURE_HEIGHT); + gGL.texCoord2f(mPreviewImageRect.mLeft, mPreviewImageRect.mBottom); + gGL.vertex2i(PREVIEW_HPAD, PREVIEW_HPAD + PREF_BUTTON_HEIGHT + PREVIEW_HPAD); + gGL.texCoord2f(mPreviewImageRect.mRight, mPreviewImageRect.mBottom); + gGL.vertex2i(r.getWidth() - PREVIEW_HPAD, PREVIEW_HPAD + PREF_BUTTON_HEIGHT + PREVIEW_HPAD); + gGL.texCoord2f(mPreviewImageRect.mRight, mPreviewImageRect.mTop); + gGL.vertex2i(r.getWidth() - PREVIEW_HPAD, PREVIEW_TEXTURE_HEIGHT); + } + gGL.end(); + + gGL.getTexUnit(0)->unbind(LLTexUnit::TT_TEXTURE); + + stop_glerror(); + } + else + { + if ((mAvatarPreview) && (mSculptedPreview)) + { + gGL.color3f(1.f, 1.f, 1.f); + + if (selected == 9) + { + gGL.getTexUnit(0)->bind(mSculptedPreview->getTexture()); + } + else + { + gGL.getTexUnit(0)->bind(mAvatarPreview->getTexture()); + } + + gGL.begin( LLRender::QUADS ); + { + gGL.texCoord2f(0.f, 1.f); + gGL.vertex2i(PREVIEW_HPAD, PREVIEW_TEXTURE_HEIGHT); + gGL.texCoord2f(0.f, 0.f); + gGL.vertex2i(PREVIEW_HPAD, PREVIEW_HPAD + PREF_BUTTON_HEIGHT + PREVIEW_HPAD); + gGL.texCoord2f(1.f, 0.f); + gGL.vertex2i(r.getWidth() - PREVIEW_HPAD, PREVIEW_HPAD + PREF_BUTTON_HEIGHT + PREVIEW_HPAD); + gGL.texCoord2f(1.f, 1.f); + gGL.vertex2i(r.getWidth() - PREVIEW_HPAD, PREVIEW_TEXTURE_HEIGHT); + } + gGL.end(); + + gGL.getTexUnit(0)->unbind(LLTexUnit::TT_TEXTURE); + } + } + } +} + +//----------------------------------------------------------------------------- +// handleMouseDown() +//----------------------------------------------------------------------------- +BOOL LLFloaterSculptPreview::handleMouseDown(S32 x, S32 y, MASK mask) +{ + if (mPreviewRect.pointInRect(x, y)) + { + bringToFront( x, y ); + gFocusMgr.setMouseCapture(this); + gViewerWindow->hideCursor(); + mLastMouseX = x; + mLastMouseY = y; + return TRUE; + } + + return LLFloater::handleMouseDown(x, y, mask); +} + +//----------------------------------------------------------------------------- +// handleMouseUp() +//----------------------------------------------------------------------------- +BOOL LLFloaterSculptPreview::handleMouseUp(S32 x, S32 y, MASK mask) +{ + gFocusMgr.setMouseCapture(FALSE); + gViewerWindow->showCursor(); + return LLFloater::handleMouseUp(x, y, mask); +} + +//----------------------------------------------------------------------------- +// handleHover() +//----------------------------------------------------------------------------- +BOOL LLFloaterSculptPreview::handleHover(S32 x, S32 y, MASK mask) +{ + MASK local_mask = mask & ~MASK_ALT; + + if (mAvatarPreview && hasMouseCapture()) + { + if (local_mask == MASK_PAN) + { + // pan here + LLCtrlSelectionInterface* iface = childGetSelectionInterface("clothing_type_combo"); + if (iface && iface->getFirstSelectedIndex() <= 0) + { + mPreviewImageRect.translate((F32)(x - mLastMouseX) * -0.005f * mPreviewImageRect.getWidth(), + (F32)(y - mLastMouseY) * -0.005f * mPreviewImageRect.getHeight()); + } + else + { + mAvatarPreview->pan((F32)(x - mLastMouseX) * -0.005f, (F32)(y - mLastMouseY) * -0.005f); + mSculptedPreview->pan((F32)(x - mLastMouseX) * -0.005f, (F32)(y - mLastMouseY) * -0.005f); + } + } + else if (local_mask == MASK_ORBIT) + { + F32 yaw_radians = (F32)(x - mLastMouseX) * -0.01f; + F32 pitch_radians = (F32)(y - mLastMouseY) * 0.02f; + + mAvatarPreview->rotate(yaw_radians, pitch_radians); + mSculptedPreview->rotate(yaw_radians, pitch_radians); + } + else + { + LLCtrlSelectionInterface* iface = childGetSelectionInterface("clothing_type_combo"); + if (iface && iface->getFirstSelectedIndex() <= 0) + { + F32 zoom_amt = (F32)(y - mLastMouseY) * -0.002f; + mPreviewImageRect.stretch(zoom_amt); + } + else + { + F32 yaw_radians = (F32)(x - mLastMouseX) * -0.01f; + F32 zoom_amt = (F32)(y - mLastMouseY) * 0.02f; + + mAvatarPreview->rotate(yaw_radians, 0.f); + mAvatarPreview->zoom(zoom_amt); + mSculptedPreview->rotate(yaw_radians, 0.f); + mSculptedPreview->zoom(zoom_amt); + } + } + + LLCtrlSelectionInterface* iface = childGetSelectionInterface("clothing_type_combo"); + if (iface && iface->getFirstSelectedIndex() <= 0) + { + if (mPreviewImageRect.getWidth() > 1.f) + { + mPreviewImageRect.stretch((1.f - mPreviewImageRect.getWidth()) * 0.5f); + } + else if (mPreviewImageRect.getWidth() < 0.1f) + { + mPreviewImageRect.stretch((0.1f - mPreviewImageRect.getWidth()) * 0.5f); + } + + if (mPreviewImageRect.getHeight() > 1.f) + { + mPreviewImageRect.stretch((1.f - mPreviewImageRect.getHeight()) * 0.5f); + } + else if (mPreviewImageRect.getHeight() < 0.1f) + { + mPreviewImageRect.stretch((0.1f - mPreviewImageRect.getHeight()) * 0.5f); + } + + if (mPreviewImageRect.mLeft < 0.f) + { + mPreviewImageRect.translate(-mPreviewImageRect.mLeft, 0.f); + } + else if (mPreviewImageRect.mRight > 1.f) + { + mPreviewImageRect.translate(1.f - mPreviewImageRect.mRight, 0.f); + } + + if (mPreviewImageRect.mBottom < 0.f) + { + mPreviewImageRect.translate(0.f, -mPreviewImageRect.mBottom); + } + else if (mPreviewImageRect.mTop > 1.f) + { + mPreviewImageRect.translate(0.f, 1.f - mPreviewImageRect.mTop); + } + } + else + { + mAvatarPreview->refresh(); + mSculptedPreview->refresh(); + } + + LLUI::setCursorPositionLocal(this, mLastMouseX, mLastMouseY); + } + + if (!mPreviewRect.pointInRect(x, y) || !mAvatarPreview || !mSculptedPreview) + { + return LLFloater::handleHover(x, y, mask); + } + else if (local_mask == MASK_ORBIT) + { + gViewerWindow->setCursor(UI_CURSOR_TOOLCAMERA); + } + else if (local_mask == MASK_PAN) + { + gViewerWindow->setCursor(UI_CURSOR_TOOLPAN); + } + else + { + gViewerWindow->setCursor(UI_CURSOR_TOOLZOOMIN); + } + + return TRUE; +} + +//----------------------------------------------------------------------------- +// handleScrollWheel() +//----------------------------------------------------------------------------- +BOOL LLFloaterSculptPreview::handleScrollWheel(S32 x, S32 y, S32 clicks) +{ + if (mPreviewRect.pointInRect(x, y) && mAvatarPreview) + { + mAvatarPreview->zoom((F32)clicks * -0.2f); + mAvatarPreview->refresh(); + + mSculptedPreview->zoom((F32)clicks * -0.2f); + mSculptedPreview->refresh(); + } + + return TRUE; +} + +//----------------------------------------------------------------------------- +// onMouseCaptureLost() +//----------------------------------------------------------------------------- +// static +void LLFloaterSculptPreview::onMouseCaptureLostImagePreview(LLMouseHandler* handler) +{ + gViewerWindow->showCursor(); +} + + +//----------------------------------------------------------------------------- +// LLPreviewAvatar +//----------------------------------------------------------------------------- +LLPreviewAvatar::LLPreviewAvatar(S32 width, S32 height) : LLDynamicTexture(width, height, 3, ORDER_MIDDLE, FALSE) +{ + mNeedsUpdate = TRUE; + mTargetJoint = NULL; + mTargetMesh = NULL; + mCameraDistance = 0.f; + mCameraYaw = 0.f; + mCameraPitch = 0.f; + mCameraZoom = 1.f; + + mDummyAvatar = (LLVOAvatar*)gObjectList.createObjectViewer(LL_PCODE_LEGACY_AVATAR, gAgent.getRegion()); + mDummyAvatar->createDrawable(&gPipeline); + mDummyAvatar->mIsDummy = TRUE; + mDummyAvatar->mSpecialRenderMode = 2; + mDummyAvatar->setPositionAgent(LLVector3::zero); + mDummyAvatar->slamPosition(); + mDummyAvatar->updateJointLODs(); + mDummyAvatar->updateGeometry(mDummyAvatar->mDrawable); + // gPipeline.markVisible(mDummyAvatar->mDrawable, *LLViewerCamera::getInstance()); + + mTextureName = 0; +} + + +LLPreviewAvatar::~LLPreviewAvatar() +{ + mDummyAvatar->markDead(); +} + + +void LLPreviewAvatar::setPreviewTarget(const std::string& joint_name, const std::string& mesh_name, LLImageRaw* imagep, F32 distance, BOOL male) +{ + mTargetJoint = mDummyAvatar->mRoot.findJoint(joint_name); + // clear out existing test mesh + if (mTargetMesh) + { + mTargetMesh->setTestTexture(0); + } + + if (male) + { + mDummyAvatar->setVisualParamWeight( "male", 1.f ); + mDummyAvatar->updateVisualParams(); + mDummyAvatar->updateGeometry(mDummyAvatar->mDrawable); + } + else + { + mDummyAvatar->setVisualParamWeight( "male", 0.f ); + mDummyAvatar->updateVisualParams(); + mDummyAvatar->updateGeometry(mDummyAvatar->mDrawable); + } + mDummyAvatar->mRoot.setVisible(FALSE, TRUE); + + mTargetMesh = (LLViewerJointMesh*)mDummyAvatar->mRoot.findJoint(mesh_name); + mTargetMesh->setTestTexture(mTextureName); + mTargetMesh->setVisible(TRUE, FALSE); + mCameraDistance = distance; + mCameraZoom = 1.f; + mCameraPitch = 0.f; + mCameraYaw = 0.f; + mCameraOffset.clearVec(); +} + +//----------------------------------------------------------------------------- +// clearPreviewTexture() +//----------------------------------------------------------------------------- +void LLPreviewAvatar::clearPreviewTexture(const std::string& mesh_name) +{ + if (mDummyAvatar) + { + LLViewerJointMesh *mesh = (LLViewerJointMesh*)mDummyAvatar->mRoot.findJoint(mesh_name); + // clear out existing test mesh + if (mesh) + { + mesh->setTestTexture(0); + } + } +} + +//----------------------------------------------------------------------------- +// update() +//----------------------------------------------------------------------------- +BOOL LLPreviewAvatar::render() +{ + mNeedsUpdate = FALSE; + LLVOAvatar* avatarp = mDummyAvatar; + + glMatrixMode(GL_PROJECTION); + gGL.pushMatrix(); + glLoadIdentity(); + glOrtho(0.0f, mWidth, 0.0f, mHeight, -1.0f, 1.0f); + + glMatrixMode(GL_MODELVIEW); + gGL.pushMatrix(); + glLoadIdentity(); + + LLGLSUIDefault def; + gGL.color4f(0.15f, 0.2f, 0.3f, 1.f); + + gl_rect_2d_simple( mWidth, mHeight ); + + glMatrixMode(GL_PROJECTION); + gGL.popMatrix(); + + glMatrixMode(GL_MODELVIEW); + gGL.popMatrix(); + + gGL.flush(); + LLVector3 target_pos = mTargetJoint->getWorldPosition(); + + LLQuaternion camera_rot = LLQuaternion(mCameraPitch, LLVector3::y_axis) * + LLQuaternion(mCameraYaw, LLVector3::z_axis); + + LLQuaternion av_rot = avatarp->mPelvisp->getWorldRotation() * camera_rot; + LLViewerCamera::getInstance()->setOriginAndLookAt( + target_pos + ((LLVector3(mCameraDistance, 0.f, 0.f) + mCameraOffset) * av_rot), // camera + LLVector3::z_axis, // up + target_pos + (mCameraOffset * av_rot) ); // point of interest + + stop_glerror(); + + LLViewerCamera::getInstance()->setAspect((F32)mWidth / mHeight); + LLViewerCamera::getInstance()->setView(LLViewerCamera::getInstance()->getDefaultFOV() / mCameraZoom); + LLViewerCamera::getInstance()->setPerspective(FALSE, mOrigin.mX, mOrigin.mY, mWidth, mHeight, FALSE); + + LLVertexBuffer::unbind(); + avatarp->updateLOD(); + + + if (avatarp->mDrawable.notNull()) + { + LLGLDepthTest gls_depth(GL_TRUE, GL_TRUE); + // make sure alpha=0 shows avatar material color + LLGLDisable no_blend(GL_BLEND); + + LLDrawPoolAvatar *avatarPoolp = (LLDrawPoolAvatar *)avatarp->mDrawable->getFace(0)->getPool(); + + avatarPoolp->renderAvatars(avatarp); // renders only one avatar + } + + gGL.color4f(1,1,1,1); + return TRUE; +} + +//----------------------------------------------------------------------------- +// refresh() +//----------------------------------------------------------------------------- +void LLPreviewAvatar::refresh() +{ + mNeedsUpdate = TRUE; +} + +//----------------------------------------------------------------------------- +// rotate() +//----------------------------------------------------------------------------- +void LLPreviewAvatar::rotate(F32 yaw_radians, F32 pitch_radians) +{ + mCameraYaw = mCameraYaw + yaw_radians; + + mCameraPitch = llclamp(mCameraPitch + pitch_radians, -0.95f * F_PI_BY_TWO, 0.95f * F_PI_BY_TWO); +} + +//----------------------------------------------------------------------------- +// zoom() +//----------------------------------------------------------------------------- +void LLPreviewAvatar::zoom(F32 zoom_amt) +{ + mCameraZoom = llclamp(mCameraZoom + zoom_amt, 0.5f, 20.f); +} + +void LLPreviewAvatar::pan(F32 right, F32 up) +{ + mCameraOffset.mV[VY] = llclamp(mCameraOffset.mV[VY] + right * mCameraDistance / mCameraZoom, -1.f, 1.f); + mCameraOffset.mV[VZ] = llclamp(mCameraOffset.mV[VZ] + up * mCameraDistance / mCameraZoom, -1.f, 1.f); +} + + +//----------------------------------------------------------------------------- +// LLPreviewSculpted +//----------------------------------------------------------------------------- + +LLPreviewSculpted::LLPreviewSculpted(S32 width, S32 height) : LLDynamicTexture(width, height, 3, ORDER_MIDDLE, FALSE) +{ + mNeedsUpdate = TRUE; + mCameraDistance = 0.f; + mCameraYaw = 0.f; + mCameraPitch = 0.f; + mCameraZoom = 1.f; + mTextureName = 0; + + LLVolumeParams volume_params; + volume_params.setType(LL_PCODE_PROFILE_CIRCLE, LL_PCODE_PATH_CIRCLE); + volume_params.setSculptID(LLUUID::null, LL_SCULPT_TYPE_SPHERE); + + F32 const HIGHEST_LOD = 4.0f; + mVolume = new LLVolume(volume_params, HIGHEST_LOD); +} + + +LLPreviewSculpted::~LLPreviewSculpted() +{ +} + + +void LLPreviewSculpted::setPreviewTarget(LLImageRaw* imagep, F32 distance) +{ + mCameraDistance = distance; + mCameraZoom = 1.f; + mCameraPitch = 0.f; + mCameraYaw = 0.f; + mCameraOffset.clearVec(); + + if (imagep) + { + mVolume->sculpt(imagep->getWidth(), imagep->getHeight(), imagep->getComponents(), imagep->getData(), 0); + } + + const LLVolumeFace &vf = mVolume->getVolumeFace(0); + U32 num_indices = vf.mIndices.size(); + U32 num_vertices = vf.mVertices.size(); + + mVertexBuffer = new LLVertexBuffer(LLVertexBuffer::MAP_VERTEX | LLVertexBuffer::MAP_NORMAL, 0); + mVertexBuffer->allocateBuffer(num_vertices, num_indices, TRUE); + + LLStrider vertex_strider; + LLStrider normal_strider; + LLStrider index_strider; + + mVertexBuffer->getVertexStrider(vertex_strider); + mVertexBuffer->getNormalStrider(normal_strider); + mVertexBuffer->getIndexStrider(index_strider); + + // build vertices and normals + for (U32 i = 0; (S32)i < num_vertices; i++) + { + *(vertex_strider++) = vf.mVertices[i].mPosition; + LLVector3 normal = vf.mVertices[i].mNormal; + normal.normalize(); + *(normal_strider++) = normal; + } + + // build indices + for (U16 i = 0; i < num_indices; i++) + { + *(index_strider++) = vf.mIndices[i]; + } +} + + +//----------------------------------------------------------------------------- +// render() +//----------------------------------------------------------------------------- +BOOL LLPreviewSculpted::render() +{ + mNeedsUpdate = FALSE; + + LLGLSUIDefault def; + LLGLDisable no_blend(GL_BLEND); + LLGLEnable cull(GL_CULL_FACE); + LLGLDepthTest depth(GL_TRUE); + + glMatrixMode(GL_PROJECTION); + gGL.pushMatrix(); + glLoadIdentity(); + glOrtho(0.0f, mWidth, 0.0f, mHeight, -1.0f, 1.0f); + + glMatrixMode(GL_MODELVIEW); + gGL.pushMatrix(); + glLoadIdentity(); + + gGL.color4f(1.f, 1.f, 1.f, 1.f); + + gl_rect_2d_simple( mWidth, mHeight ); + + glMatrixMode(GL_PROJECTION); + gGL.popMatrix(); + + glMatrixMode(GL_MODELVIEW); + gGL.popMatrix(); + + glClear(GL_DEPTH_BUFFER_BIT); + + LLVector3 target_pos(0, 0, 0); + + LLQuaternion camera_rot = LLQuaternion(mCameraPitch, LLVector3::y_axis) * + LLQuaternion(mCameraYaw, LLVector3::z_axis); + + LLQuaternion av_rot = camera_rot; + LLViewerCamera::getInstance()->setOriginAndLookAt( + target_pos + ((LLVector3(mCameraDistance, 0.f, 0.f) + mCameraOffset) * av_rot), // camera + LLVector3::z_axis, // up + target_pos + (mCameraOffset * av_rot) ); // point of interest + + stop_glerror(); + + LLViewerCamera::getInstance()->setAspect((F32) mWidth / mHeight); + LLViewerCamera::getInstance()->setView(LLViewerCamera::getInstance()->getDefaultFOV() / mCameraZoom); + LLViewerCamera::getInstance()->setPerspective(FALSE, mOrigin.mX, mOrigin.mY, mWidth, mHeight, FALSE); + + const LLVolumeFace &vf = mVolume->getVolumeFace(0); + U32 num_indices = vf.mIndices.size(); + + mVertexBuffer->setBuffer(LLVertexBuffer::MAP_VERTEX | LLVertexBuffer::MAP_NORMAL); + + gPipeline.enableLightsAvatar(); + gGL.pushMatrix(); + const F32 SCALE = 1.25f; + gGL.scalef(SCALE, SCALE, SCALE); + const F32 BRIGHTNESS = 0.9f; + gGL.color3f(BRIGHTNESS, BRIGHTNESS, BRIGHTNESS); + mVertexBuffer->draw(LLRender::TRIANGLES, num_indices, 0); + + gGL.popMatrix(); + + return TRUE; +} + +//----------------------------------------------------------------------------- +// refresh() +//----------------------------------------------------------------------------- +void LLPreviewSculpted::refresh() +{ + mNeedsUpdate = TRUE; +} + +//----------------------------------------------------------------------------- +// rotate() +//----------------------------------------------------------------------------- +void LLPreviewSculpted::rotate(F32 yaw_radians, F32 pitch_radians) +{ + mCameraYaw = mCameraYaw + yaw_radians; + + mCameraPitch = llclamp(mCameraPitch + pitch_radians, -0.95f * F_PI_BY_TWO, 0.95f * F_PI_BY_TWO); +} + +//----------------------------------------------------------------------------- +// zoom() +//----------------------------------------------------------------------------- +void LLPreviewSculpted::zoom(F32 zoom_amt) +{ + mCameraZoom = llclamp(mCameraZoom + zoom_amt, 0.5f, 20.f); +} + +void LLPreviewSculpted::pan(F32 right, F32 up) +{ + mCameraOffset.mV[VY] = llclamp(mCameraOffset.mV[VY] + right * mCameraDistance / mCameraZoom, -1.f, 1.f); + mCameraOffset.mV[VZ] = llclamp(mCameraOffset.mV[VZ] + up * mCameraDistance / mCameraZoom, -1.f, 1.f); +} diff --git a/indra/newview/floatersculptpreview.h b/indra/newview/floatersculptpreview.h new file mode 100644 index 000000000..42b72de58 --- /dev/null +++ b/indra/newview/floatersculptpreview.h @@ -0,0 +1,144 @@ +/** + * @file LLFloaterSculptPreview.h + * @brief LLFloaterSculptPreview class definition + * + * $LicenseInfo:firstyear=2004&license=viewergpl$ + * + * Copyright (c) 2004-2009, Linden Research, Inc. + * + * Second Life Viewer Source Code + * The source code in this file ("Source Code") is provided by Linden Lab + * to you under the terms of the GNU General Public License, version 2.0 + * ("GPL"), unless you have obtained a separate licensing agreement + * ("Other License"), formally executed by you and Linden Lab. Terms of + * the GPL can be found in doc/GPL-license.txt in this distribution, or + * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2 + * + * There are special exceptions to the terms and conditions of the GPL as + * it is applied to this Source Code. View the full text of the exception + * in the file doc/FLOSS-exception.txt in this software distribution, or + * online at + * http://secondlifegrid.net/programs/open_source/licensing/flossexception + * + * By copying, modifying or distributing this software, you acknowledge + * that you have read and understood your obligations described above, + * and agree to abide by those obligations. + * + * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO + * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, + * COMPLETENESS OR PERFORMANCE. + * $/LicenseInfo$ + */ + +#ifndef LL_LLFloaterSculptPreview_H +#define LL_LLFloaterSculptPreview_H + +#include "llfloater.h" +#include "llresizehandle.h" +#include "lldynamictexture.h" +#include "llquaternion.h" +#include "llviewerobjectlist.h" + +class LLComboBox; +class LLJoint; +class LLViewerJointMesh; +class LLVOAvatar; +class LLTextBox; +class LLVertexBuffer; + +class LLPreviewSculpted : public LLDynamicTexture +{ + public: + LLPreviewSculpted(S32 width, S32 height); + virtual ~LLPreviewSculpted(); + + void setPreviewTarget(LLImageRaw *imagep, F32 distance); + void setTexture(U32 name) { mTextureName = name; } + + BOOL render(); + void refresh(); + void rotate(F32 yaw_radians, F32 pitch_radians); + void zoom(F32 zoom_amt); + void pan(F32 right, F32 up); + virtual BOOL needsRender() { return mNeedsUpdate; } + + protected: + BOOL mNeedsUpdate; + U32 mTextureName; + F32 mCameraDistance; + F32 mCameraYaw; + F32 mCameraPitch; + F32 mCameraZoom; + LLVector3 mCameraOffset; + LLPointer mVolume; + LLPointer mVertexBuffer; +}; + + +class LLPreviewAvatar : public LLDynamicTexture +{ +public: + LLPreviewAvatar(S32 width, S32 height); + virtual ~LLPreviewAvatar(); + + void setPreviewTarget(const std::string& joint_name, const std::string& mesh_name, LLImageRaw* imagep, F32 distance, BOOL male); + void setTexture(U32 name) { mTextureName = name; } + void clearPreviewTexture(const std::string& mesh_name); + + BOOL render(); + void refresh(); + void rotate(F32 yaw_radians, F32 pitch_radians); + void zoom(F32 zoom_amt); + void pan(F32 right, F32 up); + virtual BOOL needsRender() { return mNeedsUpdate; } + +protected: + BOOL mNeedsUpdate; + LLJoint* mTargetJoint; + LLViewerJointMesh* mTargetMesh; + F32 mCameraDistance; + F32 mCameraYaw; + F32 mCameraPitch; + F32 mCameraZoom; + LLVector3 mCameraOffset; + LLPointer mDummyAvatar; + U32 mTextureName; +}; + +class LLFloaterSculptPreview : public LLFloater +{ +public: + LLFloaterSculptPreview(LLImageRaw* src); + virtual ~LLFloaterSculptPreview(); + static LLFloaterSculptPreview* show(LLImageRaw* src); + virtual BOOL postBuild(); + + BOOL handleMouseDown(S32 x, S32 y, MASK mask); + BOOL handleMouseUp(S32 x, S32 y, MASK mask); + BOOL handleHover(S32 x, S32 y, MASK mask); + BOOL handleScrollWheel(S32 x, S32 y, S32 clicks); + + static void onMouseCaptureLostImagePreview(LLMouseHandler*); + static void setUploadAmount(S32 amount) { sUploadAmount = amount; } + + void clearAllPreviewTextures(); + +protected: + static void onPreviewTypeCommit(LLUICtrl*,void*); + void draw(); + bool loadImage(LLImageRaw* src); + + LLPointer mRawImagep; + LLPreviewAvatar* mAvatarPreview; + LLPreviewSculpted* mSculptedPreview; + S32 mLastMouseX; + S32 mLastMouseY; + LLRect mPreviewRect; + LLRectf mPreviewImageRect; + LLPointer mImagep ; + LLViewerObject* tmpvolume; + + static S32 sUploadAmount; +}; + +#endif // LL_LLFloaterSculptPreview_H diff --git a/indra/newview/llfloateravatarlist.cpp b/indra/newview/llfloateravatarlist.cpp index 6c7b65385..735bc63a4 100644 --- a/indra/newview/llfloateravatarlist.cpp +++ b/indra/newview/llfloateravatarlist.cpp @@ -693,7 +693,7 @@ void LLFloaterAvatarList::refreshAvatarList() } // custom colors for certain types of avatars! - element["columns"][LIST_AVATAR_NAME]["color"] = gColors.getColor( "RadarAvatar" ).getValue(); + element["columns"][LIST_AVATAR_NAME]["color"] = gColors.getColor( "MapAvatar" ).getValue(); LLViewerRegion* parent_estate = LLWorld::getInstance()->getRegionFromPosGlobal(entry->getPosition()); LLUUID estate_owner = LLUUID::null; if(parent_estate && parent_estate->isAlive()) @@ -704,22 +704,22 @@ void LLFloaterAvatarList::refreshAvatarList() //Lindens are always more Linden than your friend, make that take precedence if(LLMuteList::getInstance()->isLinden(entry->getName())) { - element["columns"][LIST_AVATAR_NAME]["color"] = gColors.getColor( "RadarLinden" ).getValue(); + element["columns"][LIST_AVATAR_NAME]["color"] = gColors.getColor( "MapLinden" ).getValue(); } //first make sure their parent estate actually still exists and is alive, and yes, I am lazy. else if(estate_owner.notNull() && av_id == estate_owner) { - element["columns"][LIST_AVATAR_NAME]["color"] = gColors.getColor( "RadarEstateOwner" ).getValue(); + element["columns"][LIST_AVATAR_NAME]["color"] = gColors.getColor( "MapEstateOwner" ).getValue(); } //without these people, SL would suck. else if(is_agent_friend(av_id)) { - element["columns"][LIST_AVATAR_NAME]["color"] = gColors.getColor( "RadarFriend" ).getValue(); + element["columns"][LIST_AVATAR_NAME]["color"] = gColors.getColor( "MapFriend" ).getValue(); } //big fat jerkface who is probably a jerk, display them as such. else if(LLMuteList::getInstance()->isMuted(av_id)) { - element["columns"][LIST_AVATAR_NAME]["color"] = gColors.getColor( "RadarMuted" ).getValue(); + element["columns"][LIST_AVATAR_NAME]["color"] = gColors.getColor( "MapMuted" ).getValue(); } // diff --git a/indra/newview/llpanelskins.cpp b/indra/newview/llpanelskins.cpp index 8ebad27a9..ad0ee6bec 100644 --- a/indra/newview/llpanelskins.cpp +++ b/indra/newview/llpanelskins.cpp @@ -85,12 +85,13 @@ void LLPanelSkins::refresh() datas.clear(); //comboBox->add("===OFF==="); std::string path_name(gDirUtilp->getSkinBaseDir()+gDirUtilp->getDirDelimiter()); + llinfos << "Reading skin listing from " << path_name << llendl; bool found = true; std::string currentSkinName(""); while(found) { found = gDirUtilp->getNextFileInDir(path_name, "*.xml", name, false); - //llinfos << "path name " << path_name << " and name " << name << " and found " << found << llendl; + llinfos << "path name " << path_name << " and name " << name << " and found " << found << llendl; if(found) { LLSD data; @@ -101,8 +102,8 @@ void LLPanelSkins::refresh() { datas.push_back(data); comboBox->add(data["skin_name"].asString()); - //llinfos << "data is length " << datas.size() << " foldername field is " - // << data["folder_name"].asString() << " and looking for " << gSavedSettings.getString("SkinCurrent") <buildFloater(this,"floater_preview_embedded_texture.xml"); + childSetAction("Copy To Inventory",LLPreview::onBtnCopyToInv,this); } else if (mShowKeepDiscard) { + LLUICtrlFactory::getInstance()->buildFloater(this,"floater_preview_texture_keep_discard.xml"); + childSetAction("Keep",onKeepBtn,this); childSetAction("Discard",onDiscardBtn,this); } @@ -210,7 +218,10 @@ void LLPreviewTexture::init() old_rect.getWidth(), old_rect.getHeight()); childSetRect("dimensions", new_rect); } - + childSetAction("copy_uuid", onClickCopyID, this); + childSetEnabled("copy_uuid", canSaveAs()); + childSetAction("preview_sculpt", onPreviewSculpt, this); + childSetEnabled("preview_sculpt", canSaveAs()); if (!mCopyToInv) { @@ -250,6 +261,7 @@ void LLPreviewTexture::draw() if ( mImage.notNull() ) { + if(mImage->isMissingAsset()) setTitle("Asset Missing"); // Draw the texture glColor3f( 1.f, 1.f, 1.f ); gl_draw_scaled_image(interior.mLeft, @@ -331,14 +343,46 @@ void LLPreviewTexture::draw() } } +void LLPreviewTexture::onClickCopyID(void* data) +{ + LLPreviewTexture *self = (LLPreviewTexture*)data; + char buffer[UUID_STR_LENGTH]; /*Flawfinder: ignore*/ + self->mImageID.toString(buffer); + llinfos << "copying id " << self->mImageID << " to clipboard" << llendl; + gViewerWindow->mWindow->copyTextToClipboard(utf8str_to_wstring(buffer)); +} + +void LLPreviewTexture::onPreviewSculpt(void* data) +{ + LLPreviewTexture *self = (LLPreviewTexture*)data; + self->mImage->setLoadedCallback( LLPreviewTexture::OnFileLoadedForPreview, + 0, TRUE, FALSE, new LLUUID( self->mItemUUID ) ); +} +void LLPreviewTexture::OnFileLoadedForPreview(BOOL success, + LLViewerImage *src_vi, + LLImageRaw* src, + LLImageRaw* aux_src, + S32 discard_level, + BOOL final, + void* userdata) +{ + if( final && success ) + { + LLFloaterSculptPreview::show(src); + } +} + + +void LLPreviewTexture::onClickSaveButton(void* user_data) +{ + LLPreviewTexture* self = (LLPreviewTexture*)user_data; + self->saveAs(); +} // virtual BOOL LLPreviewTexture::canSaveAs() const { - // - //return mIsCopyable && !mLoadingFullImage && mImage.notNull() && !mImage->isMissingAsset(); - return !mLoadingFullImage && mImage.notNull() && !mImage->isMissingAsset(); - // + return mIsCopyable && !mLoadingFullImage && mImage.notNull() && !mImage->isMissingAsset(); } @@ -364,10 +408,10 @@ void LLPreviewTexture::saveAs() } mLoadingFullImage = TRUE; getWindow()->incBusyCount(); - // - //mImage->setLoadedCallback( LLPreviewTexture::onFileLoadedForSave, - mImage->setLoadedCallbackNoAux( LLPreviewTexture::onFileLoadedForSave, - // + // + //mImage->setLoadedCallback( LLPreviewTexture::onFileLoadedForSave, + mImage->setLoadedCallbackNoAux( LLPreviewTexture::onFileLoadedForSave, + // 0, TRUE, FALSE, new LLUUID( mItemUUID ) ); } @@ -430,17 +474,17 @@ void LLPreviewTexture::onFileLoadedForSave(BOOL success, } } -// -// virtual -LLUUID LLPreviewTexture::getItemID() -{ - const LLViewerInventoryItem* item = getItem(); - if(item) - { - return item->getUUID(); - } - return LLUUID::null; -} +// +// virtual +LLUUID LLPreviewTexture::getItemID() +{ + const LLViewerInventoryItem* item = getItem(); + if(item) + { + return item->getUUID(); + } + return LLUUID::null; +} // // It takes a while until we get height and width information. diff --git a/indra/newview/llpreviewtexture.h b/indra/newview/llpreviewtexture.h index a627c2e21..13f142306 100644 --- a/indra/newview/llpreviewtexture.h +++ b/indra/newview/llpreviewtexture.h @@ -60,16 +60,20 @@ public: ~LLPreviewTexture(); virtual void draw(); - + + static void onClickCopyID(void* data); + static void onPreviewSculpt(void* data); + static void SaveToInventory(void* data); virtual BOOL canSaveAs() const; virtual void saveAs(); - // - virtual LLUUID getItemID(); - // + // + virtual LLUUID getItemID(); + // virtual void loadAsset(); virtual EAssetStatus getAssetStatus(); + static void onClickSaveButton (void* user_data); static void saveToFile(void* userdata); static void onFileLoadedForSave( BOOL success, @@ -79,8 +83,16 @@ public: S32 discard_level, BOOL final, void* userdata ); + static void OnFileLoadedForPreview( + BOOL success, + LLViewerImage *src_vi, + LLImageRaw* src, + LLImageRaw* aux_src, + S32 discard_level, + BOOL final, + void* userdata ); - + LLImageRaw* mImageRaw; protected: void init(); bool setAspectRatio(const F32 width, const F32 height); @@ -90,6 +102,9 @@ protected: private: void updateDimensions(); + LLUUID mItemImageID; + std::string mImageName; + LLUUID mAssetImageID; LLUUID mImageID; LLPointer mImage; BOOL mLoadingFullImage; diff --git a/indra/newview/skins/DarkOrange.xml b/indra/newview/skins/DarkOrange.xml new file mode 100644 index 000000000..e81c9c7d3 --- /dev/null +++ b/indra/newview/skins/DarkOrange.xml @@ -0,0 +1,15 @@ + + + skin_name + Dark Orange + author_name + Pony Ghost + additional_author_names + Linden Lab + skin_info + Game-style interface. Make your Second Life Viewer more like online games +If you like it, there are still many other colors for you to choose. + folder_name + darkorange + + diff --git a/indra/newview/skins/DarkRed.xml b/indra/newview/skins/DarkRed.xml new file mode 100644 index 000000000..e822300d8 --- /dev/null +++ b/indra/newview/skins/DarkRed.xml @@ -0,0 +1,16 @@ + + + skin_name + Dark Red + author_name + LordGregGreg + additional_author_names + Chalice Yao, JB Kraft, Linden Lab + skin_info + Everything should always be red + All Images and modifications done are provided free to use, modify, and distribute, so long as this infomation is distributed with it. + + folder_name + darkgred + + diff --git a/indra/newview/skins/Default.xml b/indra/newview/skins/Default.xml new file mode 100644 index 000000000..67f7abce4 --- /dev/null +++ b/indra/newview/skins/Default.xml @@ -0,0 +1,14 @@ + + + skin_name + Default + author_name + Linden Lab + additional_author_names + + skin_info + This is the default skin for nearly every Second Life viewer. + folder_name + default + + diff --git a/indra/newview/skins/Emerald.xml b/indra/newview/skins/Emerald.xml new file mode 100644 index 000000000..b23ff010e --- /dev/null +++ b/indra/newview/skins/Emerald.xml @@ -0,0 +1,14 @@ + + + skin_name + Emerald Gems + author_name + Ikaru Aichi + additional_author_names + Linden Lab + skin_info + + folder_name + emerald + + diff --git a/indra/newview/skins/Gemini.xml b/indra/newview/skins/Gemini.xml new file mode 100644 index 000000000..f6a912fe9 --- /dev/null +++ b/indra/newview/skins/Gemini.xml @@ -0,0 +1,14 @@ + + + skin_name + Gemini + author_name + Skills Hak + additional_author_names + Linden Lab + skin_info + Originally made for the INFAMOUS Gemini viewer. Also default skin of Second Life 3.0. Use it if you don't like eye-cancer. + folder_name + gemini + + diff --git a/indra/newview/skins/GregsRed.xml b/indra/newview/skins/GregsRed.xml new file mode 100644 index 000000000..b9b7463ea --- /dev/null +++ b/indra/newview/skins/GregsRed.xml @@ -0,0 +1,16 @@ + + + skin_name + Greg Red @ @ + author_name + LordGregGreg + additional_author_names + Chalice Yao, JB Kraft, Linden Lab + skin_info + Everything should always be red + All Images and modifications done are provided free to use, modify, and distribute, so long as this infomation is distributed with it. + + folder_name + gred + + diff --git a/indra/newview/skins/OpenLife.xml b/indra/newview/skins/OpenLife.xml new file mode 100644 index 000000000..26327e67e --- /dev/null +++ b/indra/newview/skins/OpenLife.xml @@ -0,0 +1,14 @@ + + + skin_name + Open Life + author_name + 3DX + additional_author_names + Linden Lab + skin_info + This is the skin from the open life viewer. + folder_name + openlife + + diff --git a/indra/newview/skins/Pony-Aquablue/License and Credit.txt b/indra/newview/skins/Pony-Aquablue/License and Credit.txt new file mode 100644 index 000000000..f65d32dbe --- /dev/null +++ b/indra/newview/skins/Pony-Aquablue/License and Credit.txt @@ -0,0 +1,3 @@ +This skin was modified by Pony Ghost from the default linden skin provided for the Green Life Emerald Viewer. + +All Images and modifications done are provided free to use, modify, and distribute, so long as this infomation is distributed with it. diff --git a/indra/newview/skins/Pony-Aquablue/colors.xml b/indra/newview/skins/Pony-Aquablue/colors.xml new file mode 100644 index 000000000..cf9466fad --- /dev/null +++ b/indra/newview/skins/Pony-Aquablue/colors.xml @@ -0,0 +1,3 @@ + + + diff --git a/indra/newview/skins/Pony-Aquablue/colors_base.xml b/indra/newview/skins/Pony-Aquablue/colors_base.xml new file mode 100644 index 000000000..5d33dd652 --- /dev/null +++ b/indra/newview/skins/Pony-Aquablue/colors_base.xml @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/Pony-Aquablue/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/Pony-Aquablue/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..5111360ce Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/Pony-Aquablue/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..6eaf493b4 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/Pony-Aquablue/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..0d0c1af1b Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/btn_chatbar.tga b/indra/newview/skins/Pony-Aquablue/textures/btn_chatbar.tga new file mode 100644 index 000000000..4e3fa50c4 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/btn_chatbar_selected.tga b/indra/newview/skins/Pony-Aquablue/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..8a0579a86 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/button_anim_pause.tga b/indra/newview/skins/Pony-Aquablue/textures/button_anim_pause.tga new file mode 100644 index 000000000..517311f9a Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/button_anim_pause_disabled.tga b/indra/newview/skins/Pony-Aquablue/textures/button_anim_pause_disabled.tga new file mode 100644 index 000000000..7f06296ef Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/button_anim_pause_disabled.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/button_anim_pause_selected.tga b/indra/newview/skins/Pony-Aquablue/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..f68b803b0 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/button_anim_play.tga b/indra/newview/skins/Pony-Aquablue/textures/button_anim_play.tga new file mode 100644 index 000000000..811083099 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/button_anim_play_disabled.tga b/indra/newview/skins/Pony-Aquablue/textures/button_anim_play_disabled.tga new file mode 100644 index 000000000..79f6238ea Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/button_anim_play_disabled.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/button_anim_play_selected.tga b/indra/newview/skins/Pony-Aquablue/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..84582fc85 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/button_anim_stop.tga b/indra/newview/skins/Pony-Aquablue/textures/button_anim_stop.tga new file mode 100644 index 000000000..8866f22fc Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/button_anim_stop_disabled.tga b/indra/newview/skins/Pony-Aquablue/textures/button_anim_stop_disabled.tga new file mode 100644 index 000000000..114f4b865 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/button_anim_stop_disabled.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/button_anim_stop_selected.tga b/indra/newview/skins/Pony-Aquablue/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..223b4028f Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/button_disabled_32x128.tga b/indra/newview/skins/Pony-Aquablue/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..d6444c7ae Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/button_enabled_32x128.tga b/indra/newview/skins/Pony-Aquablue/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..181b17e3e Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/Pony-Aquablue/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..397576495 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/Pony-Aquablue/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..d75e35dea Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/Pony-Aquablue/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..97d528b8b Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/cam_rotate_in.tga b/indra/newview/skins/Pony-Aquablue/textures/cam_rotate_in.tga new file mode 100644 index 000000000..74797be82 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/cam_rotate_out.tga b/indra/newview/skins/Pony-Aquablue/textures/cam_rotate_out.tga new file mode 100644 index 000000000..e3cbcdef7 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/cam_tracking_in.tga b/indra/newview/skins/Pony-Aquablue/textures/cam_tracking_in.tga new file mode 100644 index 000000000..aace633bb Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/cam_tracking_out.tga b/indra/newview/skins/Pony-Aquablue/textures/cam_tracking_out.tga new file mode 100644 index 000000000..65474ff12 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/cam_zoom_minus_in.tga b/indra/newview/skins/Pony-Aquablue/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..0d22ca41e Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/cam_zoom_out.tga b/indra/newview/skins/Pony-Aquablue/textures/cam_zoom_out.tga new file mode 100644 index 000000000..0d22ca41e Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/cam_zoom_plus_in.tga b/indra/newview/skins/Pony-Aquablue/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..0d22ca41e Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/Pony-Aquablue/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..dc828e9d3 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/eye_button_active.tga b/indra/newview/skins/Pony-Aquablue/textures/eye_button_active.tga new file mode 100644 index 000000000..5a39a557d Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/Pony-Aquablue/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..7c5d1b083 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/ff_edit_mine.tga b/indra/newview/skins/Pony-Aquablue/textures/ff_edit_mine.tga new file mode 100644 index 000000000..04516f485 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/ff_edit_mine.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/ff_edit_mine_button.tga b/indra/newview/skins/Pony-Aquablue/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..34498c67a Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/ff_edit_theirs.tga b/indra/newview/skins/Pony-Aquablue/textures/ff_edit_theirs.tga new file mode 100644 index 000000000..655471e40 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/ff_edit_theirs.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/ff_edit_theirs_button.tga b/indra/newview/skins/Pony-Aquablue/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..1d2494d7e Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/ff_online_status_button.tga b/indra/newview/skins/Pony-Aquablue/textures/ff_online_status_button.tga new file mode 100644 index 000000000..17582f35a Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/ff_visible_map.tga b/indra/newview/skins/Pony-Aquablue/textures/ff_visible_map.tga new file mode 100644 index 000000000..99fc0814a Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/ff_visible_map.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/ff_visible_map_button.tga b/indra/newview/skins/Pony-Aquablue/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..99fc0814a Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/ff_visible_online.tga b/indra/newview/skins/Pony-Aquablue/textures/ff_visible_online.tga new file mode 100644 index 000000000..d05776138 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/ff_visible_online.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/ff_visible_online_button.tga b/indra/newview/skins/Pony-Aquablue/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..996cb4713 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_left.tga b/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_left.tga new file mode 100644 index 000000000..cb0788378 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..1910ba4dc Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_left_selected.tga b/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..6fcad9375 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_right.tga b/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_right.tga new file mode 100644 index 000000000..e64c47e75 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..b9d700ccf Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_right_selected.tga b/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..2544a16bb Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_label_media.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_label_media.tga new file mode 100644 index 000000000..b62d9a067 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_label_media.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_label_music.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_label_music.tga new file mode 100644 index 000000000..2182b6e00 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_label_web.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_label_web.tga new file mode 100644 index 000000000..10dca21e7 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_media-pause.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_media-pause.tga new file mode 100644 index 000000000..5c303b639 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_media-pause_active.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..ded23ac1f Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_media-pause_disabled.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..f6664a203 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_media-pause_enabled.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..517311f9a Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_media-play.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_media-play.tga new file mode 100644 index 000000000..7fe291977 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_media-play.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_media-play_active.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_media-play_active.tga new file mode 100644 index 000000000..42c1978dd Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_media-play_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_media-play_disabled.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_media-play_disabled.tga new file mode 100644 index 000000000..6c06f2569 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_media-play_disabled.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_media-play_enabled.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..2894806cd Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_media-stop_active.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_media-stop_active.tga new file mode 100644 index 000000000..16d6290d8 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_media-stop_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_media-stop_disabled.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_media-stop_disabled.tga new file mode 100644 index 000000000..61d4a218c Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_media-stop_disabled.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_media-stop_enabled.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..05b0e48ef Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_media.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_media.tga new file mode 100644 index 000000000..4992d356b Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_media.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_media_movie.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_media_movie.tga new file mode 100644 index 000000000..eca6fa3e9 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_media_web.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_media_web.tga new file mode 100644 index 000000000..dd33a6a31 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_music-pause.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_music-pause.tga new file mode 100644 index 000000000..9ee4b0ccc Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_music-play.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_music-play.tga new file mode 100644 index 000000000..45e89bc7b Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_music.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_music.tga new file mode 100644 index 000000000..c265aa645 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_music.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_pause.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_pause.tga new file mode 100644 index 000000000..5a494ff0b Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_pause.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_play.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_play.tga new file mode 100644 index 000000000..926254bac Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_play.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_scrollbar_bg.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_scrollbar_bg.tga new file mode 100644 index 000000000..c90daac25 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_scrollbar_bg.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_scrollbar_thumb.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_scrollbar_thumb.tga new file mode 100644 index 000000000..b765b137c Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_scrollbar_thumb.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_slide-groove_dark.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..c7d049d92 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_slide-highlight.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..12fef6559 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..277024d1d Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..0a92b7e0f Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_speaker_dark.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..4f4d7c552 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_stop.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_stop.tga new file mode 100644 index 000000000..63a17757d Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_stop.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icn_textfield_enabled.tga b/indra/newview/skins/Pony-Aquablue/textures/icn_textfield_enabled.tga new file mode 100644 index 000000000..411b4b41e Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icn_textfield_enabled.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icon_avatar_expand.png b/indra/newview/skins/Pony-Aquablue/textures/icon_avatar_expand.png new file mode 100644 index 000000000..067ceb254 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icon_avatar_expand.png differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icon_avatar_offline.tga b/indra/newview/skins/Pony-Aquablue/textures/icon_avatar_offline.tga new file mode 100644 index 000000000..97d896ef9 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icon_avatar_offline.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/icon_avatar_online.tga b/indra/newview/skins/Pony-Aquablue/textures/icon_avatar_online.tga new file mode 100644 index 000000000..626c6eacf Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/icon_avatar_online.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_animation.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_animation.tga new file mode 100644 index 000000000..7ed3c1262 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_animation.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_bodypart.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_bodypart.tga new file mode 100644 index 000000000..1b76d3492 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_bodypart.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_callingcard.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_callingcard.tga new file mode 100644 index 000000000..30ba277c9 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_callingcard.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_clothing.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_clothing.tga new file mode 100644 index 000000000..dfd3df190 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_clothing.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_gesture.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_gesture.tga new file mode 100644 index 000000000..5e740bc16 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_gesture.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_landmark.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_landmark.tga new file mode 100644 index 000000000..f7eac4422 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_landmark.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_lostandfound.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_lostandfound.tga new file mode 100644 index 000000000..633860af5 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_lostandfound.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_notecard.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_notecard.tga new file mode 100644 index 000000000..2cc6dc0c8 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_notecard.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_object.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_object.tga new file mode 100644 index 000000000..b48a644b0 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_object.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_plain_closed.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_plain_closed.tga new file mode 100644 index 000000000..e002f6575 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_plain_closed.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_plain_open.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_plain_open.tga new file mode 100644 index 000000000..e002f6575 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_plain_open.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_script.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_script.tga new file mode 100644 index 000000000..97f9ac639 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_script.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_snapshot.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_snapshot.tga new file mode 100644 index 000000000..95d7cd87e Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_snapshot.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_sound.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_sound.tga new file mode 100644 index 000000000..cd9103ce0 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_sound.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_folder_texture.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_texture.tga new file mode 100644 index 000000000..aa4f49b91 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_folder_texture.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_item_gloves.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_item_gloves.tga new file mode 100644 index 000000000..714092604 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_item_gloves.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_item_jacket.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_item_jacket.tga new file mode 100644 index 000000000..1bae3204f Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_item_jacket.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_item_landmark.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_item_landmark.tga new file mode 100644 index 000000000..e2feec713 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_item_landmark.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_item_object.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_item_object.tga new file mode 100644 index 000000000..a959848fd Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_item_object.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_item_object_multi.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_item_object_multi.tga new file mode 100644 index 000000000..a2d1bab53 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_item_object_multi.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_item_shape.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_item_shape.tga new file mode 100644 index 000000000..a7ecf5d39 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_item_shape.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_item_shirt.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_item_shirt.tga new file mode 100644 index 000000000..0d2a0f130 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_item_shirt.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_item_skin.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_item_skin.tga new file mode 100644 index 000000000..5c0f8c5fa Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_item_skin.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_item_skirt.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_item_skirt.tga new file mode 100644 index 000000000..1ef24564e Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_item_skirt.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_item_socks.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_item_socks.tga new file mode 100644 index 000000000..8f6a62eca Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_item_socks.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/inv_item_texture.tga b/indra/newview/skins/Pony-Aquablue/textures/inv_item_texture.tga new file mode 100644 index 000000000..668ade894 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/inv_item_texture.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/map_home.tga b/indra/newview/skins/Pony-Aquablue/textures/map_home.tga new file mode 100644 index 000000000..7478de371 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/map_home.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/map_infohub.tga b/indra/newview/skins/Pony-Aquablue/textures/map_infohub.tga new file mode 100644 index 000000000..d0134fa5f Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/map_infohub.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/media_icon.tga b/indra/newview/skins/Pony-Aquablue/textures/media_icon.tga new file mode 100644 index 000000000..15bd4623e Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/media_icon.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/minimize_inactive.tga b/indra/newview/skins/Pony-Aquablue/textures/minimize_inactive.tga new file mode 100644 index 000000000..fcd62aa35 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/minimize_inactive.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_backward_in.tga b/indra/newview/skins/Pony-Aquablue/textures/move_backward_in.tga new file mode 100644 index 000000000..4402df621 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_backward_out.tga b/indra/newview/skins/Pony-Aquablue/textures/move_backward_out.tga new file mode 100644 index 000000000..3081c189d Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_down_in.tga b/indra/newview/skins/Pony-Aquablue/textures/move_down_in.tga new file mode 100644 index 000000000..7f39e37c2 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_down_in.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_down_out.tga b/indra/newview/skins/Pony-Aquablue/textures/move_down_out.tga new file mode 100644 index 000000000..7cb2a5cd2 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_down_out.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_forward_in.tga b/indra/newview/skins/Pony-Aquablue/textures/move_forward_in.tga new file mode 100644 index 000000000..d7666ade8 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_forward_out.tga b/indra/newview/skins/Pony-Aquablue/textures/move_forward_out.tga new file mode 100644 index 000000000..bb846eacb Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_left_in.tga b/indra/newview/skins/Pony-Aquablue/textures/move_left_in.tga new file mode 100644 index 000000000..d7963ca47 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_left_in.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_left_out.tga b/indra/newview/skins/Pony-Aquablue/textures/move_left_out.tga new file mode 100644 index 000000000..2f306e24f Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_left_out.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_right_in.tga b/indra/newview/skins/Pony-Aquablue/textures/move_right_in.tga new file mode 100644 index 000000000..5d9b07981 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_right_in.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_right_out.tga b/indra/newview/skins/Pony-Aquablue/textures/move_right_out.tga new file mode 100644 index 000000000..be5db585e Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_right_out.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_turn_left_in.tga b/indra/newview/skins/Pony-Aquablue/textures/move_turn_left_in.tga new file mode 100644 index 000000000..89ba12987 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_turn_left_out.tga b/indra/newview/skins/Pony-Aquablue/textures/move_turn_left_out.tga new file mode 100644 index 000000000..7f50a39a6 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_turn_right_in.tga b/indra/newview/skins/Pony-Aquablue/textures/move_turn_right_in.tga new file mode 100644 index 000000000..b1df0d00b Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_turn_right_out.tga b/indra/newview/skins/Pony-Aquablue/textures/move_turn_right_out.tga new file mode 100644 index 000000000..2dd59054d Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_up_in.tga b/indra/newview/skins/Pony-Aquablue/textures/move_up_in.tga new file mode 100644 index 000000000..61a87a620 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_up_in.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/move_up_out.tga b/indra/newview/skins/Pony-Aquablue/textures/move_up_out.tga new file mode 100644 index 000000000..a6c83fc13 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/move_up_out.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/music_icon.tga b/indra/newview/skins/Pony-Aquablue/textures/music_icon.tga new file mode 100644 index 000000000..eec35c817 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/music_icon.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/notify_box_icon.tga b/indra/newview/skins/Pony-Aquablue/textures/notify_box_icon.tga new file mode 100644 index 000000000..ed101050d Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/notify_box_icon.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/notify_caution_icon.tga b/indra/newview/skins/Pony-Aquablue/textures/notify_caution_icon.tga new file mode 100644 index 000000000..b96eeac18 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/notify_caution_icon.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/notify_next.png b/indra/newview/skins/Pony-Aquablue/textures/notify_next.png new file mode 100644 index 000000000..41fc9c543 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/notify_next.png differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/notify_tip_icon.tga b/indra/newview/skins/Pony-Aquablue/textures/notify_tip_icon.tga new file mode 100644 index 000000000..55eae4454 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/notify_tip_icon.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_cone.tga b/indra/newview/skins/Pony-Aquablue/textures/object_cone.tga new file mode 100644 index 000000000..4b775c24f Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_cone.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_cone_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_cone_active.tga new file mode 100644 index 000000000..34980af79 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_cone_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_cube.tga b/indra/newview/skins/Pony-Aquablue/textures/object_cube.tga new file mode 100644 index 000000000..d749711e9 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_cube.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_cube_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_cube_active.tga new file mode 100644 index 000000000..8e29de4c5 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_cube_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_cylinder.tga b/indra/newview/skins/Pony-Aquablue/textures/object_cylinder.tga new file mode 100644 index 000000000..4c62507ae Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_cylinder.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_cylinder_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_cylinder_active.tga new file mode 100644 index 000000000..76cf927ea Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_cylinder_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_grass.tga b/indra/newview/skins/Pony-Aquablue/textures/object_grass.tga new file mode 100644 index 000000000..5efd1ae00 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_grass.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_grass_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_grass_active.tga new file mode 100644 index 000000000..b4e21153d Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_grass_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_hemi_cone.tga b/indra/newview/skins/Pony-Aquablue/textures/object_hemi_cone.tga new file mode 100644 index 000000000..5040782a2 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_hemi_cone.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_hemi_cone_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_hemi_cone_active.tga new file mode 100644 index 000000000..94aa3f695 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_hemi_cone_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_hemi_cylinder.tga b/indra/newview/skins/Pony-Aquablue/textures/object_hemi_cylinder.tga new file mode 100644 index 000000000..5b415f3f4 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_hemi_cylinder.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_hemi_cylinder_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_hemi_cylinder_active.tga new file mode 100644 index 000000000..f37a286a1 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_hemi_cylinder_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_hemi_sphere.tga b/indra/newview/skins/Pony-Aquablue/textures/object_hemi_sphere.tga new file mode 100644 index 000000000..868e115bf Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_hemi_sphere.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_hemi_sphere_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_hemi_sphere_active.tga new file mode 100644 index 000000000..27cd2c407 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_hemi_sphere_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_prism.tga b/indra/newview/skins/Pony-Aquablue/textures/object_prism.tga new file mode 100644 index 000000000..b233d252d Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_prism.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_prism_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_prism_active.tga new file mode 100644 index 000000000..aca2bd759 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_prism_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_pyramid.tga b/indra/newview/skins/Pony-Aquablue/textures/object_pyramid.tga new file mode 100644 index 000000000..e4cf51e24 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_pyramid.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_pyramid_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_pyramid_active.tga new file mode 100644 index 000000000..161d7034f Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_pyramid_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_ring.tga b/indra/newview/skins/Pony-Aquablue/textures/object_ring.tga new file mode 100644 index 000000000..56eac325d Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_ring.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_ring_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_ring_active.tga new file mode 100644 index 000000000..0ff181c07 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_ring_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_sphere.tga b/indra/newview/skins/Pony-Aquablue/textures/object_sphere.tga new file mode 100644 index 000000000..43ee15834 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_sphere.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_sphere_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_sphere_active.tga new file mode 100644 index 000000000..df60744b1 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_sphere_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_tetrahedron.tga b/indra/newview/skins/Pony-Aquablue/textures/object_tetrahedron.tga new file mode 100644 index 000000000..9edcb6f2e Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_tetrahedron.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_tetrahedron_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_tetrahedron_active.tga new file mode 100644 index 000000000..b0afda879 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_tetrahedron_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_torus.tga b/indra/newview/skins/Pony-Aquablue/textures/object_torus.tga new file mode 100644 index 000000000..6e9a4d933 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_torus.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_torus_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_torus_active.tga new file mode 100644 index 000000000..7e0e7e887 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_torus_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_tree.tga b/indra/newview/skins/Pony-Aquablue/textures/object_tree.tga new file mode 100644 index 000000000..707eabfc5 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_tree.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_tree_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_tree_active.tga new file mode 100644 index 000000000..282941022 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_tree_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_tube.tga b/indra/newview/skins/Pony-Aquablue/textures/object_tube.tga new file mode 100644 index 000000000..3252c6320 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_tube.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/object_tube_active.tga b/indra/newview/skins/Pony-Aquablue/textures/object_tube_active.tga new file mode 100644 index 000000000..cdbc0adc3 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/object_tube_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/preview.png b/indra/newview/skins/Pony-Aquablue/textures/preview.png new file mode 100644 index 000000000..539f2d1d8 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/preview.png differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/progress_fill.tga b/indra/newview/skins/Pony-Aquablue/textures/progress_fill.tga new file mode 100644 index 000000000..274cecc23 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/progress_fill.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/progressbar_fill.tga b/indra/newview/skins/Pony-Aquablue/textures/progressbar_fill.tga new file mode 100644 index 000000000..0fc1ff4db Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/progressbar_track.tga b/indra/newview/skins/Pony-Aquablue/textures/progressbar_track.tga new file mode 100644 index 000000000..6a0326955 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/Pony-Aquablue/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..5df16ca63 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/restore_inactive.tga b/indra/newview/skins/Pony-Aquablue/textures/restore_inactive.tga new file mode 100644 index 000000000..dbbec7ea1 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/restore_inactive.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/restore_pressed.tga b/indra/newview/skins/Pony-Aquablue/textures/restore_pressed.tga new file mode 100644 index 000000000..1922ca881 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/restore_pressed.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/Pony-Aquablue/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..0b51810e4 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/Pony-Aquablue/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..220c1bd68 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/Pony-Aquablue/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..6b4b9dc1b Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/Pony-Aquablue/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..2d3d7967f Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/square_btn_32x128.tga b/indra/newview/skins/Pony-Aquablue/textures/square_btn_32x128.tga new file mode 100644 index 000000000..652a646d2 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/square_btn_selected_32x128.tga b/indra/newview/skins/Pony-Aquablue/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..ca6cc96a3 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/status_buy_currency.tga b/indra/newview/skins/Pony-Aquablue/textures/status_buy_currency.tga new file mode 100644 index 000000000..4953c2322 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/status_buy_currency_pressed.tga b/indra/newview/skins/Pony-Aquablue/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..ad2d1373d Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/status_buy_land.tga b/indra/newview/skins/Pony-Aquablue/textures/status_buy_land.tga new file mode 100644 index 000000000..90f33fee2 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/status_buy_land_pressed.tga b/indra/newview/skins/Pony-Aquablue/textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..9d9ec13bc Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/status_no_build.tga b/indra/newview/skins/Pony-Aquablue/textures/status_no_build.tga new file mode 100644 index 000000000..72214ce69 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/status_no_build.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/status_no_fly.tga b/indra/newview/skins/Pony-Aquablue/textures/status_no_fly.tga new file mode 100644 index 000000000..95e2f6539 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/status_no_fly.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/status_no_push.tga b/indra/newview/skins/Pony-Aquablue/textures/status_no_push.tga new file mode 100644 index 000000000..f3e7aadd7 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/status_no_push.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/status_no_scripts.tga b/indra/newview/skins/Pony-Aquablue/textures/status_no_scripts.tga new file mode 100644 index 000000000..75733e566 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/status_no_scripts.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/status_no_voice.tga b/indra/newview/skins/Pony-Aquablue/textures/status_no_voice.tga new file mode 100644 index 000000000..3f1c91980 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/status_no_voice.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/tab_bottom_blue.tga b/indra/newview/skins/Pony-Aquablue/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..af6249476 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/Pony-Aquablue/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..a9b0abb48 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/tab_left.tga b/indra/newview/skins/Pony-Aquablue/textures/tab_left.tga new file mode 100644 index 000000000..ba6d0e79a Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/tab_left.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/tab_left_selected.tga b/indra/newview/skins/Pony-Aquablue/textures/tab_left_selected.tga new file mode 100644 index 000000000..c400c0bf5 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/tab_top_blue.tga b/indra/newview/skins/Pony-Aquablue/textures/tab_top_blue.tga new file mode 100644 index 000000000..169226421 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/tab_top_selected_blue.tga b/indra/newview/skins/Pony-Aquablue/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..a54335092 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/textures.xml b/indra/newview/skins/Pony-Aquablue/textures/textures.xml new file mode 100644 index 000000000..70cd3e113 --- /dev/null +++ b/indra/newview/skins/Pony-Aquablue/textures/textures.xml @@ -0,0 +1,383 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/Pony-Aquablue/textures/tool_dozer.tga b/indra/newview/skins/Pony-Aquablue/textures/tool_dozer.tga new file mode 100644 index 000000000..fd52271a6 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/tool_dozer_active.tga b/indra/newview/skins/Pony-Aquablue/textures/tool_dozer_active.tga new file mode 100644 index 000000000..f38b034a3 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/tool_zoom.tga b/indra/newview/skins/Pony-Aquablue/textures/tool_zoom.tga new file mode 100644 index 000000000..098b992b2 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/tool_zoom_active.tga b/indra/newview/skins/Pony-Aquablue/textures/tool_zoom_active.tga new file mode 100644 index 000000000..1d81d87e3 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/toolbar_bg.tga b/indra/newview/skins/Pony-Aquablue/textures/toolbar_bg.tga new file mode 100644 index 000000000..940a2ab6b Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/toolbar_bg.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/toolbar_btn_disabled.tga b/indra/newview/skins/Pony-Aquablue/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..17bb1961a Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/toolbar_btn_enabled.tga b/indra/newview/skins/Pony-Aquablue/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..08c9f3f28 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/toolbar_btn_selected.tga b/indra/newview/skins/Pony-Aquablue/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..b440d4403 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/toolbar_tab.tga b/indra/newview/skins/Pony-Aquablue/textures/toolbar_tab.tga new file mode 100644 index 000000000..0da3038a8 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/up_arrow.png b/indra/newview/skins/Pony-Aquablue/textures/up_arrow.png new file mode 100644 index 000000000..7e6b91d0c Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/up_arrow.png differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/up_arrow.tga b/indra/newview/skins/Pony-Aquablue/textures/up_arrow.tga new file mode 100644 index 000000000..ef030b57e Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/up_arrow.tga differ diff --git a/indra/newview/skins/Pony-Aquablue/textures/uv_test2.tga b/indra/newview/skins/Pony-Aquablue/textures/uv_test2.tga new file mode 100644 index 000000000..253e5e890 Binary files /dev/null and b/indra/newview/skins/Pony-Aquablue/textures/uv_test2.tga differ diff --git a/indra/newview/skins/Pony-Purple.xml b/indra/newview/skins/Pony-Purple.xml new file mode 100644 index 000000000..8e9e0eca0 --- /dev/null +++ b/indra/newview/skins/Pony-Purple.xml @@ -0,0 +1,15 @@ + + + skin_name + Purple Metalic + author_name + Pony Ghost + additional_author_names + Linden Lab + skin_info + Game-style interface. Make your Second Life Viewer more like online games +If you like it, there are still many other colors for you to choose. + folder_name + Pony-Purple + + diff --git a/indra/newview/skins/Pony-Purple/License and Credit.txt b/indra/newview/skins/Pony-Purple/License and Credit.txt new file mode 100644 index 000000000..f65d32dbe --- /dev/null +++ b/indra/newview/skins/Pony-Purple/License and Credit.txt @@ -0,0 +1,3 @@ +This skin was modified by Pony Ghost from the default linden skin provided for the Green Life Emerald Viewer. + +All Images and modifications done are provided free to use, modify, and distribute, so long as this infomation is distributed with it. diff --git a/indra/newview/skins/Pony-Purple/colors_base.xml b/indra/newview/skins/Pony-Purple/colors_base.xml new file mode 100644 index 000000000..7a1f00597 --- /dev/null +++ b/indra/newview/skins/Pony-Purple/colors_base.xml @@ -0,0 +1,202 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/Pony-Purple/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/Pony-Purple/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..ab8c1392b Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/Pony-Purple/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..6ccd0ff37 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga b/indra/newview/skins/Pony-Purple/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga new file mode 100644 index 000000000..a1f66688e Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga b/indra/newview/skins/Pony-Purple/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga new file mode 100644 index 000000000..c118451f5 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/Pony-Purple/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..9aaa97ed8 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/btn_chatbar.tga b/indra/newview/skins/Pony-Purple/textures/btn_chatbar.tga new file mode 100644 index 000000000..fe5b6bd9a Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/btn_chatbar_selected.tga b/indra/newview/skins/Pony-Purple/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..9380c3df1 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/button_anim_pause.tga b/indra/newview/skins/Pony-Purple/textures/button_anim_pause.tga new file mode 100644 index 000000000..45ec2e209 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/button_anim_pause_disabled.tga b/indra/newview/skins/Pony-Purple/textures/button_anim_pause_disabled.tga new file mode 100644 index 000000000..3a055e865 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/button_anim_pause_disabled.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/button_anim_pause_selected.tga b/indra/newview/skins/Pony-Purple/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..d27c8e00f Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/button_anim_play.tga b/indra/newview/skins/Pony-Purple/textures/button_anim_play.tga new file mode 100644 index 000000000..cdd361bc4 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/button_anim_play_disabled.tga b/indra/newview/skins/Pony-Purple/textures/button_anim_play_disabled.tga new file mode 100644 index 000000000..025578e7c Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/button_anim_play_disabled.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/button_anim_play_selected.tga b/indra/newview/skins/Pony-Purple/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..1cf1c19f7 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/button_anim_stop.tga b/indra/newview/skins/Pony-Purple/textures/button_anim_stop.tga new file mode 100644 index 000000000..77576ff0e Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/button_anim_stop_disabled.tga b/indra/newview/skins/Pony-Purple/textures/button_anim_stop_disabled.tga new file mode 100644 index 000000000..ae946ca3c Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/button_anim_stop_disabled.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/button_anim_stop_selected.tga b/indra/newview/skins/Pony-Purple/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..70d2d0c06 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/button_disabled_32x128.tga b/indra/newview/skins/Pony-Purple/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..f06b5228e Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/button_enabled_32x128.tga b/indra/newview/skins/Pony-Purple/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..49290d800 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/Pony-Purple/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..9645fcaf8 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/Pony-Purple/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..75eae6c78 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/Pony-Purple/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..90aa79f4d Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/cam_rotate_in.tga b/indra/newview/skins/Pony-Purple/textures/cam_rotate_in.tga new file mode 100644 index 000000000..3446d2c80 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/cam_rotate_out.tga b/indra/newview/skins/Pony-Purple/textures/cam_rotate_out.tga new file mode 100644 index 000000000..6899b7e54 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/cam_tracking_in.tga b/indra/newview/skins/Pony-Purple/textures/cam_tracking_in.tga new file mode 100644 index 000000000..146015033 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/cam_tracking_out.tga b/indra/newview/skins/Pony-Purple/textures/cam_tracking_out.tga new file mode 100644 index 000000000..14586ec90 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/cam_zoom_minus_in.tga b/indra/newview/skins/Pony-Purple/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..9361c6b81 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/cam_zoom_out.tga b/indra/newview/skins/Pony-Purple/textures/cam_zoom_out.tga new file mode 100644 index 000000000..9361c6b81 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/cam_zoom_plus_in.tga b/indra/newview/skins/Pony-Purple/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..9361c6b81 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/Pony-Purple/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..699779d53 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/eye_button_active.tga b/indra/newview/skins/Pony-Purple/textures/eye_button_active.tga new file mode 100644 index 000000000..97fff765c Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/Pony-Purple/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..423db2f89 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/ff_edit_mine.tga b/indra/newview/skins/Pony-Purple/textures/ff_edit_mine.tga new file mode 100644 index 000000000..b9950b50d Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/ff_edit_mine.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/ff_edit_mine_button.tga b/indra/newview/skins/Pony-Purple/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..875f99b59 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/ff_edit_theirs.tga b/indra/newview/skins/Pony-Purple/textures/ff_edit_theirs.tga new file mode 100644 index 000000000..31285f80d Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/ff_edit_theirs.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/ff_edit_theirs_button.tga b/indra/newview/skins/Pony-Purple/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..5de2062ba Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/ff_online_status_button.tga b/indra/newview/skins/Pony-Purple/textures/ff_online_status_button.tga new file mode 100644 index 000000000..4efe43041 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/ff_visible_map.tga b/indra/newview/skins/Pony-Purple/textures/ff_visible_map.tga new file mode 100644 index 000000000..f5b2cca38 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/ff_visible_map.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/ff_visible_map_button.tga b/indra/newview/skins/Pony-Purple/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..1ea1c9854 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/ff_visible_online.tga b/indra/newview/skins/Pony-Purple/textures/ff_visible_online.tga new file mode 100644 index 000000000..5e85425a0 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/ff_visible_online.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/ff_visible_online_button.tga b/indra/newview/skins/Pony-Purple/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..c8abdadb8 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/flyout_btn_left.tga b/indra/newview/skins/Pony-Purple/textures/flyout_btn_left.tga new file mode 100644 index 000000000..25799e73d Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/Pony-Purple/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..5377f49a5 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/flyout_btn_left_selected.tga b/indra/newview/skins/Pony-Purple/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..e47c9ea08 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/flyout_btn_right.tga b/indra/newview/skins/Pony-Purple/textures/flyout_btn_right.tga new file mode 100644 index 000000000..fc5eaff3c Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/Pony-Purple/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..8b59362c2 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/flyout_btn_right_selected.tga b/indra/newview/skins/Pony-Purple/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..34314869a Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_label_media.tga b/indra/newview/skins/Pony-Purple/textures/icn_label_media.tga new file mode 100644 index 000000000..32382d150 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_label_media.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_label_music.tga b/indra/newview/skins/Pony-Purple/textures/icn_label_music.tga new file mode 100644 index 000000000..82f4f1399 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_label_web.tga b/indra/newview/skins/Pony-Purple/textures/icn_label_web.tga new file mode 100644 index 000000000..b78ef48db Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_media-pause.tga b/indra/newview/skins/Pony-Purple/textures/icn_media-pause.tga new file mode 100644 index 000000000..7f47b6f35 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_media-pause_active.tga b/indra/newview/skins/Pony-Purple/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..1b7c7d004 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_media-pause_disabled.tga b/indra/newview/skins/Pony-Purple/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..0efd12ead Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_media-pause_enabled.tga b/indra/newview/skins/Pony-Purple/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..45ec2e209 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_media-play.tga b/indra/newview/skins/Pony-Purple/textures/icn_media-play.tga new file mode 100644 index 000000000..d04f5a3f0 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_media-play.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_media-play_active.tga b/indra/newview/skins/Pony-Purple/textures/icn_media-play_active.tga new file mode 100644 index 000000000..2ddd8aa10 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_media-play_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_media-play_disabled.tga b/indra/newview/skins/Pony-Purple/textures/icn_media-play_disabled.tga new file mode 100644 index 000000000..deeab3fd1 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_media-play_disabled.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_media-play_enabled.tga b/indra/newview/skins/Pony-Purple/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..3b73ce1dc Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_media-stop_active.tga b/indra/newview/skins/Pony-Purple/textures/icn_media-stop_active.tga new file mode 100644 index 000000000..579b05a6c Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_media-stop_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_media-stop_disabled.tga b/indra/newview/skins/Pony-Purple/textures/icn_media-stop_disabled.tga new file mode 100644 index 000000000..37b10d2d6 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_media-stop_disabled.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_media-stop_enabled.tga b/indra/newview/skins/Pony-Purple/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..eea2373ae Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_media.tga b/indra/newview/skins/Pony-Purple/textures/icn_media.tga new file mode 100644 index 000000000..15ff3a9b2 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_media.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_media_movie.tga b/indra/newview/skins/Pony-Purple/textures/icn_media_movie.tga new file mode 100644 index 000000000..4785597ce Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_media_web.tga b/indra/newview/skins/Pony-Purple/textures/icn_media_web.tga new file mode 100644 index 000000000..4536d7ad2 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_music-pause.tga b/indra/newview/skins/Pony-Purple/textures/icn_music-pause.tga new file mode 100644 index 000000000..4dff9dd7f Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_music-play.tga b/indra/newview/skins/Pony-Purple/textures/icn_music-play.tga new file mode 100644 index 000000000..314c38d7d Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_music.tga b/indra/newview/skins/Pony-Purple/textures/icn_music.tga new file mode 100644 index 000000000..fbf556aad Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_music.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_pause.tga b/indra/newview/skins/Pony-Purple/textures/icn_pause.tga new file mode 100644 index 000000000..295cc95f7 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_pause.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_play.tga b/indra/newview/skins/Pony-Purple/textures/icn_play.tga new file mode 100644 index 000000000..84b88ffe0 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_play.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_scrollbar_bg.tga b/indra/newview/skins/Pony-Purple/textures/icn_scrollbar_bg.tga new file mode 100644 index 000000000..1ae1205a1 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_scrollbar_bg.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_scrollbar_thumb.tga b/indra/newview/skins/Pony-Purple/textures/icn_scrollbar_thumb.tga new file mode 100644 index 000000000..694be0666 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_scrollbar_thumb.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_slide-groove_dark.tga b/indra/newview/skins/Pony-Purple/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..c2c45cacc Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_slide-highlight.tga b/indra/newview/skins/Pony-Purple/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..7b469a9df Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/Pony-Purple/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..e8f2ed149 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/Pony-Purple/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..d149569c3 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_speaker_dark.tga b/indra/newview/skins/Pony-Purple/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..d194992db Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_stop.tga b/indra/newview/skins/Pony-Purple/textures/icn_stop.tga new file mode 100644 index 000000000..e23202e50 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_stop.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icn_textfield_enabled.tga b/indra/newview/skins/Pony-Purple/textures/icn_textfield_enabled.tga new file mode 100644 index 000000000..0273ba461 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icn_textfield_enabled.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icon_avatar_expand.png b/indra/newview/skins/Pony-Purple/textures/icon_avatar_expand.png new file mode 100644 index 000000000..67bd280ed Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icon_avatar_expand.png differ diff --git a/indra/newview/skins/Pony-Purple/textures/icon_avatar_offline.tga b/indra/newview/skins/Pony-Purple/textures/icon_avatar_offline.tga new file mode 100644 index 000000000..350876938 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icon_avatar_offline.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icon_avatar_online.tga b/indra/newview/skins/Pony-Purple/textures/icon_avatar_online.tga new file mode 100644 index 000000000..b852950f9 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icon_avatar_online.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/icon_event.tga b/indra/newview/skins/Pony-Purple/textures/icon_event.tga new file mode 100644 index 000000000..7805dbce6 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/icon_event.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_animation.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_animation.tga new file mode 100644 index 000000000..13d4bbce8 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_animation.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_bodypart.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_bodypart.tga new file mode 100644 index 000000000..571f535e7 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_bodypart.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_callingcard.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_callingcard.tga new file mode 100644 index 000000000..b95b43dc9 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_callingcard.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_clothing.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_clothing.tga new file mode 100644 index 000000000..75a8faac8 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_clothing.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_gesture.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_gesture.tga new file mode 100644 index 000000000..ba5d76204 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_gesture.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_landmark.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_landmark.tga new file mode 100644 index 000000000..50872248a Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_landmark.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_lostandfound.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_lostandfound.tga new file mode 100644 index 000000000..00cb510b4 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_lostandfound.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_notecard.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_notecard.tga new file mode 100644 index 000000000..c0dd95036 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_notecard.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_object.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_object.tga new file mode 100644 index 000000000..2935a462a Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_object.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_plain_closed.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_plain_closed.tga new file mode 100644 index 000000000..dc6838d25 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_plain_closed.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_plain_open.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_plain_open.tga new file mode 100644 index 000000000..dc6838d25 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_plain_open.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_script.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_script.tga new file mode 100644 index 000000000..14d0948cf Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_script.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_snapshot.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_snapshot.tga new file mode 100644 index 000000000..908fae915 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_snapshot.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_sound.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_sound.tga new file mode 100644 index 000000000..a25da904c Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_sound.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_folder_texture.tga b/indra/newview/skins/Pony-Purple/textures/inv_folder_texture.tga new file mode 100644 index 000000000..23092cfe8 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_folder_texture.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_item_jacket.tga b/indra/newview/skins/Pony-Purple/textures/inv_item_jacket.tga new file mode 100644 index 000000000..5acd8aa32 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_item_jacket.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_item_landmark.tga b/indra/newview/skins/Pony-Purple/textures/inv_item_landmark.tga new file mode 100644 index 000000000..750c5ac28 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_item_landmark.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_item_object.tga b/indra/newview/skins/Pony-Purple/textures/inv_item_object.tga new file mode 100644 index 000000000..7e75bd155 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_item_object.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_item_object_multi.tga b/indra/newview/skins/Pony-Purple/textures/inv_item_object_multi.tga new file mode 100644 index 000000000..6c0b54756 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_item_object_multi.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_item_shape.tga b/indra/newview/skins/Pony-Purple/textures/inv_item_shape.tga new file mode 100644 index 000000000..2ec5112e3 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_item_shape.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_item_shirt.tga b/indra/newview/skins/Pony-Purple/textures/inv_item_shirt.tga new file mode 100644 index 000000000..21632f70f Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_item_shirt.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_item_skin.tga b/indra/newview/skins/Pony-Purple/textures/inv_item_skin.tga new file mode 100644 index 000000000..7810219d9 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_item_skin.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_item_skirt.tga b/indra/newview/skins/Pony-Purple/textures/inv_item_skirt.tga new file mode 100644 index 000000000..f65ea1b9a Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_item_skirt.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_item_snapshot.tga b/indra/newview/skins/Pony-Purple/textures/inv_item_snapshot.tga new file mode 100644 index 000000000..2e45b960c Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_item_snapshot.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/inv_item_texture.tga b/indra/newview/skins/Pony-Purple/textures/inv_item_texture.tga new file mode 100644 index 000000000..b23b72190 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/inv_item_texture.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/map_event.tga b/indra/newview/skins/Pony-Purple/textures/map_event.tga new file mode 100644 index 000000000..c229b379a Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/map_event.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/media_icon.tga b/indra/newview/skins/Pony-Purple/textures/media_icon.tga new file mode 100644 index 000000000..8f733978d Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/media_icon.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_backward_in.tga b/indra/newview/skins/Pony-Purple/textures/move_backward_in.tga new file mode 100644 index 000000000..13676ff58 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_backward_out.tga b/indra/newview/skins/Pony-Purple/textures/move_backward_out.tga new file mode 100644 index 000000000..0b03a4a1d Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_down_in.tga b/indra/newview/skins/Pony-Purple/textures/move_down_in.tga new file mode 100644 index 000000000..cd2ac0f0e Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_down_in.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_down_out.tga b/indra/newview/skins/Pony-Purple/textures/move_down_out.tga new file mode 100644 index 000000000..20e977dbf Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_down_out.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_forward_in.tga b/indra/newview/skins/Pony-Purple/textures/move_forward_in.tga new file mode 100644 index 000000000..8ed3c8582 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_forward_out.tga b/indra/newview/skins/Pony-Purple/textures/move_forward_out.tga new file mode 100644 index 000000000..cabfdf896 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_left_in.tga b/indra/newview/skins/Pony-Purple/textures/move_left_in.tga new file mode 100644 index 000000000..991167320 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_left_in.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_left_out.tga b/indra/newview/skins/Pony-Purple/textures/move_left_out.tga new file mode 100644 index 000000000..27fbf3cfb Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_left_out.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_right_in.tga b/indra/newview/skins/Pony-Purple/textures/move_right_in.tga new file mode 100644 index 000000000..5f959d29f Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_right_in.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_right_out.tga b/indra/newview/skins/Pony-Purple/textures/move_right_out.tga new file mode 100644 index 000000000..0e4b0426d Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_right_out.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_turn_left_in.tga b/indra/newview/skins/Pony-Purple/textures/move_turn_left_in.tga new file mode 100644 index 000000000..59d2d207b Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_turn_left_out.tga b/indra/newview/skins/Pony-Purple/textures/move_turn_left_out.tga new file mode 100644 index 000000000..114724cf8 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_turn_right_in.tga b/indra/newview/skins/Pony-Purple/textures/move_turn_right_in.tga new file mode 100644 index 000000000..1081f115e Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_turn_right_out.tga b/indra/newview/skins/Pony-Purple/textures/move_turn_right_out.tga new file mode 100644 index 000000000..d28686350 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_up_in.tga b/indra/newview/skins/Pony-Purple/textures/move_up_in.tga new file mode 100644 index 000000000..80a11499d Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_up_in.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/move_up_out.tga b/indra/newview/skins/Pony-Purple/textures/move_up_out.tga new file mode 100644 index 000000000..7e0605aab Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/move_up_out.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/music_icon.tga b/indra/newview/skins/Pony-Purple/textures/music_icon.tga new file mode 100644 index 000000000..a2fcbb645 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/music_icon.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/notify_box_icon.tga b/indra/newview/skins/Pony-Purple/textures/notify_box_icon.tga new file mode 100644 index 000000000..94ea5ca02 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/notify_box_icon.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/notify_caution_icon.tga b/indra/newview/skins/Pony-Purple/textures/notify_caution_icon.tga new file mode 100644 index 000000000..2afcf4a7d Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/notify_caution_icon.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/notify_next.png b/indra/newview/skins/Pony-Purple/textures/notify_next.png new file mode 100644 index 000000000..5fd0fe31d Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/notify_next.png differ diff --git a/indra/newview/skins/Pony-Purple/textures/notify_tip_icon.tga b/indra/newview/skins/Pony-Purple/textures/notify_tip_icon.tga new file mode 100644 index 000000000..4ea1f52ff Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/notify_tip_icon.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_cone.tga b/indra/newview/skins/Pony-Purple/textures/object_cone.tga new file mode 100644 index 000000000..0030f8940 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_cone.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_cone_active.tga b/indra/newview/skins/Pony-Purple/textures/object_cone_active.tga new file mode 100644 index 000000000..eb3c86fc7 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_cone_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_cube.tga b/indra/newview/skins/Pony-Purple/textures/object_cube.tga new file mode 100644 index 000000000..edbfc66df Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_cube.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_cube_active.tga b/indra/newview/skins/Pony-Purple/textures/object_cube_active.tga new file mode 100644 index 000000000..8240716d0 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_cube_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_cylinder.tga b/indra/newview/skins/Pony-Purple/textures/object_cylinder.tga new file mode 100644 index 000000000..aa68aecc9 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_cylinder.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_cylinder_active.tga b/indra/newview/skins/Pony-Purple/textures/object_cylinder_active.tga new file mode 100644 index 000000000..c7f3cfa89 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_cylinder_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_grass.tga b/indra/newview/skins/Pony-Purple/textures/object_grass.tga new file mode 100644 index 000000000..7905b354c Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_grass.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_grass_active.tga b/indra/newview/skins/Pony-Purple/textures/object_grass_active.tga new file mode 100644 index 000000000..217016dcc Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_grass_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_hemi_cone.tga b/indra/newview/skins/Pony-Purple/textures/object_hemi_cone.tga new file mode 100644 index 000000000..e187c7c48 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_hemi_cone.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_hemi_cone_active.tga b/indra/newview/skins/Pony-Purple/textures/object_hemi_cone_active.tga new file mode 100644 index 000000000..82a9b5447 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_hemi_cone_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_hemi_cylinder.tga b/indra/newview/skins/Pony-Purple/textures/object_hemi_cylinder.tga new file mode 100644 index 000000000..e7dabba30 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_hemi_cylinder.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_hemi_cylinder_active.tga b/indra/newview/skins/Pony-Purple/textures/object_hemi_cylinder_active.tga new file mode 100644 index 000000000..9234fdd60 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_hemi_cylinder_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_hemi_sphere.tga b/indra/newview/skins/Pony-Purple/textures/object_hemi_sphere.tga new file mode 100644 index 000000000..bc05b02fc Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_hemi_sphere.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_hemi_sphere_active.tga b/indra/newview/skins/Pony-Purple/textures/object_hemi_sphere_active.tga new file mode 100644 index 000000000..39ae1a2dd Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_hemi_sphere_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_prism.tga b/indra/newview/skins/Pony-Purple/textures/object_prism.tga new file mode 100644 index 000000000..d83cd33f0 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_prism.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_prism_active.tga b/indra/newview/skins/Pony-Purple/textures/object_prism_active.tga new file mode 100644 index 000000000..73761fa02 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_prism_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_pyramid.tga b/indra/newview/skins/Pony-Purple/textures/object_pyramid.tga new file mode 100644 index 000000000..d093458ee Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_pyramid.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_pyramid_active.tga b/indra/newview/skins/Pony-Purple/textures/object_pyramid_active.tga new file mode 100644 index 000000000..5747a3d48 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_pyramid_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_ring.tga b/indra/newview/skins/Pony-Purple/textures/object_ring.tga new file mode 100644 index 000000000..d3cc80edd Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_ring.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_ring_active.tga b/indra/newview/skins/Pony-Purple/textures/object_ring_active.tga new file mode 100644 index 000000000..dfe4f71c7 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_ring_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_sphere.tga b/indra/newview/skins/Pony-Purple/textures/object_sphere.tga new file mode 100644 index 000000000..004bc8540 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_sphere.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_sphere_active.tga b/indra/newview/skins/Pony-Purple/textures/object_sphere_active.tga new file mode 100644 index 000000000..48b06af11 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_sphere_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_tetrahedron.tga b/indra/newview/skins/Pony-Purple/textures/object_tetrahedron.tga new file mode 100644 index 000000000..90ab2c235 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_tetrahedron.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_tetrahedron_active.tga b/indra/newview/skins/Pony-Purple/textures/object_tetrahedron_active.tga new file mode 100644 index 000000000..c5d29aff5 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_tetrahedron_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_torus.tga b/indra/newview/skins/Pony-Purple/textures/object_torus.tga new file mode 100644 index 000000000..0a7ead20f Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_torus.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_torus_active.tga b/indra/newview/skins/Pony-Purple/textures/object_torus_active.tga new file mode 100644 index 000000000..e8bd44f72 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_torus_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_tree.tga b/indra/newview/skins/Pony-Purple/textures/object_tree.tga new file mode 100644 index 000000000..b040ccb69 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_tree.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_tree_active.tga b/indra/newview/skins/Pony-Purple/textures/object_tree_active.tga new file mode 100644 index 000000000..6fab6ceed Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_tree_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_tube.tga b/indra/newview/skins/Pony-Purple/textures/object_tube.tga new file mode 100644 index 000000000..a0d431712 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_tube.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/object_tube_active.tga b/indra/newview/skins/Pony-Purple/textures/object_tube_active.tga new file mode 100644 index 000000000..83029cade Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/object_tube_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/preview.png b/indra/newview/skins/Pony-Purple/textures/preview.png new file mode 100644 index 000000000..41883a8af Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/preview.png differ diff --git a/indra/newview/skins/Pony-Purple/textures/progress_fill.tga b/indra/newview/skins/Pony-Purple/textures/progress_fill.tga new file mode 100644 index 000000000..b11012e97 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/progress_fill.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/progressbar_fill.tga b/indra/newview/skins/Pony-Purple/textures/progressbar_fill.tga new file mode 100644 index 000000000..e1bbe3f41 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/progressbar_track.tga b/indra/newview/skins/Pony-Purple/textures/progressbar_track.tga new file mode 100644 index 000000000..50aa11601 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/Pony-Purple/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..22938a1d6 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/Pony-Purple/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..3af52767d Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/Pony-Purple/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..76d0496de Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/Pony-Purple/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..cc900570a Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/Pony-Purple/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..633f6dd7e Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/square_btn_32x128.tga b/indra/newview/skins/Pony-Purple/textures/square_btn_32x128.tga new file mode 100644 index 000000000..168d0219e Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/square_btn_selected_32x128.tga b/indra/newview/skins/Pony-Purple/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..575019901 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/status_buy_currency.tga b/indra/newview/skins/Pony-Purple/textures/status_buy_currency.tga new file mode 100644 index 000000000..c44d694aa Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/status_buy_currency_pressed.tga b/indra/newview/skins/Pony-Purple/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..3458db836 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/status_buy_land.tga b/indra/newview/skins/Pony-Purple/textures/status_buy_land.tga new file mode 100644 index 000000000..aa30112c6 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/status_buy_land_pressed.tga b/indra/newview/skins/Pony-Purple/textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..1e84fe798 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/status_no_build.tga b/indra/newview/skins/Pony-Purple/textures/status_no_build.tga new file mode 100644 index 000000000..91d475ce6 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/status_no_build.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/status_no_fly.tga b/indra/newview/skins/Pony-Purple/textures/status_no_fly.tga new file mode 100644 index 000000000..4f6aa7e39 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/status_no_fly.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/status_no_push.tga b/indra/newview/skins/Pony-Purple/textures/status_no_push.tga new file mode 100644 index 000000000..444c0cff5 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/status_no_push.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/status_no_scripts.tga b/indra/newview/skins/Pony-Purple/textures/status_no_scripts.tga new file mode 100644 index 000000000..06083e52e Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/status_no_scripts.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/status_no_voice.tga b/indra/newview/skins/Pony-Purple/textures/status_no_voice.tga new file mode 100644 index 000000000..3e5ee22cf Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/status_no_voice.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/tab_bottom_blue.tga b/indra/newview/skins/Pony-Purple/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..71a8fb5ec Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/Pony-Purple/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..b03224f81 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/tab_left.tga b/indra/newview/skins/Pony-Purple/textures/tab_left.tga new file mode 100644 index 000000000..f5be1257f Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/tab_left.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/tab_left_selected.tga b/indra/newview/skins/Pony-Purple/textures/tab_left_selected.tga new file mode 100644 index 000000000..767add463 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/tab_top_blue.tga b/indra/newview/skins/Pony-Purple/textures/tab_top_blue.tga new file mode 100644 index 000000000..a6dd19951 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/tab_top_selected_blue.tga b/indra/newview/skins/Pony-Purple/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..31739186f Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/textures.xml b/indra/newview/skins/Pony-Purple/textures/textures.xml new file mode 100644 index 000000000..70cd3e113 --- /dev/null +++ b/indra/newview/skins/Pony-Purple/textures/textures.xml @@ -0,0 +1,383 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/Pony-Purple/textures/tool_dozer.tga b/indra/newview/skins/Pony-Purple/textures/tool_dozer.tga new file mode 100644 index 000000000..442ebf0e7 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/tool_dozer_active.tga b/indra/newview/skins/Pony-Purple/textures/tool_dozer_active.tga new file mode 100644 index 000000000..36b69f921 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/tool_zoom.tga b/indra/newview/skins/Pony-Purple/textures/tool_zoom.tga new file mode 100644 index 000000000..975aba611 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/tool_zoom_active.tga b/indra/newview/skins/Pony-Purple/textures/tool_zoom_active.tga new file mode 100644 index 000000000..e3fc50dff Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/toolbar_bg.tga b/indra/newview/skins/Pony-Purple/textures/toolbar_bg.tga new file mode 100644 index 000000000..940a2ab6b Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/toolbar_bg.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/toolbar_btn_disabled.tga b/indra/newview/skins/Pony-Purple/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..7eb468790 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/toolbar_btn_enabled.tga b/indra/newview/skins/Pony-Purple/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..239de171f Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/toolbar_btn_selected.tga b/indra/newview/skins/Pony-Purple/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..1aba87300 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/toolbar_tab.tga b/indra/newview/skins/Pony-Purple/textures/toolbar_tab.tga new file mode 100644 index 000000000..0da3038a8 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/up_arrow.png b/indra/newview/skins/Pony-Purple/textures/up_arrow.png new file mode 100644 index 000000000..1766e33a0 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/up_arrow.png differ diff --git a/indra/newview/skins/Pony-Purple/textures/up_arrow.tga b/indra/newview/skins/Pony-Purple/textures/up_arrow.tga new file mode 100644 index 000000000..0e715b353 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/up_arrow.tga differ diff --git a/indra/newview/skins/Pony-Purple/textures/uv_test2.tga b/indra/newview/skins/Pony-Purple/textures/uv_test2.tga new file mode 100644 index 000000000..d5f564869 Binary files /dev/null and b/indra/newview/skins/Pony-Purple/textures/uv_test2.tga differ diff --git a/indra/newview/skins/PonyAquablue.xml b/indra/newview/skins/PonyAquablue.xml new file mode 100644 index 000000000..19e0c2e3a --- /dev/null +++ b/indra/newview/skins/PonyAquablue.xml @@ -0,0 +1,15 @@ + + + skin_name + Blue Metalic + author_name + Pony Ghost + additional_author_names + Linden Lab + skin_info + Game-style interface. Make your Second Life Viewer more like online games +If you like it, there are still many other colors for you to choose. + folder_name + Pony-Aquablue + + diff --git a/indra/newview/skins/Ruby.xml b/indra/newview/skins/Ruby.xml new file mode 100644 index 000000000..4d52d89d2 --- /dev/null +++ b/indra/newview/skins/Ruby.xml @@ -0,0 +1,14 @@ + + + skin_name + Ruby Gems + author_name + ciganito111 + additional_author_names + Ikaru Aichi, Linden Lab + skin_info + + folder_name + ruby + + diff --git a/indra/newview/skins/Silver.xml b/indra/newview/skins/Silver.xml new file mode 100644 index 000000000..1a66e3ce7 --- /dev/null +++ b/indra/newview/skins/Silver.xml @@ -0,0 +1,14 @@ + + + skin_name + Silver + author_name + Linden Lab + additional_author_names + + skin_info + This is the alternate skin for Linden Lab's Second Life viewer. + folder_name + silver + + diff --git a/indra/newview/skins/White.xml b/indra/newview/skins/White.xml new file mode 100644 index 000000000..5005ceb22 --- /dev/null +++ b/indra/newview/skins/White.xml @@ -0,0 +1,14 @@ + + + skin_name + Emerald White Simple + author_name + James Random + additional_author_names + Linden Lab + skin_info + + folder_name + white_emerald + + diff --git a/indra/newview/skins/dark.xml b/indra/newview/skins/dark.xml new file mode 100644 index 000000000..c5a576e1d --- /dev/null +++ b/indra/newview/skins/dark.xml @@ -0,0 +1,14 @@ + + + skin_name + Dark + author_name + JB Kraft + additional_author_names + Linden Lab + skin_info + + folder_name + dark + + diff --git a/indra/newview/skins/dark/colors_base.xml b/indra/newview/skins/dark/colors_base.xml new file mode 100644 index 000000000..3708d8d0b --- /dev/null +++ b/indra/newview/skins/dark/colors_base.xml @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/dark/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/dark/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..a563672f7 Binary files /dev/null and b/indra/newview/skins/dark/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/dark/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga b/indra/newview/skins/dark/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga new file mode 100644 index 000000000..f7841968a Binary files /dev/null and b/indra/newview/skins/dark/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga differ diff --git a/indra/newview/skins/dark/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga b/indra/newview/skins/dark/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga new file mode 100644 index 000000000..55e379309 Binary files /dev/null and b/indra/newview/skins/dark/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga differ diff --git a/indra/newview/skins/dark/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/dark/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..dd57c8027 Binary files /dev/null and b/indra/newview/skins/dark/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/dark/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga b/indra/newview/skins/dark/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga new file mode 100644 index 000000000..132b192ef Binary files /dev/null and b/indra/newview/skins/dark/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga differ diff --git a/indra/newview/skins/dark/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga b/indra/newview/skins/dark/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga new file mode 100644 index 000000000..6cc9ea194 Binary files /dev/null and b/indra/newview/skins/dark/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga differ diff --git a/indra/newview/skins/dark/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga b/indra/newview/skins/dark/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga new file mode 100644 index 000000000..ceaaabab8 Binary files /dev/null and b/indra/newview/skins/dark/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga differ diff --git a/indra/newview/skins/dark/textures/active_speakers.tga b/indra/newview/skins/dark/textures/active_speakers.tga new file mode 100644 index 000000000..37521d2dd Binary files /dev/null and b/indra/newview/skins/dark/textures/active_speakers.tga differ diff --git a/indra/newview/skins/dark/textures/active_voice_tab.tga b/indra/newview/skins/dark/textures/active_voice_tab.tga new file mode 100644 index 000000000..1a68c98e3 Binary files /dev/null and b/indra/newview/skins/dark/textures/active_voice_tab.tga differ diff --git a/indra/newview/skins/dark/textures/arrow_down.tga b/indra/newview/skins/dark/textures/arrow_down.tga new file mode 100644 index 000000000..5b05df1c2 Binary files /dev/null and b/indra/newview/skins/dark/textures/arrow_down.tga differ diff --git a/indra/newview/skins/dark/textures/arrow_up.tga b/indra/newview/skins/dark/textures/arrow_up.tga new file mode 100644 index 000000000..abe5c20a8 Binary files /dev/null and b/indra/newview/skins/dark/textures/arrow_up.tga differ diff --git a/indra/newview/skins/dark/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/dark/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..66c9dc4e0 Binary files /dev/null and b/indra/newview/skins/dark/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/dark/textures/black.tga b/indra/newview/skins/dark/textures/black.tga new file mode 100644 index 000000000..e368ea496 Binary files /dev/null and b/indra/newview/skins/dark/textures/black.tga differ diff --git a/indra/newview/skins/dark/textures/btn_chatbar.tga b/indra/newview/skins/dark/textures/btn_chatbar.tga new file mode 100644 index 000000000..76008aef0 Binary files /dev/null and b/indra/newview/skins/dark/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/dark/textures/btn_chatbar_selected.tga b/indra/newview/skins/dark/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..1698e72c2 Binary files /dev/null and b/indra/newview/skins/dark/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/dark/textures/button_anim_pause.tga b/indra/newview/skins/dark/textures/button_anim_pause.tga new file mode 100644 index 000000000..2d9f2b504 Binary files /dev/null and b/indra/newview/skins/dark/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/dark/textures/button_anim_pause_selected.tga b/indra/newview/skins/dark/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..f75b97d6d Binary files /dev/null and b/indra/newview/skins/dark/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/dark/textures/button_anim_play.tga b/indra/newview/skins/dark/textures/button_anim_play.tga new file mode 100644 index 000000000..37e9c7ec1 Binary files /dev/null and b/indra/newview/skins/dark/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/dark/textures/button_anim_play_selected.tga b/indra/newview/skins/dark/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..21d1c6db9 Binary files /dev/null and b/indra/newview/skins/dark/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/dark/textures/button_anim_stop.tga b/indra/newview/skins/dark/textures/button_anim_stop.tga new file mode 100644 index 000000000..088896955 Binary files /dev/null and b/indra/newview/skins/dark/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/dark/textures/button_anim_stop_selected.tga b/indra/newview/skins/dark/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..46cce99d0 Binary files /dev/null and b/indra/newview/skins/dark/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/dark/textures/button_disabled_32x128.tga b/indra/newview/skins/dark/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..c3f0ad776 Binary files /dev/null and b/indra/newview/skins/dark/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/dark/textures/button_enabled_32x128.tga b/indra/newview/skins/dark/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..acfa33e7f Binary files /dev/null and b/indra/newview/skins/dark/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/dark/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/dark/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..3823bc194 Binary files /dev/null and b/indra/newview/skins/dark/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/dark/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/dark/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..6430fce18 Binary files /dev/null and b/indra/newview/skins/dark/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/dark/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/dark/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..8b743416e Binary files /dev/null and b/indra/newview/skins/dark/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/dark/textures/cam_rotate_in.tga b/indra/newview/skins/dark/textures/cam_rotate_in.tga new file mode 100644 index 000000000..d08f98059 Binary files /dev/null and b/indra/newview/skins/dark/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/dark/textures/cam_rotate_out.tga b/indra/newview/skins/dark/textures/cam_rotate_out.tga new file mode 100644 index 000000000..f8f64f1df Binary files /dev/null and b/indra/newview/skins/dark/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/dark/textures/cam_tracking_in.tga b/indra/newview/skins/dark/textures/cam_tracking_in.tga new file mode 100644 index 000000000..562c951be Binary files /dev/null and b/indra/newview/skins/dark/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/dark/textures/cam_tracking_out.tga b/indra/newview/skins/dark/textures/cam_tracking_out.tga new file mode 100644 index 000000000..7835704d1 Binary files /dev/null and b/indra/newview/skins/dark/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/dark/textures/cam_zoom_minus_in.tga b/indra/newview/skins/dark/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..a1da27bf8 Binary files /dev/null and b/indra/newview/skins/dark/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/dark/textures/cam_zoom_out.tga b/indra/newview/skins/dark/textures/cam_zoom_out.tga new file mode 100644 index 000000000..2e9519d72 Binary files /dev/null and b/indra/newview/skins/dark/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/dark/textures/cam_zoom_plus_in.tga b/indra/newview/skins/dark/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..c17d60792 Binary files /dev/null and b/indra/newview/skins/dark/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/dark/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/dark/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..046e69688 Binary files /dev/null and b/indra/newview/skins/dark/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/dark/textures/checkbox_disabled_false.tga b/indra/newview/skins/dark/textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..074ded732 Binary files /dev/null and b/indra/newview/skins/dark/textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/dark/textures/checkbox_disabled_true.tga b/indra/newview/skins/dark/textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..79d25902f Binary files /dev/null and b/indra/newview/skins/dark/textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/dark/textures/checkbox_enabled_false.tga b/indra/newview/skins/dark/textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..df55cf2ed Binary files /dev/null and b/indra/newview/skins/dark/textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/dark/textures/checkbox_enabled_true.tga b/indra/newview/skins/dark/textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..3344ee78d Binary files /dev/null and b/indra/newview/skins/dark/textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/dark/textures/circle.tga b/indra/newview/skins/dark/textures/circle.tga new file mode 100644 index 000000000..d7097e3a3 Binary files /dev/null and b/indra/newview/skins/dark/textures/circle.tga differ diff --git a/indra/newview/skins/dark/textures/close_in_blue.tga b/indra/newview/skins/dark/textures/close_in_blue.tga new file mode 100644 index 000000000..a1a421e41 Binary files /dev/null and b/indra/newview/skins/dark/textures/close_in_blue.tga differ diff --git a/indra/newview/skins/dark/textures/close_inactive.tga b/indra/newview/skins/dark/textures/close_inactive.tga new file mode 100644 index 000000000..30f6e7b5f Binary files /dev/null and b/indra/newview/skins/dark/textures/close_inactive.tga differ diff --git a/indra/newview/skins/dark/textures/close_inactive_blue.tga b/indra/newview/skins/dark/textures/close_inactive_blue.tga new file mode 100644 index 000000000..30f6e7b5f Binary files /dev/null and b/indra/newview/skins/dark/textures/close_inactive_blue.tga differ diff --git a/indra/newview/skins/dark/textures/closebox.tga b/indra/newview/skins/dark/textures/closebox.tga new file mode 100644 index 000000000..96488b4da Binary files /dev/null and b/indra/newview/skins/dark/textures/closebox.tga differ diff --git a/indra/newview/skins/dark/textures/combobox_arrow.tga b/indra/newview/skins/dark/textures/combobox_arrow.tga new file mode 100644 index 000000000..d769d3105 Binary files /dev/null and b/indra/newview/skins/dark/textures/combobox_arrow.tga differ diff --git a/indra/newview/skins/dark/textures/darkgray.tga b/indra/newview/skins/dark/textures/darkgray.tga new file mode 100644 index 000000000..e69be0893 Binary files /dev/null and b/indra/newview/skins/dark/textures/darkgray.tga differ diff --git a/indra/newview/skins/dark/textures/eye_button_active.tga b/indra/newview/skins/dark/textures/eye_button_active.tga new file mode 100644 index 000000000..cac3de533 Binary files /dev/null and b/indra/newview/skins/dark/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/dark/textures/eye_button_inactive.tga b/indra/newview/skins/dark/textures/eye_button_inactive.tga new file mode 100644 index 000000000..6ca8feec8 Binary files /dev/null and b/indra/newview/skins/dark/textures/eye_button_inactive.tga differ diff --git a/indra/newview/skins/dark/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/dark/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..8b9d012a9 Binary files /dev/null and b/indra/newview/skins/dark/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/dark/textures/ff_edit_mine_button.tga b/indra/newview/skins/dark/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..01770a3c4 Binary files /dev/null and b/indra/newview/skins/dark/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/dark/textures/ff_edit_theirs_button.tga b/indra/newview/skins/dark/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..78a23b0b7 Binary files /dev/null and b/indra/newview/skins/dark/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/dark/textures/ff_online_status_button.tga b/indra/newview/skins/dark/textures/ff_online_status_button.tga new file mode 100644 index 000000000..79f291829 Binary files /dev/null and b/indra/newview/skins/dark/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/dark/textures/ff_visible_map_button.tga b/indra/newview/skins/dark/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..bce9a8c61 Binary files /dev/null and b/indra/newview/skins/dark/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/dark/textures/ff_visible_online_button.tga b/indra/newview/skins/dark/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..c888b08c7 Binary files /dev/null and b/indra/newview/skins/dark/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/dark/textures/flyout_btn_left.tga b/indra/newview/skins/dark/textures/flyout_btn_left.tga new file mode 100644 index 000000000..3060d8016 Binary files /dev/null and b/indra/newview/skins/dark/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/dark/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/dark/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..060a56bd3 Binary files /dev/null and b/indra/newview/skins/dark/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/dark/textures/flyout_btn_left_selected.tga b/indra/newview/skins/dark/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..9965fb416 Binary files /dev/null and b/indra/newview/skins/dark/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/dark/textures/flyout_btn_right.tga b/indra/newview/skins/dark/textures/flyout_btn_right.tga new file mode 100644 index 000000000..0a2354ef5 Binary files /dev/null and b/indra/newview/skins/dark/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/dark/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/dark/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..9050e1252 Binary files /dev/null and b/indra/newview/skins/dark/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/dark/textures/flyout_btn_right_selected.tga b/indra/newview/skins/dark/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..58594dacc Binary files /dev/null and b/indra/newview/skins/dark/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/dark/textures/folder_arrow.tga b/indra/newview/skins/dark/textures/folder_arrow.tga new file mode 100644 index 000000000..77d470731 Binary files /dev/null and b/indra/newview/skins/dark/textures/folder_arrow.tga differ diff --git a/indra/newview/skins/dark/textures/icn_active-speakers-dot-lvl0.tga b/indra/newview/skins/dark/textures/icn_active-speakers-dot-lvl0.tga new file mode 100644 index 000000000..35846cef3 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_active-speakers-dot-lvl0.tga differ diff --git a/indra/newview/skins/dark/textures/icn_active-speakers-dot-lvl1.tga b/indra/newview/skins/dark/textures/icn_active-speakers-dot-lvl1.tga new file mode 100644 index 000000000..1f9f564fa Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_active-speakers-dot-lvl1.tga differ diff --git a/indra/newview/skins/dark/textures/icn_active-speakers-dot-lvl2.tga b/indra/newview/skins/dark/textures/icn_active-speakers-dot-lvl2.tga new file mode 100644 index 000000000..b2e5609f1 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_active-speakers-dot-lvl2.tga differ diff --git a/indra/newview/skins/dark/textures/icn_active-speakers-typing1.tga b/indra/newview/skins/dark/textures/icn_active-speakers-typing1.tga new file mode 100644 index 000000000..3706c96e0 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_active-speakers-typing1.tga differ diff --git a/indra/newview/skins/dark/textures/icn_active-speakers-typing2.tga b/indra/newview/skins/dark/textures/icn_active-speakers-typing2.tga new file mode 100644 index 000000000..0d127f946 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_active-speakers-typing2.tga differ diff --git a/indra/newview/skins/dark/textures/icn_active-speakers-typing3.tga b/indra/newview/skins/dark/textures/icn_active-speakers-typing3.tga new file mode 100644 index 000000000..031b3ad34 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_active-speakers-typing3.tga differ diff --git a/indra/newview/skins/dark/textures/icn_chatbar.tga b/indra/newview/skins/dark/textures/icn_chatbar.tga new file mode 100644 index 000000000..94fd6dc89 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_chatbar.tga differ diff --git a/indra/newview/skins/dark/textures/icn_clear_lineeditor.tga b/indra/newview/skins/dark/textures/icn_clear_lineeditor.tga new file mode 100644 index 000000000..8cd8310c6 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_clear_lineeditor.tga differ diff --git a/indra/newview/skins/dark/textures/icn_media-pause_active.tga b/indra/newview/skins/dark/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..8988829aa Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/dark/textures/icn_media-pause_disabled.tga b/indra/newview/skins/dark/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..4690f4256 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/dark/textures/icn_media-pause_enabled.tga b/indra/newview/skins/dark/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..c01399e27 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/dark/textures/icn_media-play_enabled.tga b/indra/newview/skins/dark/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..accac38b0 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/dark/textures/icn_media-stop_enabled.tga b/indra/newview/skins/dark/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..d935fa317 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/dark/textures/icn_media.tga b/indra/newview/skins/dark/textures/icn_media.tga new file mode 100644 index 000000000..2a035ba5d Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_media.tga differ diff --git a/indra/newview/skins/dark/textures/icn_music.tga b/indra/newview/skins/dark/textures/icn_music.tga new file mode 100644 index 000000000..81da5abcf Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_music.tga differ diff --git a/indra/newview/skins/dark/textures/icn_scrollbar.tga b/indra/newview/skins/dark/textures/icn_scrollbar.tga new file mode 100644 index 000000000..a19a8a5d1 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_scrollbar.tga differ diff --git a/indra/newview/skins/dark/textures/icn_scrollbar_bg.tga b/indra/newview/skins/dark/textures/icn_scrollbar_bg.tga new file mode 100644 index 000000000..cd484c61e Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_scrollbar_bg.tga differ diff --git a/indra/newview/skins/dark/textures/icn_scrollbar_thumb.tga b/indra/newview/skins/dark/textures/icn_scrollbar_thumb.tga new file mode 100644 index 000000000..b11b1bdcd Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_scrollbar_thumb.tga differ diff --git a/indra/newview/skins/dark/textures/icn_slide-groove_dark.tga b/indra/newview/skins/dark/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..19361436e Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/dark/textures/icn_slide-highlight.tga b/indra/newview/skins/dark/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..0747e3ceb Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/dark/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/dark/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..7605b2c43 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/dark/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/dark/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..f53e8ccf3 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/dark/textures/icn_speaker_dark.tga b/indra/newview/skins/dark/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..6b326cf5e Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/dark/textures/icn_toolbar_build.tga b/indra/newview/skins/dark/textures/icn_toolbar_build.tga new file mode 100644 index 000000000..46e84efbc Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_toolbar_build.tga differ diff --git a/indra/newview/skins/dark/textures/icn_toolbar_fly.tga b/indra/newview/skins/dark/textures/icn_toolbar_fly.tga new file mode 100644 index 000000000..8bd422ac5 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_toolbar_fly.tga differ diff --git a/indra/newview/skins/dark/textures/icn_toolbar_inventory.tga b/indra/newview/skins/dark/textures/icn_toolbar_inventory.tga new file mode 100644 index 000000000..b832ebce9 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_toolbar_inventory.tga differ diff --git a/indra/newview/skins/dark/textures/icn_toolbar_map.tga b/indra/newview/skins/dark/textures/icn_toolbar_map.tga new file mode 100644 index 000000000..a100f5784 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_toolbar_map.tga differ diff --git a/indra/newview/skins/dark/textures/icn_toolbar_minimap.tga b/indra/newview/skins/dark/textures/icn_toolbar_minimap.tga new file mode 100644 index 000000000..21149f326 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_toolbar_minimap.tga differ diff --git a/indra/newview/skins/dark/textures/icn_toolbar_radar.tga b/indra/newview/skins/dark/textures/icn_toolbar_radar.tga new file mode 100644 index 000000000..d1a55ed74 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_toolbar_radar.tga differ diff --git a/indra/newview/skins/dark/textures/icn_toolbar_search.tga b/indra/newview/skins/dark/textures/icn_toolbar_search.tga new file mode 100644 index 000000000..2da9704f1 Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_toolbar_search.tga differ diff --git a/indra/newview/skins/dark/textures/icn_toolbar_snapshot.tga b/indra/newview/skins/dark/textures/icn_toolbar_snapshot.tga new file mode 100644 index 000000000..23b97c0eb Binary files /dev/null and b/indra/newview/skins/dark/textures/icn_toolbar_snapshot.tga differ diff --git a/indra/newview/skins/dark/textures/lightgray.tga b/indra/newview/skins/dark/textures/lightgray.tga new file mode 100644 index 000000000..e69be0893 Binary files /dev/null and b/indra/newview/skins/dark/textures/lightgray.tga differ diff --git a/indra/newview/skins/dark/textures/minimize.tga b/indra/newview/skins/dark/textures/minimize.tga new file mode 100644 index 000000000..35d2e9ada Binary files /dev/null and b/indra/newview/skins/dark/textures/minimize.tga differ diff --git a/indra/newview/skins/dark/textures/minimize_inactive.tga b/indra/newview/skins/dark/textures/minimize_inactive.tga new file mode 100644 index 000000000..8f09acda9 Binary files /dev/null and b/indra/newview/skins/dark/textures/minimize_inactive.tga differ diff --git a/indra/newview/skins/dark/textures/minimize_pressed.tga b/indra/newview/skins/dark/textures/minimize_pressed.tga new file mode 100644 index 000000000..bc03952e7 Binary files /dev/null and b/indra/newview/skins/dark/textures/minimize_pressed.tga differ diff --git a/indra/newview/skins/dark/textures/move_backward_in.tga b/indra/newview/skins/dark/textures/move_backward_in.tga new file mode 100644 index 000000000..b64204eb2 Binary files /dev/null and b/indra/newview/skins/dark/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/dark/textures/move_backward_out.tga b/indra/newview/skins/dark/textures/move_backward_out.tga new file mode 100644 index 000000000..1acce4b7b Binary files /dev/null and b/indra/newview/skins/dark/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/dark/textures/move_down_in.tga b/indra/newview/skins/dark/textures/move_down_in.tga new file mode 100644 index 000000000..904e9a8c8 Binary files /dev/null and b/indra/newview/skins/dark/textures/move_down_in.tga differ diff --git a/indra/newview/skins/dark/textures/move_down_out.tga b/indra/newview/skins/dark/textures/move_down_out.tga new file mode 100644 index 000000000..39bcda4c3 Binary files /dev/null and b/indra/newview/skins/dark/textures/move_down_out.tga differ diff --git a/indra/newview/skins/dark/textures/move_forward_in.tga b/indra/newview/skins/dark/textures/move_forward_in.tga new file mode 100644 index 000000000..d41a1e1ed Binary files /dev/null and b/indra/newview/skins/dark/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/dark/textures/move_forward_out.tga b/indra/newview/skins/dark/textures/move_forward_out.tga new file mode 100644 index 000000000..643c26066 Binary files /dev/null and b/indra/newview/skins/dark/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/dark/textures/move_left_in.tga b/indra/newview/skins/dark/textures/move_left_in.tga new file mode 100644 index 000000000..f63ff2d4a Binary files /dev/null and b/indra/newview/skins/dark/textures/move_left_in.tga differ diff --git a/indra/newview/skins/dark/textures/move_left_out.tga b/indra/newview/skins/dark/textures/move_left_out.tga new file mode 100644 index 000000000..775bc151b Binary files /dev/null and b/indra/newview/skins/dark/textures/move_left_out.tga differ diff --git a/indra/newview/skins/dark/textures/move_right_in.tga b/indra/newview/skins/dark/textures/move_right_in.tga new file mode 100644 index 000000000..c85c4c335 Binary files /dev/null and b/indra/newview/skins/dark/textures/move_right_in.tga differ diff --git a/indra/newview/skins/dark/textures/move_right_out.tga b/indra/newview/skins/dark/textures/move_right_out.tga new file mode 100644 index 000000000..729331d99 Binary files /dev/null and b/indra/newview/skins/dark/textures/move_right_out.tga differ diff --git a/indra/newview/skins/dark/textures/move_turn_left_in.tga b/indra/newview/skins/dark/textures/move_turn_left_in.tga new file mode 100644 index 000000000..970b7f2ec Binary files /dev/null and b/indra/newview/skins/dark/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/dark/textures/move_turn_left_out.tga b/indra/newview/skins/dark/textures/move_turn_left_out.tga new file mode 100644 index 000000000..8c1677574 Binary files /dev/null and b/indra/newview/skins/dark/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/dark/textures/move_turn_right_in.tga b/indra/newview/skins/dark/textures/move_turn_right_in.tga new file mode 100644 index 000000000..367deaeb9 Binary files /dev/null and b/indra/newview/skins/dark/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/dark/textures/move_turn_right_out.tga b/indra/newview/skins/dark/textures/move_turn_right_out.tga new file mode 100644 index 000000000..3105adb7b Binary files /dev/null and b/indra/newview/skins/dark/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/dark/textures/move_up_in.tga b/indra/newview/skins/dark/textures/move_up_in.tga new file mode 100644 index 000000000..f62727d90 Binary files /dev/null and b/indra/newview/skins/dark/textures/move_up_in.tga differ diff --git a/indra/newview/skins/dark/textures/move_up_out.tga b/indra/newview/skins/dark/textures/move_up_out.tga new file mode 100644 index 000000000..777b221f8 Binary files /dev/null and b/indra/newview/skins/dark/textures/move_up_out.tga differ diff --git a/indra/newview/skins/dark/textures/mute_icon.tga b/indra/newview/skins/dark/textures/mute_icon.tga new file mode 100644 index 000000000..879b9e618 Binary files /dev/null and b/indra/newview/skins/dark/textures/mute_icon.tga differ diff --git a/indra/newview/skins/dark/textures/notify_next.png b/indra/newview/skins/dark/textures/notify_next.png new file mode 100644 index 000000000..b57c26e26 Binary files /dev/null and b/indra/newview/skins/dark/textures/notify_next.png differ diff --git a/indra/newview/skins/dark/textures/preview.png b/indra/newview/skins/dark/textures/preview.png new file mode 100644 index 000000000..2cac82923 Binary files /dev/null and b/indra/newview/skins/dark/textures/preview.png differ diff --git a/indra/newview/skins/dark/textures/progress_fill.tga b/indra/newview/skins/dark/textures/progress_fill.tga new file mode 100644 index 000000000..bbdf5dd0b Binary files /dev/null and b/indra/newview/skins/dark/textures/progress_fill.tga differ diff --git a/indra/newview/skins/dark/textures/progressbar_fill.tga b/indra/newview/skins/dark/textures/progressbar_fill.tga new file mode 100644 index 000000000..7070343c0 Binary files /dev/null and b/indra/newview/skins/dark/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/dark/textures/progressbar_track.tga b/indra/newview/skins/dark/textures/progressbar_track.tga new file mode 100644 index 000000000..3434330c1 Binary files /dev/null and b/indra/newview/skins/dark/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/dark/textures/ptt_lock_off.tga b/indra/newview/skins/dark/textures/ptt_lock_off.tga new file mode 100644 index 000000000..cb6834469 Binary files /dev/null and b/indra/newview/skins/dark/textures/ptt_lock_off.tga differ diff --git a/indra/newview/skins/dark/textures/ptt_lock_on.tga b/indra/newview/skins/dark/textures/ptt_lock_on.tga new file mode 100644 index 000000000..5a7413bde Binary files /dev/null and b/indra/newview/skins/dark/textures/ptt_lock_on.tga differ diff --git a/indra/newview/skins/dark/textures/radio_active_false.tga b/indra/newview/skins/dark/textures/radio_active_false.tga new file mode 100644 index 000000000..15d5e5927 Binary files /dev/null and b/indra/newview/skins/dark/textures/radio_active_false.tga differ diff --git a/indra/newview/skins/dark/textures/radio_active_true.tga b/indra/newview/skins/dark/textures/radio_active_true.tga new file mode 100644 index 000000000..cbef88913 Binary files /dev/null and b/indra/newview/skins/dark/textures/radio_active_true.tga differ diff --git a/indra/newview/skins/dark/textures/radio_inactive_false.tga b/indra/newview/skins/dark/textures/radio_inactive_false.tga new file mode 100644 index 000000000..48a934221 Binary files /dev/null and b/indra/newview/skins/dark/textures/radio_inactive_false.tga differ diff --git a/indra/newview/skins/dark/textures/radio_inactive_true.tga b/indra/newview/skins/dark/textures/radio_inactive_true.tga new file mode 100644 index 000000000..785b3fa6d Binary files /dev/null and b/indra/newview/skins/dark/textures/radio_inactive_true.tga differ diff --git a/indra/newview/skins/dark/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/dark/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..b40ef7305 Binary files /dev/null and b/indra/newview/skins/dark/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/dark/textures/restore.tga b/indra/newview/skins/dark/textures/restore.tga new file mode 100644 index 000000000..904797e7e Binary files /dev/null and b/indra/newview/skins/dark/textures/restore.tga differ diff --git a/indra/newview/skins/dark/textures/restore_inactive.tga b/indra/newview/skins/dark/textures/restore_inactive.tga new file mode 100644 index 000000000..8f09acda9 Binary files /dev/null and b/indra/newview/skins/dark/textures/restore_inactive.tga differ diff --git a/indra/newview/skins/dark/textures/restore_pressed.tga b/indra/newview/skins/dark/textures/restore_pressed.tga new file mode 100644 index 000000000..c8ce0f9b9 Binary files /dev/null and b/indra/newview/skins/dark/textures/restore_pressed.tga differ diff --git a/indra/newview/skins/dark/textures/rounded_square.tga b/indra/newview/skins/dark/textures/rounded_square.tga new file mode 100644 index 000000000..c8fc7b799 Binary files /dev/null and b/indra/newview/skins/dark/textures/rounded_square.tga differ diff --git a/indra/newview/skins/dark/textures/rounded_square_soft.tga b/indra/newview/skins/dark/textures/rounded_square_soft.tga new file mode 100644 index 000000000..0e5bc79ac Binary files /dev/null and b/indra/newview/skins/dark/textures/rounded_square_soft.tga differ diff --git a/indra/newview/skins/dark/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/dark/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..6a89d4ac7 Binary files /dev/null and b/indra/newview/skins/dark/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/dark/textures/scrollbutton_down_out_blue.tga b/indra/newview/skins/dark/textures/scrollbutton_down_out_blue.tga new file mode 100644 index 000000000..04e158eba Binary files /dev/null and b/indra/newview/skins/dark/textures/scrollbutton_down_out_blue.tga differ diff --git a/indra/newview/skins/dark/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/dark/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..4efaa9908 Binary files /dev/null and b/indra/newview/skins/dark/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/dark/textures/scrollbutton_left_out_blue.tga b/indra/newview/skins/dark/textures/scrollbutton_left_out_blue.tga new file mode 100644 index 000000000..4de4ca5dc Binary files /dev/null and b/indra/newview/skins/dark/textures/scrollbutton_left_out_blue.tga differ diff --git a/indra/newview/skins/dark/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/dark/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..484f0469b Binary files /dev/null and b/indra/newview/skins/dark/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/dark/textures/scrollbutton_right_out_blue.tga b/indra/newview/skins/dark/textures/scrollbutton_right_out_blue.tga new file mode 100644 index 000000000..fca79181b Binary files /dev/null and b/indra/newview/skins/dark/textures/scrollbutton_right_out_blue.tga differ diff --git a/indra/newview/skins/dark/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/dark/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..d8fd0a7cc Binary files /dev/null and b/indra/newview/skins/dark/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/dark/textures/spacer24.tga b/indra/newview/skins/dark/textures/spacer24.tga new file mode 100644 index 000000000..c7cab6b38 Binary files /dev/null and b/indra/newview/skins/dark/textures/spacer24.tga differ diff --git a/indra/newview/skins/dark/textures/spacer35.tga b/indra/newview/skins/dark/textures/spacer35.tga new file mode 100644 index 000000000..b88bc6680 Binary files /dev/null and b/indra/newview/skins/dark/textures/spacer35.tga differ diff --git a/indra/newview/skins/dark/textures/spin_down_in_blue.tga b/indra/newview/skins/dark/textures/spin_down_in_blue.tga new file mode 100644 index 000000000..1f3dbfc3d Binary files /dev/null and b/indra/newview/skins/dark/textures/spin_down_in_blue.tga differ diff --git a/indra/newview/skins/dark/textures/spin_down_out_blue.tga b/indra/newview/skins/dark/textures/spin_down_out_blue.tga new file mode 100644 index 000000000..6728a6d9f Binary files /dev/null and b/indra/newview/skins/dark/textures/spin_down_out_blue.tga differ diff --git a/indra/newview/skins/dark/textures/spin_up_in_blue.tga b/indra/newview/skins/dark/textures/spin_up_in_blue.tga new file mode 100644 index 000000000..4bb545e0c Binary files /dev/null and b/indra/newview/skins/dark/textures/spin_up_in_blue.tga differ diff --git a/indra/newview/skins/dark/textures/spin_up_out_blue.tga b/indra/newview/skins/dark/textures/spin_up_out_blue.tga new file mode 100644 index 000000000..4a5cbcb94 Binary files /dev/null and b/indra/newview/skins/dark/textures/spin_up_out_blue.tga differ diff --git a/indra/newview/skins/dark/textures/square_btn_32x128.tga b/indra/newview/skins/dark/textures/square_btn_32x128.tga new file mode 100644 index 000000000..495b05656 Binary files /dev/null and b/indra/newview/skins/dark/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/dark/textures/square_btn_selected_32x128.tga b/indra/newview/skins/dark/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..0abbf56ce Binary files /dev/null and b/indra/newview/skins/dark/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/dark/textures/status_buy_currency.tga b/indra/newview/skins/dark/textures/status_buy_currency.tga new file mode 100644 index 000000000..391265320 Binary files /dev/null and b/indra/newview/skins/dark/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/dark/textures/status_buy_currency_pressed.tga b/indra/newview/skins/dark/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..4ade0c06d Binary files /dev/null and b/indra/newview/skins/dark/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/dark/textures/status_buy_land.tga b/indra/newview/skins/dark/textures/status_buy_land.tga new file mode 100644 index 000000000..4c4e977a8 Binary files /dev/null and b/indra/newview/skins/dark/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/dark/textures/tab_bottom_blue.tga b/indra/newview/skins/dark/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..65c9228db Binary files /dev/null and b/indra/newview/skins/dark/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/dark/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/dark/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..7507edabb Binary files /dev/null and b/indra/newview/skins/dark/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/dark/textures/tab_left.tga b/indra/newview/skins/dark/textures/tab_left.tga new file mode 100644 index 000000000..36a48bfd2 Binary files /dev/null and b/indra/newview/skins/dark/textures/tab_left.tga differ diff --git a/indra/newview/skins/dark/textures/tab_left_selected.tga b/indra/newview/skins/dark/textures/tab_left_selected.tga new file mode 100644 index 000000000..2ed53bc03 Binary files /dev/null and b/indra/newview/skins/dark/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/dark/textures/tab_top_blue.tga b/indra/newview/skins/dark/textures/tab_top_blue.tga new file mode 100644 index 000000000..8f2625e72 Binary files /dev/null and b/indra/newview/skins/dark/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/dark/textures/tab_top_selected_blue.tga b/indra/newview/skins/dark/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..bab178a71 Binary files /dev/null and b/indra/newview/skins/dark/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/dark/textures/tabarea.tga b/indra/newview/skins/dark/textures/tabarea.tga new file mode 100644 index 000000000..5517aebfc Binary files /dev/null and b/indra/newview/skins/dark/textures/tabarea.tga differ diff --git a/indra/newview/skins/dark/textures/textures.xml b/indra/newview/skins/dark/textures/textures.xml new file mode 100644 index 000000000..4dbbdf01b --- /dev/null +++ b/indra/newview/skins/dark/textures/textures.xml @@ -0,0 +1,386 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/dark/textures/tool_dozer.tga b/indra/newview/skins/dark/textures/tool_dozer.tga new file mode 100644 index 000000000..bc1cc7ade Binary files /dev/null and b/indra/newview/skins/dark/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/dark/textures/tool_dozer_active.tga b/indra/newview/skins/dark/textures/tool_dozer_active.tga new file mode 100644 index 000000000..6099823a8 Binary files /dev/null and b/indra/newview/skins/dark/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/dark/textures/tool_zoom.tga b/indra/newview/skins/dark/textures/tool_zoom.tga new file mode 100644 index 000000000..2f6a75e4b Binary files /dev/null and b/indra/newview/skins/dark/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/dark/textures/tool_zoom_active.tga b/indra/newview/skins/dark/textures/tool_zoom_active.tga new file mode 100644 index 000000000..e83ca1a4b Binary files /dev/null and b/indra/newview/skins/dark/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/dark/textures/toolbar_btn_disabled.tga b/indra/newview/skins/dark/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..59c57fc7c Binary files /dev/null and b/indra/newview/skins/dark/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/dark/textures/toolbar_btn_enabled.tga b/indra/newview/skins/dark/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..f005949b0 Binary files /dev/null and b/indra/newview/skins/dark/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/dark/textures/toolbar_btn_selected.tga b/indra/newview/skins/dark/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..cfd577b55 Binary files /dev/null and b/indra/newview/skins/dark/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/dark/textures/toolbar_tab.tga b/indra/newview/skins/dark/textures/toolbar_tab.tga new file mode 100644 index 000000000..eda95f6e2 Binary files /dev/null and b/indra/newview/skins/dark/textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/dark/textures/white.tga b/indra/newview/skins/dark/textures/white.tga new file mode 100644 index 000000000..55e379309 Binary files /dev/null and b/indra/newview/skins/dark/textures/white.tga differ diff --git a/indra/newview/skins/darkgred/License and Credit.txt b/indra/newview/skins/darkgred/License and Credit.txt new file mode 100644 index 000000000..fe1f04c89 --- /dev/null +++ b/indra/newview/skins/darkgred/License and Credit.txt @@ -0,0 +1,6 @@ +This skin was modified by JB Kraft from the default linden skin provided. +This skin was modified by Chalice Yao from the default linden skin and JB Kraft's skin. +This skin was modified by LordGregGreg Back from the default linden skin and JB Kraft's skin. + + +All Images and modifications done are provided free to use, modify, and distribute, so long as this infomation is distributed with it. diff --git a/indra/newview/skins/darkgred/colors_base.xml b/indra/newview/skins/darkgred/colors_base.xml new file mode 100644 index 000000000..d7c76b5eb --- /dev/null +++ b/indra/newview/skins/darkgred/colors_base.xml @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/darkgred/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/darkgred/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..a563672f7 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/darkgred/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga b/indra/newview/skins/darkgred/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga new file mode 100644 index 000000000..f7841968a Binary files /dev/null and b/indra/newview/skins/darkgred/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga differ diff --git a/indra/newview/skins/darkgred/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/darkgred/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..dd57c8027 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/darkgred/textures/active_speakers.tga b/indra/newview/skins/darkgred/textures/active_speakers.tga new file mode 100644 index 000000000..37521d2dd Binary files /dev/null and b/indra/newview/skins/darkgred/textures/active_speakers.tga differ diff --git a/indra/newview/skins/darkgred/textures/active_voice_tab.tga b/indra/newview/skins/darkgred/textures/active_voice_tab.tga new file mode 100644 index 000000000..1a68c98e3 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/active_voice_tab.tga differ diff --git a/indra/newview/skins/darkgred/textures/alpha_gradient.tga b/indra/newview/skins/darkgred/textures/alpha_gradient.tga new file mode 100644 index 000000000..6fdba25d4 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/alpha_gradient.tga differ diff --git a/indra/newview/skins/darkgred/textures/arrow_down.tga b/indra/newview/skins/darkgred/textures/arrow_down.tga new file mode 100644 index 000000000..5b05df1c2 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/arrow_down.tga differ diff --git a/indra/newview/skins/darkgred/textures/arrow_up.tga b/indra/newview/skins/darkgred/textures/arrow_up.tga new file mode 100644 index 000000000..abe5c20a8 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/arrow_up.tga differ diff --git a/indra/newview/skins/darkgred/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/darkgred/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..66c9dc4e0 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/darkgred/textures/black.tga b/indra/newview/skins/darkgred/textures/black.tga new file mode 100644 index 000000000..e368ea496 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/black.tga differ diff --git a/indra/newview/skins/darkgred/textures/btn_chatbar.tga b/indra/newview/skins/darkgred/textures/btn_chatbar.tga new file mode 100644 index 000000000..76008aef0 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/darkgred/textures/btn_chatbar_selected.tga b/indra/newview/skins/darkgred/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..1698e72c2 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/darkgred/textures/button_anim_pause.tga b/indra/newview/skins/darkgred/textures/button_anim_pause.tga new file mode 100644 index 000000000..2d9f2b504 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/darkgred/textures/button_anim_pause_selected.tga b/indra/newview/skins/darkgred/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..f75b97d6d Binary files /dev/null and b/indra/newview/skins/darkgred/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/darkgred/textures/button_anim_play.tga b/indra/newview/skins/darkgred/textures/button_anim_play.tga new file mode 100644 index 000000000..37e9c7ec1 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/darkgred/textures/button_anim_play_selected.tga b/indra/newview/skins/darkgred/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..21d1c6db9 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/darkgred/textures/button_anim_stop.tga b/indra/newview/skins/darkgred/textures/button_anim_stop.tga new file mode 100644 index 000000000..088896955 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/darkgred/textures/button_anim_stop_selected.tga b/indra/newview/skins/darkgred/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..46cce99d0 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/darkgred/textures/button_disabled_32x128.tga b/indra/newview/skins/darkgred/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..c3f0ad776 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/darkgred/textures/button_enabled_32x128.tga b/indra/newview/skins/darkgred/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..acfa33e7f Binary files /dev/null and b/indra/newview/skins/darkgred/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/darkgred/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/darkgred/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..3823bc194 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/darkgred/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/darkgred/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..6430fce18 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/darkgred/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/darkgred/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..8b743416e Binary files /dev/null and b/indra/newview/skins/darkgred/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/darkgred/textures/cam_rotate_in.tga b/indra/newview/skins/darkgred/textures/cam_rotate_in.tga new file mode 100644 index 000000000..d08f98059 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/darkgred/textures/cam_rotate_out.tga b/indra/newview/skins/darkgred/textures/cam_rotate_out.tga new file mode 100644 index 000000000..f8f64f1df Binary files /dev/null and b/indra/newview/skins/darkgred/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/darkgred/textures/cam_tracking_in.tga b/indra/newview/skins/darkgred/textures/cam_tracking_in.tga new file mode 100644 index 000000000..562c951be Binary files /dev/null and b/indra/newview/skins/darkgred/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/darkgred/textures/cam_tracking_out.tga b/indra/newview/skins/darkgred/textures/cam_tracking_out.tga new file mode 100644 index 000000000..7835704d1 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/darkgred/textures/cam_zoom_minus_in.tga b/indra/newview/skins/darkgred/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..a1da27bf8 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/darkgred/textures/cam_zoom_out.tga b/indra/newview/skins/darkgred/textures/cam_zoom_out.tga new file mode 100644 index 000000000..2e9519d72 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/darkgred/textures/cam_zoom_plus_in.tga b/indra/newview/skins/darkgred/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..c17d60792 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/darkgred/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/darkgred/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..046e69688 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/darkgred/textures/checkbox_disabled_false.tga b/indra/newview/skins/darkgred/textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..074ded732 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/darkgred/textures/checkbox_disabled_true.tga b/indra/newview/skins/darkgred/textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..79d25902f Binary files /dev/null and b/indra/newview/skins/darkgred/textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/darkgred/textures/checkbox_enabled_false.tga b/indra/newview/skins/darkgred/textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..df55cf2ed Binary files /dev/null and b/indra/newview/skins/darkgred/textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/darkgred/textures/checkbox_enabled_true.tga b/indra/newview/skins/darkgred/textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..3344ee78d Binary files /dev/null and b/indra/newview/skins/darkgred/textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/darkgred/textures/circle.tga b/indra/newview/skins/darkgred/textures/circle.tga new file mode 100644 index 000000000..d7097e3a3 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/circle.tga differ diff --git a/indra/newview/skins/darkgred/textures/close_in_blue.tga b/indra/newview/skins/darkgred/textures/close_in_blue.tga new file mode 100644 index 000000000..a1a421e41 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/close_in_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/close_inactive.tga b/indra/newview/skins/darkgred/textures/close_inactive.tga new file mode 100644 index 000000000..30f6e7b5f Binary files /dev/null and b/indra/newview/skins/darkgred/textures/close_inactive.tga differ diff --git a/indra/newview/skins/darkgred/textures/close_inactive_blue.tga b/indra/newview/skins/darkgred/textures/close_inactive_blue.tga new file mode 100644 index 000000000..30f6e7b5f Binary files /dev/null and b/indra/newview/skins/darkgred/textures/close_inactive_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/closebox.tga b/indra/newview/skins/darkgred/textures/closebox.tga new file mode 100644 index 000000000..96488b4da Binary files /dev/null and b/indra/newview/skins/darkgred/textures/closebox.tga differ diff --git a/indra/newview/skins/darkgred/textures/color_swatch_alpha.tga b/indra/newview/skins/darkgred/textures/color_swatch_alpha.tga new file mode 100644 index 000000000..814a004e6 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/color_swatch_alpha.tga differ diff --git a/indra/newview/skins/darkgred/textures/combobox_arrow.tga b/indra/newview/skins/darkgred/textures/combobox_arrow.tga new file mode 100644 index 000000000..d769d3105 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/combobox_arrow.tga differ diff --git a/indra/newview/skins/darkgred/textures/crosshairs.tga b/indra/newview/skins/darkgred/textures/crosshairs.tga new file mode 100644 index 000000000..ac4d63dc5 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/crosshairs.tga differ diff --git a/indra/newview/skins/darkgred/textures/d2a90afa-074a-8a37-7eef-c6621e63f852.tga b/indra/newview/skins/darkgred/textures/d2a90afa-074a-8a37-7eef-c6621e63f852.tga new file mode 100644 index 000000000..66959d7d2 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/d2a90afa-074a-8a37-7eef-c6621e63f852.tga differ diff --git a/indra/newview/skins/darkgred/textures/darkgray.tga b/indra/newview/skins/darkgred/textures/darkgray.tga new file mode 100644 index 000000000..e69be0893 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/darkgray.tga differ diff --git a/indra/newview/skins/darkgred/textures/direction_arrow.tga b/indra/newview/skins/darkgred/textures/direction_arrow.tga new file mode 100644 index 000000000..f3ef1068c Binary files /dev/null and b/indra/newview/skins/darkgred/textures/direction_arrow.tga differ diff --git a/indra/newview/skins/darkgred/textures/down_arrow.tga b/indra/newview/skins/darkgred/textures/down_arrow.tga new file mode 100644 index 000000000..a73e77e96 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/down_arrow.tga differ diff --git a/indra/newview/skins/darkgred/textures/eye_button_active.tga b/indra/newview/skins/darkgred/textures/eye_button_active.tga new file mode 100644 index 000000000..cac3de533 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/darkgred/textures/eye_button_inactive.tga b/indra/newview/skins/darkgred/textures/eye_button_inactive.tga new file mode 100644 index 000000000..6ca8feec8 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/eye_button_inactive.tga differ diff --git a/indra/newview/skins/darkgred/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/darkgred/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..8b9d012a9 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/darkgred/textures/ff_edit_mine.tga b/indra/newview/skins/darkgred/textures/ff_edit_mine.tga new file mode 100644 index 000000000..8f0c35b98 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/ff_edit_mine.tga differ diff --git a/indra/newview/skins/darkgred/textures/ff_edit_mine_button.tga b/indra/newview/skins/darkgred/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..01770a3c4 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/darkgred/textures/ff_edit_theirs.tga b/indra/newview/skins/darkgred/textures/ff_edit_theirs.tga new file mode 100644 index 000000000..005ada2de Binary files /dev/null and b/indra/newview/skins/darkgred/textures/ff_edit_theirs.tga differ diff --git a/indra/newview/skins/darkgred/textures/ff_edit_theirs_button.tga b/indra/newview/skins/darkgred/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..78a23b0b7 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/darkgred/textures/ff_online_status_button.tga b/indra/newview/skins/darkgred/textures/ff_online_status_button.tga new file mode 100644 index 000000000..79f291829 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/darkgred/textures/ff_visible_map.tga b/indra/newview/skins/darkgred/textures/ff_visible_map.tga new file mode 100644 index 000000000..a4dcc5c0f Binary files /dev/null and b/indra/newview/skins/darkgred/textures/ff_visible_map.tga differ diff --git a/indra/newview/skins/darkgred/textures/ff_visible_map_button.tga b/indra/newview/skins/darkgred/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..bce9a8c61 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/darkgred/textures/ff_visible_online.tga b/indra/newview/skins/darkgred/textures/ff_visible_online.tga new file mode 100644 index 000000000..f56ee594f Binary files /dev/null and b/indra/newview/skins/darkgred/textures/ff_visible_online.tga differ diff --git a/indra/newview/skins/darkgred/textures/ff_visible_online_button.tga b/indra/newview/skins/darkgred/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..c888b08c7 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/darkgred/textures/flyout_btn_left.tga b/indra/newview/skins/darkgred/textures/flyout_btn_left.tga new file mode 100644 index 000000000..3060d8016 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/darkgred/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/darkgred/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..060a56bd3 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/darkgred/textures/flyout_btn_left_selected.tga b/indra/newview/skins/darkgred/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..9965fb416 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/darkgred/textures/flyout_btn_right.tga b/indra/newview/skins/darkgred/textures/flyout_btn_right.tga new file mode 100644 index 000000000..0a2354ef5 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/darkgred/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/darkgred/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..9050e1252 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/darkgred/textures/flyout_btn_right_selected.tga b/indra/newview/skins/darkgred/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..58594dacc Binary files /dev/null and b/indra/newview/skins/darkgred/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_chatbar.tga b/indra/newview/skins/darkgred/textures/icn_chatbar.tga new file mode 100644 index 000000000..94fd6dc89 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_chatbar.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_clear_lineeditor.tga b/indra/newview/skins/darkgred/textures/icn_clear_lineeditor.tga new file mode 100644 index 000000000..8cd8310c6 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_clear_lineeditor.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_label_media.tga b/indra/newview/skins/darkgred/textures/icn_label_media.tga new file mode 100644 index 000000000..6b630e832 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_label_media.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_label_music.tga b/indra/newview/skins/darkgred/textures/icn_label_music.tga new file mode 100644 index 000000000..9d1dd28c9 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_label_web.tga b/indra/newview/skins/darkgred/textures/icn_label_web.tga new file mode 100644 index 000000000..426ed02f0 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_media-pause.tga b/indra/newview/skins/darkgred/textures/icn_media-pause.tga new file mode 100644 index 000000000..a2cfeeecb Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_media-pause_active.tga b/indra/newview/skins/darkgred/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..8988829aa Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_media-pause_disabled.tga b/indra/newview/skins/darkgred/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..4690f4256 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_media-pause_enabled.tga b/indra/newview/skins/darkgred/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..c01399e27 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_media-play.tga b/indra/newview/skins/darkgred/textures/icn_media-play.tga new file mode 100644 index 000000000..c810318bd Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_media-play.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_media-play_enabled.tga b/indra/newview/skins/darkgred/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..accac38b0 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_media-stop_enabled.tga b/indra/newview/skins/darkgred/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..d935fa317 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_media.tga b/indra/newview/skins/darkgred/textures/icn_media.tga new file mode 100644 index 000000000..2a035ba5d Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_media.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_media_movie.tga b/indra/newview/skins/darkgred/textures/icn_media_movie.tga new file mode 100644 index 000000000..6b630e832 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_media_web.tga b/indra/newview/skins/darkgred/textures/icn_media_web.tga new file mode 100644 index 000000000..0586b0612 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_music-pause.tga b/indra/newview/skins/darkgred/textures/icn_music-pause.tga new file mode 100644 index 000000000..cfa092c63 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_music-play.tga b/indra/newview/skins/darkgred/textures/icn_music-play.tga new file mode 100644 index 000000000..e38f784d0 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_music.tga b/indra/newview/skins/darkgred/textures/icn_music.tga new file mode 100644 index 000000000..81da5abcf Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_music.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_pause.tga b/indra/newview/skins/darkgred/textures/icn_pause.tga new file mode 100644 index 000000000..cb3c9856c Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_pause.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_play.tga b/indra/newview/skins/darkgred/textures/icn_play.tga new file mode 100644 index 000000000..a8bcbd4b4 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_play.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_rounded-text-field.tga b/indra/newview/skins/darkgred/textures/icn_rounded-text-field.tga new file mode 100644 index 000000000..20953ad10 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_rounded-text-field.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_scrollbar.tga b/indra/newview/skins/darkgred/textures/icn_scrollbar.tga new file mode 100644 index 000000000..a19a8a5d1 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_scrollbar.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_scrollbar_bg.tga b/indra/newview/skins/darkgred/textures/icn_scrollbar_bg.tga new file mode 100644 index 000000000..cd484c61e Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_scrollbar_bg.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_scrollbar_thumb.tga b/indra/newview/skins/darkgred/textures/icn_scrollbar_thumb.tga new file mode 100644 index 000000000..b11b1bdcd Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_scrollbar_thumb.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_slide-groove_dark.tga b/indra/newview/skins/darkgred/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..19361436e Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_slide-highlight.tga b/indra/newview/skins/darkgred/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..0747e3ceb Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/darkgred/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..7605b2c43 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/darkgred/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..f53e8ccf3 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_speaker_dark.tga b/indra/newview/skins/darkgred/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..6b326cf5e Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_stop.tga b/indra/newview/skins/darkgred/textures/icn_stop.tga new file mode 100644 index 000000000..37d5ae888 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_stop.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_textfield_enabled.tga b/indra/newview/skins/darkgred/textures/icn_textfield_enabled.tga new file mode 100644 index 000000000..551e7618b Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_textfield_enabled.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_toolbar_build.tga b/indra/newview/skins/darkgred/textures/icn_toolbar_build.tga new file mode 100644 index 000000000..46e84efbc Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_toolbar_build.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_toolbar_fly.tga b/indra/newview/skins/darkgred/textures/icn_toolbar_fly.tga new file mode 100644 index 000000000..8bd422ac5 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_toolbar_fly.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_toolbar_inventory.tga b/indra/newview/skins/darkgred/textures/icn_toolbar_inventory.tga new file mode 100644 index 000000000..b832ebce9 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_toolbar_inventory.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_toolbar_map.tga b/indra/newview/skins/darkgred/textures/icn_toolbar_map.tga new file mode 100644 index 000000000..a100f5784 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_toolbar_map.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_toolbar_minimap.tga b/indra/newview/skins/darkgred/textures/icn_toolbar_minimap.tga new file mode 100644 index 000000000..21149f326 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_toolbar_minimap.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_toolbar_radar.tga b/indra/newview/skins/darkgred/textures/icn_toolbar_radar.tga new file mode 100644 index 000000000..d1a55ed74 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_toolbar_radar.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_toolbar_search.tga b/indra/newview/skins/darkgred/textures/icn_toolbar_search.tga new file mode 100644 index 000000000..2da9704f1 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_toolbar_search.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_toolbar_snapshot.tga b/indra/newview/skins/darkgred/textures/icn_toolbar_snapshot.tga new file mode 100644 index 000000000..23b97c0eb Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_toolbar_snapshot.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_voice-call-end.tga b/indra/newview/skins/darkgred/textures/icn_voice-call-end.tga new file mode 100644 index 000000000..7792bc1f5 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_voice-call-end.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_voice-call-start.tga b/indra/newview/skins/darkgred/textures/icn_voice-call-start.tga new file mode 100644 index 000000000..062820b08 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_voice-call-start.tga differ diff --git a/indra/newview/skins/darkgred/textures/icn_voice-localchat.tga b/indra/newview/skins/darkgred/textures/icn_voice-localchat.tga new file mode 100644 index 000000000..8a377c1f2 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/icn_voice-localchat.tga differ diff --git a/indra/newview/skins/darkgred/textures/map_avatar_above_8.tga b/indra/newview/skins/darkgred/textures/map_avatar_above_8.tga new file mode 100644 index 000000000..193428e53 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/map_avatar_above_8.tga differ diff --git a/indra/newview/skins/darkgred/textures/map_avatar_below_8.tga b/indra/newview/skins/darkgred/textures/map_avatar_below_8.tga new file mode 100644 index 000000000..9e14bfab9 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/map_avatar_below_8.tga differ diff --git a/indra/newview/skins/darkgred/textures/minimize.tga b/indra/newview/skins/darkgred/textures/minimize.tga new file mode 100644 index 000000000..35d2e9ada Binary files /dev/null and b/indra/newview/skins/darkgred/textures/minimize.tga differ diff --git a/indra/newview/skins/darkgred/textures/minimize_inactive.tga b/indra/newview/skins/darkgred/textures/minimize_inactive.tga new file mode 100644 index 000000000..8f09acda9 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/minimize_inactive.tga differ diff --git a/indra/newview/skins/darkgred/textures/minimize_pressed.tga b/indra/newview/skins/darkgred/textures/minimize_pressed.tga new file mode 100644 index 000000000..bc03952e7 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/minimize_pressed.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_backward_in.tga b/indra/newview/skins/darkgred/textures/move_backward_in.tga new file mode 100644 index 000000000..b64204eb2 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_backward_out.tga b/indra/newview/skins/darkgred/textures/move_backward_out.tga new file mode 100644 index 000000000..1acce4b7b Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_down_in.tga b/indra/newview/skins/darkgred/textures/move_down_in.tga new file mode 100644 index 000000000..904e9a8c8 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_down_in.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_down_out.tga b/indra/newview/skins/darkgred/textures/move_down_out.tga new file mode 100644 index 000000000..39bcda4c3 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_down_out.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_forward_in.tga b/indra/newview/skins/darkgred/textures/move_forward_in.tga new file mode 100644 index 000000000..d41a1e1ed Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_forward_out.tga b/indra/newview/skins/darkgred/textures/move_forward_out.tga new file mode 100644 index 000000000..643c26066 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_left_in.tga b/indra/newview/skins/darkgred/textures/move_left_in.tga new file mode 100644 index 000000000..f63ff2d4a Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_left_in.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_left_out.tga b/indra/newview/skins/darkgred/textures/move_left_out.tga new file mode 100644 index 000000000..775bc151b Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_left_out.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_right_in.tga b/indra/newview/skins/darkgred/textures/move_right_in.tga new file mode 100644 index 000000000..c85c4c335 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_right_in.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_right_out.tga b/indra/newview/skins/darkgred/textures/move_right_out.tga new file mode 100644 index 000000000..729331d99 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_right_out.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_turn_left_in.tga b/indra/newview/skins/darkgred/textures/move_turn_left_in.tga new file mode 100644 index 000000000..970b7f2ec Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_turn_left_out.tga b/indra/newview/skins/darkgred/textures/move_turn_left_out.tga new file mode 100644 index 000000000..8c1677574 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_turn_right_in.tga b/indra/newview/skins/darkgred/textures/move_turn_right_in.tga new file mode 100644 index 000000000..367deaeb9 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_turn_right_out.tga b/indra/newview/skins/darkgred/textures/move_turn_right_out.tga new file mode 100644 index 000000000..3105adb7b Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_up_in.tga b/indra/newview/skins/darkgred/textures/move_up_in.tga new file mode 100644 index 000000000..f62727d90 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_up_in.tga differ diff --git a/indra/newview/skins/darkgred/textures/move_up_out.tga b/indra/newview/skins/darkgred/textures/move_up_out.tga new file mode 100644 index 000000000..777b221f8 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/move_up_out.tga differ diff --git a/indra/newview/skins/darkgred/textures/notify_next.png b/indra/newview/skins/darkgred/textures/notify_next.png new file mode 100644 index 000000000..b57c26e26 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/notify_next.png differ diff --git a/indra/newview/skins/darkgred/textures/preview.png b/indra/newview/skins/darkgred/textures/preview.png new file mode 100644 index 000000000..af7680116 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/preview.png differ diff --git a/indra/newview/skins/darkgred/textures/progress_fill.tga b/indra/newview/skins/darkgred/textures/progress_fill.tga new file mode 100644 index 000000000..bbdf5dd0b Binary files /dev/null and b/indra/newview/skins/darkgred/textures/progress_fill.tga differ diff --git a/indra/newview/skins/darkgred/textures/progressbar_fill.tga b/indra/newview/skins/darkgred/textures/progressbar_fill.tga new file mode 100644 index 000000000..7070343c0 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/darkgred/textures/progressbar_track.tga b/indra/newview/skins/darkgred/textures/progressbar_track.tga new file mode 100644 index 000000000..3434330c1 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/darkgred/textures/propertyline.tga b/indra/newview/skins/darkgred/textures/propertyline.tga new file mode 100644 index 000000000..0c504eea7 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/propertyline.tga differ diff --git a/indra/newview/skins/darkgred/textures/ptt_lock_off.tga b/indra/newview/skins/darkgred/textures/ptt_lock_off.tga new file mode 100644 index 000000000..cb6834469 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/ptt_lock_off.tga differ diff --git a/indra/newview/skins/darkgred/textures/ptt_lock_on.tga b/indra/newview/skins/darkgred/textures/ptt_lock_on.tga new file mode 100644 index 000000000..5a7413bde Binary files /dev/null and b/indra/newview/skins/darkgred/textures/ptt_lock_on.tga differ diff --git a/indra/newview/skins/darkgred/textures/radio_active_false.tga b/indra/newview/skins/darkgred/textures/radio_active_false.tga new file mode 100644 index 000000000..15d5e5927 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/radio_active_false.tga differ diff --git a/indra/newview/skins/darkgred/textures/radio_active_true.tga b/indra/newview/skins/darkgred/textures/radio_active_true.tga new file mode 100644 index 000000000..cbef88913 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/radio_active_true.tga differ diff --git a/indra/newview/skins/darkgred/textures/radio_inactive_false.tga b/indra/newview/skins/darkgred/textures/radio_inactive_false.tga new file mode 100644 index 000000000..48a934221 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/radio_inactive_false.tga differ diff --git a/indra/newview/skins/darkgred/textures/radio_inactive_true.tga b/indra/newview/skins/darkgred/textures/radio_inactive_true.tga new file mode 100644 index 000000000..785b3fa6d Binary files /dev/null and b/indra/newview/skins/darkgred/textures/radio_inactive_true.tga differ diff --git a/indra/newview/skins/darkgred/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/darkgred/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..b40ef7305 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/restore.tga b/indra/newview/skins/darkgred/textures/restore.tga new file mode 100644 index 000000000..904797e7e Binary files /dev/null and b/indra/newview/skins/darkgred/textures/restore.tga differ diff --git a/indra/newview/skins/darkgred/textures/restore_inactive.tga b/indra/newview/skins/darkgred/textures/restore_inactive.tga new file mode 100644 index 000000000..8f09acda9 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/restore_inactive.tga differ diff --git a/indra/newview/skins/darkgred/textures/restore_pressed.tga b/indra/newview/skins/darkgred/textures/restore_pressed.tga new file mode 100644 index 000000000..c8ce0f9b9 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/restore_pressed.tga differ diff --git a/indra/newview/skins/darkgred/textures/rounded_square.tga b/indra/newview/skins/darkgred/textures/rounded_square.tga new file mode 100644 index 000000000..c8fc7b799 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/rounded_square.tga differ diff --git a/indra/newview/skins/darkgred/textures/rounded_square_soft.tga b/indra/newview/skins/darkgred/textures/rounded_square_soft.tga new file mode 100644 index 000000000..0e5bc79ac Binary files /dev/null and b/indra/newview/skins/darkgred/textures/rounded_square_soft.tga differ diff --git a/indra/newview/skins/darkgred/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/darkgred/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..6a89d4ac7 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/scrollbutton_down_out_blue.tga b/indra/newview/skins/darkgred/textures/scrollbutton_down_out_blue.tga new file mode 100644 index 000000000..04e158eba Binary files /dev/null and b/indra/newview/skins/darkgred/textures/scrollbutton_down_out_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/darkgred/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..4efaa9908 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/scrollbutton_left_out_blue.tga b/indra/newview/skins/darkgred/textures/scrollbutton_left_out_blue.tga new file mode 100644 index 000000000..4de4ca5dc Binary files /dev/null and b/indra/newview/skins/darkgred/textures/scrollbutton_left_out_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/darkgred/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..484f0469b Binary files /dev/null and b/indra/newview/skins/darkgred/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/scrollbutton_right_out_blue.tga b/indra/newview/skins/darkgred/textures/scrollbutton_right_out_blue.tga new file mode 100644 index 000000000..fca79181b Binary files /dev/null and b/indra/newview/skins/darkgred/textures/scrollbutton_right_out_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/darkgred/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..d8fd0a7cc Binary files /dev/null and b/indra/newview/skins/darkgred/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/scrollbutton_up_out_blue.tga b/indra/newview/skins/darkgred/textures/scrollbutton_up_out_blue.tga new file mode 100644 index 000000000..9112d187e Binary files /dev/null and b/indra/newview/skins/darkgred/textures/scrollbutton_up_out_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/sm_rounded_corners_simple.tga b/indra/newview/skins/darkgred/textures/sm_rounded_corners_simple.tga new file mode 100644 index 000000000..30bbbb45e Binary files /dev/null and b/indra/newview/skins/darkgred/textures/sm_rounded_corners_simple.tga differ diff --git a/indra/newview/skins/darkgred/textures/spin_down_in_blue.tga b/indra/newview/skins/darkgred/textures/spin_down_in_blue.tga new file mode 100644 index 000000000..1f3dbfc3d Binary files /dev/null and b/indra/newview/skins/darkgred/textures/spin_down_in_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/spin_down_out_blue.tga b/indra/newview/skins/darkgred/textures/spin_down_out_blue.tga new file mode 100644 index 000000000..6728a6d9f Binary files /dev/null and b/indra/newview/skins/darkgred/textures/spin_down_out_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/spin_up_in_blue.tga b/indra/newview/skins/darkgred/textures/spin_up_in_blue.tga new file mode 100644 index 000000000..4bb545e0c Binary files /dev/null and b/indra/newview/skins/darkgred/textures/spin_up_in_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/spin_up_out_blue.tga b/indra/newview/skins/darkgred/textures/spin_up_out_blue.tga new file mode 100644 index 000000000..4a5cbcb94 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/spin_up_out_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/square_btn_32x128.tga b/indra/newview/skins/darkgred/textures/square_btn_32x128.tga new file mode 100644 index 000000000..495b05656 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/darkgred/textures/square_btn_selected_32x128.tga b/indra/newview/skins/darkgred/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..0abbf56ce Binary files /dev/null and b/indra/newview/skins/darkgred/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/darkgred/textures/status_buy_currency.tga b/indra/newview/skins/darkgred/textures/status_buy_currency.tga new file mode 100644 index 000000000..391265320 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/darkgred/textures/status_buy_currency_pressed.tga b/indra/newview/skins/darkgred/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..4ade0c06d Binary files /dev/null and b/indra/newview/skins/darkgred/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/darkgred/textures/status_buy_land.tga b/indra/newview/skins/darkgred/textures/status_buy_land.tga new file mode 100644 index 000000000..4c4e977a8 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/darkgred/textures/status_buy_land_pressed.tga b/indra/newview/skins/darkgred/textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..4768b5e94 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/darkgred/textures/tab_bottom_blue.tga b/indra/newview/skins/darkgred/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..65c9228db Binary files /dev/null and b/indra/newview/skins/darkgred/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/darkgred/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..7507edabb Binary files /dev/null and b/indra/newview/skins/darkgred/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/tab_left.tga b/indra/newview/skins/darkgred/textures/tab_left.tga new file mode 100644 index 000000000..36a48bfd2 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/tab_left.tga differ diff --git a/indra/newview/skins/darkgred/textures/tab_left_selected.tga b/indra/newview/skins/darkgred/textures/tab_left_selected.tga new file mode 100644 index 000000000..2ed53bc03 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/darkgred/textures/tab_top_blue.tga b/indra/newview/skins/darkgred/textures/tab_top_blue.tga new file mode 100644 index 000000000..8f2625e72 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/tab_top_selected_blue.tga b/indra/newview/skins/darkgred/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..bab178a71 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/darkgred/textures/tabarea.tga b/indra/newview/skins/darkgred/textures/tabarea.tga new file mode 100644 index 000000000..5517aebfc Binary files /dev/null and b/indra/newview/skins/darkgred/textures/tabarea.tga differ diff --git a/indra/newview/skins/darkgred/textures/tearoff_pressed.tga b/indra/newview/skins/darkgred/textures/tearoff_pressed.tga new file mode 100644 index 000000000..30ffd91bc Binary files /dev/null and b/indra/newview/skins/darkgred/textures/tearoff_pressed.tga differ diff --git a/indra/newview/skins/darkgred/textures/tearoffbox.tga b/indra/newview/skins/darkgred/textures/tearoffbox.tga new file mode 100644 index 000000000..bee07f85f Binary files /dev/null and b/indra/newview/skins/darkgred/textures/tearoffbox.tga differ diff --git a/indra/newview/skins/darkgred/textures/textures.xml b/indra/newview/skins/darkgred/textures/textures.xml new file mode 100644 index 000000000..4dbbdf01b --- /dev/null +++ b/indra/newview/skins/darkgred/textures/textures.xml @@ -0,0 +1,386 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/darkgred/textures/tool_dozer.tga b/indra/newview/skins/darkgred/textures/tool_dozer.tga new file mode 100644 index 000000000..bc1cc7ade Binary files /dev/null and b/indra/newview/skins/darkgred/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/darkgred/textures/tool_dozer_active.tga b/indra/newview/skins/darkgred/textures/tool_dozer_active.tga new file mode 100644 index 000000000..6099823a8 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/darkgred/textures/tool_zoom.tga b/indra/newview/skins/darkgred/textures/tool_zoom.tga new file mode 100644 index 000000000..2f6a75e4b Binary files /dev/null and b/indra/newview/skins/darkgred/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/darkgred/textures/tool_zoom_active.tga b/indra/newview/skins/darkgred/textures/tool_zoom_active.tga new file mode 100644 index 000000000..e83ca1a4b Binary files /dev/null and b/indra/newview/skins/darkgred/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/darkgred/textures/toolbar_btn_disabled.tga b/indra/newview/skins/darkgred/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..59c57fc7c Binary files /dev/null and b/indra/newview/skins/darkgred/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/darkgred/textures/toolbar_btn_enabled.tga b/indra/newview/skins/darkgred/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..f005949b0 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/darkgred/textures/toolbar_btn_selected.tga b/indra/newview/skins/darkgred/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..cfd577b55 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/darkgred/textures/toolbar_tab.tga b/indra/newview/skins/darkgred/textures/toolbar_tab.tga new file mode 100644 index 000000000..eda95f6e2 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/darkgred/textures/up_arrow.tga b/indra/newview/skins/darkgred/textures/up_arrow.tga new file mode 100644 index 000000000..9841c7740 Binary files /dev/null and b/indra/newview/skins/darkgred/textures/up_arrow.tga differ diff --git a/indra/newview/skins/darkorange/License and Credit.txt b/indra/newview/skins/darkorange/License and Credit.txt new file mode 100644 index 000000000..f65d32dbe --- /dev/null +++ b/indra/newview/skins/darkorange/License and Credit.txt @@ -0,0 +1,3 @@ +This skin was modified by Pony Ghost from the default linden skin provided for the Green Life Emerald Viewer. + +All Images and modifications done are provided free to use, modify, and distribute, so long as this infomation is distributed with it. diff --git a/indra/newview/skins/darkorange/colors_base.xml b/indra/newview/skins/darkorange/colors_base.xml new file mode 100644 index 000000000..6ccefdf5c --- /dev/null +++ b/indra/newview/skins/darkorange/colors_base.xml @@ -0,0 +1,209 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/darkorange/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/darkorange/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..97ddfc4bf Binary files /dev/null and b/indra/newview/skins/darkorange/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/darkorange/textures/0187babf-6c0d-5891-ebed-4ecab1426683.j2c b/indra/newview/skins/darkorange/textures/0187babf-6c0d-5891-ebed-4ecab1426683.j2c new file mode 100644 index 000000000..0e63168bd Binary files /dev/null and b/indra/newview/skins/darkorange/textures/0187babf-6c0d-5891-ebed-4ecab1426683.j2c differ diff --git a/indra/newview/skins/darkorange/textures/041ee5a0-cb6a-9ac5-6e49-41e9320507d5.j2c b/indra/newview/skins/darkorange/textures/041ee5a0-cb6a-9ac5-6e49-41e9320507d5.j2c new file mode 100644 index 000000000..e536c3338 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/041ee5a0-cb6a-9ac5-6e49-41e9320507d5.j2c differ diff --git a/indra/newview/skins/darkorange/textures/0498c309-5306-43cd-82a2-ae31d096cdef.tga b/indra/newview/skins/darkorange/textures/0498c309-5306-43cd-82a2-ae31d096cdef.tga new file mode 100644 index 000000000..d7097e3a3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/0498c309-5306-43cd-82a2-ae31d096cdef.tga differ diff --git a/indra/newview/skins/darkorange/textures/058c75c0-a0d5-f2f8-43f3-e9699a89c2fc.j2c b/indra/newview/skins/darkorange/textures/058c75c0-a0d5-f2f8-43f3-e9699a89c2fc.j2c new file mode 100644 index 000000000..e351995de Binary files /dev/null and b/indra/newview/skins/darkorange/textures/058c75c0-a0d5-f2f8-43f3-e9699a89c2fc.j2c differ diff --git a/indra/newview/skins/darkorange/textures/073c9723-540c-5449-cdd4-0e87fdc159e3.j2c b/indra/newview/skins/darkorange/textures/073c9723-540c-5449-cdd4-0e87fdc159e3.j2c new file mode 100644 index 000000000..7cae5cbf1 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/073c9723-540c-5449-cdd4-0e87fdc159e3.j2c differ diff --git a/indra/newview/skins/darkorange/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga b/indra/newview/skins/darkorange/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga new file mode 100644 index 000000000..2d78d07f5 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga differ diff --git a/indra/newview/skins/darkorange/textures/09a324a8-acc1-d9cd-2cbd-7465d90d3a98.tga b/indra/newview/skins/darkorange/textures/09a324a8-acc1-d9cd-2cbd-7465d90d3a98.tga new file mode 100644 index 000000000..77d470731 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/09a324a8-acc1-d9cd-2cbd-7465d90d3a98.tga differ diff --git a/indra/newview/skins/darkorange/textures/0a94b42f-ec84-5f9c-14b7-1ef8505ceead.j2c b/indra/newview/skins/darkorange/textures/0a94b42f-ec84-5f9c-14b7-1ef8505ceead.j2c new file mode 100644 index 000000000..03d4b1a9b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/0a94b42f-ec84-5f9c-14b7-1ef8505ceead.j2c differ diff --git a/indra/newview/skins/darkorange/textures/0b444c3a-75c2-4891-9d1e-ac35c8d13d62.j2c b/indra/newview/skins/darkorange/textures/0b444c3a-75c2-4891-9d1e-ac35c8d13d62.j2c new file mode 100644 index 000000000..0bca24d6b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/0b444c3a-75c2-4891-9d1e-ac35c8d13d62.j2c differ diff --git a/indra/newview/skins/darkorange/textures/0bc58228-74a0-7e83-89bc-5c23464bcec5.j2c b/indra/newview/skins/darkorange/textures/0bc58228-74a0-7e83-89bc-5c23464bcec5.j2c new file mode 100644 index 000000000..20cbd5b3a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/0bc58228-74a0-7e83-89bc-5c23464bcec5.j2c differ diff --git a/indra/newview/skins/darkorange/textures/0e82d24e-ed45-41bc-b090-94c97c1caab2.tga b/indra/newview/skins/darkorange/textures/0e82d24e-ed45-41bc-b090-94c97c1caab2.tga new file mode 100644 index 000000000..b2e5609f1 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/0e82d24e-ed45-41bc-b090-94c97c1caab2.tga differ diff --git a/indra/newview/skins/darkorange/textures/0ff70ead-4562-45f9-9e8a-52b1a3286868.j2c b/indra/newview/skins/darkorange/textures/0ff70ead-4562-45f9-9e8a-52b1a3286868.j2c new file mode 100644 index 000000000..d0f7e3a02 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/0ff70ead-4562-45f9-9e8a-52b1a3286868.j2c differ diff --git a/indra/newview/skins/darkorange/textures/10d2a01a-0818-84b9-4b96-c2eb63256519.j2c b/indra/newview/skins/darkorange/textures/10d2a01a-0818-84b9-4b96-c2eb63256519.j2c new file mode 100644 index 000000000..a6e213a26 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/10d2a01a-0818-84b9-4b96-c2eb63256519.j2c differ diff --git a/indra/newview/skins/darkorange/textures/111b39de-8928-4690-b7b2-e17d5c960277.tga b/indra/newview/skins/darkorange/textures/111b39de-8928-4690-b7b2-e17d5c960277.tga new file mode 100644 index 000000000..0febf4edc Binary files /dev/null and b/indra/newview/skins/darkorange/textures/111b39de-8928-4690-b7b2-e17d5c960277.tga differ diff --git a/indra/newview/skins/darkorange/textures/11ee27f5-43c0-414e-afd5-d7f5688c351f.j2c b/indra/newview/skins/darkorange/textures/11ee27f5-43c0-414e-afd5-d7f5688c351f.j2c new file mode 100644 index 000000000..3fb9c95aa Binary files /dev/null and b/indra/newview/skins/darkorange/textures/11ee27f5-43c0-414e-afd5-d7f5688c351f.j2c differ diff --git a/indra/newview/skins/darkorange/textures/13dd1d96-6836-461e-8a4c-36003065c59b.tga b/indra/newview/skins/darkorange/textures/13dd1d96-6836-461e-8a4c-36003065c59b.tga new file mode 100644 index 000000000..031b3ad34 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/13dd1d96-6836-461e-8a4c-36003065c59b.tga differ diff --git a/indra/newview/skins/darkorange/textures/179cdabd-398a-9b6b-1391-4dc333ba321f.j2c b/indra/newview/skins/darkorange/textures/179cdabd-398a-9b6b-1391-4dc333ba321f.j2c new file mode 100644 index 000000000..8971ac364 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/179cdabd-398a-9b6b-1391-4dc333ba321f.j2c differ diff --git a/indra/newview/skins/darkorange/textures/18fb888b-e8f1-dce7-7da7-321d651ea6b0.j2c b/indra/newview/skins/darkorange/textures/18fb888b-e8f1-dce7-7da7-321d651ea6b0.j2c new file mode 100644 index 000000000..a10153010 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/18fb888b-e8f1-dce7-7da7-321d651ea6b0.j2c differ diff --git a/indra/newview/skins/darkorange/textures/19c76b49-c5f4-aeca-7cd8-17010f2969c3.j2c b/indra/newview/skins/darkorange/textures/19c76b49-c5f4-aeca-7cd8-17010f2969c3.j2c new file mode 100644 index 000000000..ecab78e75 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/19c76b49-c5f4-aeca-7cd8-17010f2969c3.j2c differ diff --git a/indra/newview/skins/darkorange/textures/1e63e323-5fe0-452e-92f8-b98bd0f764e3.j2c b/indra/newview/skins/darkorange/textures/1e63e323-5fe0-452e-92f8-b98bd0f764e3.j2c new file mode 100644 index 000000000..995932aa4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/1e63e323-5fe0-452e-92f8-b98bd0f764e3.j2c differ diff --git a/indra/newview/skins/darkorange/textures/2660b114-1d66-3cde-e148-ebc2d1f963d5.j2c b/indra/newview/skins/darkorange/textures/2660b114-1d66-3cde-e148-ebc2d1f963d5.j2c new file mode 100644 index 000000000..947b600f9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/2660b114-1d66-3cde-e148-ebc2d1f963d5.j2c differ diff --git a/indra/newview/skins/darkorange/textures/28f0f9ca-0423-4d1b-9e76-616ffce99544.j2c b/indra/newview/skins/darkorange/textures/28f0f9ca-0423-4d1b-9e76-616ffce99544.j2c new file mode 100644 index 000000000..73d094a52 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/28f0f9ca-0423-4d1b-9e76-616ffce99544.j2c differ diff --git a/indra/newview/skins/darkorange/textures/29de489d-0491-fb00-7dab-f9e686d31e83.j2c b/indra/newview/skins/darkorange/textures/29de489d-0491-fb00-7dab-f9e686d31e83.j2c new file mode 100644 index 000000000..17e7c6c6a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/29de489d-0491-fb00-7dab-f9e686d31e83.j2c differ diff --git a/indra/newview/skins/darkorange/textures/2a4880b6-b7a3-690a-2049-bfbe38eafb9f.j2c b/indra/newview/skins/darkorange/textures/2a4880b6-b7a3-690a-2049-bfbe38eafb9f.j2c new file mode 100644 index 000000000..5361a56f3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/2a4880b6-b7a3-690a-2049-bfbe38eafb9f.j2c differ diff --git a/indra/newview/skins/darkorange/textures/2caf1179-7861-6ff3-4b7d-46e17780bdfa.j2c b/indra/newview/skins/darkorange/textures/2caf1179-7861-6ff3-4b7d-46e17780bdfa.j2c new file mode 100644 index 000000000..675bdb439 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/2caf1179-7861-6ff3-4b7d-46e17780bdfa.j2c differ diff --git a/indra/newview/skins/darkorange/textures/2d784476-d0db-9979-0cff-9408745a7cf3.j2c b/indra/newview/skins/darkorange/textures/2d784476-d0db-9979-0cff-9408745a7cf3.j2c new file mode 100644 index 000000000..0bc1a4fb5 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/2d784476-d0db-9979-0cff-9408745a7cf3.j2c differ diff --git a/indra/newview/skins/darkorange/textures/30047cec-269d-408e-0c30-b2603b887268.j2c b/indra/newview/skins/darkorange/textures/30047cec-269d-408e-0c30-b2603b887268.j2c new file mode 100644 index 000000000..3a32fcbb9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/30047cec-269d-408e-0c30-b2603b887268.j2c differ diff --git a/indra/newview/skins/darkorange/textures/303cd381-8560-7579-23f1-f0a880799740.j2c b/indra/newview/skins/darkorange/textures/303cd381-8560-7579-23f1-f0a880799740.j2c new file mode 100644 index 000000000..905bd1b5c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/303cd381-8560-7579-23f1-f0a880799740.j2c differ diff --git a/indra/newview/skins/darkorange/textures/335f8f14-f2db-db7c-1c04-734dc7657439.j2c b/indra/newview/skins/darkorange/textures/335f8f14-f2db-db7c-1c04-734dc7657439.j2c new file mode 100644 index 000000000..5b8ffe5a4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/335f8f14-f2db-db7c-1c04-734dc7657439.j2c differ diff --git a/indra/newview/skins/darkorange/textures/34c9398d-bb78-4643-9633-46a2fa3e9637.tga b/indra/newview/skins/darkorange/textures/34c9398d-bb78-4643-9633-46a2fa3e9637.tga new file mode 100644 index 000000000..58cd2cd55 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/34c9398d-bb78-4643-9633-46a2fa3e9637.tga differ diff --git a/indra/newview/skins/darkorange/textures/35f217a3-f618-49cf-bbca-c86d486551a9.j2c b/indra/newview/skins/darkorange/textures/35f217a3-f618-49cf-bbca-c86d486551a9.j2c new file mode 100644 index 000000000..5c2c85e82 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/35f217a3-f618-49cf-bbca-c86d486551a9.j2c differ diff --git a/indra/newview/skins/darkorange/textures/37c8e000-6aa2-41ef-8f86-e0c2e60bfa42.tga b/indra/newview/skins/darkorange/textures/37c8e000-6aa2-41ef-8f86-e0c2e60bfa42.tga new file mode 100644 index 000000000..879b9e618 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/37c8e000-6aa2-41ef-8f86-e0c2e60bfa42.tga differ diff --git a/indra/newview/skins/darkorange/textures/39801651-26cb-4926-af57-7af9352c273c.tga b/indra/newview/skins/darkorange/textures/39801651-26cb-4926-af57-7af9352c273c.tga new file mode 100644 index 000000000..f2fdd074b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/39801651-26cb-4926-af57-7af9352c273c.tga differ diff --git a/indra/newview/skins/darkorange/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga b/indra/newview/skins/darkorange/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga new file mode 100644 index 000000000..fb6dac0c3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga differ diff --git a/indra/newview/skins/darkorange/textures/3c59f7fe-9dc8-47f9-8aaf-a9dd1fbc3bef.j2c b/indra/newview/skins/darkorange/textures/3c59f7fe-9dc8-47f9-8aaf-a9dd1fbc3bef.j2c new file mode 100644 index 000000000..6c3319efb Binary files /dev/null and b/indra/newview/skins/darkorange/textures/3c59f7fe-9dc8-47f9-8aaf-a9dd1fbc3bef.j2c differ diff --git a/indra/newview/skins/darkorange/textures/3cddf591-a726-4702-87b3-70c1daf88f90.j2c b/indra/newview/skins/darkorange/textures/3cddf591-a726-4702-87b3-70c1daf88f90.j2c new file mode 100644 index 000000000..6535a9873 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/3cddf591-a726-4702-87b3-70c1daf88f90.j2c differ diff --git a/indra/newview/skins/darkorange/textures/402f8b24-5f9d-4905-b5f8-37baff603e88.j2c b/indra/newview/skins/darkorange/textures/402f8b24-5f9d-4905-b5f8-37baff603e88.j2c new file mode 100644 index 000000000..0a38dde77 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/402f8b24-5f9d-4905-b5f8-37baff603e88.j2c differ diff --git a/indra/newview/skins/darkorange/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga b/indra/newview/skins/darkorange/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga new file mode 100644 index 000000000..340f3213d Binary files /dev/null and b/indra/newview/skins/darkorange/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga differ diff --git a/indra/newview/skins/darkorange/textures/4726f13e-bd07-f2fb-feb0-bfa2ac58ab61.j2c b/indra/newview/skins/darkorange/textures/4726f13e-bd07-f2fb-feb0-bfa2ac58ab61.j2c new file mode 100644 index 000000000..46eb2da8c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/4726f13e-bd07-f2fb-feb0-bfa2ac58ab61.j2c differ diff --git a/indra/newview/skins/darkorange/textures/47a8c844-cd2a-4b1a-be01-df8b1612fe5d.tga b/indra/newview/skins/darkorange/textures/47a8c844-cd2a-4b1a-be01-df8b1612fe5d.tga new file mode 100644 index 000000000..505f6ed1c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/47a8c844-cd2a-4b1a-be01-df8b1612fe5d.tga differ diff --git a/indra/newview/skins/darkorange/textures/48766d75-6e58-de84-68fe-1980c64feaee.j2c b/indra/newview/skins/darkorange/textures/48766d75-6e58-de84-68fe-1980c64feaee.j2c new file mode 100644 index 000000000..ac98d6c98 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/48766d75-6e58-de84-68fe-1980c64feaee.j2c differ diff --git a/indra/newview/skins/darkorange/textures/53a2f406-4895-1d13-d541-d2e3b86bc19c.j2c b/indra/newview/skins/darkorange/textures/53a2f406-4895-1d13-d541-d2e3b86bc19c.j2c new file mode 100644 index 000000000..ecc76fa8c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/53a2f406-4895-1d13-d541-d2e3b86bc19c.j2c differ diff --git a/indra/newview/skins/darkorange/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga b/indra/newview/skins/darkorange/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga new file mode 100644 index 000000000..55e379309 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga differ diff --git a/indra/newview/skins/darkorange/textures/5894e2e7-ab8d-edfa-e61c-18cf16854ba3.j2c b/indra/newview/skins/darkorange/textures/5894e2e7-ab8d-edfa-e61c-18cf16854ba3.j2c new file mode 100644 index 000000000..34f69c238 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/5894e2e7-ab8d-edfa-e61c-18cf16854ba3.j2c differ diff --git a/indra/newview/skins/darkorange/textures/5ab48dd5-05d0-4f1a-ace6-efd4e2fb3508.j2c b/indra/newview/skins/darkorange/textures/5ab48dd5-05d0-4f1a-ace6-efd4e2fb3508.j2c new file mode 100644 index 000000000..81ccfbce8 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/5ab48dd5-05d0-4f1a-ace6-efd4e2fb3508.j2c differ diff --git a/indra/newview/skins/darkorange/textures/5abfabc2-5d6d-4912-acd8-d7e38ae93d02.j2c b/indra/newview/skins/darkorange/textures/5abfabc2-5d6d-4912-acd8-d7e38ae93d02.j2c new file mode 100644 index 000000000..1068e940b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/5abfabc2-5d6d-4912-acd8-d7e38ae93d02.j2c differ diff --git a/indra/newview/skins/darkorange/textures/5bc11cd6-2f40-071e-a8da-0903394204f9.j2c b/indra/newview/skins/darkorange/textures/5bc11cd6-2f40-071e-a8da-0903394204f9.j2c new file mode 100644 index 000000000..9ac79088d Binary files /dev/null and b/indra/newview/skins/darkorange/textures/5bc11cd6-2f40-071e-a8da-0903394204f9.j2c differ diff --git a/indra/newview/skins/darkorange/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga b/indra/newview/skins/darkorange/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga new file mode 100644 index 000000000..fc720c826 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga differ diff --git a/indra/newview/skins/darkorange/textures/63338ede-0037-c4fd-855b-015d77112fc8.j2c b/indra/newview/skins/darkorange/textures/63338ede-0037-c4fd-855b-015d77112fc8.j2c new file mode 100644 index 000000000..458be1cef Binary files /dev/null and b/indra/newview/skins/darkorange/textures/63338ede-0037-c4fd-855b-015d77112fc8.j2c differ diff --git a/indra/newview/skins/darkorange/textures/64367bd1-697e-b3e6-0b65-3f862a577366.j2c b/indra/newview/skins/darkorange/textures/64367bd1-697e-b3e6-0b65-3f862a577366.j2c new file mode 100644 index 000000000..1650c7866 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/64367bd1-697e-b3e6-0b65-3f862a577366.j2c differ diff --git a/indra/newview/skins/darkorange/textures/64eed6af-f575-35c7-baa4-b140bdcdb00f.j2c b/indra/newview/skins/darkorange/textures/64eed6af-f575-35c7-baa4-b140bdcdb00f.j2c new file mode 100644 index 000000000..1068e940b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/64eed6af-f575-35c7-baa4-b140bdcdb00f.j2c differ diff --git a/indra/newview/skins/darkorange/textures/6522e74d-1660-4e7f-b601-6f48c1659a77.j2c b/indra/newview/skins/darkorange/textures/6522e74d-1660-4e7f-b601-6f48c1659a77.j2c new file mode 100644 index 000000000..4e99f3ecb Binary files /dev/null and b/indra/newview/skins/darkorange/textures/6522e74d-1660-4e7f-b601-6f48c1659a77.j2c differ diff --git a/indra/newview/skins/darkorange/textures/67931331-0c02-4876-1255-28770896c6a2.j2c b/indra/newview/skins/darkorange/textures/67931331-0c02-4876-1255-28770896c6a2.j2c new file mode 100644 index 000000000..3f6349352 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/67931331-0c02-4876-1255-28770896c6a2.j2c differ diff --git a/indra/newview/skins/darkorange/textures/6c4727b8-ac79-ba44-3b81-f9aa887b47eb.j2c b/indra/newview/skins/darkorange/textures/6c4727b8-ac79-ba44-3b81-f9aa887b47eb.j2c new file mode 100644 index 000000000..adff7dc06 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/6c4727b8-ac79-ba44-3b81-f9aa887b47eb.j2c differ diff --git a/indra/newview/skins/darkorange/textures/6c9fa78a-1c69-2168-325b-3e03ffa348ce.j2c b/indra/newview/skins/darkorange/textures/6c9fa78a-1c69-2168-325b-3e03ffa348ce.j2c new file mode 100644 index 000000000..e657b9617 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/6c9fa78a-1c69-2168-325b-3e03ffa348ce.j2c differ diff --git a/indra/newview/skins/darkorange/textures/6de37e4e-7029-61f5-54b8-f5e63f983f58.j2c b/indra/newview/skins/darkorange/textures/6de37e4e-7029-61f5-54b8-f5e63f983f58.j2c new file mode 100644 index 000000000..434ba49d6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/6de37e4e-7029-61f5-54b8-f5e63f983f58.j2c differ diff --git a/indra/newview/skins/darkorange/textures/735198cf-6ea0-2550-e222-21d3c6a341ae.j2c b/indra/newview/skins/darkorange/textures/735198cf-6ea0-2550-e222-21d3c6a341ae.j2c new file mode 100644 index 000000000..baedd892c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/735198cf-6ea0-2550-e222-21d3c6a341ae.j2c differ diff --git a/indra/newview/skins/darkorange/textures/73577b7b-19c3-4050-a19d-36bc2408aa79.tga b/indra/newview/skins/darkorange/textures/73577b7b-19c3-4050-a19d-36bc2408aa79.tga new file mode 100644 index 000000000..35846cef3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/73577b7b-19c3-4050-a19d-36bc2408aa79.tga differ diff --git a/indra/newview/skins/darkorange/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga b/indra/newview/skins/darkorange/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga new file mode 100644 index 000000000..0fc1afb7a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga differ diff --git a/indra/newview/skins/darkorange/textures/74e1a96f-4833-a24d-a1bb-1bce1468b0e7.tga b/indra/newview/skins/darkorange/textures/74e1a96f-4833-a24d-a1bb-1bce1468b0e7.tga new file mode 100644 index 000000000..c359f2f31 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/74e1a96f-4833-a24d-a1bb-1bce1468b0e7.tga differ diff --git a/indra/newview/skins/darkorange/textures/7581f2f4-d0d2-481a-bc75-69a13d9caeaa.j2c b/indra/newview/skins/darkorange/textures/7581f2f4-d0d2-481a-bc75-69a13d9caeaa.j2c new file mode 100644 index 000000000..47f7911d8 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/7581f2f4-d0d2-481a-bc75-69a13d9caeaa.j2c differ diff --git a/indra/newview/skins/darkorange/textures/78af921a-3c49-47a1-9c4e-2608951164ae.j2c b/indra/newview/skins/darkorange/textures/78af921a-3c49-47a1-9c4e-2608951164ae.j2c new file mode 100644 index 000000000..16d3625d0 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/78af921a-3c49-47a1-9c4e-2608951164ae.j2c differ diff --git a/indra/newview/skins/darkorange/textures/79504bf5-c3ec-0763-6563-d843de66d0a1.j2c b/indra/newview/skins/darkorange/textures/79504bf5-c3ec-0763-6563-d843de66d0a1.j2c new file mode 100644 index 000000000..134574e48 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/79504bf5-c3ec-0763-6563-d843de66d0a1.j2c differ diff --git a/indra/newview/skins/darkorange/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/darkorange/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..d2293280a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/darkorange/textures/7a2b3a4a-53c2-53ac-5716-aac7d743c020.j2c b/indra/newview/skins/darkorange/textures/7a2b3a4a-53c2-53ac-5716-aac7d743c020.j2c new file mode 100644 index 000000000..ca37c7825 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/7a2b3a4a-53c2-53ac-5716-aac7d743c020.j2c differ diff --git a/indra/newview/skins/darkorange/textures/7c0cf89b-44b1-1ce2-dd74-07102a98ac2a.j2c b/indra/newview/skins/darkorange/textures/7c0cf89b-44b1-1ce2-dd74-07102a98ac2a.j2c new file mode 100644 index 000000000..5d556d961 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/7c0cf89b-44b1-1ce2-dd74-07102a98ac2a.j2c differ diff --git a/indra/newview/skins/darkorange/textures/7ca39b4c-bd19-4699-aff7-f93fd03d3e7b.j2c b/indra/newview/skins/darkorange/textures/7ca39b4c-bd19-4699-aff7-f93fd03d3e7b.j2c new file mode 100644 index 000000000..15a1f3649 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/7ca39b4c-bd19-4699-aff7-f93fd03d3e7b.j2c differ diff --git a/indra/newview/skins/darkorange/textures/7cb070bc-fc00-4527-9c4d-7f7e0c4191be.j2c b/indra/newview/skins/darkorange/textures/7cb070bc-fc00-4527-9c4d-7f7e0c4191be.j2c new file mode 100644 index 000000000..b3c70be6d Binary files /dev/null and b/indra/newview/skins/darkorange/textures/7cb070bc-fc00-4527-9c4d-7f7e0c4191be.j2c differ diff --git a/indra/newview/skins/darkorange/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga b/indra/newview/skins/darkorange/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga new file mode 100644 index 000000000..010c748c2 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga differ diff --git a/indra/newview/skins/darkorange/textures/822ded49-9a6c-f61c-cb89-6df54f42cdf4.j2c b/indra/newview/skins/darkorange/textures/822ded49-9a6c-f61c-cb89-6df54f42cdf4.j2c new file mode 100644 index 000000000..a650bcd47 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/822ded49-9a6c-f61c-cb89-6df54f42cdf4.j2c differ diff --git a/indra/newview/skins/darkorange/textures/827ff765-8c1d-a8b1-23f7-fdcba560effc.j2c b/indra/newview/skins/darkorange/textures/827ff765-8c1d-a8b1-23f7-fdcba560effc.j2c new file mode 100644 index 000000000..eb13fcc88 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/827ff765-8c1d-a8b1-23f7-fdcba560effc.j2c differ diff --git a/indra/newview/skins/darkorange/textures/83b77fc6-10b4-63ec-4de7-f40629f238c5.j2c b/indra/newview/skins/darkorange/textures/83b77fc6-10b4-63ec-4de7-f40629f238c5.j2c new file mode 100644 index 000000000..e7771e4c4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/83b77fc6-10b4-63ec-4de7-f40629f238c5.j2c differ diff --git a/indra/newview/skins/darkorange/textures/8872f2b8-31db-42d8-580a-b3e4a91262de.j2c b/indra/newview/skins/darkorange/textures/8872f2b8-31db-42d8-580a-b3e4a91262de.j2c new file mode 100644 index 000000000..350b638bb Binary files /dev/null and b/indra/newview/skins/darkorange/textures/8872f2b8-31db-42d8-580a-b3e4a91262de.j2c differ diff --git a/indra/newview/skins/darkorange/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga b/indra/newview/skins/darkorange/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga new file mode 100644 index 000000000..6cc9ea194 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga differ diff --git a/indra/newview/skins/darkorange/textures/8a515889-eac9-fb55-8eba-d2dc09eb32c8.j2c b/indra/newview/skins/darkorange/textures/8a515889-eac9-fb55-8eba-d2dc09eb32c8.j2c new file mode 100644 index 000000000..70821f263 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/8a515889-eac9-fb55-8eba-d2dc09eb32c8.j2c differ diff --git a/indra/newview/skins/darkorange/textures/8dcd4a48-2d37-4909-9f78-f7a9eb4ef903.j2c b/indra/newview/skins/darkorange/textures/8dcd4a48-2d37-4909-9f78-f7a9eb4ef903.j2c new file mode 100644 index 000000000..1068e940b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/8dcd4a48-2d37-4909-9f78-f7a9eb4ef903.j2c differ diff --git a/indra/newview/skins/darkorange/textures/8f458549-173b-23ff-d4ff-bfaa5ea2371b.j2c b/indra/newview/skins/darkorange/textures/8f458549-173b-23ff-d4ff-bfaa5ea2371b.j2c new file mode 100644 index 000000000..881929410 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/8f458549-173b-23ff-d4ff-bfaa5ea2371b.j2c differ diff --git a/indra/newview/skins/darkorange/textures/8f761ce3-5939-4d3a-8991-00064fdfacf9.tga b/indra/newview/skins/darkorange/textures/8f761ce3-5939-4d3a-8991-00064fdfacf9.tga new file mode 100644 index 000000000..1f9f564fa Binary files /dev/null and b/indra/newview/skins/darkorange/textures/8f761ce3-5939-4d3a-8991-00064fdfacf9.tga differ diff --git a/indra/newview/skins/darkorange/textures/92e66e00-f56f-598a-7997-048aa64cde18.j2c b/indra/newview/skins/darkorange/textures/92e66e00-f56f-598a-7997-048aa64cde18.j2c new file mode 100644 index 000000000..287555fc3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/92e66e00-f56f-598a-7997-048aa64cde18.j2c differ diff --git a/indra/newview/skins/darkorange/textures/95281d5c-d27a-ee13-e067-08295b67b58a.j2c b/indra/newview/skins/darkorange/textures/95281d5c-d27a-ee13-e067-08295b67b58a.j2c new file mode 100644 index 000000000..03d4b1a9b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/95281d5c-d27a-ee13-e067-08295b67b58a.j2c differ diff --git a/indra/newview/skins/darkorange/textures/96b4de31-f4fa-337d-ec78-451e3609769e.j2c b/indra/newview/skins/darkorange/textures/96b4de31-f4fa-337d-ec78-451e3609769e.j2c new file mode 100644 index 000000000..4453ecb76 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/96b4de31-f4fa-337d-ec78-451e3609769e.j2c differ diff --git a/indra/newview/skins/darkorange/textures/978380f0-aaf7-c459-14e3-9808833fd372.j2c b/indra/newview/skins/darkorange/textures/978380f0-aaf7-c459-14e3-9808833fd372.j2c new file mode 100644 index 000000000..38227ffcd Binary files /dev/null and b/indra/newview/skins/darkorange/textures/978380f0-aaf7-c459-14e3-9808833fd372.j2c differ diff --git a/indra/newview/skins/darkorange/textures/988dd995-1769-bdc9-8842-51f8f2b03884.j2c b/indra/newview/skins/darkorange/textures/988dd995-1769-bdc9-8842-51f8f2b03884.j2c new file mode 100644 index 000000000..03d4b1a9b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/988dd995-1769-bdc9-8842-51f8f2b03884.j2c differ diff --git a/indra/newview/skins/darkorange/textures/99bd60a2-3250-efc9-2e39-2fbcadefbecc.j2c b/indra/newview/skins/darkorange/textures/99bd60a2-3250-efc9-2e39-2fbcadefbecc.j2c new file mode 100644 index 000000000..c965530c0 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/99bd60a2-3250-efc9-2e39-2fbcadefbecc.j2c differ diff --git a/indra/newview/skins/darkorange/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga b/indra/newview/skins/darkorange/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga new file mode 100644 index 000000000..c8491a0a1 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga differ diff --git a/indra/newview/skins/darkorange/textures/9c88539c-fd04-46b8-bea2-ddf1bcffe3bd.j2c b/indra/newview/skins/darkorange/textures/9c88539c-fd04-46b8-bea2-ddf1bcffe3bd.j2c new file mode 100644 index 000000000..a84aa7742 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/9c88539c-fd04-46b8-bea2-ddf1bcffe3bd.j2c differ diff --git a/indra/newview/skins/darkorange/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga b/indra/newview/skins/darkorange/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga new file mode 100644 index 000000000..e0656c901 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga differ diff --git a/indra/newview/skins/darkorange/textures/9deab416-9c63-78d6-d558-9a156f12044c.j2c b/indra/newview/skins/darkorange/textures/9deab416-9c63-78d6-d558-9a156f12044c.j2c new file mode 100644 index 000000000..f4e4cba34 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/9deab416-9c63-78d6-d558-9a156f12044c.j2c differ diff --git a/indra/newview/skins/darkorange/textures/a6162133-724b-54df-a12f-51cd070ad6f3.j2c b/indra/newview/skins/darkorange/textures/a6162133-724b-54df-a12f-51cd070ad6f3.j2c new file mode 100644 index 000000000..9d93153bc Binary files /dev/null and b/indra/newview/skins/darkorange/textures/a6162133-724b-54df-a12f-51cd070ad6f3.j2c differ diff --git a/indra/newview/skins/darkorange/textures/a85ac674-cb75-4af6-9499-df7c5aaf7a28.j2c b/indra/newview/skins/darkorange/textures/a85ac674-cb75-4af6-9499-df7c5aaf7a28.j2c new file mode 100644 index 000000000..aa222571d Binary files /dev/null and b/indra/newview/skins/darkorange/textures/a85ac674-cb75-4af6-9499-df7c5aaf7a28.j2c differ diff --git a/indra/newview/skins/darkorange/textures/abb783e6-3e93-26c0-248a-247666855da3.j2c b/indra/newview/skins/darkorange/textures/abb783e6-3e93-26c0-248a-247666855da3.j2c new file mode 100644 index 000000000..13c43b4a4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/abb783e6-3e93-26c0-248a-247666855da3.j2c differ diff --git a/indra/newview/skins/darkorange/textures/account_id_green.tga b/indra/newview/skins/darkorange/textures/account_id_green.tga new file mode 100644 index 000000000..9be215eed Binary files /dev/null and b/indra/newview/skins/darkorange/textures/account_id_green.tga differ diff --git a/indra/newview/skins/darkorange/textures/account_id_orange.tga b/indra/newview/skins/darkorange/textures/account_id_orange.tga new file mode 100644 index 000000000..6b41e8663 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/account_id_orange.tga differ diff --git a/indra/newview/skins/darkorange/textures/active_speakers.tga b/indra/newview/skins/darkorange/textures/active_speakers.tga new file mode 100644 index 000000000..02d3643d7 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/active_speakers.tga differ diff --git a/indra/newview/skins/darkorange/textures/active_voice_tab.tga b/indra/newview/skins/darkorange/textures/active_voice_tab.tga new file mode 100644 index 000000000..2d0dfaabc Binary files /dev/null and b/indra/newview/skins/darkorange/textures/active_voice_tab.tga differ diff --git a/indra/newview/skins/darkorange/textures/ae874d1a-93ef-54fb-5fd3-eb0cb156afc0.j2c b/indra/newview/skins/darkorange/textures/ae874d1a-93ef-54fb-5fd3-eb0cb156afc0.j2c new file mode 100644 index 000000000..61711d2bf Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ae874d1a-93ef-54fb-5fd3-eb0cb156afc0.j2c differ diff --git a/indra/newview/skins/darkorange/textures/alpha_gradient.tga b/indra/newview/skins/darkorange/textures/alpha_gradient.tga new file mode 100644 index 000000000..6fdba25d4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/alpha_gradient.tga differ diff --git a/indra/newview/skins/darkorange/textures/alpha_gradient_2d.j2c b/indra/newview/skins/darkorange/textures/alpha_gradient_2d.j2c new file mode 100644 index 000000000..5de5a80a6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/alpha_gradient_2d.j2c differ diff --git a/indra/newview/skins/darkorange/textures/arrow_down.tga b/indra/newview/skins/darkorange/textures/arrow_down.tga new file mode 100644 index 000000000..81dc9d3b6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/arrow_down.tga differ diff --git a/indra/newview/skins/darkorange/textures/arrow_up.tga b/indra/newview/skins/darkorange/textures/arrow_up.tga new file mode 100644 index 000000000..22195cf7f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/arrow_up.tga differ diff --git a/indra/newview/skins/darkorange/textures/avatar_gone.tga b/indra/newview/skins/darkorange/textures/avatar_gone.tga new file mode 100644 index 000000000..e5c2c070b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/avatar_gone.tga differ diff --git a/indra/newview/skins/darkorange/textures/avatar_new.tga b/indra/newview/skins/darkorange/textures/avatar_new.tga new file mode 100644 index 000000000..854b70c32 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/avatar_new.tga differ diff --git a/indra/newview/skins/darkorange/textures/avatar_sound.tga b/indra/newview/skins/darkorange/textures/avatar_sound.tga new file mode 100644 index 000000000..ec5dacbf0 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/avatar_sound.tga differ diff --git a/indra/newview/skins/darkorange/textures/avatar_thumb_bkgrnd.j2c b/indra/newview/skins/darkorange/textures/avatar_thumb_bkgrnd.j2c new file mode 100644 index 000000000..555551ba1 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/avatar_thumb_bkgrnd.j2c differ diff --git a/indra/newview/skins/darkorange/textures/avatar_typing.tga b/indra/newview/skins/darkorange/textures/avatar_typing.tga new file mode 100644 index 000000000..2c549025d Binary files /dev/null and b/indra/newview/skins/darkorange/textures/avatar_typing.tga differ diff --git a/indra/newview/skins/darkorange/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga b/indra/newview/skins/darkorange/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga new file mode 100644 index 000000000..7358e86d3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga differ diff --git a/indra/newview/skins/darkorange/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/darkorange/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..97694e61c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/darkorange/textures/b4ba225c-373f-446d-9f7e-6cb7b5cf9b3d.j2c b/indra/newview/skins/darkorange/textures/b4ba225c-373f-446d-9f7e-6cb7b5cf9b3d.j2c new file mode 100644 index 000000000..0e5279f5d Binary files /dev/null and b/indra/newview/skins/darkorange/textures/b4ba225c-373f-446d-9f7e-6cb7b5cf9b3d.j2c differ diff --git a/indra/newview/skins/darkorange/textures/b8d3965a-ad78-bf43-699b-bff8eca6c975.j2c b/indra/newview/skins/darkorange/textures/b8d3965a-ad78-bf43-699b-bff8eca6c975.j2c new file mode 100644 index 000000000..44f31a0df Binary files /dev/null and b/indra/newview/skins/darkorange/textures/b8d3965a-ad78-bf43-699b-bff8eca6c975.j2c differ diff --git a/indra/newview/skins/darkorange/textures/b8eed5f0-64b7-6e12-b67f-43fa8e773440.j2c b/indra/newview/skins/darkorange/textures/b8eed5f0-64b7-6e12-b67f-43fa8e773440.j2c new file mode 100644 index 000000000..f1e7a9661 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/b8eed5f0-64b7-6e12-b67f-43fa8e773440.j2c differ diff --git a/indra/newview/skins/darkorange/textures/b9e1cf8a-9660-c020-0c69-18f1ea27268a.j2c b/indra/newview/skins/darkorange/textures/b9e1cf8a-9660-c020-0c69-18f1ea27268a.j2c new file mode 100644 index 000000000..2cd79e4d6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/b9e1cf8a-9660-c020-0c69-18f1ea27268a.j2c differ diff --git a/indra/newview/skins/darkorange/textures/b9f1a3b8-933e-b7c8-e6f5-dba1bc666bed.j2c b/indra/newview/skins/darkorange/textures/b9f1a3b8-933e-b7c8-e6f5-dba1bc666bed.j2c new file mode 100644 index 000000000..df28fa35e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/b9f1a3b8-933e-b7c8-e6f5-dba1bc666bed.j2c differ diff --git a/indra/newview/skins/darkorange/textures/badge_error.j2c b/indra/newview/skins/darkorange/textures/badge_error.j2c new file mode 100644 index 000000000..e8f3da507 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/badge_error.j2c differ diff --git a/indra/newview/skins/darkorange/textures/badge_note.j2c b/indra/newview/skins/darkorange/textures/badge_note.j2c new file mode 100644 index 000000000..1ab5233fa Binary files /dev/null and b/indra/newview/skins/darkorange/textures/badge_note.j2c differ diff --git a/indra/newview/skins/darkorange/textures/badge_ok.j2c b/indra/newview/skins/darkorange/textures/badge_ok.j2c new file mode 100644 index 000000000..f85b880f1 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/badge_ok.j2c differ diff --git a/indra/newview/skins/darkorange/textures/badge_warn.j2c b/indra/newview/skins/darkorange/textures/badge_warn.j2c new file mode 100644 index 000000000..26437ca42 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/badge_warn.j2c differ diff --git a/indra/newview/skins/darkorange/textures/beb169c7-11ea-fff2-efe5-0f24dc881df2.j2c b/indra/newview/skins/darkorange/textures/beb169c7-11ea-fff2-efe5-0f24dc881df2.j2c new file mode 100644 index 000000000..ccbeb08f4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/beb169c7-11ea-fff2-efe5-0f24dc881df2.j2c differ diff --git a/indra/newview/skins/darkorange/textures/black.tga b/indra/newview/skins/darkorange/textures/black.tga new file mode 100644 index 000000000..e69be0893 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/black.tga differ diff --git a/indra/newview/skins/darkorange/textures/btn_chatbar.tga b/indra/newview/skins/darkorange/textures/btn_chatbar.tga new file mode 100644 index 000000000..59bfb87ea Binary files /dev/null and b/indra/newview/skins/darkorange/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/darkorange/textures/btn_chatbar_selected.tga b/indra/newview/skins/darkorange/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..334bec89f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/darkorange/textures/button_anim_pause.tga b/indra/newview/skins/darkorange/textures/button_anim_pause.tga new file mode 100644 index 000000000..407e02a20 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/darkorange/textures/button_anim_pause_disabled.tga b/indra/newview/skins/darkorange/textures/button_anim_pause_disabled.tga new file mode 100644 index 000000000..d528e4ea6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/button_anim_pause_disabled.tga differ diff --git a/indra/newview/skins/darkorange/textures/button_anim_pause_selected.tga b/indra/newview/skins/darkorange/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..611595eb3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/darkorange/textures/button_anim_play.tga b/indra/newview/skins/darkorange/textures/button_anim_play.tga new file mode 100644 index 000000000..ca39af62a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/darkorange/textures/button_anim_play_disabled.tga b/indra/newview/skins/darkorange/textures/button_anim_play_disabled.tga new file mode 100644 index 000000000..6e92294a1 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/button_anim_play_disabled.tga differ diff --git a/indra/newview/skins/darkorange/textures/button_anim_play_selected.tga b/indra/newview/skins/darkorange/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..d8f1e7042 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/darkorange/textures/button_anim_stop.tga b/indra/newview/skins/darkorange/textures/button_anim_stop.tga new file mode 100644 index 000000000..e927d4b19 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/darkorange/textures/button_anim_stop_disabled.tga b/indra/newview/skins/darkorange/textures/button_anim_stop_disabled.tga new file mode 100644 index 000000000..819b68b94 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/button_anim_stop_disabled.tga differ diff --git a/indra/newview/skins/darkorange/textures/button_anim_stop_selected.tga b/indra/newview/skins/darkorange/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..db54ce86a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/darkorange/textures/button_disabled_32x128.tga b/indra/newview/skins/darkorange/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..4adfaa86f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/darkorange/textures/button_enabled_32x128.tga b/indra/newview/skins/darkorange/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..65ada959c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/darkorange/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/darkorange/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..2097d27d1 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/darkorange/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/darkorange/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..07ccf8f9c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/darkorange/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/darkorange/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..abdb4d762 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/darkorange/textures/c7d8bbf3-21ee-4f6e-9b20-3cf18425af1d.j2c b/indra/newview/skins/darkorange/textures/c7d8bbf3-21ee-4f6e-9b20-3cf18425af1d.j2c new file mode 100644 index 000000000..0bca24d6b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/c7d8bbf3-21ee-4f6e-9b20-3cf18425af1d.j2c differ diff --git a/indra/newview/skins/darkorange/textures/ca4e8c27-473c-eb1c-2f5d-50ee3f07d85c.j2c b/indra/newview/skins/darkorange/textures/ca4e8c27-473c-eb1c-2f5d-50ee3f07d85c.j2c new file mode 100644 index 000000000..927af8007 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ca4e8c27-473c-eb1c-2f5d-50ee3f07d85c.j2c differ diff --git a/indra/newview/skins/darkorange/textures/ca7609c6-6ec6-32d9-332e-0d8f437ef644.tga b/indra/newview/skins/darkorange/textures/ca7609c6-6ec6-32d9-332e-0d8f437ef644.tga new file mode 100644 index 000000000..0dbb8fda4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ca7609c6-6ec6-32d9-332e-0d8f437ef644.tga differ diff --git a/indra/newview/skins/darkorange/textures/cam_rotate_in.tga b/indra/newview/skins/darkorange/textures/cam_rotate_in.tga new file mode 100644 index 000000000..a7f3a810c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/darkorange/textures/cam_rotate_out.tga b/indra/newview/skins/darkorange/textures/cam_rotate_out.tga new file mode 100644 index 000000000..ee25b5292 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/darkorange/textures/cam_tracking_in.tga b/indra/newview/skins/darkorange/textures/cam_tracking_in.tga new file mode 100644 index 000000000..712fed4e7 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/darkorange/textures/cam_tracking_out.tga b/indra/newview/skins/darkorange/textures/cam_tracking_out.tga new file mode 100644 index 000000000..05e3c82d7 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/darkorange/textures/cam_zoom_minus_in.tga b/indra/newview/skins/darkorange/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..becdc5bcc Binary files /dev/null and b/indra/newview/skins/darkorange/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/darkorange/textures/cam_zoom_out.tga b/indra/newview/skins/darkorange/textures/cam_zoom_out.tga new file mode 100644 index 000000000..becdc5bcc Binary files /dev/null and b/indra/newview/skins/darkorange/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/darkorange/textures/cam_zoom_plus_in.tga b/indra/newview/skins/darkorange/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..becdc5bcc Binary files /dev/null and b/indra/newview/skins/darkorange/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/darkorange/textures/cce0f112-878f-4586-a2e2-a8f104bba271.j2c b/indra/newview/skins/darkorange/textures/cce0f112-878f-4586-a2e2-a8f104bba271.j2c new file mode 100644 index 000000000..2915b5d68 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/cce0f112-878f-4586-a2e2-a8f104bba271.j2c differ diff --git a/indra/newview/skins/darkorange/textures/cdd9a9fc-6d0b-f90d-8416-c72b6019bca8.j2c b/indra/newview/skins/darkorange/textures/cdd9a9fc-6d0b-f90d-8416-c72b6019bca8.j2c new file mode 100644 index 000000000..d6e52c206 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/cdd9a9fc-6d0b-f90d-8416-c72b6019bca8.j2c differ diff --git a/indra/newview/skins/darkorange/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/darkorange/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..6c281d363 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/darkorange/textures/checkbox_disabled_false.tga b/indra/newview/skins/darkorange/textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..16c239227 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/darkorange/textures/checkbox_disabled_true.tga b/indra/newview/skins/darkorange/textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..04a8d516f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/darkorange/textures/checkbox_enabled_false.tga b/indra/newview/skins/darkorange/textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..a604a4409 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/darkorange/textures/checkbox_enabled_true.tga b/indra/newview/skins/darkorange/textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..4a1b504ea Binary files /dev/null and b/indra/newview/skins/darkorange/textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/darkorange/textures/checkerboard_transparency_bg.png b/indra/newview/skins/darkorange/textures/checkerboard_transparency_bg.png new file mode 100644 index 000000000..9a1693520 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/checkerboard_transparency_bg.png differ diff --git a/indra/newview/skins/darkorange/textures/circle.tga b/indra/newview/skins/darkorange/textures/circle.tga new file mode 100644 index 000000000..d7097e3a3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/circle.tga differ diff --git a/indra/newview/skins/darkorange/textures/close_in_blue.tga b/indra/newview/skins/darkorange/textures/close_in_blue.tga new file mode 100644 index 000000000..8200eba32 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/close_in_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/close_inactive_blue.tga b/indra/newview/skins/darkorange/textures/close_inactive_blue.tga new file mode 100644 index 000000000..191c5d3e8 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/close_inactive_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/closebox.tga b/indra/newview/skins/darkorange/textures/closebox.tga new file mode 100644 index 000000000..294d4fb24 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/closebox.tga differ diff --git a/indra/newview/skins/darkorange/textures/cloud-particle.j2c b/indra/newview/skins/darkorange/textures/cloud-particle.j2c new file mode 100644 index 000000000..6c03bf6d0 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/cloud-particle.j2c differ diff --git a/indra/newview/skins/darkorange/textures/color_swatch_alpha.tga b/indra/newview/skins/darkorange/textures/color_swatch_alpha.tga new file mode 100644 index 000000000..814a004e6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/color_swatch_alpha.tga differ diff --git a/indra/newview/skins/darkorange/textures/combobox_arrow.tga b/indra/newview/skins/darkorange/textures/combobox_arrow.tga new file mode 100644 index 000000000..ad08f32bb Binary files /dev/null and b/indra/newview/skins/darkorange/textures/combobox_arrow.tga differ diff --git a/indra/newview/skins/darkorange/textures/crosshairs.tga b/indra/newview/skins/darkorange/textures/crosshairs.tga new file mode 100644 index 000000000..ac4d63dc5 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/crosshairs.tga differ diff --git a/indra/newview/skins/darkorange/textures/d07f6eed-b96a-47cd-b51d-400ad4a1c428.j2c b/indra/newview/skins/darkorange/textures/d07f6eed-b96a-47cd-b51d-400ad4a1c428.j2c new file mode 100644 index 000000000..013102c53 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/d07f6eed-b96a-47cd-b51d-400ad4a1c428.j2c differ diff --git a/indra/newview/skins/darkorange/textures/d21e44ca-ff1c-a96e-b2ef-c0753426b7d9.j2c b/indra/newview/skins/darkorange/textures/d21e44ca-ff1c-a96e-b2ef-c0753426b7d9.j2c new file mode 100644 index 000000000..909f9f972 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/d21e44ca-ff1c-a96e-b2ef-c0753426b7d9.j2c differ diff --git a/indra/newview/skins/darkorange/textures/d319ce44-0821-932a-cd18-cd1afb9d3ead.j2c b/indra/newview/skins/darkorange/textures/d319ce44-0821-932a-cd18-cd1afb9d3ead.j2c new file mode 100644 index 000000000..152715d63 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/d319ce44-0821-932a-cd18-cd1afb9d3ead.j2c differ diff --git a/indra/newview/skins/darkorange/textures/d691a01c-13b7-578d-57c0-5caef0b4e7e1.j2c b/indra/newview/skins/darkorange/textures/d691a01c-13b7-578d-57c0-5caef0b4e7e1.j2c new file mode 100644 index 000000000..493a09712 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/d691a01c-13b7-578d-57c0-5caef0b4e7e1.j2c differ diff --git a/indra/newview/skins/darkorange/textures/d7d99e40-10e2-5739-d063-91dcbdefc492.j2c b/indra/newview/skins/darkorange/textures/d7d99e40-10e2-5739-d063-91dcbdefc492.j2c new file mode 100644 index 000000000..2db576679 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/d7d99e40-10e2-5739-d063-91dcbdefc492.j2c differ diff --git a/indra/newview/skins/darkorange/textures/d9258671-868f-7511-c321-7baef9e948a4.j2c b/indra/newview/skins/darkorange/textures/d9258671-868f-7511-c321-7baef9e948a4.j2c new file mode 100644 index 000000000..d343f63d7 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/d9258671-868f-7511-c321-7baef9e948a4.j2c differ diff --git a/indra/newview/skins/darkorange/textures/darkgray.tga b/indra/newview/skins/darkorange/textures/darkgray.tga new file mode 100644 index 000000000..2063d685a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/darkgray.tga differ diff --git a/indra/newview/skins/darkorange/textures/db9d39ec-a896-c287-1ced-64566217021e.j2c b/indra/newview/skins/darkorange/textures/db9d39ec-a896-c287-1ced-64566217021e.j2c new file mode 100644 index 000000000..c11984bf6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/db9d39ec-a896-c287-1ced-64566217021e.j2c differ diff --git a/indra/newview/skins/darkorange/textures/de651394-f926-48db-b666-e49d83af1bbc.j2c b/indra/newview/skins/darkorange/textures/de651394-f926-48db-b666-e49d83af1bbc.j2c new file mode 100644 index 000000000..11b398470 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/de651394-f926-48db-b666-e49d83af1bbc.j2c differ diff --git a/indra/newview/skins/darkorange/textures/direction_arrow.tga b/indra/newview/skins/darkorange/textures/direction_arrow.tga new file mode 100644 index 000000000..f3ef1068c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/direction_arrow.tga differ diff --git a/indra/newview/skins/darkorange/textures/down_arrow.png b/indra/newview/skins/darkorange/textures/down_arrow.png new file mode 100644 index 000000000..155f80c97 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/down_arrow.png differ diff --git a/indra/newview/skins/darkorange/textures/e121e2fc-7573-740f-edfd-0d45a9ba486e.j2c b/indra/newview/skins/darkorange/textures/e121e2fc-7573-740f-edfd-0d45a9ba486e.j2c new file mode 100644 index 000000000..d88c13a0a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/e121e2fc-7573-740f-edfd-0d45a9ba486e.j2c differ diff --git a/indra/newview/skins/darkorange/textures/e3369e02-93e1-43dc-b9c0-4533db0963d0.tga b/indra/newview/skins/darkorange/textures/e3369e02-93e1-43dc-b9c0-4533db0963d0.tga new file mode 100644 index 000000000..0d127f946 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/e3369e02-93e1-43dc-b9c0-4533db0963d0.tga differ diff --git a/indra/newview/skins/darkorange/textures/e38248f9-f2ee-2c9f-aa49-4860857e3b08.j2c b/indra/newview/skins/darkorange/textures/e38248f9-f2ee-2c9f-aa49-4860857e3b08.j2c new file mode 100644 index 000000000..8c2c1078e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/e38248f9-f2ee-2c9f-aa49-4860857e3b08.j2c differ diff --git a/indra/newview/skins/darkorange/textures/e569711a-27c2-aad4-9246-0c910239a179.j2c b/indra/newview/skins/darkorange/textures/e569711a-27c2-aad4-9246-0c910239a179.j2c new file mode 100644 index 000000000..9be14d475 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/e569711a-27c2-aad4-9246-0c910239a179.j2c differ diff --git a/indra/newview/skins/darkorange/textures/e674ca0c-a387-4dae-a0b4-db6bd073faa5.j2c b/indra/newview/skins/darkorange/textures/e674ca0c-a387-4dae-a0b4-db6bd073faa5.j2c new file mode 100644 index 000000000..9541c5d43 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/e674ca0c-a387-4dae-a0b4-db6bd073faa5.j2c differ diff --git a/indra/newview/skins/darkorange/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga b/indra/newview/skins/darkorange/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga new file mode 100644 index 000000000..6fdba25d4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga differ diff --git a/indra/newview/skins/darkorange/textures/ebf2aa19-6c34-c5d8-4f14-853da1241f91.j2c b/indra/newview/skins/darkorange/textures/ebf2aa19-6c34-c5d8-4f14-853da1241f91.j2c new file mode 100644 index 000000000..cb0bb9cac Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ebf2aa19-6c34-c5d8-4f14-853da1241f91.j2c differ diff --git a/indra/newview/skins/darkorange/textures/eye_button_active.tga b/indra/newview/skins/darkorange/textures/eye_button_active.tga new file mode 100644 index 000000000..014f785a7 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/eye_button_inactive.tga b/indra/newview/skins/darkorange/textures/eye_button_inactive.tga new file mode 100644 index 000000000..8666f0bbe Binary files /dev/null and b/indra/newview/skins/darkorange/textures/eye_button_inactive.tga differ diff --git a/indra/newview/skins/darkorange/textures/f2d7b6f6-4200-1e9a-fd5b-96459e950f94.j2c b/indra/newview/skins/darkorange/textures/f2d7b6f6-4200-1e9a-fd5b-96459e950f94.j2c new file mode 100644 index 000000000..cb8a0cbd9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/f2d7b6f6-4200-1e9a-fd5b-96459e950f94.j2c differ diff --git a/indra/newview/skins/darkorange/textures/f4b6b161-6530-6679-1a84-adfcb71a8b12.j2c b/indra/newview/skins/darkorange/textures/f4b6b161-6530-6679-1a84-adfcb71a8b12.j2c new file mode 100644 index 000000000..73f80eb7f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/f4b6b161-6530-6679-1a84-adfcb71a8b12.j2c differ diff --git a/indra/newview/skins/darkorange/textures/f54a0c32-3cd1-d49a-5b4f-7b792bebc204.j2c b/indra/newview/skins/darkorange/textures/f54a0c32-3cd1-d49a-5b4f-7b792bebc204.j2c new file mode 100644 index 000000000..03d4b1a9b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/f54a0c32-3cd1-d49a-5b4f-7b792bebc204.j2c differ diff --git a/indra/newview/skins/darkorange/textures/f9bbb2fe-584b-4c01-86fc-599c69534c1b.tga b/indra/newview/skins/darkorange/textures/f9bbb2fe-584b-4c01-86fc-599c69534c1b.tga new file mode 100644 index 000000000..3706c96e0 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/f9bbb2fe-584b-4c01-86fc-599c69534c1b.tga differ diff --git a/indra/newview/skins/darkorange/textures/fb1fecba-9585-415b-ad15-6e6e3d6c5479.j2c b/indra/newview/skins/darkorange/textures/fb1fecba-9585-415b-ad15-6e6e3d6c5479.j2c new file mode 100644 index 000000000..8cdf151fd Binary files /dev/null and b/indra/newview/skins/darkorange/textures/fb1fecba-9585-415b-ad15-6e6e3d6c5479.j2c differ diff --git a/indra/newview/skins/darkorange/textures/fb2ae204-3fd1-df33-594f-c9f882830e66.j2c b/indra/newview/skins/darkorange/textures/fb2ae204-3fd1-df33-594f-c9f882830e66.j2c new file mode 100644 index 000000000..2db851704 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/fb2ae204-3fd1-df33-594f-c9f882830e66.j2c differ diff --git a/indra/newview/skins/darkorange/textures/fc987bf9-b8cb-f8e5-45f2-d664ca6bd3eb.j2c b/indra/newview/skins/darkorange/textures/fc987bf9-b8cb-f8e5-45f2-d664ca6bd3eb.j2c new file mode 100644 index 000000000..49913c5ed Binary files /dev/null and b/indra/newview/skins/darkorange/textures/fc987bf9-b8cb-f8e5-45f2-d664ca6bd3eb.j2c differ diff --git a/indra/newview/skins/darkorange/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/darkorange/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..f0cf29fe6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/darkorange/textures/ff_edit_mine.tga b/indra/newview/skins/darkorange/textures/ff_edit_mine.tga new file mode 100644 index 000000000..8fe3f5dbf Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ff_edit_mine.tga differ diff --git a/indra/newview/skins/darkorange/textures/ff_edit_mine_button.tga b/indra/newview/skins/darkorange/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..6cc3b8c3d Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/darkorange/textures/ff_edit_theirs.tga b/indra/newview/skins/darkorange/textures/ff_edit_theirs.tga new file mode 100644 index 000000000..f1af3da26 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ff_edit_theirs.tga differ diff --git a/indra/newview/skins/darkorange/textures/ff_edit_theirs_button.tga b/indra/newview/skins/darkorange/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..e890b2c7c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/darkorange/textures/ff_online_status_button.tga b/indra/newview/skins/darkorange/textures/ff_online_status_button.tga new file mode 100644 index 000000000..640b445f7 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/darkorange/textures/ff_visible_map.tga b/indra/newview/skins/darkorange/textures/ff_visible_map.tga new file mode 100644 index 000000000..a948a7292 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ff_visible_map.tga differ diff --git a/indra/newview/skins/darkorange/textures/ff_visible_map_button.tga b/indra/newview/skins/darkorange/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..a948a7292 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/darkorange/textures/ff_visible_online.tga b/indra/newview/skins/darkorange/textures/ff_visible_online.tga new file mode 100644 index 000000000..bee37f931 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ff_visible_online.tga differ diff --git a/indra/newview/skins/darkorange/textures/ff_visible_online_button.tga b/indra/newview/skins/darkorange/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..d39ba7462 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/darkorange/textures/flag_blue.tga b/indra/newview/skins/darkorange/textures/flag_blue.tga new file mode 100644 index 000000000..e61e7a912 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/flag_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/flag_green.tga b/indra/newview/skins/darkorange/textures/flag_green.tga new file mode 100644 index 000000000..5f0f05c24 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/flag_green.tga differ diff --git a/indra/newview/skins/darkorange/textures/flag_orange.tga b/indra/newview/skins/darkorange/textures/flag_orange.tga new file mode 100644 index 000000000..6e73c31b5 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/flag_orange.tga differ diff --git a/indra/newview/skins/darkorange/textures/flag_pink.tga b/indra/newview/skins/darkorange/textures/flag_pink.tga new file mode 100644 index 000000000..ccf52b9a4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/flag_pink.tga differ diff --git a/indra/newview/skins/darkorange/textures/flag_purple.tga b/indra/newview/skins/darkorange/textures/flag_purple.tga new file mode 100644 index 000000000..3ef8f0921 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/flag_purple.tga differ diff --git a/indra/newview/skins/darkorange/textures/flag_red.tga b/indra/newview/skins/darkorange/textures/flag_red.tga new file mode 100644 index 000000000..87afb595a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/flag_red.tga differ diff --git a/indra/newview/skins/darkorange/textures/flag_yellow.tga b/indra/newview/skins/darkorange/textures/flag_yellow.tga new file mode 100644 index 000000000..4c4a64768 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/flag_yellow.tga differ diff --git a/indra/newview/skins/darkorange/textures/flyout_btn_left.tga b/indra/newview/skins/darkorange/textures/flyout_btn_left.tga new file mode 100644 index 000000000..dffa8b43a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/darkorange/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/darkorange/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..f379636dc Binary files /dev/null and b/indra/newview/skins/darkorange/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/darkorange/textures/flyout_btn_left_selected.tga b/indra/newview/skins/darkorange/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..edb6bdffa Binary files /dev/null and b/indra/newview/skins/darkorange/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/darkorange/textures/flyout_btn_right.tga b/indra/newview/skins/darkorange/textures/flyout_btn_right.tga new file mode 100644 index 000000000..567032bd3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/darkorange/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/darkorange/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..a2cf01ccd Binary files /dev/null and b/indra/newview/skins/darkorange/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/darkorange/textures/flyout_btn_right_selected.tga b/indra/newview/skins/darkorange/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..078c57e1f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/darkorange/textures/folder_arrow.tga b/indra/newview/skins/darkorange/textures/folder_arrow.tga new file mode 100644 index 000000000..77d470731 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/folder_arrow.tga differ diff --git a/indra/newview/skins/darkorange/textures/foot_shadow.j2c b/indra/newview/skins/darkorange/textures/foot_shadow.j2c new file mode 100644 index 000000000..f9ce9da7d Binary files /dev/null and b/indra/newview/skins/darkorange/textures/foot_shadow.j2c differ diff --git a/indra/newview/skins/darkorange/textures/icn_active-speakers-dot-lvl0.tga b/indra/newview/skins/darkorange/textures/icn_active-speakers-dot-lvl0.tga new file mode 100644 index 000000000..35846cef3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_active-speakers-dot-lvl0.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_active-speakers-dot-lvl1.tga b/indra/newview/skins/darkorange/textures/icn_active-speakers-dot-lvl1.tga new file mode 100644 index 000000000..1f9f564fa Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_active-speakers-dot-lvl1.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_active-speakers-dot-lvl2.tga b/indra/newview/skins/darkorange/textures/icn_active-speakers-dot-lvl2.tga new file mode 100644 index 000000000..b2e5609f1 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_active-speakers-dot-lvl2.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_active-speakers-typing1.tga b/indra/newview/skins/darkorange/textures/icn_active-speakers-typing1.tga new file mode 100644 index 000000000..3706c96e0 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_active-speakers-typing1.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_active-speakers-typing2.tga b/indra/newview/skins/darkorange/textures/icn_active-speakers-typing2.tga new file mode 100644 index 000000000..0d127f946 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_active-speakers-typing2.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_active-speakers-typing3.tga b/indra/newview/skins/darkorange/textures/icn_active-speakers-typing3.tga new file mode 100644 index 000000000..031b3ad34 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_active-speakers-typing3.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_chatbar.tga b/indra/newview/skins/darkorange/textures/icn_chatbar.tga new file mode 100644 index 000000000..9a9f338f9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_chatbar.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_clear_lineeditor.tga b/indra/newview/skins/darkorange/textures/icn_clear_lineeditor.tga new file mode 100644 index 000000000..8cd8310c6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_clear_lineeditor.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_label_media.tga b/indra/newview/skins/darkorange/textures/icn_label_media.tga new file mode 100644 index 000000000..58e77c37e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_label_media.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_label_music.tga b/indra/newview/skins/darkorange/textures/icn_label_music.tga new file mode 100644 index 000000000..40b7dff50 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_label_web.tga b/indra/newview/skins/darkorange/textures/icn_label_web.tga new file mode 100644 index 000000000..8f4533549 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_media-pause.tga b/indra/newview/skins/darkorange/textures/icn_media-pause.tga new file mode 100644 index 000000000..962d4e9fa Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_media-pause_active.tga b/indra/newview/skins/darkorange/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..3b3c63630 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_media-pause_disabled.tga b/indra/newview/skins/darkorange/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..f09325f1e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_media-pause_enabled.tga b/indra/newview/skins/darkorange/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..407e02a20 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_media-play.tga b/indra/newview/skins/darkorange/textures/icn_media-play.tga new file mode 100644 index 000000000..0ad30f0b3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_media-play.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_media-play_active.tga b/indra/newview/skins/darkorange/textures/icn_media-play_active.tga new file mode 100644 index 000000000..dddfbb200 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_media-play_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_media-play_disabled.tga b/indra/newview/skins/darkorange/textures/icn_media-play_disabled.tga new file mode 100644 index 000000000..a79d7fae3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_media-play_disabled.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_media-play_enabled.tga b/indra/newview/skins/darkorange/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..84dba53f7 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_media-stop_active.tga b/indra/newview/skins/darkorange/textures/icn_media-stop_active.tga new file mode 100644 index 000000000..4f86f003e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_media-stop_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_media-stop_disabled.tga b/indra/newview/skins/darkorange/textures/icn_media-stop_disabled.tga new file mode 100644 index 000000000..97d43d5fb Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_media-stop_disabled.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_media-stop_enabled.tga b/indra/newview/skins/darkorange/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..bbc5a7910 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_media.tga b/indra/newview/skins/darkorange/textures/icn_media.tga new file mode 100644 index 000000000..a68bd0477 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_media.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_media_movie.tga b/indra/newview/skins/darkorange/textures/icn_media_movie.tga new file mode 100644 index 000000000..82d2c6441 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_media_web.tga b/indra/newview/skins/darkorange/textures/icn_media_web.tga new file mode 100644 index 000000000..f2b768c0e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_music-pause.tga b/indra/newview/skins/darkorange/textures/icn_music-pause.tga new file mode 100644 index 000000000..2a8120e24 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_music-play.tga b/indra/newview/skins/darkorange/textures/icn_music-play.tga new file mode 100644 index 000000000..51b7e2ba2 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_music.tga b/indra/newview/skins/darkorange/textures/icn_music.tga new file mode 100644 index 000000000..af4de9627 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_music.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_pause.tga b/indra/newview/skins/darkorange/textures/icn_pause.tga new file mode 100644 index 000000000..5dbaaf47c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_pause.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_play.tga b/indra/newview/skins/darkorange/textures/icn_play.tga new file mode 100644 index 000000000..88807ed72 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_play.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_rounded-text-field.tga b/indra/newview/skins/darkorange/textures/icn_rounded-text-field.tga new file mode 100644 index 000000000..7da504f93 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_rounded-text-field.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_scrollbar.tga b/indra/newview/skins/darkorange/textures/icn_scrollbar.tga new file mode 100644 index 000000000..25e884e64 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_scrollbar.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_scrollbar_bg.tga b/indra/newview/skins/darkorange/textures/icn_scrollbar_bg.tga new file mode 100644 index 000000000..3d96393fa Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_scrollbar_bg.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_scrollbar_thumb.tga b/indra/newview/skins/darkorange/textures/icn_scrollbar_thumb.tga new file mode 100644 index 000000000..95f383e6e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_scrollbar_thumb.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_slide-groove_dark.tga b/indra/newview/skins/darkorange/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..38ba43931 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_slide-highlight.tga b/indra/newview/skins/darkorange/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..612782195 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/darkorange/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..9b92ec114 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/darkorange/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..90da6720f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_speaker_dark.tga b/indra/newview/skins/darkorange/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..efea84317 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_stop.tga b/indra/newview/skins/darkorange/textures/icn_stop.tga new file mode 100644 index 000000000..bd6950b10 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_stop.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_textfield_enabled.tga b/indra/newview/skins/darkorange/textures/icn_textfield_enabled.tga new file mode 100644 index 000000000..2bcb29958 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_textfield_enabled.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_toolbar_build.tga b/indra/newview/skins/darkorange/textures/icn_toolbar_build.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_toolbar_build.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_toolbar_fly.tga b/indra/newview/skins/darkorange/textures/icn_toolbar_fly.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_toolbar_fly.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_toolbar_inventory.tga b/indra/newview/skins/darkorange/textures/icn_toolbar_inventory.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_toolbar_inventory.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_toolbar_map.tga b/indra/newview/skins/darkorange/textures/icn_toolbar_map.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_toolbar_map.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_toolbar_minimap.tga b/indra/newview/skins/darkorange/textures/icn_toolbar_minimap.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_toolbar_minimap.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_toolbar_search.tga b/indra/newview/skins/darkorange/textures/icn_toolbar_search.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_toolbar_search.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_toolbar_snapshot.tga b/indra/newview/skins/darkorange/textures/icn_toolbar_snapshot.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_toolbar_snapshot.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_voice-call-end.tga b/indra/newview/skins/darkorange/textures/icn_voice-call-end.tga new file mode 100644 index 000000000..2da4e856b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_voice-call-end.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_voice-call-start.tga b/indra/newview/skins/darkorange/textures/icn_voice-call-start.tga new file mode 100644 index 000000000..07701cb5a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_voice-call-start.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_voice-groupfocus.tga b/indra/newview/skins/darkorange/textures/icn_voice-groupfocus.tga new file mode 100644 index 000000000..9f48d4609 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_voice-groupfocus.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_voice-localchat.tga b/indra/newview/skins/darkorange/textures/icn_voice-localchat.tga new file mode 100644 index 000000000..7cf267eaf Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_voice-localchat.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_voice-pvtfocus.tga b/indra/newview/skins/darkorange/textures/icn_voice-pvtfocus.tga new file mode 100644 index 000000000..abadb09aa Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_voice-pvtfocus.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_voice_ptt-off.tga b/indra/newview/skins/darkorange/textures/icn_voice_ptt-off.tga new file mode 100644 index 000000000..15ecbdff9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_voice_ptt-off.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_voice_ptt-on-lvl1.tga b/indra/newview/skins/darkorange/textures/icn_voice_ptt-on-lvl1.tga new file mode 100644 index 000000000..ae72af131 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_voice_ptt-on-lvl1.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_voice_ptt-on-lvl2.tga b/indra/newview/skins/darkorange/textures/icn_voice_ptt-on-lvl2.tga new file mode 100644 index 000000000..4dfc2dd29 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_voice_ptt-on-lvl2.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_voice_ptt-on-lvl3.tga b/indra/newview/skins/darkorange/textures/icn_voice_ptt-on-lvl3.tga new file mode 100644 index 000000000..018b0bef4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_voice_ptt-on-lvl3.tga differ diff --git a/indra/newview/skins/darkorange/textures/icn_voice_ptt-on.tga b/indra/newview/skins/darkorange/textures/icn_voice_ptt-on.tga new file mode 100644 index 000000000..9eb643110 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icn_voice_ptt-on.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_auction.tga b/indra/newview/skins/darkorange/textures/icon_auction.tga new file mode 100644 index 000000000..d121833b4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_auction.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_avatar_expand.png b/indra/newview/skins/darkorange/textures/icon_avatar_expand.png new file mode 100644 index 000000000..4b7862c26 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_avatar_expand.png differ diff --git a/indra/newview/skins/darkorange/textures/icon_avatar_offline.tga b/indra/newview/skins/darkorange/textures/icon_avatar_offline.tga new file mode 100644 index 000000000..6dc2d5eb5 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_avatar_offline.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_avatar_online.tga b/indra/newview/skins/darkorange/textures/icon_avatar_online.tga new file mode 100644 index 000000000..6846c3116 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_avatar_online.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_day_cycle.tga b/indra/newview/skins/darkorange/textures/icon_day_cycle.tga new file mode 100644 index 000000000..2d5dee1e9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_day_cycle.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_diurnal.tga b/indra/newview/skins/darkorange/textures/icon_diurnal.tga new file mode 100644 index 000000000..fc720c826 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_diurnal.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_event.tga b/indra/newview/skins/darkorange/textures/icon_event.tga new file mode 100644 index 000000000..7805dbce6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_event.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_event_mature.tga b/indra/newview/skins/darkorange/textures/icon_event_mature.tga new file mode 100644 index 000000000..61c879bc9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_event_mature.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_for_sale.tga b/indra/newview/skins/darkorange/textures/icon_for_sale.tga new file mode 100644 index 000000000..455b1aeb1 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_for_sale.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_group.tga b/indra/newview/skins/darkorange/textures/icon_group.tga new file mode 100644 index 000000000..22122d6cf Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_group.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_groupnotice.tga b/indra/newview/skins/darkorange/textures/icon_groupnotice.tga new file mode 100644 index 000000000..edf2c6180 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_groupnotice.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_groupnoticeinventory.tga b/indra/newview/skins/darkorange/textures/icon_groupnoticeinventory.tga new file mode 100644 index 000000000..f31390632 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_groupnoticeinventory.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_lock.tga b/indra/newview/skins/darkorange/textures/icon_lock.tga new file mode 100644 index 000000000..23521aa11 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_lock.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_place.tga b/indra/newview/skins/darkorange/textures/icon_place.tga new file mode 100644 index 000000000..2170c9849 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_place.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_popular.tga b/indra/newview/skins/darkorange/textures/icon_popular.tga new file mode 100644 index 000000000..f1165b8aa Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_popular.tga differ diff --git a/indra/newview/skins/darkorange/textures/icon_top_pick.tga b/indra/newview/skins/darkorange/textures/icon_top_pick.tga new file mode 100644 index 000000000..c9ec40668 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/icon_top_pick.tga differ diff --git a/indra/newview/skins/darkorange/textures/info_error.tga b/indra/newview/skins/darkorange/textures/info_error.tga new file mode 100644 index 000000000..d5d71ad95 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/info_error.tga differ diff --git a/indra/newview/skins/darkorange/textures/info_fetching.tga b/indra/newview/skins/darkorange/textures/info_fetching.tga new file mode 100644 index 000000000..d9faa4014 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/info_fetching.tga differ diff --git a/indra/newview/skins/darkorange/textures/info_unknown.tga b/indra/newview/skins/darkorange/textures/info_unknown.tga new file mode 100644 index 000000000..b04e4b064 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/info_unknown.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_animation.tga b/indra/newview/skins/darkorange/textures/inv_folder_animation.tga new file mode 100644 index 000000000..8f98dac3c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_animation.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_bodypart.tga b/indra/newview/skins/darkorange/textures/inv_folder_bodypart.tga new file mode 100644 index 000000000..8ef4bcd48 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_bodypart.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_callingcard.tga b/indra/newview/skins/darkorange/textures/inv_folder_callingcard.tga new file mode 100644 index 000000000..50199052a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_callingcard.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_clothing.tga b/indra/newview/skins/darkorange/textures/inv_folder_clothing.tga new file mode 100644 index 000000000..75a8faac8 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_clothing.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_gesture.tga b/indra/newview/skins/darkorange/textures/inv_folder_gesture.tga new file mode 100644 index 000000000..d051c9bf9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_gesture.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_landmark.tga b/indra/newview/skins/darkorange/textures/inv_folder_landmark.tga new file mode 100644 index 000000000..a6391771b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_landmark.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_lostandfound.tga b/indra/newview/skins/darkorange/textures/inv_folder_lostandfound.tga new file mode 100644 index 000000000..559cb9f8e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_lostandfound.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_notecard.tga b/indra/newview/skins/darkorange/textures/inv_folder_notecard.tga new file mode 100644 index 000000000..6b06f88c2 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_notecard.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_object.tga b/indra/newview/skins/darkorange/textures/inv_folder_object.tga new file mode 100644 index 000000000..5d1e53620 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_object.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_plain_closed.tga b/indra/newview/skins/darkorange/textures/inv_folder_plain_closed.tga new file mode 100644 index 000000000..87fb9356c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_plain_closed.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_plain_open.tga b/indra/newview/skins/darkorange/textures/inv_folder_plain_open.tga new file mode 100644 index 000000000..87fb9356c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_plain_open.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_script.tga b/indra/newview/skins/darkorange/textures/inv_folder_script.tga new file mode 100644 index 000000000..c6447fd0c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_script.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_snapshot.tga b/indra/newview/skins/darkorange/textures/inv_folder_snapshot.tga new file mode 100644 index 000000000..0398f9f90 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_snapshot.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_sound.tga b/indra/newview/skins/darkorange/textures/inv_folder_sound.tga new file mode 100644 index 000000000..7736f0dc4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_sound.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_texture.tga b/indra/newview/skins/darkorange/textures/inv_folder_texture.tga new file mode 100644 index 000000000..18328bd11 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_texture.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_folder_trash.tga b/indra/newview/skins/darkorange/textures/inv_folder_trash.tga new file mode 100644 index 000000000..54043e9cf Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_folder_trash.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_animation.tga b/indra/newview/skins/darkorange/textures/inv_item_animation.tga new file mode 100644 index 000000000..2b12b2809 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_animation.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_attach.tga b/indra/newview/skins/darkorange/textures/inv_item_attach.tga new file mode 100644 index 000000000..053899332 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_attach.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_callingcard_offline.tga b/indra/newview/skins/darkorange/textures/inv_item_callingcard_offline.tga new file mode 100644 index 000000000..44222d306 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_callingcard_offline.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_callingcard_online.tga b/indra/newview/skins/darkorange/textures/inv_item_callingcard_online.tga new file mode 100644 index 000000000..42be4d2e1 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_callingcard_online.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_clothing.tga b/indra/newview/skins/darkorange/textures/inv_item_clothing.tga new file mode 100644 index 000000000..a72317c99 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_clothing.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_eyes.tga b/indra/newview/skins/darkorange/textures/inv_item_eyes.tga new file mode 100644 index 000000000..1ff5cf54c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_eyes.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_gesture.tga b/indra/newview/skins/darkorange/textures/inv_item_gesture.tga new file mode 100644 index 000000000..52ac90c90 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_gesture.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_gloves.tga b/indra/newview/skins/darkorange/textures/inv_item_gloves.tga new file mode 100644 index 000000000..fe5a825e9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_gloves.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_hair.tga b/indra/newview/skins/darkorange/textures/inv_item_hair.tga new file mode 100644 index 000000000..3d7bf0e62 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_hair.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_jacket.tga b/indra/newview/skins/darkorange/textures/inv_item_jacket.tga new file mode 100644 index 000000000..6b5480b10 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_jacket.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_landmark.tga b/indra/newview/skins/darkorange/textures/inv_item_landmark.tga new file mode 100644 index 000000000..122c03128 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_landmark.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_landmark_visited.tga b/indra/newview/skins/darkorange/textures/inv_item_landmark_visited.tga new file mode 100644 index 000000000..290b472f0 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_landmark_visited.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_notecard.tga b/indra/newview/skins/darkorange/textures/inv_item_notecard.tga new file mode 100644 index 000000000..2534d1b2a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_notecard.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_object.tga b/indra/newview/skins/darkorange/textures/inv_item_object.tga new file mode 100644 index 000000000..290c71e04 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_object.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_object_multi.tga b/indra/newview/skins/darkorange/textures/inv_item_object_multi.tga new file mode 100644 index 000000000..3bf514536 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_object_multi.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_pants.tga b/indra/newview/skins/darkorange/textures/inv_item_pants.tga new file mode 100644 index 000000000..12f74f682 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_pants.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_script.tga b/indra/newview/skins/darkorange/textures/inv_item_script.tga new file mode 100644 index 000000000..3b2db5596 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_script.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_script_dangerous.tga b/indra/newview/skins/darkorange/textures/inv_item_script_dangerous.tga new file mode 100644 index 000000000..020de1440 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_script_dangerous.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_shape.tga b/indra/newview/skins/darkorange/textures/inv_item_shape.tga new file mode 100644 index 000000000..d16d67bae Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_shape.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_shirt.tga b/indra/newview/skins/darkorange/textures/inv_item_shirt.tga new file mode 100644 index 000000000..b7294c583 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_shirt.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_shoes.tga b/indra/newview/skins/darkorange/textures/inv_item_shoes.tga new file mode 100644 index 000000000..45d311d22 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_shoes.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_skin.tga b/indra/newview/skins/darkorange/textures/inv_item_skin.tga new file mode 100644 index 000000000..442d9565a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_skin.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_skirt.tga b/indra/newview/skins/darkorange/textures/inv_item_skirt.tga new file mode 100644 index 000000000..caceb35da Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_skirt.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_snapshot.tga b/indra/newview/skins/darkorange/textures/inv_item_snapshot.tga new file mode 100644 index 000000000..d081cce46 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_snapshot.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_socks.tga b/indra/newview/skins/darkorange/textures/inv_item_socks.tga new file mode 100644 index 000000000..cad8c709b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_socks.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_sound.tga b/indra/newview/skins/darkorange/textures/inv_item_sound.tga new file mode 100644 index 000000000..29c2ada3a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_sound.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_texture.tga b/indra/newview/skins/darkorange/textures/inv_item_texture.tga new file mode 100644 index 000000000..61d38449e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_texture.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_underpants.tga b/indra/newview/skins/darkorange/textures/inv_item_underpants.tga new file mode 100644 index 000000000..f7578b8b4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_underpants.tga differ diff --git a/indra/newview/skins/darkorange/textures/inv_item_undershirt.tga b/indra/newview/skins/darkorange/textures/inv_item_undershirt.tga new file mode 100644 index 000000000..527601a58 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/inv_item_undershirt.tga differ diff --git a/indra/newview/skins/darkorange/textures/lag_status_critical.tga b/indra/newview/skins/darkorange/textures/lag_status_critical.tga new file mode 100644 index 000000000..bbc71d9e7 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/lag_status_critical.tga differ diff --git a/indra/newview/skins/darkorange/textures/lag_status_good.tga b/indra/newview/skins/darkorange/textures/lag_status_good.tga new file mode 100644 index 000000000..680ba90f1 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/lag_status_good.tga differ diff --git a/indra/newview/skins/darkorange/textures/lag_status_warning.tga b/indra/newview/skins/darkorange/textures/lag_status_warning.tga new file mode 100644 index 000000000..13ce3cc39 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/lag_status_warning.tga differ diff --git a/indra/newview/skins/darkorange/textures/legend.tga b/indra/newview/skins/darkorange/textures/legend.tga new file mode 100644 index 000000000..0dbb8fda4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/legend.tga differ diff --git a/indra/newview/skins/darkorange/textures/lightgray.tga b/indra/newview/skins/darkorange/textures/lightgray.tga new file mode 100644 index 000000000..2063d685a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/lightgray.tga differ diff --git a/indra/newview/skins/darkorange/textures/map_avatar_16.tga b/indra/newview/skins/darkorange/textures/map_avatar_16.tga new file mode 100644 index 000000000..ce129e359 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/map_avatar_16.tga differ diff --git a/indra/newview/skins/darkorange/textures/map_avatar_8.tga b/indra/newview/skins/darkorange/textures/map_avatar_8.tga new file mode 100644 index 000000000..28552f223 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/map_avatar_8.tga differ diff --git a/indra/newview/skins/darkorange/textures/map_avatar_above_8.tga b/indra/newview/skins/darkorange/textures/map_avatar_above_8.tga new file mode 100644 index 000000000..193428e53 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/map_avatar_above_8.tga differ diff --git a/indra/newview/skins/darkorange/textures/map_avatar_below_8.tga b/indra/newview/skins/darkorange/textures/map_avatar_below_8.tga new file mode 100644 index 000000000..9e14bfab9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/map_avatar_below_8.tga differ diff --git a/indra/newview/skins/darkorange/textures/map_avatar_you_8.tga b/indra/newview/skins/darkorange/textures/map_avatar_you_8.tga new file mode 100644 index 000000000..61f319fd9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/map_avatar_you_8.tga differ diff --git a/indra/newview/skins/darkorange/textures/map_event.tga b/indra/newview/skins/darkorange/textures/map_event.tga new file mode 100644 index 000000000..c229b379a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/map_event.tga differ diff --git a/indra/newview/skins/darkorange/textures/map_event_mature.tga b/indra/newview/skins/darkorange/textures/map_event_mature.tga new file mode 100644 index 000000000..61c879bc9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/map_event_mature.tga differ diff --git a/indra/newview/skins/darkorange/textures/map_home.tga b/indra/newview/skins/darkorange/textures/map_home.tga new file mode 100644 index 000000000..7478de371 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/map_home.tga differ diff --git a/indra/newview/skins/darkorange/textures/map_infohub.tga b/indra/newview/skins/darkorange/textures/map_infohub.tga new file mode 100644 index 000000000..d0134fa5f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/map_infohub.tga differ diff --git a/indra/newview/skins/darkorange/textures/map_telehub.tga b/indra/newview/skins/darkorange/textures/map_telehub.tga new file mode 100644 index 000000000..ef63a3eb7 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/map_telehub.tga differ diff --git a/indra/newview/skins/darkorange/textures/map_track_16.tga b/indra/newview/skins/darkorange/textures/map_track_16.tga new file mode 100644 index 000000000..451ce24cf Binary files /dev/null and b/indra/newview/skins/darkorange/textures/map_track_16.tga differ diff --git a/indra/newview/skins/darkorange/textures/map_track_8.tga b/indra/newview/skins/darkorange/textures/map_track_8.tga new file mode 100644 index 000000000..53425ff45 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/map_track_8.tga differ diff --git a/indra/newview/skins/darkorange/textures/media_icon.tga b/indra/newview/skins/darkorange/textures/media_icon.tga new file mode 100644 index 000000000..cb275e468 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/media_icon.tga differ diff --git a/indra/newview/skins/darkorange/textures/minimize.tga b/indra/newview/skins/darkorange/textures/minimize.tga new file mode 100644 index 000000000..a21fd9148 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/minimize.tga differ diff --git a/indra/newview/skins/darkorange/textures/minimize_inactive.tga b/indra/newview/skins/darkorange/textures/minimize_inactive.tga new file mode 100644 index 000000000..fcd62aa35 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/minimize_inactive.tga differ diff --git a/indra/newview/skins/darkorange/textures/minimize_pressed.tga b/indra/newview/skins/darkorange/textures/minimize_pressed.tga new file mode 100644 index 000000000..0061dd5f5 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/minimize_pressed.tga differ diff --git a/indra/newview/skins/darkorange/textures/missing_asset.tga b/indra/newview/skins/darkorange/textures/missing_asset.tga new file mode 100644 index 000000000..9a43f4db5 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/missing_asset.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_backward_in.tga b/indra/newview/skins/darkorange/textures/move_backward_in.tga new file mode 100644 index 000000000..7c73fc6a9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_backward_out.tga b/indra/newview/skins/darkorange/textures/move_backward_out.tga new file mode 100644 index 000000000..d8a98e246 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_down_in.tga b/indra/newview/skins/darkorange/textures/move_down_in.tga new file mode 100644 index 000000000..fbd4a277f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_down_in.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_down_out.tga b/indra/newview/skins/darkorange/textures/move_down_out.tga new file mode 100644 index 000000000..a1f2e3059 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_down_out.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_forward_in.tga b/indra/newview/skins/darkorange/textures/move_forward_in.tga new file mode 100644 index 000000000..ca326255d Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_forward_out.tga b/indra/newview/skins/darkorange/textures/move_forward_out.tga new file mode 100644 index 000000000..38f5a0e1e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_left_in.tga b/indra/newview/skins/darkorange/textures/move_left_in.tga new file mode 100644 index 000000000..a89eb2fa4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_left_in.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_left_out.tga b/indra/newview/skins/darkorange/textures/move_left_out.tga new file mode 100644 index 000000000..a2f86a651 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_left_out.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_right_in.tga b/indra/newview/skins/darkorange/textures/move_right_in.tga new file mode 100644 index 000000000..dc00ec3ec Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_right_in.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_right_out.tga b/indra/newview/skins/darkorange/textures/move_right_out.tga new file mode 100644 index 000000000..b1ec3ec9f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_right_out.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_turn_left_in.tga b/indra/newview/skins/darkorange/textures/move_turn_left_in.tga new file mode 100644 index 000000000..1274472d7 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_turn_left_out.tga b/indra/newview/skins/darkorange/textures/move_turn_left_out.tga new file mode 100644 index 000000000..8f09da25b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_turn_right_in.tga b/indra/newview/skins/darkorange/textures/move_turn_right_in.tga new file mode 100644 index 000000000..3d6854cd1 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_turn_right_out.tga b/indra/newview/skins/darkorange/textures/move_turn_right_out.tga new file mode 100644 index 000000000..12573026d Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_up_in.tga b/indra/newview/skins/darkorange/textures/move_up_in.tga new file mode 100644 index 000000000..178df9062 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_up_in.tga differ diff --git a/indra/newview/skins/darkorange/textures/move_up_out.tga b/indra/newview/skins/darkorange/textures/move_up_out.tga new file mode 100644 index 000000000..34bc0e0ee Binary files /dev/null and b/indra/newview/skins/darkorange/textures/move_up_out.tga differ diff --git a/indra/newview/skins/darkorange/textures/music_icon.tga b/indra/newview/skins/darkorange/textures/music_icon.tga new file mode 100644 index 000000000..02f6d507e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/music_icon.tga differ diff --git a/indra/newview/skins/darkorange/textures/mute_icon.tga b/indra/newview/skins/darkorange/textures/mute_icon.tga new file mode 100644 index 000000000..879b9e618 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/mute_icon.tga differ diff --git a/indra/newview/skins/darkorange/textures/noentrylines.j2c b/indra/newview/skins/darkorange/textures/noentrylines.j2c new file mode 100644 index 000000000..93ec17659 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/noentrylines.j2c differ diff --git a/indra/newview/skins/darkorange/textures/noentrypasslines.j2c b/indra/newview/skins/darkorange/textures/noentrypasslines.j2c new file mode 100644 index 000000000..800c46696 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/noentrypasslines.j2c differ diff --git a/indra/newview/skins/darkorange/textures/notify_box_icon.tga b/indra/newview/skins/darkorange/textures/notify_box_icon.tga new file mode 100644 index 000000000..4b8cdfbc4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/notify_box_icon.tga differ diff --git a/indra/newview/skins/darkorange/textures/notify_caution_icon.tga b/indra/newview/skins/darkorange/textures/notify_caution_icon.tga new file mode 100644 index 000000000..abc23d1d7 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/notify_caution_icon.tga differ diff --git a/indra/newview/skins/darkorange/textures/notify_next.png b/indra/newview/skins/darkorange/textures/notify_next.png new file mode 100644 index 000000000..2235d25ff Binary files /dev/null and b/indra/newview/skins/darkorange/textures/notify_next.png differ diff --git a/indra/newview/skins/darkorange/textures/notify_tip_icon.tga b/indra/newview/skins/darkorange/textures/notify_tip_icon.tga new file mode 100644 index 000000000..2bf7e015a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/notify_tip_icon.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_cone.tga b/indra/newview/skins/darkorange/textures/object_cone.tga new file mode 100644 index 000000000..3fb952065 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_cone.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_cone_active.tga b/indra/newview/skins/darkorange/textures/object_cone_active.tga new file mode 100644 index 000000000..703de80a5 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_cone_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_cube.tga b/indra/newview/skins/darkorange/textures/object_cube.tga new file mode 100644 index 000000000..0dc3753eb Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_cube.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_cube_active.tga b/indra/newview/skins/darkorange/textures/object_cube_active.tga new file mode 100644 index 000000000..90fd10d2e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_cube_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_cylinder.tga b/indra/newview/skins/darkorange/textures/object_cylinder.tga new file mode 100644 index 000000000..3698fd535 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_cylinder.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_cylinder_active.tga b/indra/newview/skins/darkorange/textures/object_cylinder_active.tga new file mode 100644 index 000000000..04bd4103c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_cylinder_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_grass.tga b/indra/newview/skins/darkorange/textures/object_grass.tga new file mode 100644 index 000000000..20dd6139a Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_grass.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_grass_active.tga b/indra/newview/skins/darkorange/textures/object_grass_active.tga new file mode 100644 index 000000000..04c15bfbe Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_grass_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_hemi_cone.tga b/indra/newview/skins/darkorange/textures/object_hemi_cone.tga new file mode 100644 index 000000000..fba64f0b2 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_hemi_cone.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_hemi_cone_active.tga b/indra/newview/skins/darkorange/textures/object_hemi_cone_active.tga new file mode 100644 index 000000000..5c402f3c5 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_hemi_cone_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_hemi_cylinder.tga b/indra/newview/skins/darkorange/textures/object_hemi_cylinder.tga new file mode 100644 index 000000000..ca5cb438f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_hemi_cylinder.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_hemi_cylinder_active.tga b/indra/newview/skins/darkorange/textures/object_hemi_cylinder_active.tga new file mode 100644 index 000000000..c57d8e165 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_hemi_cylinder_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_hemi_sphere.tga b/indra/newview/skins/darkorange/textures/object_hemi_sphere.tga new file mode 100644 index 000000000..5db8164b9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_hemi_sphere.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_hemi_sphere_active.tga b/indra/newview/skins/darkorange/textures/object_hemi_sphere_active.tga new file mode 100644 index 000000000..decc58326 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_hemi_sphere_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_prism.tga b/indra/newview/skins/darkorange/textures/object_prism.tga new file mode 100644 index 000000000..91bad2234 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_prism.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_prism_active.tga b/indra/newview/skins/darkorange/textures/object_prism_active.tga new file mode 100644 index 000000000..dc4158b94 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_prism_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_pyramid.tga b/indra/newview/skins/darkorange/textures/object_pyramid.tga new file mode 100644 index 000000000..4ae8afb0c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_pyramid.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_pyramid_active.tga b/indra/newview/skins/darkorange/textures/object_pyramid_active.tga new file mode 100644 index 000000000..b9ad2c8f6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_pyramid_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_ring.tga b/indra/newview/skins/darkorange/textures/object_ring.tga new file mode 100644 index 000000000..3aa355993 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_ring.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_ring_active.tga b/indra/newview/skins/darkorange/textures/object_ring_active.tga new file mode 100644 index 000000000..a25b47be5 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_ring_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_sphere.tga b/indra/newview/skins/darkorange/textures/object_sphere.tga new file mode 100644 index 000000000..b6b33dac6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_sphere.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_sphere_active.tga b/indra/newview/skins/darkorange/textures/object_sphere_active.tga new file mode 100644 index 000000000..0036e07f0 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_sphere_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_tetrahedron.tga b/indra/newview/skins/darkorange/textures/object_tetrahedron.tga new file mode 100644 index 000000000..272e61c88 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_tetrahedron.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_tetrahedron_active.tga b/indra/newview/skins/darkorange/textures/object_tetrahedron_active.tga new file mode 100644 index 000000000..2afffecdd Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_tetrahedron_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_torus.tga b/indra/newview/skins/darkorange/textures/object_torus.tga new file mode 100644 index 000000000..bb99fab5f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_torus.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_torus_active.tga b/indra/newview/skins/darkorange/textures/object_torus_active.tga new file mode 100644 index 000000000..175c474e5 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_torus_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_tree.tga b/indra/newview/skins/darkorange/textures/object_tree.tga new file mode 100644 index 000000000..da1c95d34 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_tree.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_tree_active.tga b/indra/newview/skins/darkorange/textures/object_tree_active.tga new file mode 100644 index 000000000..d69202eae Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_tree_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_tube.tga b/indra/newview/skins/darkorange/textures/object_tube.tga new file mode 100644 index 000000000..f00ef61a3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_tube.tga differ diff --git a/indra/newview/skins/darkorange/textures/object_tube_active.tga b/indra/newview/skins/darkorange/textures/object_tube_active.tga new file mode 100644 index 000000000..6cd11fef0 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/object_tube_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/payment_info_charter.tga b/indra/newview/skins/darkorange/textures/payment_info_charter.tga new file mode 100644 index 000000000..6205da7b4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/payment_info_charter.tga differ diff --git a/indra/newview/skins/darkorange/textures/payment_info_filled.tga b/indra/newview/skins/darkorange/textures/payment_info_filled.tga new file mode 100644 index 000000000..65e619692 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/payment_info_filled.tga differ diff --git a/indra/newview/skins/darkorange/textures/payment_info_used.tga b/indra/newview/skins/darkorange/textures/payment_info_used.tga new file mode 100644 index 000000000..345b3b302 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/payment_info_used.tga differ diff --git a/indra/newview/skins/darkorange/textures/pixiesmall.j2c b/indra/newview/skins/darkorange/textures/pixiesmall.j2c new file mode 100644 index 000000000..a1ff64014 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/pixiesmall.j2c differ diff --git a/indra/newview/skins/darkorange/textures/preview.png b/indra/newview/skins/darkorange/textures/preview.png new file mode 100644 index 000000000..05bfbeb3d Binary files /dev/null and b/indra/newview/skins/darkorange/textures/preview.png differ diff --git a/indra/newview/skins/darkorange/textures/progress_fill.tga b/indra/newview/skins/darkorange/textures/progress_fill.tga new file mode 100644 index 000000000..3fe1e82ed Binary files /dev/null and b/indra/newview/skins/darkorange/textures/progress_fill.tga differ diff --git a/indra/newview/skins/darkorange/textures/progressbar_fill.tga b/indra/newview/skins/darkorange/textures/progressbar_fill.tga new file mode 100644 index 000000000..989bf9f67 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/darkorange/textures/progressbar_track.tga b/indra/newview/skins/darkorange/textures/progressbar_track.tga new file mode 100644 index 000000000..c14c82620 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/darkorange/textures/propertyline.tga b/indra/newview/skins/darkorange/textures/propertyline.tga new file mode 100644 index 000000000..0c504eea7 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/propertyline.tga differ diff --git a/indra/newview/skins/darkorange/textures/ptt_lock_off.tga b/indra/newview/skins/darkorange/textures/ptt_lock_off.tga new file mode 100644 index 000000000..09c479807 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ptt_lock_off.tga differ diff --git a/indra/newview/skins/darkorange/textures/ptt_lock_on.tga b/indra/newview/skins/darkorange/textures/ptt_lock_on.tga new file mode 100644 index 000000000..dfb8ce284 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/ptt_lock_on.tga differ diff --git a/indra/newview/skins/darkorange/textures/radio_active_false.tga b/indra/newview/skins/darkorange/textures/radio_active_false.tga new file mode 100644 index 000000000..963037392 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/radio_active_false.tga differ diff --git a/indra/newview/skins/darkorange/textures/radio_active_true.tga b/indra/newview/skins/darkorange/textures/radio_active_true.tga new file mode 100644 index 000000000..f49297fd2 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/radio_active_true.tga differ diff --git a/indra/newview/skins/darkorange/textures/radio_inactive_false.tga b/indra/newview/skins/darkorange/textures/radio_inactive_false.tga new file mode 100644 index 000000000..9f9589e64 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/radio_inactive_false.tga differ diff --git a/indra/newview/skins/darkorange/textures/radio_inactive_true.tga b/indra/newview/skins/darkorange/textures/radio_inactive_true.tga new file mode 100644 index 000000000..ca69cc6b5 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/radio_inactive_true.tga differ diff --git a/indra/newview/skins/darkorange/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/darkorange/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..f47aacfa4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/restore.tga b/indra/newview/skins/darkorange/textures/restore.tga new file mode 100644 index 000000000..87910e288 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/restore.tga differ diff --git a/indra/newview/skins/darkorange/textures/restore_inactive.tga b/indra/newview/skins/darkorange/textures/restore_inactive.tga new file mode 100644 index 000000000..dbbec7ea1 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/restore_inactive.tga differ diff --git a/indra/newview/skins/darkorange/textures/restore_pressed.tga b/indra/newview/skins/darkorange/textures/restore_pressed.tga new file mode 100644 index 000000000..1922ca881 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/restore_pressed.tga differ diff --git a/indra/newview/skins/darkorange/textures/rounded_square.j2c b/indra/newview/skins/darkorange/textures/rounded_square.j2c new file mode 100644 index 000000000..c8bb572fa Binary files /dev/null and b/indra/newview/skins/darkorange/textures/rounded_square.j2c differ diff --git a/indra/newview/skins/darkorange/textures/rounded_square_soft.j2c b/indra/newview/skins/darkorange/textures/rounded_square_soft.j2c new file mode 100644 index 000000000..56e56c1ec Binary files /dev/null and b/indra/newview/skins/darkorange/textures/rounded_square_soft.j2c differ diff --git a/indra/newview/skins/darkorange/textures/script_error.j2c b/indra/newview/skins/darkorange/textures/script_error.j2c new file mode 100644 index 000000000..893cb642e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/script_error.j2c differ diff --git a/indra/newview/skins/darkorange/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/darkorange/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..5e7379950 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/scrollbutton_down_out_blue.tga b/indra/newview/skins/darkorange/textures/scrollbutton_down_out_blue.tga new file mode 100644 index 000000000..c5cf9bf9f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/scrollbutton_down_out_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/darkorange/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..480842a3b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/scrollbutton_left_out_blue.tga b/indra/newview/skins/darkorange/textures/scrollbutton_left_out_blue.tga new file mode 100644 index 000000000..71aad797b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/scrollbutton_left_out_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/darkorange/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..6d7f13bfc Binary files /dev/null and b/indra/newview/skins/darkorange/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/scrollbutton_right_out_blue.tga b/indra/newview/skins/darkorange/textures/scrollbutton_right_out_blue.tga new file mode 100644 index 000000000..0edc59af3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/scrollbutton_right_out_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/darkorange/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..4c6a8fe41 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/scrollbutton_up_out_blue.tga b/indra/newview/skins/darkorange/textures/scrollbutton_up_out_blue.tga new file mode 100644 index 000000000..5cd5dff46 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/scrollbutton_up_out_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/silhouette.j2c b/indra/newview/skins/darkorange/textures/silhouette.j2c new file mode 100644 index 000000000..3859d4cb3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/silhouette.j2c differ diff --git a/indra/newview/skins/darkorange/textures/skin_thumbnail_dark.png b/indra/newview/skins/darkorange/textures/skin_thumbnail_dark.png new file mode 100644 index 000000000..2cac82923 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/skin_thumbnail_dark.png differ diff --git a/indra/newview/skins/darkorange/textures/skin_thumbnail_default.png b/indra/newview/skins/darkorange/textures/skin_thumbnail_default.png new file mode 100644 index 000000000..40fe64bb4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/skin_thumbnail_default.png differ diff --git a/indra/newview/skins/darkorange/textures/skin_thumbnail_emerald.png b/indra/newview/skins/darkorange/textures/skin_thumbnail_emerald.png new file mode 100644 index 000000000..ab35bc0ab Binary files /dev/null and b/indra/newview/skins/darkorange/textures/skin_thumbnail_emerald.png differ diff --git a/indra/newview/skins/darkorange/textures/skin_thumbnail_gred.png b/indra/newview/skins/darkorange/textures/skin_thumbnail_gred.png new file mode 100644 index 000000000..827135499 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/skin_thumbnail_gred.png differ diff --git a/indra/newview/skins/darkorange/textures/skin_thumbnail_pslgreen.png b/indra/newview/skins/darkorange/textures/skin_thumbnail_pslgreen.png new file mode 100644 index 000000000..73e117e9f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/skin_thumbnail_pslgreen.png differ diff --git a/indra/newview/skins/darkorange/textures/skin_thumbnail_pslpurple.png b/indra/newview/skins/darkorange/textures/skin_thumbnail_pslpurple.png new file mode 100644 index 000000000..902ad82b1 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/skin_thumbnail_pslpurple.png differ diff --git a/indra/newview/skins/darkorange/textures/skin_thumbnail_ruby.png b/indra/newview/skins/darkorange/textures/skin_thumbnail_ruby.png new file mode 100644 index 000000000..d45e75ad0 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/skin_thumbnail_ruby.png differ diff --git a/indra/newview/skins/darkorange/textures/skin_thumbnail_saphire.png b/indra/newview/skins/darkorange/textures/skin_thumbnail_saphire.png new file mode 100644 index 000000000..7ec8e1991 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/skin_thumbnail_saphire.png differ diff --git a/indra/newview/skins/darkorange/textures/skin_thumbnail_silver.png b/indra/newview/skins/darkorange/textures/skin_thumbnail_silver.png new file mode 100644 index 000000000..51707bb9d Binary files /dev/null and b/indra/newview/skins/darkorange/textures/skin_thumbnail_silver.png differ diff --git a/indra/newview/skins/darkorange/textures/slim_icon_16_viewer.tga b/indra/newview/skins/darkorange/textures/slim_icon_16_viewer.tga new file mode 100644 index 000000000..552181d36 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/slim_icon_16_viewer.tga differ diff --git a/indra/newview/skins/darkorange/textures/sm_rounded_corners_simple.tga b/indra/newview/skins/darkorange/textures/sm_rounded_corners_simple.tga new file mode 100644 index 000000000..85157e461 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/sm_rounded_corners_simple.tga differ diff --git a/indra/newview/skins/darkorange/textures/smicon_warn.tga b/indra/newview/skins/darkorange/textures/smicon_warn.tga new file mode 100644 index 000000000..90ccaa07e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/smicon_warn.tga differ diff --git a/indra/newview/skins/darkorange/textures/spacer24.tga b/indra/newview/skins/darkorange/textures/spacer24.tga new file mode 100644 index 000000000..c7cab6b38 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/spacer24.tga differ diff --git a/indra/newview/skins/darkorange/textures/spacer35.tga b/indra/newview/skins/darkorange/textures/spacer35.tga new file mode 100644 index 000000000..b88bc6680 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/spacer35.tga differ diff --git a/indra/newview/skins/darkorange/textures/spin_down_in_blue.tga b/indra/newview/skins/darkorange/textures/spin_down_in_blue.tga new file mode 100644 index 000000000..b9eb36ba9 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/spin_down_in_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/spin_down_out_blue.tga b/indra/newview/skins/darkorange/textures/spin_down_out_blue.tga new file mode 100644 index 000000000..c9cb5e8bf Binary files /dev/null and b/indra/newview/skins/darkorange/textures/spin_down_out_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/spin_up_in_blue.tga b/indra/newview/skins/darkorange/textures/spin_up_in_blue.tga new file mode 100644 index 000000000..b604b8843 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/spin_up_in_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/spin_up_out_blue.tga b/indra/newview/skins/darkorange/textures/spin_up_out_blue.tga new file mode 100644 index 000000000..4e3941e45 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/spin_up_out_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/square_btn_32x128.tga b/indra/newview/skins/darkorange/textures/square_btn_32x128.tga new file mode 100644 index 000000000..a0e499cea Binary files /dev/null and b/indra/newview/skins/darkorange/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/darkorange/textures/square_btn_selected_32x128.tga b/indra/newview/skins/darkorange/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..07f672b22 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/darkorange/textures/startup_logo.j2c b/indra/newview/skins/darkorange/textures/startup_logo.j2c new file mode 100644 index 000000000..d1b991f17 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/startup_logo.j2c differ diff --git a/indra/newview/skins/darkorange/textures/status_busy.tga b/indra/newview/skins/darkorange/textures/status_busy.tga new file mode 100644 index 000000000..7743d9c7b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_busy.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_buy_currency.tga b/indra/newview/skins/darkorange/textures/status_buy_currency.tga new file mode 100644 index 000000000..c9512456f Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_buy_currency_pressed.tga b/indra/newview/skins/darkorange/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..6ee9f8185 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_buy_land.tga b/indra/newview/skins/darkorange/textures/status_buy_land.tga new file mode 100644 index 000000000..72bc90cfb Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_buy_land_pressed.tga b/indra/newview/skins/darkorange/textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..c790b6d44 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_health.tga b/indra/newview/skins/darkorange/textures/status_health.tga new file mode 100644 index 000000000..3d5f455fc Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_health.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_money.tga b/indra/newview/skins/darkorange/textures/status_money.tga new file mode 100644 index 000000000..d5be31fc6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_money.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_no_build.tga b/indra/newview/skins/darkorange/textures/status_no_build.tga new file mode 100644 index 000000000..a450fb0f4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_no_build.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_no_fly.tga b/indra/newview/skins/darkorange/textures/status_no_fly.tga new file mode 100644 index 000000000..0758f91bd Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_no_fly.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_no_fly.tga.tga b/indra/newview/skins/darkorange/textures/status_no_fly.tga.tga new file mode 100644 index 000000000..ba9cf4245 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_no_fly.tga.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_no_push.tga b/indra/newview/skins/darkorange/textures/status_no_push.tga new file mode 100644 index 000000000..be66ea3f4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_no_push.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_no_push.tga.tga b/indra/newview/skins/darkorange/textures/status_no_push.tga.tga new file mode 100644 index 000000000..989e3f040 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_no_push.tga.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_no_scripts.tga b/indra/newview/skins/darkorange/textures/status_no_scripts.tga new file mode 100644 index 000000000..075025de4 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_no_scripts.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_no_voice.tga b/indra/newview/skins/darkorange/textures/status_no_voice.tga new file mode 100644 index 000000000..b2669aebd Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_no_voice.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_script_debug.tga b/indra/newview/skins/darkorange/textures/status_script_debug.tga new file mode 100644 index 000000000..6fca61483 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_script_debug.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_search.tga b/indra/newview/skins/darkorange/textures/status_search.tga new file mode 100644 index 000000000..3ac10c476 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_search.tga differ diff --git a/indra/newview/skins/darkorange/textures/status_search_btn.png b/indra/newview/skins/darkorange/textures/status_search_btn.png new file mode 100644 index 000000000..67f61332b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_search_btn.png differ diff --git a/indra/newview/skins/darkorange/textures/status_search_btn_pressed.png b/indra/newview/skins/darkorange/textures/status_search_btn_pressed.png new file mode 100644 index 000000000..1437273d3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_search_btn_pressed.png differ diff --git a/indra/newview/skins/darkorange/textures/status_voice.tga b/indra/newview/skins/darkorange/textures/status_voice.tga new file mode 100644 index 000000000..4ab4498cb Binary files /dev/null and b/indra/newview/skins/darkorange/textures/status_voice.tga differ diff --git a/indra/newview/skins/darkorange/textures/tab_background_darkpurple.tga b/indra/newview/skins/darkorange/textures/tab_background_darkpurple.tga new file mode 100644 index 000000000..8169f9869 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tab_background_darkpurple.tga differ diff --git a/indra/newview/skins/darkorange/textures/tab_background_lightgrey.tga b/indra/newview/skins/darkorange/textures/tab_background_lightgrey.tga new file mode 100644 index 000000000..c2f8818f7 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tab_background_lightgrey.tga differ diff --git a/indra/newview/skins/darkorange/textures/tab_background_purple.tga b/indra/newview/skins/darkorange/textures/tab_background_purple.tga new file mode 100644 index 000000000..aa01b3cb6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tab_background_purple.tga differ diff --git a/indra/newview/skins/darkorange/textures/tab_bottom_blue.tga b/indra/newview/skins/darkorange/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..edc343c50 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/darkorange/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..42a459a22 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/tab_left.tga b/indra/newview/skins/darkorange/textures/tab_left.tga new file mode 100644 index 000000000..e031968f6 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tab_left.tga differ diff --git a/indra/newview/skins/darkorange/textures/tab_left_selected.tga b/indra/newview/skins/darkorange/textures/tab_left_selected.tga new file mode 100644 index 000000000..b6182040e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/darkorange/textures/tab_top_blue.tga b/indra/newview/skins/darkorange/textures/tab_top_blue.tga new file mode 100644 index 000000000..fcc0b4140 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/tab_top_selected_blue.tga b/indra/newview/skins/darkorange/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..cb33872ca Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/darkorange/textures/tabarea.tga b/indra/newview/skins/darkorange/textures/tabarea.tga new file mode 100644 index 000000000..5517aebfc Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tabarea.tga differ diff --git a/indra/newview/skins/darkorange/textures/tearoff_pressed.tga b/indra/newview/skins/darkorange/textures/tearoff_pressed.tga new file mode 100644 index 000000000..620d109de Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tearoff_pressed.tga differ diff --git a/indra/newview/skins/darkorange/textures/tearoffbox.tga b/indra/newview/skins/darkorange/textures/tearoffbox.tga new file mode 100644 index 000000000..0670d2e91 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tearoffbox.tga differ diff --git a/indra/newview/skins/darkorange/textures/textures.xml b/indra/newview/skins/darkorange/textures/textures.xml new file mode 100644 index 000000000..70cd3e113 --- /dev/null +++ b/indra/newview/skins/darkorange/textures/textures.xml @@ -0,0 +1,383 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/darkorange/textures/tool_dozer.tga b/indra/newview/skins/darkorange/textures/tool_dozer.tga new file mode 100644 index 000000000..364b3d14b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/darkorange/textures/tool_dozer_active.tga b/indra/newview/skins/darkorange/textures/tool_dozer_active.tga new file mode 100644 index 000000000..eb7192a65 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/tool_zoom.tga b/indra/newview/skins/darkorange/textures/tool_zoom.tga new file mode 100644 index 000000000..82593b9e3 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/darkorange/textures/tool_zoom_active.tga b/indra/newview/skins/darkorange/textures/tool_zoom_active.tga new file mode 100644 index 000000000..6df5b41f7 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/darkorange/textures/toolbar_bg.tga b/indra/newview/skins/darkorange/textures/toolbar_bg.tga new file mode 100644 index 000000000..940a2ab6b Binary files /dev/null and b/indra/newview/skins/darkorange/textures/toolbar_bg.tga differ diff --git a/indra/newview/skins/darkorange/textures/toolbar_btn_disabled.tga b/indra/newview/skins/darkorange/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..00c6ccc35 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/darkorange/textures/toolbar_btn_enabled.tga b/indra/newview/skins/darkorange/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..279b059e0 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/darkorange/textures/toolbar_btn_selected.tga b/indra/newview/skins/darkorange/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..73da8bca0 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/darkorange/textures/toolbar_tab.tga b/indra/newview/skins/darkorange/textures/toolbar_tab.tga new file mode 100644 index 000000000..0da3038a8 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/darkorange/textures/up_arrow.png b/indra/newview/skins/darkorange/textures/up_arrow.png new file mode 100644 index 000000000..a3b666741 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/up_arrow.png differ diff --git a/indra/newview/skins/darkorange/textures/up_arrow.tga b/indra/newview/skins/darkorange/textures/up_arrow.tga new file mode 100644 index 000000000..832faefac Binary files /dev/null and b/indra/newview/skins/darkorange/textures/up_arrow.tga differ diff --git a/indra/newview/skins/darkorange/textures/uv_test1.j2c b/indra/newview/skins/darkorange/textures/uv_test1.j2c new file mode 100644 index 000000000..3d5b54179 Binary files /dev/null and b/indra/newview/skins/darkorange/textures/uv_test1.j2c differ diff --git a/indra/newview/skins/darkorange/textures/uv_test2.tga b/indra/newview/skins/darkorange/textures/uv_test2.tga new file mode 100644 index 000000000..e0ab7c21e Binary files /dev/null and b/indra/newview/skins/darkorange/textures/uv_test2.tga differ diff --git a/indra/newview/skins/darkorange/textures/white.tga b/indra/newview/skins/darkorange/textures/white.tga new file mode 100644 index 000000000..9fe68631c Binary files /dev/null and b/indra/newview/skins/darkorange/textures/white.tga differ diff --git a/indra/newview/skins/default/xui/en-us/floater_sculpt_preview.xml b/indra/newview/skins/default/xui/en-us/floater_sculpt_preview.xml new file mode 100644 index 000000000..cc4071f3b --- /dev/null +++ b/indra/newview/skins/default/xui/en-us/floater_sculpt_preview.xml @@ -0,0 +1,41 @@ + + + + Preview image as: + + + + Image + + + Hair + + + Female Head + + + Female Upper Body + + + Female Lower Body + + + Male Head + + + Male Upper Body + + + Male Lower Body + + + Skirt + + + Sculpted Prim + + + diff --git a/indra/newview/skins/emerald/License and Credit.txt b/indra/newview/skins/emerald/License and Credit.txt new file mode 100644 index 000000000..a89be2792 --- /dev/null +++ b/indra/newview/skins/emerald/License and Credit.txt @@ -0,0 +1,2 @@ +This skin was modified by Ikaru Aichi from the default linden skin provided. +All Images and modifications done are provided free to use, modify, and distribute, so long as this infomation is distributed with it. \ No newline at end of file diff --git a/indra/newview/skins/emerald/colors_base.xml b/indra/newview/skins/emerald/colors_base.xml new file mode 100644 index 000000000..0ae266670 --- /dev/null +++ b/indra/newview/skins/emerald/colors_base.xml @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/emerald/textures/black.tga b/indra/newview/skins/emerald/textures/black.tga new file mode 100644 index 000000000..e368ea496 Binary files /dev/null and b/indra/newview/skins/emerald/textures/black.tga differ diff --git a/indra/newview/skins/emerald/textures/btn_chatbar.tga b/indra/newview/skins/emerald/textures/btn_chatbar.tga new file mode 100644 index 000000000..19f1314a4 Binary files /dev/null and b/indra/newview/skins/emerald/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/emerald/textures/btn_chatbar_selected.tga b/indra/newview/skins/emerald/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..ed5006dae Binary files /dev/null and b/indra/newview/skins/emerald/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/emerald/textures/button_anim_pause.tga b/indra/newview/skins/emerald/textures/button_anim_pause.tga new file mode 100644 index 000000000..175dc145a Binary files /dev/null and b/indra/newview/skins/emerald/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/emerald/textures/button_anim_pause_disabled.tga b/indra/newview/skins/emerald/textures/button_anim_pause_disabled.tga new file mode 100644 index 000000000..ad33a2003 Binary files /dev/null and b/indra/newview/skins/emerald/textures/button_anim_pause_disabled.tga differ diff --git a/indra/newview/skins/emerald/textures/button_anim_pause_selected.tga b/indra/newview/skins/emerald/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..79bd3f7c4 Binary files /dev/null and b/indra/newview/skins/emerald/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/emerald/textures/button_anim_play.tga b/indra/newview/skins/emerald/textures/button_anim_play.tga new file mode 100644 index 000000000..bc1261e73 Binary files /dev/null and b/indra/newview/skins/emerald/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/emerald/textures/button_anim_play_disabled.tga b/indra/newview/skins/emerald/textures/button_anim_play_disabled.tga new file mode 100644 index 000000000..7b3b899d3 Binary files /dev/null and b/indra/newview/skins/emerald/textures/button_anim_play_disabled.tga differ diff --git a/indra/newview/skins/emerald/textures/button_anim_play_selected.tga b/indra/newview/skins/emerald/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..01fb7c222 Binary files /dev/null and b/indra/newview/skins/emerald/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/emerald/textures/button_anim_stop.tga b/indra/newview/skins/emerald/textures/button_anim_stop.tga new file mode 100644 index 000000000..ef18c2c70 Binary files /dev/null and b/indra/newview/skins/emerald/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/emerald/textures/button_anim_stop_disabled.tga b/indra/newview/skins/emerald/textures/button_anim_stop_disabled.tga new file mode 100644 index 000000000..64a3af321 Binary files /dev/null and b/indra/newview/skins/emerald/textures/button_anim_stop_disabled.tga differ diff --git a/indra/newview/skins/emerald/textures/button_anim_stop_selected.tga b/indra/newview/skins/emerald/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..4a7844c98 Binary files /dev/null and b/indra/newview/skins/emerald/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/emerald/textures/button_disabled_32x128.tga b/indra/newview/skins/emerald/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..95ee347c8 Binary files /dev/null and b/indra/newview/skins/emerald/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/emerald/textures/button_enabled_32x128.tga b/indra/newview/skins/emerald/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..e5d8ae0a7 Binary files /dev/null and b/indra/newview/skins/emerald/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/emerald/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/emerald/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..74d71b503 Binary files /dev/null and b/indra/newview/skins/emerald/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/emerald/textures/darkgray.tga b/indra/newview/skins/emerald/textures/darkgray.tga new file mode 100644 index 000000000..0a8b108a2 Binary files /dev/null and b/indra/newview/skins/emerald/textures/darkgray.tga differ diff --git a/indra/newview/skins/emerald/textures/eye_button_active.tga b/indra/newview/skins/emerald/textures/eye_button_active.tga new file mode 100644 index 000000000..0937eb9f3 Binary files /dev/null and b/indra/newview/skins/emerald/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/emerald/textures/ff_online_status_button.tga b/indra/newview/skins/emerald/textures/ff_online_status_button.tga new file mode 100644 index 000000000..7e9f3db5e Binary files /dev/null and b/indra/newview/skins/emerald/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/emerald/textures/flyout_btn_left.tga b/indra/newview/skins/emerald/textures/flyout_btn_left.tga new file mode 100644 index 000000000..d4afbdc1f Binary files /dev/null and b/indra/newview/skins/emerald/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/emerald/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/emerald/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..cb924bf64 Binary files /dev/null and b/indra/newview/skins/emerald/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/emerald/textures/flyout_btn_left_selected.tga b/indra/newview/skins/emerald/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..3066c8921 Binary files /dev/null and b/indra/newview/skins/emerald/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/emerald/textures/flyout_btn_right.tga b/indra/newview/skins/emerald/textures/flyout_btn_right.tga new file mode 100644 index 000000000..2e50f0f00 Binary files /dev/null and b/indra/newview/skins/emerald/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/emerald/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/emerald/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..68d2f9e9d Binary files /dev/null and b/indra/newview/skins/emerald/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/emerald/textures/flyout_btn_right_selected.tga b/indra/newview/skins/emerald/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..aecc1dc23 Binary files /dev/null and b/indra/newview/skins/emerald/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_label_music.tga b/indra/newview/skins/emerald/textures/icn_label_music.tga new file mode 100644 index 000000000..2fd489204 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_label_web.tga b/indra/newview/skins/emerald/textures/icn_label_web.tga new file mode 100644 index 000000000..1f34e3f35 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_media-pause.tga b/indra/newview/skins/emerald/textures/icn_media-pause.tga new file mode 100644 index 000000000..9f7591247 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_media-pause_active.tga b/indra/newview/skins/emerald/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..9e7513bd8 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_media-pause_disabled.tga b/indra/newview/skins/emerald/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..ad33a2003 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_media-pause_enabled.tga b/indra/newview/skins/emerald/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..c3ef1dce7 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_media-play.tga b/indra/newview/skins/emerald/textures/icn_media-play.tga new file mode 100644 index 000000000..d86793d60 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_media-play.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_media-play_active.tga b/indra/newview/skins/emerald/textures/icn_media-play_active.tga new file mode 100644 index 000000000..2679c616e Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_media-play_active.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_media-play_disabled.tga b/indra/newview/skins/emerald/textures/icn_media-play_disabled.tga new file mode 100644 index 000000000..7b3b899d3 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_media-play_disabled.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_media-play_enabled.tga b/indra/newview/skins/emerald/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..bc1261e73 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_media-stop_active.tga b/indra/newview/skins/emerald/textures/icn_media-stop_active.tga new file mode 100644 index 000000000..c20f5e5f7 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_media-stop_active.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_media-stop_disabled.tga b/indra/newview/skins/emerald/textures/icn_media-stop_disabled.tga new file mode 100644 index 000000000..64a3af321 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_media-stop_disabled.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_media-stop_enabled.tga b/indra/newview/skins/emerald/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..ef18c2c70 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_media.tga b/indra/newview/skins/emerald/textures/icn_media.tga new file mode 100644 index 000000000..9b9a51d2f Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_media.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_media_movie.tga b/indra/newview/skins/emerald/textures/icn_media_movie.tga new file mode 100644 index 000000000..9b9a51d2f Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_media_web.tga b/indra/newview/skins/emerald/textures/icn_media_web.tga new file mode 100644 index 000000000..1f34e3f35 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_music-pause.tga b/indra/newview/skins/emerald/textures/icn_music-pause.tga new file mode 100644 index 000000000..12113a5ae Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_music-play.tga b/indra/newview/skins/emerald/textures/icn_music-play.tga new file mode 100644 index 000000000..995ebf7bf Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_music.tga b/indra/newview/skins/emerald/textures/icn_music.tga new file mode 100644 index 000000000..2fd489204 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_music.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_pause.tga b/indra/newview/skins/emerald/textures/icn_pause.tga new file mode 100644 index 000000000..818025d37 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_pause.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_play.tga b/indra/newview/skins/emerald/textures/icn_play.tga new file mode 100644 index 000000000..387120309 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_play.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_slide-highlight.tga b/indra/newview/skins/emerald/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..3fe2ff703 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/emerald/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..364b96f92 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/emerald/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..c68d09804 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_speaker_dark.tga b/indra/newview/skins/emerald/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..6ba96f89d Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_toolbar_radar.tga b/indra/newview/skins/emerald/textures/icn_toolbar_radar.tga new file mode 100644 index 000000000..d1a55ed74 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_toolbar_radar.tga differ diff --git a/indra/newview/skins/emerald/textures/icn_voice-groupfocus.tga b/indra/newview/skins/emerald/textures/icn_voice-groupfocus.tga new file mode 100644 index 000000000..035d69621 Binary files /dev/null and b/indra/newview/skins/emerald/textures/icn_voice-groupfocus.tga differ diff --git a/indra/newview/skins/emerald/textures/lightgray.tga b/indra/newview/skins/emerald/textures/lightgray.tga new file mode 100644 index 000000000..0a8b108a2 Binary files /dev/null and b/indra/newview/skins/emerald/textures/lightgray.tga differ diff --git a/indra/newview/skins/emerald/textures/media_icon.tga b/indra/newview/skins/emerald/textures/media_icon.tga new file mode 100644 index 000000000..4a6487ed7 Binary files /dev/null and b/indra/newview/skins/emerald/textures/media_icon.tga differ diff --git a/indra/newview/skins/emerald/textures/notify_box_icon.tga b/indra/newview/skins/emerald/textures/notify_box_icon.tga new file mode 100644 index 000000000..e4d2dd2f9 Binary files /dev/null and b/indra/newview/skins/emerald/textures/notify_box_icon.tga differ diff --git a/indra/newview/skins/emerald/textures/notify_next.png b/indra/newview/skins/emerald/textures/notify_next.png new file mode 100644 index 000000000..3c3bd86aa Binary files /dev/null and b/indra/newview/skins/emerald/textures/notify_next.png differ diff --git a/indra/newview/skins/emerald/textures/notify_tip_icon.tga b/indra/newview/skins/emerald/textures/notify_tip_icon.tga new file mode 100644 index 000000000..ab8812c1b Binary files /dev/null and b/indra/newview/skins/emerald/textures/notify_tip_icon.tga differ diff --git a/indra/newview/skins/emerald/textures/preview.png b/indra/newview/skins/emerald/textures/preview.png new file mode 100644 index 000000000..ab35bc0ab Binary files /dev/null and b/indra/newview/skins/emerald/textures/preview.png differ diff --git a/indra/newview/skins/emerald/textures/progress_fill.tga b/indra/newview/skins/emerald/textures/progress_fill.tga new file mode 100644 index 000000000..94cf72860 Binary files /dev/null and b/indra/newview/skins/emerald/textures/progress_fill.tga differ diff --git a/indra/newview/skins/emerald/textures/progressbar_fill.tga b/indra/newview/skins/emerald/textures/progressbar_fill.tga new file mode 100644 index 000000000..ca6145db9 Binary files /dev/null and b/indra/newview/skins/emerald/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/emerald/textures/progressbar_track.tga b/indra/newview/skins/emerald/textures/progressbar_track.tga new file mode 100644 index 000000000..f32468368 Binary files /dev/null and b/indra/newview/skins/emerald/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/emerald/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/emerald/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..de7037c64 Binary files /dev/null and b/indra/newview/skins/emerald/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/emerald/textures/smicon_warn.tga b/indra/newview/skins/emerald/textures/smicon_warn.tga new file mode 100644 index 000000000..90ccaa07e Binary files /dev/null and b/indra/newview/skins/emerald/textures/smicon_warn.tga differ diff --git a/indra/newview/skins/emerald/textures/spacer35.tga b/indra/newview/skins/emerald/textures/spacer35.tga new file mode 100644 index 000000000..b88bc6680 Binary files /dev/null and b/indra/newview/skins/emerald/textures/spacer35.tga differ diff --git a/indra/newview/skins/emerald/textures/square_btn_32x128.tga b/indra/newview/skins/emerald/textures/square_btn_32x128.tga new file mode 100644 index 000000000..f4254e509 Binary files /dev/null and b/indra/newview/skins/emerald/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/emerald/textures/square_btn_selected_32x128.tga b/indra/newview/skins/emerald/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..64f508837 Binary files /dev/null and b/indra/newview/skins/emerald/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/emerald/textures/status_money.tga b/indra/newview/skins/emerald/textures/status_money.tga new file mode 100644 index 000000000..d5be31fc6 Binary files /dev/null and b/indra/newview/skins/emerald/textures/status_money.tga differ diff --git a/indra/newview/skins/emerald/textures/tab_background_darkpurple.tga b/indra/newview/skins/emerald/textures/tab_background_darkpurple.tga new file mode 100644 index 000000000..b5f7883a3 Binary files /dev/null and b/indra/newview/skins/emerald/textures/tab_background_darkpurple.tga differ diff --git a/indra/newview/skins/emerald/textures/tab_background_lightgrey.tga b/indra/newview/skins/emerald/textures/tab_background_lightgrey.tga new file mode 100644 index 000000000..b5f7883a3 Binary files /dev/null and b/indra/newview/skins/emerald/textures/tab_background_lightgrey.tga differ diff --git a/indra/newview/skins/emerald/textures/tab_left.tga b/indra/newview/skins/emerald/textures/tab_left.tga new file mode 100644 index 000000000..33b7dda6a Binary files /dev/null and b/indra/newview/skins/emerald/textures/tab_left.tga differ diff --git a/indra/newview/skins/emerald/textures/tab_left_selected.tga b/indra/newview/skins/emerald/textures/tab_left_selected.tga new file mode 100644 index 000000000..de4118ed6 Binary files /dev/null and b/indra/newview/skins/emerald/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/emerald/textures/tab_top_blue.tga b/indra/newview/skins/emerald/textures/tab_top_blue.tga new file mode 100644 index 000000000..9c1cc5123 Binary files /dev/null and b/indra/newview/skins/emerald/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/emerald/textures/tab_top_selected_blue.tga b/indra/newview/skins/emerald/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..9bd83473c Binary files /dev/null and b/indra/newview/skins/emerald/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/emerald/textures/textures.xml b/indra/newview/skins/emerald/textures/textures.xml new file mode 100644 index 000000000..9e1d9b519 --- /dev/null +++ b/indra/newview/skins/emerald/textures/textures.xml @@ -0,0 +1,372 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/emerald/textures/toolbar_btn_disabled.tga b/indra/newview/skins/emerald/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..2b0d86cab Binary files /dev/null and b/indra/newview/skins/emerald/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/emerald/textures/toolbar_btn_enabled.tga b/indra/newview/skins/emerald/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..818a7a05f Binary files /dev/null and b/indra/newview/skins/emerald/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/emerald/textures/toolbar_btn_selected.tga b/indra/newview/skins/emerald/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..6b751245c Binary files /dev/null and b/indra/newview/skins/emerald/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/gemini/colors.xml b/indra/newview/skins/gemini/colors.xml new file mode 100644 index 000000000..cf9466fad --- /dev/null +++ b/indra/newview/skins/gemini/colors.xml @@ -0,0 +1,3 @@ + + + diff --git a/indra/newview/skins/gemini/colors_base.xml b/indra/newview/skins/gemini/colors_base.xml new file mode 100644 index 000000000..f2df52367 --- /dev/null +++ b/indra/newview/skins/gemini/colors_base.xml @@ -0,0 +1,209 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/gemini/keywords.ini b/indra/newview/skins/gemini/keywords.ini new file mode 100644 index 000000000..58044b9a8 --- /dev/null +++ b/indra/newview/skins/gemini/keywords.ini @@ -0,0 +1,613 @@ +llkeywords version 2 + +# sections +[word .84, .48, .48] +default Name of default state that all scripts must have +state Keyword to indicate state block or state transition + +# data types +[word .57, .83, .52] +integer Integer type +float Floating-point type +string String type +key Key type. Use NULL_KEY to test for empty keys. +vector Vector type of 3 floats. Used to represent 3D motion, Euler angles, and color.:Access components by .x, .y, or .z +rotation Rotation type of 4 floats. Used to represent rotation.:Access components by .x, .y, .z, or .w +list List of various data types +quaternion Rotation type of 4 floats. Used to represent rotation.:Access components by .x, .y, .z, or .w + +# events +[word .47, .62, .91] +state_entry state_entry():Triggered on any state transition and startup +state_exit state_exit():Triggered on any state transition +touch_start touch_start(integer num_detected):Triggered by the start of agent clicking on task +touch touch(integer num_detected):Triggered while agent is clicking on task +touch_end touch_end(integer num_detected):Triggered when agent stops clicking on task +collision_start collision_start(integer num_detected):Triggered when task starts colliding with another task +collision collision(integer num_detected):Triggered while task is colliding with another task +collision_end collision_end(integer num_detected):Triggered when task stops colliding with another task +land_collision_start land_collision_start(vector pos):Triggered when task starts colliding with land +land_collision land_collision(vector pos):Triggered when task is colliding with land +land_collision_end land_collision_end(vector pos):Triggered when task stops colliding with land +timer timer():Result of the llSetTimerEvent library function call. +listen listen(integer channel, string name, key id, string message):Result of the llListen library function call +sensor sensor(integer num_detected):Result of the llSensor library function call +no_sensor no_sensor():Result of the llSensor library function call +control control(key id, integer level, integer edge):Result of llTakeControls library function call +at_target at_target(integer tnum, vector targetpos, vector ourpos):Result of llTarget library function call +not_at_target not_at_target():Result of llTarget library function call +at_rot_target at_rot_target(integer tnum, rotation targetrot, rotation ourrot):Result of LLRotTarget library function call +not_at_rot_target not_at_rot_target():Result of LLRotTarget library function call +money money(key id, integer amount):Triggered when L$ is given to task +email email(string time, string address, string subj, string message, integer num_left):Triggered when task receives email +run_time_permissions run_time_permissions(integer perm):Triggered when an agent grants run time permissions to task +attach attach(key id):Triggered when an agent attaches or detaches from agent +dataserver dataserver(key queryid, string data):Triggered when task receives asynchronous data +moving_start moving_start():Triggered when task begins moving +moving_end moving_end():Triggered when task stops moving +on_rez on_rez(integer start_param):Triggered when task is rezed in from inventory or another task +object_rez object_rez(key id):Triggered when task rezes in another task +link_message link_message(integer sender_num, integer num, string str, key id):Triggered when task receives a link message via LLMessageLinked library function call +changed changed( integer change ):Triggered various event change the task:(test change with CHANGED_INVENTORY, CHANGED_COLOR, CHANGED_SHAPE, CHANGED_SCALE, CHANGED_TEXTURE, CHANGED_LINK, CHANGED_ALLOWED_DROP, CHANGED_OWNER, CHANGED_REGION, CHANGED_TELEPORT) +remote_data remote_data(integer event_type, key channel, key message_id, string sender,integer idata, string sdata):Triggered by various XML-RPC calls (event_type will be one of REMOTE_DATA_CHANNEL, REMOTE_DATA_REQUEST, REMOTE_DATA_REPLY) +http_response http_response(key request_id, integer status, list metadata, string body):Triggered when task receives a response to one of its llHTTPRequests +http_request http_request(key id, string method, string body):Triggered when task receives an http request against a public URL + +# integer constants +[word .48, .72, .84] +TRUE Integer constant for Boolean operations +FALSE Integer constant for Boolean operations +STATUS_PHYSICS Passed in the llSetStatus library function. If TRUE, object moves physically +STATUS_PHANTOM Passed in the llSetStatus library function. If TRUE, object doesn't collide with other objects +STATUS_ROTATE_X Passed in the llSetStatus library function. If FALSE, object doesn't rotate around local X axis +STATUS_ROTATE_Y Passed in the llSetStatus library function. If FALSE, object doesn't rotate around local Y axis +STATUS_ROTATE_Z Passed in the llSetStatus library function. If FALSE, object doesn't rotate around local Z axis +STATUS_SANDBOX Passed in the llSetStatus library function. If TRUE, object can't cross region boundaries or move more than 10 meters from its start location +STATUS_BLOCK_GRAB Passed in the llSetStatus library function. If TRUE, object can't be grabbed and physically dragged +STATUS_DIE_AT_EDGE Passed in the llSetStatus library function. If TRUE, objects that reach the edge of the world just die:rather than teleporting back to the owner +STATUS_RETURN_AT_EDGE Passed in the llSetStatus library function. If TRUE, script rezzed objects that reach the edge of the world:are returned rather than killed:STATUS_RETURN_AT_EDGE trumps STATUS_DIE_AT_EDGE if both are set +STATUS_CAST_SHADOWS Passed in the llSetStatus library function. If TRUE, object casts shadows on other objects +AGENT Passed in llSensor library function to look for other Agents +ACTIVE Passed in llSensor library function to look for moving objects +PASSIVE Passed in llSensor library function to look for objects that aren't moving +SCRIPTED Passed in llSensor library function to look for scripted objects +CONTROL_FWD Passed to llTakeControls library function and used control event handler to test for agent forward control +CONTROL_BACK Passed to llTakeControls library function and used control event handler to test for agent back control +CONTROL_LEFT Passed to llTakeControls library function and used control event handler to test for agent left control +CONTROL_RIGHT Passed to llTakeControls library function and used control event handler to test for agent right control +CONTROL_ROT_LEFT Passed to llTakeControls library function and used control event handler to test for agent rotate left control +CONTROL_ROT_RIGHT Passed to llTakeControls library function and used control event handler to test for agent rotate right control +CONTROL_UP Passed to llTakeControls library function and used control event handler to test for agent up control +CONTROL_DOWN Passed to llTakeControls library function and used control event handler to test for agent down control +CONTROL_LBUTTON Passed to llTakeControls library function and used control event handler to test for agent left button control +CONTROL_ML_LBUTTON Passed to llTakeControls library function and used control event handler to test for agent left button control with the agent in mouse look +PERMISSION_DEBIT Passed to llRequestPermissions library function to request permission to take L$ from agent's account +PERMISSION_TAKE_CONTROLS Passed to llRequestPermissions library function to request permission to take agent's controls +# PERMISSION_REMAP_CONTROLS Passed to llRequestPermissions library function to request permission to remap agent's controls (not implemented yet) +PERMISSION_TRIGGER_ANIMATION Passed to llRequestPermissions library function to request permission to trigger animation on agent +PERMISSION_ATTACH Passed to llRequestPermissions library function to request permission to attach/detach from agent +# PERMISSION_RELEASE_OWNERSHIP Passed to llRequestPermissions library function to request permission to release ownership (not implemented) +PERMISSION_CHANGE_LINKS Passed to llRequestPermissions library function to request permission to change links +# PERMISSION_CHANGE_JOINTS Passed to llRequestPermissions library function to request permission to change joints (not implemented) +# PERMISSION_CHANGE_PERMISSIONS Passed to llRequestPermissions library function to request permission to change permissions +PERMISSION_TRACK_CAMERA Passed to llRequestPermissions library function to request permission to track agent's camera +PERMISSION_CONTROL_CAMERA Passed to llRequestPermissions library function to request permission to change agent's camera + +DEBUG_CHANNEL Chat channel reserved for debug and error messages from scripts +PUBLIC_CHANNEL Chat channel that broadcasts to all nearby users + +AGENT_FLYING Returned by llGetAgentInfo if the Agent is flying +AGENT_ATTACHMENTS Returned by llGetAgentInfo if the Agent has attachments +AGENT_SCRIPTED Returned by llGetAgentInfo if the Agent has scripted attachments +AGENT_SITTING Returned by llGetAgentInfo if the Agent is sitting +AGENT_ON_OBJECT Returned by llGetAgentInfo if the Agent is sitting on an object +AGENT_MOUSELOOK Returned by llGetAgentInfo if the Agent is in mouselook +AGENT_AWAY Returned by llGetAgentInfo if the Agent is in away mode +AGENT_WALKING Returned by llGetAgentInfo if the Agent is walking +AGENT_IN_AIR Returned by llGetAgentInfo if the Agent is in the air +AGENT_TYPING Returned by llGetAgentInfo if the Agent is typing +AGENT_CROUCHING Returned by llGetAgentInfo if the Agent is crouching +AGENT_BUSY Returned by llGetAgentInfo if the Agent is busy +AGENT_ALWAYS_RUN Returned by llGetAgentInfo if the Agent has 'Always Run' enabled + +PSYS_PART_FLAGS +PSYS_PART_START_COLOR +PSYS_PART_START_ALPHA +PSYS_PART_START_SCALE +PSYS_PART_END_COLOR +PSYS_PART_END_ALPHA +PSYS_PART_END_SCALE +PSYS_PART_MAX_AGE + +PSYS_PART_BOUNCE_MASK +PSYS_PART_WIND_MASK +PSYS_PART_INTERP_COLOR_MASK +PSYS_PART_INTERP_SCALE_MASK +PSYS_PART_FOLLOW_SRC_MASK +PSYS_PART_FOLLOW_VELOCITY_MASK +PSYS_PART_TARGET_POS_MASK +PSYS_PART_EMISSIVE_MASK +PSYS_PART_TARGET_LINEAR_MASK + +PSYS_SRC_PATTERN +PSYS_SRC_INNERANGLE Deprecated -- Use PSYS_SRC_ANGLE_BEGIN +PSYS_SRC_OUTERANGLE Deprecated -- Use PSYS_SRC_ANGLE_END +PSYS_SRC_ANGLE_BEGIN +PSYS_SRC_ANGLE_END +PSYS_SRC_BURST_RATE +PSYS_SRC_BURST_PART_COUNT +PSYS_SRC_BURST_RADIUS +PSYS_SRC_BURST_SPEED_MIN +PSYS_SRC_BURST_SPEED_MAX +PSYS_SRC_MAX_AGE +PSYS_SRC_ACCEL +PSYS_SRC_TEXTURE +PSYS_SRC_TARGET_KEY +PSYS_SRC_OMEGA + +PSYS_SRC_PATTERN_DROP +PSYS_SRC_PATTERN_EXPLODE +PSYS_SRC_PATTERN_ANGLE +PSYS_SRC_PATTERN_ANGLE_CONE +PSYS_SRC_PATTERN_ANGLE_CONE_EMPTY + +OBJECT_UNKNOWN_DETAIL Returned by llGetObjectDetails when passed an invalid object parameter type. +OBJECT_NAME Used with llGetObjectDetails to get an object's name. +OBJECT_DESC Used with llGetObjectDetails to get an object's description. +OBJECT_POS Used with llGetObjectDetails to get an object's position. +OBJECT_ROT Used with llGetObjectDetails to get an object's rotation. +OBJECT_VELOCITY Used with llGetObjectDetails to get an object's velocity. +OBJECT_OWNER Used with llGetObjectDetails to get an object's owner's key. Will be NULL_KEY if group owned. +OBJECT_GROUP Used with llGetObjectDetails to get an object's group's key. +OBJECT_CREATOR Used with llGetObjectDetails to get an object's creator's key. + +# some vehicle params +VEHICLE_TYPE_NONE +VEHICLE_TYPE_SLED +VEHICLE_TYPE_CAR +VEHICLE_TYPE_BOAT +VEHICLE_TYPE_AIRPLANE +VEHICLE_TYPE_BALLOON + +VEHICLE_REFERENCE_FRAME Rotation of vehicle axes relative to local frame + +VEHICLE_LINEAR_FRICTION_TIMESCALE A vector of timescales for exponential decay of linear velocity along the three vehicle axes +VEHICLE_ANGULAR_FRICTION_TIMESCALE A vector of timescales for exponential decay of angular velocity about the three vehicle axes +VEHICLE_LINEAR_MOTOR_DIRECTION The linear velocity that the vehicle will try to achieve +VEHICLE_LINEAR_MOTOR_OFFSET An offset from the center of mass of the vehicle where the linear motor is applied +VEHICLE_ANGULAR_MOTOR_DIRECTION The angular velocity that the vehicle will try to achieve + +VEHICLE_HOVER_HEIGHT The height the vehicle will try to hover +VEHICLE_HOVER_EFFICIENCY A slider between 0 (bouncy) and 1 (critically damped) hover behavior +VEHICLE_HOVER_TIMESCALE The period of time for the vehicle to achieve its hover height +VEHICLE_BUOYANCY A slider between 0 (no anti-gravity) and 1 (full anti-gravity) + +VEHICLE_LINEAR_DEFLECTION_EFFICIENCY A slider between 0 (no deflection) and 1 (maximum strength) +VEHICLE_LINEAR_DEFLECTION_TIMESCALE The exponential timescale for the vehicle to redirect its velocity to be along its x-axis + +VEHICLE_LINEAR_MOTOR_TIMESCALE The exponential timescale for the vehicle to achive its full linear motor velocity +VEHICLE_LINEAR_MOTOR_DECAY_TIMESCALE The exponential timescale for the linear motor's effectiveness to decay toward zero + +VEHICLE_ANGULAR_DEFLECTION_EFFICIENCY A slider between 0 (no deflection) and 1 (maximum strength) +VEHICLE_ANGULAR_DEFLECTION_TIMESCALE The exponential timescale for the vehicle to achieve full angular deflection + +VEHICLE_ANGULAR_MOTOR_TIMESCALE The exponential timescale for the vehicle to achive its full angular motor velocity +VEHICLE_ANGULAR_MOTOR_DECAY_TIMESCALE The exponential timescale for the angular motor's effectiveness to decay toward zero + +VEHICLE_VERTICAL_ATTRACTION_EFFICIENCY A slider between 0 (bouncy) and 1 (critically damped) attraction of vehicle z-axis to world z-axis (vertical) +VEHICLE_VERTICAL_ATTRACTION_TIMESCALE The exponential timescale for the vehicle to align its z-axis to the world z-axis (vertical) + +VEHICLE_BANKING_EFFICIENCY A slider between -1 (leans out of turns), 0 (no banking), and +1 (leans into turns) +VEHICLE_BANKING_MIX A slider betwen 0 (static banking) and 1 (dynamic banking) +VEHICLE_BANKING_TIMESCALE The exponential timescale for the banking behavior to take full effect + +VEHICLE_FLAG_NO_DEFLECTION_UP Prevents linear deflection along world-z axis +VEHICLE_FLAG_LIMIT_ROLL_ONLY Removes vertical attraction for changes in vehicle pitch +VEHICLE_FLAG_HOVER_WATER_ONLY Hover only pays attention to water level +VEHICLE_FLAG_HOVER_TERRAIN_ONLY Hover only pays attention to terrain height +VEHICLE_FLAG_HOVER_GLOBAL_HEIGHT Hover only pays attention to global height +VEHICLE_FLAG_HOVER_UP_ONLY Hover only pushes up +VEHICLE_FLAG_LIMIT_MOTOR_UP Prevents ground vehicles from motoring into the sky +VEHICLE_FLAG_MOUSELOOK_STEER Makes vehicle try to turn toward mouselook direction. +VEHICLE_FLAG_MOUSELOOK_BANK Makes vehicle try to turn toward mouselook direction assuming banking is enabled. +VEHICLE_FLAG_CAMERA_DECOUPLED Causes the camera look-at axis to NOT move when the vehicle rotates. + +CAMERA_PITCH (-45 to 80) (Adjusts the angular amount that the camera aims straight ahead vs. straight down, maintaining the same distance. Analogous to 'incidence'.") +CAMERA_FOCUS_OFFSET (-10 to 10) A vector that adjusts the position of the camera focus position relative to the subject +CAMERA_POSITION_LAG (0.0 to 3.0) How much the camera lags as it tries to move towards its 'ideal' position +CAMERA_FOCUS_LAG (0.0 to 3.0) How much the camera lags as it tries to aim towards the subject +CAMERA_DISTANCE (0.5 to 10) Sets how far away the camera wants to be from its subject +CAMERA_BEHINDNESS_ANGLE (0 to 180) Sets the angle in degrees within which the camera is not constrained by changes in subject rotation +CAMERA_BEHINDNESS_LAG (0.0 to 3.0) Sets how strongly the camera is forced to stay behind the target if outside of behindness angle +CAMERA_POSITION_THRESHOLD (0.0 to 4.0) Sets the radius of a sphere around the camera's ideal position within which it is not affected by subject motion +CAMERA_FOCUS_THRESHOLD (0.0 to 4.0) Sets the radius of a sphere around the camera's subject position within which its focus is not affected by subject motion +CAMERA_ACTIVE (0 or 1) Turns on or off scripted control of the camera +CAMERA_POSITION Sets the position of the camera +CAMERA_FOCUS Sets the focus (target position) of the camera +CAMERA_POSITION_LOCKED (0 or 1) Locks the camera position so it will not move +CAMERA_FOCUS_LOCKED (0 or 1) Locks the camera focus so it will not move + +INVENTORY_TEXTURE Passed to task inventory library functions to reference textures +INVENTORY_SOUND Passed to task inventory library functions to reference sounds +INVENTORY_OBJECT Passed to task inventory library functions to reference objects +INVENTORY_SCRIPT Passed to task inventory library functions to reference scripts +INVENTORY_LANDMARK Passed to task inventory library functions to reference landmarks +INVENTORY_CLOTHING Passed to task inventory library functions to reference clothing +INVENTORY_NOTECARD Passed to task inventory library functions to reference notecards +INVENTORY_BODYPART Passed to task inventory library functions to reference body parts +INVENTORY_ANIMATION Passed to task inventory library functions to reference animations +INVENTORY_GESTURE Passed to task inventory library functions to reference gestures +INVENTORY_ALL Passed to task inventory library functions to reference all inventory items +INVENTORY_NONE Returned by llGetInventoryType when no item is found. + +ATTACH_CHEST Passed to llAttachToAvatar to attach task to chest +ATTACH_HEAD Passed to llAttachToAvatar to attach task to head +ATTACH_LSHOULDER Passed to llAttachToAvatar to attach task to left shoulder +ATTACH_RSHOULDER Passed to llAttachToAvatar to attach task to right shoulder +ATTACH_LHAND Passed to llAttachToAvatar to attach task to left hand +ATTACH_RHAND Passed to llAttachToAvatar to attach task to right hand +ATTACH_LFOOT Passed to llAttachToAvatar to attach task to left foot +ATTACH_RFOOT Passed to llAttachToAvatar to attach task to right foot +ATTACH_BACK Passed to llAttachToAvatar to attach task to back +ATTACH_PELVIS Passed to llAttachToAvatar to attach task to pelvis +ATTACH_MOUTH Passed to llAttachToAvatar to attach task to mouth +ATTACH_CHIN Passed to llAttachToAvatar to attach task to chin +ATTACH_LEAR Passed to llAttachToAvatar to attach task to left ear +ATTACH_REAR Passed to llAttachToAvatar to attach task to right ear +ATTACH_LEYE Passed to llAttachToAvatar to attach task to left eye +ATTACH_REYE Passed to llAttachToAvatar to attach task to right eye +ATTACH_NOSE Passed to llAttachToAvatar to attach task to noce +ATTACH_RUARM Passed to llAttachToAvatar to attach task to right upper arm +ATTACH_RLARM Passed to llAttachToAvatar to attach task to right lower arm +ATTACH_LUARM Passed to llAttachToAvatar to attach task to left upper arm +ATTACH_LLARM Passed to llAttachToAvatar to attach task to left lower arm +ATTACH_RHIP Passed to llAttachToAvatar to attach task to right hip +ATTACH_RULEG Passed to llAttachToAvatar to attach task to right upper leg +ATTACH_RLLEG Passed to llAttachToAvatar to attach task to right lower leg +ATTACH_LHIP Passed to llAttachToAvatar to attach task to left hip +ATTACH_LULEG Passed to llAttachToAvatar to attach task to left upper leg +ATTACH_LLLEG Passed to llAttachToAvatar to attach task to left lower leg +ATTACH_BELLY Passed to llAttachToAvatar to attach task to belly +ATTACH_RPEC Passed to llAttachToAvatar to attach task to right pectoral +ATTACH_LPEC Passed to llAttachToAvatar to attach task to left pectoral + +LAND_LEVEL Passed to llModifyLand to level terrain +LAND_RAISE Passed to llModifyLand to raise terrain +LAND_LOWER Passed to llModifyLand to lower terrain +LAND_SMOOTH Passed to llModifyLand to smooth terrain +LAND_NOISE Passed to llModifyLand to randomize terrain +LAND_REVERT Passed to llModifyLand to revert terrain toward original state +LAND_SMALL_BRUSH Passed to llModifyLand to modify small land areas +LAND_MEDIUM_BRUSH Passed to llModifyLand to modify medium land areas +LAND_LARGE_BRUSH Passed to llModifyLand to modify large land areas + +DATA_PAYINFO Passed to llRequestAgentData to get payment status of an agent +DATA_ONLINE Passed to llRequestAgentData to determine if agent is online +DATA_NAME Passed to llRequestAgentData to get full agent name +DATA_BORN Passed to llRequestAgentData to get born on date as a string +DATA_RATING Passed to llRequestAgentData to get a comma separated sting of integer ratings +DATA_SIM_POS Passed to llRequestSimulatorData to get a string (cast to vector) of a simulator's global position +DATA_SIM_STATUS Passed to llRequestSimulatorData to get the status of a simulator +DATA_SIM_RATING Passed to llRequestSimulatorData to get the rating of a simulator + +PAYMENT_INFO_ON_FILE Used with llRequestAgentData to tell if Agent is of "Payment Info On File" status +PAYMENT_INFO_USED Used with llRequestAgentData to tell if Agent is of "Payment Info Used" status + +ANIM_ON Enable texture animation +LOOP Loop when animating textures +REVERSE Animate in the reverse direction +PING_PONG Animate forward, then reverse. +SMOOTH Textures slides, instead of stepping +ROTATE Rotates the texture, instead of using frames +SCALE Scales the texture, instead of using frames + +ALL_SIDES Passed to various texture and color library functions to modify all sides + +LINK_SET Passed to various link functions to modify all blocks in the object +LINK_ROOT Passed to various link functions to modify only the root block (no effect on single block objects) +LINK_ALL_OTHERS Passed to various link functions to modify all other blocks in the object +LINK_ALL_CHILDREN Passed to various link functions to modify all child blocks in the object +LINK_THIS Passed to various link functions to modify only the calling block + +CHANGED_INVENTORY Parameter of changed event handler used to indicate change to task's inventory +CHANGED_COLOR Parameter of changed event handler used to indicate change to task's color +CHANGED_SHAPE Parameter of changed event handler used to indicate change to task's shape parameters +CHANGED_SCALE Parameter of changed event handler used to indicate change to task's scale +CHANGED_TEXTURE Parameter of changed event handler used to indicate change to task's texture +CHANGED_LINK Parameter of changed event handler used to indicate change to task's link status +CHANGED_ALLOWED_DROP Parameter of changed event handler used to indicate a user dropped an inventory item:onto task that was allowed only by llAllowInventoryDrop function call +CHANGED_OWNER Parameter of changed event handler used to indicate change to task's owner ONLY when an object is sold as original or deeded to group +CHANGED_REGION Parameter of changed event handler used to indicate the region has changed +CHANGED_TELEPORT Parameter of changed event handler used to indicate teleport has completed +CHANGED_REGION_START Parameter of changed event handler used to indicate the region has been restarted + +TYPE_INTEGER Indicates that the list entry is holding an integer +TYPE_FLOAT Indicates that the list entry is holding an float +TYPE_STRING Indicates that the list entry is holding an string +TYPE_KEY Indicates that the list entry is holding an key +TYPE_VECTOR Indicates that the list entry is holding an vector +TYPE_ROTATION Indicates that the list entry is holding an rotation +TYPE_INVALID Indicates that this wasn't a valid list entry + + +REMOTE_DATA_CHANNEL Value of event_type in remote_event after successful llOpenRemoteDataChannel +REMOTE_DATA_REQUEST Value of event_type in remote_event if XML-RPC request is received +REMOTE_DATA_REPLY Value of event_type in remote_event if XML-RPC reply is received + + +PRIM_TYPE Followed by PRIM_TYPE_BOX, PRIM_TYPE_CYLINDER, PRIM_TYPE_PRISM, PRIM_TYPE_SPHERE, PRIM_TYPE_TORUS, PRIM_TYPE_TUBE, or PRIM_TYPE_SCULPT and their arguments +PRIM_MATERIAL Followed by PRIM_MATERIAL_STONE, PRIM_MATERIAL_METAL, PRIM_MATERIAL_GLASS, PRIM_MATERIAL_WOOD, PRIM_MATERIAL_FLESH, PRIM_MATERIAL_PLASTIC, or PRIM_MATERIAL_RUBBER +PRIM_PHYSICS Sets physics to TRUE or FALSE +PRIM_FLEXIBLE Followed by TRUE or FALSE, integer softness, float gravity, float friction, float wind, float tension, and vector force +PRIM_POINT_LIGHT Followed by TRUE or FALSE, vector color, float intensity, float radius, float falloff +PRIM_TEMP_ON_REZ Sets temporay on rez to TRUE or FALSE +PRIM_PHANTOM Sets phantom to TRUE or FALSE +PRIM_CAST_SHADOWS DEPRECATED. Takes 1 parameter, an integer, but has no effect when set and always returns 0 if used in llGetPrimitiveParams. +PRIM_POSITION Sets primitive position to a vector position +PRIM_SIZE Sets primitive size to a vector size +PRIM_ROTATION Sets primitive rotation +PRIM_TEXTURE Followed by an integer face, key id, vector repeats, vector offsets,:and float rotation in radians +PRIM_COLOR Followed by an integer face, vector color, and float alpha +PRIM_BUMP_SHINY Followed by an integer face, one of PRIM_SHINY_NONE, PRIM_SHINY_LOW,:PRIM_SHINY_MEDIUM, or PRIM_SHINY_HIGH,:and one of PRIM_BUMP_NONE, PRIM_BUMP_BRIGHT, PRIM_BUMP_DARK, etc +PRIM_FULLBRIGHT Followed by an integer face, and TRUE or FALSE +PRIM_TEXGEN Followed by an integer face, and one of PRIM_TEXGEN_DEFAULT or PRIM_TEXGEN_PLANAR +PRIM_GLOW Followed by an integer face, and a float from 0.0 to 1.0 specifying glow amount +PRIM_NAME Sets/Shows the primitive name +PRIM_TEXT Sets/Shows the primitive desc + +PRIM_TYPE_BOX Followed by integer hole shape, vector cut, float hollow, vector twist,:vector top size, and vector top shear +PRIM_TYPE_CYLINDER Followed by integer hole shape, vector cut, float hollow, vector twist,:vector top size, and vector top shear +PRIM_TYPE_PRISM Followed by integer hole shape, vector cut, float hollow, vector twist,:vector top size, and vector top shear +PRIM_TYPE_SPHERE Followed by integer hole shape, vector cut, float hollow, vector twist,:and vector dimple +PRIM_TYPE_TORUS Followed by integer hole shape, vector cut, float hollow, vector twist,:vector hole size, vector top shear, vector advanced cut, vector taper,:float revolutions, float radius offset, and float skew +PRIM_TYPE_TUBE Followed by integer hole shape, vector cut, float hollow, vector twist,:vector hole size, vector top shear, vector advanced cut, vector taper,:float revolutions, float radius offset, and float skew +PRIM_TYPE_RING Followed by integer hole shape, vector cut, float hollow, vector twist,:vector hole size, vector top shear, vector advanced cut, vector taper,:float revolutions, float radius offset, and float skew +PRIM_TYPE_SCULPT Followed by a key/string texture uuid, and one of PRIM_SCULPT_TYPE_SPHERE, PRIM_SCULPT_TYPE_TORUS, PRIM_SCULPT_TYPE_PLANE, or PRIM_SCULPT_TYPE_CYLINDER + +PRIM_HOLE_DEFAULT Sets hole type to match the prim type. +PRIM_HOLE_SQUARE Sets hole type to square. +PRIM_HOLE_CIRCLE Sets hole type to circle. +PRIM_HOLE_TRIANGLE Sets hole type to triangle. + +PRIM_MATERIAL_STONE Sets material to stone +PRIM_MATERIAL_METAL Sets material to metal +PRIM_MATERIAL_GLASS Sets material to glass +PRIM_MATERIAL_WOOD Sets material to wood +PRIM_MATERIAL_FLESH Sets material to flesh +PRIM_MATERIAL_PLASTIC Sets material to plastic +PRIM_MATERIAL_RUBBER Sets material to rubber +PRIM_MATERIAL_LIGHT Sets material to light + +PRIM_SHINY_NONE No shininess +PRIM_SHINY_LOW Low shininess +PRIM_SHINY_MEDIUM Medium shininess +PRIM_SHINY_HIGH High shininess + +PRIM_BUMP_NONE No bump map +PRIM_BUMP_BRIGHT Generate bump map from highlights +PRIM_BUMP_DARK Generate bump map from lowlights +PRIM_BUMP_WOOD Wood bump map +PRIM_BUMP_BARK Bark bump map +PRIM_BUMP_BRICKS Brick bump map +PRIM_BUMP_CHECKER Checker bump map +PRIM_BUMP_CONCRETE Concrete bump map +PRIM_BUMP_TILE Tile bump map +PRIM_BUMP_STONE Stone bump map +PRIM_BUMP_DISKS Disk bump map +PRIM_BUMP_GRAVEL Gravel bump map +PRIM_BUMP_BLOBS Blob bump map +PRIM_BUMP_SIDING Siding bump map +PRIM_BUMP_LARGETILE Large tile bump map +PRIM_BUMP_STUCCO Stucco bump map +PRIM_BUMP_SUCTION Suction cup bump map +PRIM_BUMP_WEAVE Weave bump map + +PRIM_TEXGEN_DEFAULT Default texture mapping +PRIM_TEXGEN_PLANAR Planar texture mapping + +PRIM_SCULPT_TYPE_SPHERE Stitch edges in a sphere-like way +PRIM_SCULPT_TYPE_TORUS Stitch edges in a torus-like way +PRIM_SCULPT_TYPE_PLANE Do not stitch edges +PRIM_SCULPT_TYPE_CYLINDER Stitch edges in a cylinder-like way +PRIM_SCULPT_TYPE_MASK Mask used to determine stitching type +PRIM_SCULPT_FLAG_INVERT Flag to specify that the surface normals should be inverted +PRIM_SCULPT_FLAG_MIRROR Flag to specify that the prim should be reflected along X axis + +MASK_BASE Base permissions +MASK_OWNER Owner permissions +MASK_GROUP Group permissions +MASK_EVERYONE Everyone permissions +MASK_NEXT Next owner permissions + +PERM_TRANSFER Transfer permission +PERM_MODIFY Modify permission +PERM_COPY Copy permission +PERM_MOVE Move permission +PERM_ALL Move/Modify/Copy/Transfer permissions + +PARCEL_MEDIA_COMMAND_STOP Stop media stream +PARCEL_MEDIA_COMMAND_PAUSE Pause media stream +PARCEL_MEDIA_COMMAND_PLAY Play media stream +PARCEL_MEDIA_COMMAND_LOOP Loop media stream +PARCEL_MEDIA_COMMAND_TEXTURE Get or set the parcel's media texture +PARCEL_MEDIA_COMMAND_URL Get or set the parcel's media url +PARCEL_MEDIA_COMMAND_TYPE Get or set the parcel's media mimetype +PARCEL_MEDIA_COMMAND_DESC Get or set the parcel's media description +PARCEL_MEDIA_COMMAND_TIME Set media stream to specific time +PARCEL_MEDIA_COMMAND_SIZE Get or set the parcel's media pixel resolution +PARCEL_MEDIA_COMMAND_AGENT Allows media stream commands to apply to only one agent +PARCEL_MEDIA_COMMAND_UNLOAD Unloads the media stream +PARCEL_MEDIA_COMMAND_AUTO_ALIGN Auto aligns the media stream to the texture size. May cause a performance hit and loss of some visual quality. + +PAY_HIDE Used with llSetPayPrice to hide a button +PAY_DEFAULT Used with llSetPayPrice to use the default price for a button + +LIST_STAT_MAX Used with llListStatistics to find the largest number in a list +LIST_STAT_MIN Used with llListStatistics to find the smallest number in a list +LIST_STAT_MEAN Used with llListStatistics to find the mean of the numbers in a list +LIST_STAT_MEDIAN Used with llListStatistics to find the median of the numbers in a list +LIST_STAT_STD_DEV Used with llListStatistics to find the standard deviation of the numbers in a list +LIST_STAT_SUM Used with llListStatistics to find the sum of the numbers in a list +LIST_STAT_SUM_SQUARES Used with llListStatistics to find the sum of the squares of the numbers in a list +LIST_STAT_NUM_COUNT Used with llListStatistics to find how many numbers are in a list +LIST_STAT_GEOMETRIC_MEAN Used with llListStatistics to find the geometric mean of the numbers in a list (all numbers must be > 0) +LIST_STAT_RANGE Used with llListStatistics to find the range of the numbers in a list + +PARCEL_FLAG_ALLOW_FLY Used with llGetParcelFlags to find if a parcel allows flying +PARCEL_FLAG_ALLOW_GROUP_SCRIPTS Used with llGetParcelFlags to find if a parcel allows group scripts +PARCEL_FLAG_ALLOW_SCRIPTS Used with llGetParcelFlags to find if a parcel allows outside scripts +PARCEL_FLAG_ALLOW_LANDMARK Used with llGetParcelFlags to find if a parcel allows landmarks to be created +PARCEL_FLAG_ALLOW_TERRAFORM Used with llGetParcelFlags to find if a parcel allows anyone to terraform the land +PARCEL_FLAG_ALLOW_DAMAGE Used with llGetParcelFlags to find if a parcel allows damage +PARCEL_FLAG_ALLOW_CREATE_OBJECTS Used with llGetParcelFlags to find if a parcel allows anyone to create objects +PARCEL_FLAG_ALLOW_CREATE_GROUP_OBJECTS Used with llGetParcelFlags to find if a parcel allows group members or objects to create objects +PARCEL_FLAG_USE_ACCESS_GROUP Used with llGetParcelFlags to find if a parcel limits access to a group +PARCEL_FLAG_USE_ACCESS_LIST Used with llGetParcelFlags to find if a parcel limits access to a list of residents +PARCEL_FLAG_USE_BAN_LIST Used with llGetParcelFlags to find if a parcel uses a ban list +PARCEL_FLAG_USE_LAND_PASS_LIST Used with llGetParcelFlags to find if a parcel allows passes to be purchased +PARCEL_FLAG_LOCAL_SOUND_ONLY Used with llGetParcelFlags to find if a parcel restricts spacialized sound to the parcel +PARCEL_FLAG_RESTRICT_PUSHOBJECT Used with llGetParcelFlags to find if a parcel restricts llPushObject() calls +PARCEL_FLAG_ALLOW_ALL_OBJECT_ENTRY Used with llGetParcelFlags to find if a parcel allows all objects to enter +PARCEL_FLAG_ALLOW_GROUP_OBJECT_ENTRY Used with llGetParcelFlags to find if a parcel only allows group (and owner) objects to enter + +REGION_FLAG_ALLOW_DAMAGE Used with llGetRegionFlags to find if a region is entirely damage enabled +REGION_FLAG_FIXED_SUN Used with llGetRegionFlags to find if a region has a fixed sun position +REGION_FLAG_BLOCK_TERRAFORM Used with llGetRegionFlags to find if a region terraforming disabled +REGION_FLAG_SANDBOX Used with llGetRegionFlags to find if a region is a sandbox +REGION_FLAG_DISABLE_COLLISIONS Used with llGetRegionFlags to find if a region has disabled collisions +REGION_FLAG_DISABLE_PHYSICS Used with llGetRegionFlags to find if a region has disabled physics +REGION_FLAG_BLOCK_FLY Used with llGetRegionFlags to find if a region blocks flying +REGION_FLAG_ALLOW_DIRECT_TELEPORT Used with llGetRegionFlags to find if a region allows direct teleports +REGION_FLAG_RESTRICT_PUSHOBJECT Used with llGetRegionFlags to find if a region restricts llPushObject() calls + +HTTP_METHOD Used with llHTTPRequest to specify the method, such as "GET" or "POST" +HTTP_MIMETYPE Used with llHTTPRequest to specify the MIME type, defaults to "text/plain" +HTTP_BODY_MAXLENGTH Used with llHTTPRequest to specify the maxium reponse body to return +HTTP_VERIFY_CERT Used with llHTTPRequest to specify SSL certificate verification +HTTP_BODY_TRUNCATED Used with http_response to indicate truncation point in bytes + +PARCEL_COUNT_TOTAL Used with llGetParcelPrimCount to get the total number of prims on the parcel +PARCEL_COUNT_OWNER Used with llGetParcelPrimCount to get the number of prims on the parcel owned by the owner +PARCEL_COUNT_GROUP Used with llGetParcelPrimCount to get the number of prims on the parcel owned by the group +PARCEL_COUNT_OTHER Used with llGetParcelPrimCount to get the number of prims on the parcel owned by others +PARCEL_COUNT_SELECTED Used with llGetParcelPrimCount to get the number of prims on the parcel currently selected or sat upon +PARCEL_COUNT_TEMP Used with llGetParcelPrimCount to get the number of prims on the parcel that are temp on rez + +PARCEL_DETAILS_NAME Used with llGetParcelDetails to get the parcel name. +PARCEL_DETAILS_DESC Used with llGetParcelDetails to get the parcel description. +PARCEL_DETAILS_OWNER Used with llGetParcelDetails to get the parcel owner id. +PARCEL_DETAILS_GROUP Used with llGetParcelDetails to get the parcel group id. +PARCEL_DETAILS_AREA Used with llGetParcelDetails to get the parcel area in square meters. +PARCEL_DETAILS_ID This is a flag used with llGetParcelDetails to get the parcel UUID. + +STRING_TRIM_HEAD Used with llStringTrim to trim leading spaces from a string. +STRING_TRIM_TAIL Used with llStringTrim to trim trailing spaces from a string. +STRING_TRIM Used with llStringTrim to trim both leading and trailing spaces from a string. + +CLICK_ACTION_NONE Used with llSetClickAction to disable the click action +CLICK_ACTION_TOUCH Used with llSetClickAction to set touch as the default action when object is clicked +CLICK_ACTION_SIT Used with llSetClickAction to set sit as the default action when object is clicked +CLICK_ACTION_BUY Used with llSetClickAction to set buy as the default action when object is clicked +CLICK_ACTION_PAY Used with llSetClickAction to set pay as the default action when object is clicked +CLICK_ACTION_OPEN Used with llSetClickAction to set open as the default action when object is clicked +CLICK_ACTION_PLAY Used with llSetClickAction to set play as the default action when object is clicked +CLICK_ACTION_OPEN_MEDIA Used with llSetClickAction to set open-media as the default action when object is clicked + +TOUCH_INVALID_TEXCOORD Value returned by llDetectedTouchUV() and llDetectedTouchST() when the touch position is not valid. +TOUCH_INVALID_VECTOR Value returned by llDetectedTouchPos(), llDetectedTouchNormal(), and llDetectedTouchBinormal() when the touch position is not valid. +TOUCH_INVALID_FACE Value returned by llDetectedTouchFace() when the touch position is not valid. + +PRIM_MEDIA_ALT_IMAGE_ENABLE Used with ll{Get,Set}PrimMediaParams to enable the default alt image for media +PRIM_MEDIA_CONTROLS Used with ll{Get,Set}PrimMediaParams to determine the controls shown for media +PRIM_MEDIA_CURRENT_URL Used with ll{Get,Set}PrimMediaParams to navigate/access the current URL +PRIM_MEDIA_HOME_URL Used with ll{Get,Set}PrimMediaParams to access the home URL +PRIM_MEDIA_AUTO_LOOP Used with ll{Get,Set}PrimMediaParams to determine if media should auto-loop (if applicable) +PRIM_MEDIA_AUTO_PLAY Used with ll{Get,Set}PrimMediaParams to determine if media should start playing as soon as it is created +PRIM_MEDIA_AUTO_SCALE Used with ll{Get,Set}PrimMediaParams to determine if media should scale to fit the face it is on +PRIM_MEDIA_AUTO_ZOOM Used with ll{Get,Set}PrimMediaParams to determine if the user would zoom in when viewing media +PRIM_MEDIA_FIRST_CLICK_INTERACT Used with ll{Get,Set}PrimMediaParams to determine whether the user interacts with media or not when she first clicks it (versus selection) +PRIM_MEDIA_WIDTH_PIXELS Used with ll{Get,Set}PrimMediaParams to access the media's width in pixels +PRIM_MEDIA_HEIGHT_PIXELS Used with ll{Get,Set}PrimMediaParams to access the media's height in pixels +PRIM_MEDIA_WHITELIST_ENABLE Used with ll{Get,Set}PrimMediaParams to determine if the domain whitelist is enabled +PRIM_MEDIA_WHITELIST Used with ll{Get,Set}PrimMediaParams to access the media's list of allowable URL prefixes to navigate to +PRIM_MEDIA_PERMS_INTERACT Used with ll{Get,Set}PrimMediaParams to determine the permissions for who can interact with the media +PRIM_MEDIA_PERMS_CONTROL Used with ll{Get,Set}PrimMediaParams to determine the permissions for who has controls +PRIM_MEDIA_PARAM_MAX The value of the largest media param + +PRIM_MEDIA_CONTROLS_STANDARD Used with ll{Get,Set}PrimMediaParams, a PRIM_MEDIA_CONTROLS value meaning "standard controls" +PRIM_MEDIA_CONTROLS_MINI Used with ll{Get,Set}PrimMediaParams, a PRIM_MEDIA_CONTROLS value meaning "mini controls" + +PRIM_MEDIA_PERM_NONE Used with ll{Get,Set}PrimMediaParams, a PRIM_MEDIA_PERMS_INTERACT or PRIM_MEDIA_PERMS_CONTROL bit, no permissions +PRIM_MEDIA_PERM_OWNER Used with ll{Get,Set}PrimMediaParams, a PRIM_MEDIA_PERMS_INTERACT or PRIM_MEDIA_PERMS_CONTROL bit, owner permissions +PRIM_MEDIA_PERM_GROUP Used with ll{Get,Set}PrimMediaParams, a PRIM_MEDIA_PERMS_INTERACT or PRIM_MEDIA_PERMS_CONTROL bit, group permissions +PRIM_MEDIA_PERM_ANYONE Used with ll{Get,Set}PrimMediaParams, a PRIM_MEDIA_PERMS_INTERACT or PRIM_MEDIA_PERMS_CONTROL bit, anyone has permissions + +PRIM_MEDIA_MAX_URL_LENGTH Used with ll{Get,Set}PrimMediaParams, the maximum length of PRIM_MEDIA_CURRENT_URL or PRIM_MEDIA_HOME_URL +PRIM_MEDIA_MAX_WHITELIST_SIZE Used with ll{Get,Set}PrimMediaParams, the maximum length, in bytes, of PRIM_MEDIA_WHITELIST +PRIM_MEDIA_MAX_WHITELIST_COUNT Used with ll{Get,Set}PrimMediaParams, the maximum number of items allowed in PRIM_MEDIA_WHITELIST +PRIM_MEDIA_MAX_WIDTH_PIXELS Used with ll{Get,Set}PrimMediaParams, the maximum width allowed in PRIM_MEDIA_WIDTH_PIXELS +PRIM_MEDIA_MAX_HEIGHT_PIXELS Used with ll{Get,Set}PrimMediaParams, the maximum width allowed in PRIM_MEDIA_HEIGHT_PIXELS + +STATUS_OK Result of function call was success +STATUS_MALFORMED_PARAMS Function was called with malformed params +STATUS_TYPE_MISMATCH Argument(s) passed to function had a type mismatch +STATUS_BOUNDS_ERROR Argument(s) passed to function had a bounds error +STATUS_NOT_FOUND Object or other item was not found +STATUS_NOT_SUPPORTED Feature not supported +STATUS_INTERNAL_ERROR An internal error occurred +STATUS_WHITELIST_FAILED URL failed to pass whitelist + + + +# string constants +[word .48, .72, .84] +NULL_KEY Indicates an empty key +EOF Indicates the last line of a notecard was read +TEXTURE_BLANK UUID for the "Blank" texture +TEXTURE_DEFAULT UUID for the "Default Media" texture +TEXTURE_PLYWOOD UUID for the default "Plywood" texture +TEXTURE_TRANSPARENT UUID for the "White - Transparent" texture + +URL_REQUEST_GRANTED Used with http_request when a public URL is successfully granted +URL_REQUEST_DENIED Used with http_request when a public URL is not available + +# float constants +[word .48, .72, .84] +PI 3.1415926535897932384626433832795 +TWO_PI 6.283185307179586476925286766559 +PI_BY_TWO 1.5707963267948966192313216916398 +DEG_TO_RAD To convert from degrees to radians +RAD_TO_DEG To convert from radians to degrees +SQRT2 1.4142135623730950488016887242097 + +# compound constants +[word .48, .72, .84] +ZERO_VECTOR <0.0, 0.0, 0.0> +ZERO_ROTATION <0.0, 0.0, 0.0, 1.0> + + +# flow control keywords +[word .47, .62, .91] +for for loop:for (initializer; test; iteration):{: statements:} +do do loop:do:{: statements:} while (test); +while while loop:while (test):{ statements:} +if if statement:if (test):{ statements:} +else else clause:if (test):{ statements:}:else:{ statements:} +jump jump statement:jump label;: +return Leave current function or event handler + +# flow control label +[word .47, .62, .91] +@ Label:Target for jump statement + +# Comment +[one_sided_delimiter .86, .69, .50] +// Comment:Non-functional commentary or disabled code +[two_sided_delimiter .86, .69, .50] +/* */ Comment:Non-functional commentary or disabled code + +# String literals +[two_sided_delimiter_esc .57, .83, .52] +" " String literal + +#functions are supplied by the program now. diff --git a/indra/newview/skins/gemini/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/gemini/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..49377609b Binary files /dev/null and b/indra/newview/skins/gemini/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/gemini/textures/0498c309-5306-43cd-82a2-ae31d096cdef.tga b/indra/newview/skins/gemini/textures/0498c309-5306-43cd-82a2-ae31d096cdef.tga new file mode 100644 index 000000000..d7097e3a3 Binary files /dev/null and b/indra/newview/skins/gemini/textures/0498c309-5306-43cd-82a2-ae31d096cdef.tga differ diff --git a/indra/newview/skins/gemini/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga b/indra/newview/skins/gemini/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga new file mode 100644 index 000000000..5cf32fbe4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga differ diff --git a/indra/newview/skins/gemini/textures/09a324a8-acc1-d9cd-2cbd-7465d90d3a98.tga b/indra/newview/skins/gemini/textures/09a324a8-acc1-d9cd-2cbd-7465d90d3a98.tga new file mode 100644 index 000000000..77d470731 Binary files /dev/null and b/indra/newview/skins/gemini/textures/09a324a8-acc1-d9cd-2cbd-7465d90d3a98.tga differ diff --git a/indra/newview/skins/gemini/textures/0e82d24e-ed45-41bc-b090-94c97c1caab2.tga b/indra/newview/skins/gemini/textures/0e82d24e-ed45-41bc-b090-94c97c1caab2.tga new file mode 100644 index 000000000..b2e5609f1 Binary files /dev/null and b/indra/newview/skins/gemini/textures/0e82d24e-ed45-41bc-b090-94c97c1caab2.tga differ diff --git a/indra/newview/skins/gemini/textures/111b39de-8928-4690-b7b2-e17d5c960277.tga b/indra/newview/skins/gemini/textures/111b39de-8928-4690-b7b2-e17d5c960277.tga new file mode 100644 index 000000000..0febf4edc Binary files /dev/null and b/indra/newview/skins/gemini/textures/111b39de-8928-4690-b7b2-e17d5c960277.tga differ diff --git a/indra/newview/skins/gemini/textures/13dd1d96-6836-461e-8a4c-36003065c59b.tga b/indra/newview/skins/gemini/textures/13dd1d96-6836-461e-8a4c-36003065c59b.tga new file mode 100644 index 000000000..031b3ad34 Binary files /dev/null and b/indra/newview/skins/gemini/textures/13dd1d96-6836-461e-8a4c-36003065c59b.tga differ diff --git a/indra/newview/skins/gemini/textures/34c9398d-bb78-4643-9633-46a2fa3e9637.tga b/indra/newview/skins/gemini/textures/34c9398d-bb78-4643-9633-46a2fa3e9637.tga new file mode 100644 index 000000000..58cd2cd55 Binary files /dev/null and b/indra/newview/skins/gemini/textures/34c9398d-bb78-4643-9633-46a2fa3e9637.tga differ diff --git a/indra/newview/skins/gemini/textures/37c8e000-6aa2-41ef-8f86-e0c2e60bfa42.tga b/indra/newview/skins/gemini/textures/37c8e000-6aa2-41ef-8f86-e0c2e60bfa42.tga new file mode 100644 index 000000000..879b9e618 Binary files /dev/null and b/indra/newview/skins/gemini/textures/37c8e000-6aa2-41ef-8f86-e0c2e60bfa42.tga differ diff --git a/indra/newview/skins/gemini/textures/39801651-26cb-4926-af57-7af9352c273c.tga b/indra/newview/skins/gemini/textures/39801651-26cb-4926-af57-7af9352c273c.tga new file mode 100644 index 000000000..f2fdd074b Binary files /dev/null and b/indra/newview/skins/gemini/textures/39801651-26cb-4926-af57-7af9352c273c.tga differ diff --git a/indra/newview/skins/gemini/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga b/indra/newview/skins/gemini/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga new file mode 100644 index 000000000..fb6dac0c3 Binary files /dev/null and b/indra/newview/skins/gemini/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga differ diff --git a/indra/newview/skins/gemini/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga b/indra/newview/skins/gemini/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga new file mode 100644 index 000000000..340f3213d Binary files /dev/null and b/indra/newview/skins/gemini/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga differ diff --git a/indra/newview/skins/gemini/textures/47a8c844-cd2a-4b1a-be01-df8b1612fe5d.tga b/indra/newview/skins/gemini/textures/47a8c844-cd2a-4b1a-be01-df8b1612fe5d.tga new file mode 100644 index 000000000..505f6ed1c Binary files /dev/null and b/indra/newview/skins/gemini/textures/47a8c844-cd2a-4b1a-be01-df8b1612fe5d.tga differ diff --git a/indra/newview/skins/gemini/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga b/indra/newview/skins/gemini/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga new file mode 100644 index 000000000..55e379309 Binary files /dev/null and b/indra/newview/skins/gemini/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga differ diff --git a/indra/newview/skins/gemini/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga b/indra/newview/skins/gemini/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga new file mode 100644 index 000000000..fc720c826 Binary files /dev/null and b/indra/newview/skins/gemini/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga differ diff --git a/indra/newview/skins/gemini/textures/73577b7b-19c3-4050-a19d-36bc2408aa79.tga b/indra/newview/skins/gemini/textures/73577b7b-19c3-4050-a19d-36bc2408aa79.tga new file mode 100644 index 000000000..35846cef3 Binary files /dev/null and b/indra/newview/skins/gemini/textures/73577b7b-19c3-4050-a19d-36bc2408aa79.tga differ diff --git a/indra/newview/skins/gemini/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga b/indra/newview/skins/gemini/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga new file mode 100644 index 000000000..0fc1afb7a Binary files /dev/null and b/indra/newview/skins/gemini/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga differ diff --git a/indra/newview/skins/gemini/textures/74e1a96f-4833-a24d-a1bb-1bce1468b0e7.tga b/indra/newview/skins/gemini/textures/74e1a96f-4833-a24d-a1bb-1bce1468b0e7.tga new file mode 100644 index 000000000..c359f2f31 Binary files /dev/null and b/indra/newview/skins/gemini/textures/74e1a96f-4833-a24d-a1bb-1bce1468b0e7.tga differ diff --git a/indra/newview/skins/gemini/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/gemini/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..a9bb90825 Binary files /dev/null and b/indra/newview/skins/gemini/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/gemini/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga b/indra/newview/skins/gemini/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga new file mode 100644 index 000000000..83ee56b81 Binary files /dev/null and b/indra/newview/skins/gemini/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga differ diff --git a/indra/newview/skins/gemini/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga b/indra/newview/skins/gemini/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga new file mode 100644 index 000000000..6cc9ea194 Binary files /dev/null and b/indra/newview/skins/gemini/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga differ diff --git a/indra/newview/skins/gemini/textures/8f761ce3-5939-4d3a-8991-00064fdfacf9.tga b/indra/newview/skins/gemini/textures/8f761ce3-5939-4d3a-8991-00064fdfacf9.tga new file mode 100644 index 000000000..1f9f564fa Binary files /dev/null and b/indra/newview/skins/gemini/textures/8f761ce3-5939-4d3a-8991-00064fdfacf9.tga differ diff --git a/indra/newview/skins/gemini/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga b/indra/newview/skins/gemini/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga new file mode 100644 index 000000000..c8491a0a1 Binary files /dev/null and b/indra/newview/skins/gemini/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga differ diff --git a/indra/newview/skins/gemini/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga b/indra/newview/skins/gemini/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga new file mode 100644 index 000000000..79b0e2f02 Binary files /dev/null and b/indra/newview/skins/gemini/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga differ diff --git a/indra/newview/skins/gemini/textures/account_id_green.tga b/indra/newview/skins/gemini/textures/account_id_green.tga new file mode 100644 index 000000000..9be215eed Binary files /dev/null and b/indra/newview/skins/gemini/textures/account_id_green.tga differ diff --git a/indra/newview/skins/gemini/textures/account_id_orange.tga b/indra/newview/skins/gemini/textures/account_id_orange.tga new file mode 100644 index 000000000..6b41e8663 Binary files /dev/null and b/indra/newview/skins/gemini/textures/account_id_orange.tga differ diff --git a/indra/newview/skins/gemini/textures/active_speakers.tga b/indra/newview/skins/gemini/textures/active_speakers.tga new file mode 100644 index 000000000..02d3643d7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/active_speakers.tga differ diff --git a/indra/newview/skins/gemini/textures/active_voice_tab.tga b/indra/newview/skins/gemini/textures/active_voice_tab.tga new file mode 100644 index 000000000..2d0dfaabc Binary files /dev/null and b/indra/newview/skins/gemini/textures/active_voice_tab.tga differ diff --git a/indra/newview/skins/gemini/textures/alpha_gradient.tga b/indra/newview/skins/gemini/textures/alpha_gradient.tga new file mode 100644 index 000000000..6fdba25d4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/alpha_gradient.tga differ diff --git a/indra/newview/skins/gemini/textures/arrow_down.tga b/indra/newview/skins/gemini/textures/arrow_down.tga new file mode 100644 index 000000000..81dc9d3b6 Binary files /dev/null and b/indra/newview/skins/gemini/textures/arrow_down.tga differ diff --git a/indra/newview/skins/gemini/textures/arrow_up.tga b/indra/newview/skins/gemini/textures/arrow_up.tga new file mode 100644 index 000000000..22195cf7f Binary files /dev/null and b/indra/newview/skins/gemini/textures/arrow_up.tga differ diff --git a/indra/newview/skins/gemini/textures/avatar_gone.tga b/indra/newview/skins/gemini/textures/avatar_gone.tga new file mode 100644 index 000000000..e5c2c070b Binary files /dev/null and b/indra/newview/skins/gemini/textures/avatar_gone.tga differ diff --git a/indra/newview/skins/gemini/textures/avatar_new.tga b/indra/newview/skins/gemini/textures/avatar_new.tga new file mode 100644 index 000000000..854b70c32 Binary files /dev/null and b/indra/newview/skins/gemini/textures/avatar_new.tga differ diff --git a/indra/newview/skins/gemini/textures/avatar_sound.tga b/indra/newview/skins/gemini/textures/avatar_sound.tga new file mode 100644 index 000000000..ec5dacbf0 Binary files /dev/null and b/indra/newview/skins/gemini/textures/avatar_sound.tga differ diff --git a/indra/newview/skins/gemini/textures/avatar_typing.tga b/indra/newview/skins/gemini/textures/avatar_typing.tga new file mode 100644 index 000000000..2c549025d Binary files /dev/null and b/indra/newview/skins/gemini/textures/avatar_typing.tga differ diff --git a/indra/newview/skins/gemini/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga b/indra/newview/skins/gemini/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga new file mode 100644 index 000000000..7358e86d3 Binary files /dev/null and b/indra/newview/skins/gemini/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga differ diff --git a/indra/newview/skins/gemini/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/gemini/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..4ca322e2b Binary files /dev/null and b/indra/newview/skins/gemini/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/gemini/textures/black.tga b/indra/newview/skins/gemini/textures/black.tga new file mode 100644 index 000000000..e69be0893 Binary files /dev/null and b/indra/newview/skins/gemini/textures/black.tga differ diff --git a/indra/newview/skins/gemini/textures/btn_chatbar.tga b/indra/newview/skins/gemini/textures/btn_chatbar.tga new file mode 100644 index 000000000..4c16c3acc Binary files /dev/null and b/indra/newview/skins/gemini/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/gemini/textures/btn_chatbar_selected.tga b/indra/newview/skins/gemini/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..ab0c5d77b Binary files /dev/null and b/indra/newview/skins/gemini/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/gemini/textures/button_anim_pause.tga b/indra/newview/skins/gemini/textures/button_anim_pause.tga new file mode 100644 index 000000000..955bd561f Binary files /dev/null and b/indra/newview/skins/gemini/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/gemini/textures/button_anim_pause_disabled.tga b/indra/newview/skins/gemini/textures/button_anim_pause_disabled.tga new file mode 100644 index 000000000..a24871e44 Binary files /dev/null and b/indra/newview/skins/gemini/textures/button_anim_pause_disabled.tga differ diff --git a/indra/newview/skins/gemini/textures/button_anim_pause_selected.tga b/indra/newview/skins/gemini/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..c70e39a1a Binary files /dev/null and b/indra/newview/skins/gemini/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/gemini/textures/button_anim_play.tga b/indra/newview/skins/gemini/textures/button_anim_play.tga new file mode 100644 index 000000000..7fe54bb47 Binary files /dev/null and b/indra/newview/skins/gemini/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/gemini/textures/button_anim_play_disabled.tga b/indra/newview/skins/gemini/textures/button_anim_play_disabled.tga new file mode 100644 index 000000000..c969ff696 Binary files /dev/null and b/indra/newview/skins/gemini/textures/button_anim_play_disabled.tga differ diff --git a/indra/newview/skins/gemini/textures/button_anim_play_selected.tga b/indra/newview/skins/gemini/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..627b61a4c Binary files /dev/null and b/indra/newview/skins/gemini/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/gemini/textures/button_anim_stop.tga b/indra/newview/skins/gemini/textures/button_anim_stop.tga new file mode 100644 index 000000000..f5d5f47db Binary files /dev/null and b/indra/newview/skins/gemini/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/gemini/textures/button_anim_stop_disabled.tga b/indra/newview/skins/gemini/textures/button_anim_stop_disabled.tga new file mode 100644 index 000000000..25f6287dc Binary files /dev/null and b/indra/newview/skins/gemini/textures/button_anim_stop_disabled.tga differ diff --git a/indra/newview/skins/gemini/textures/button_anim_stop_selected.tga b/indra/newview/skins/gemini/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..b11a317ac Binary files /dev/null and b/indra/newview/skins/gemini/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/gemini/textures/button_disabled_32x128.tga b/indra/newview/skins/gemini/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..7bb8648a7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/gemini/textures/button_enabled_32x128.tga b/indra/newview/skins/gemini/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..a6fab50f8 Binary files /dev/null and b/indra/newview/skins/gemini/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/gemini/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/gemini/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..a93ae11f9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/gemini/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/gemini/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..7df167711 Binary files /dev/null and b/indra/newview/skins/gemini/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/gemini/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/gemini/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..4672546c4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/gemini/textures/ca7609c6-6ec6-32d9-332e-0d8f437ef644.tga b/indra/newview/skins/gemini/textures/ca7609c6-6ec6-32d9-332e-0d8f437ef644.tga new file mode 100644 index 000000000..0dbb8fda4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/ca7609c6-6ec6-32d9-332e-0d8f437ef644.tga differ diff --git a/indra/newview/skins/gemini/textures/cam_rotate_in.tga b/indra/newview/skins/gemini/textures/cam_rotate_in.tga new file mode 100644 index 000000000..06e9b6a88 Binary files /dev/null and b/indra/newview/skins/gemini/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/gemini/textures/cam_rotate_out.tga b/indra/newview/skins/gemini/textures/cam_rotate_out.tga new file mode 100644 index 000000000..becd1f149 Binary files /dev/null and b/indra/newview/skins/gemini/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/gemini/textures/cam_tracking_in.tga b/indra/newview/skins/gemini/textures/cam_tracking_in.tga new file mode 100644 index 000000000..dbf3578e3 Binary files /dev/null and b/indra/newview/skins/gemini/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/gemini/textures/cam_tracking_out.tga b/indra/newview/skins/gemini/textures/cam_tracking_out.tga new file mode 100644 index 000000000..21593585d Binary files /dev/null and b/indra/newview/skins/gemini/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/gemini/textures/cam_zoom_minus_in.tga b/indra/newview/skins/gemini/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..ae4dbce7d Binary files /dev/null and b/indra/newview/skins/gemini/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/gemini/textures/cam_zoom_out.tga b/indra/newview/skins/gemini/textures/cam_zoom_out.tga new file mode 100644 index 000000000..30cd4a636 Binary files /dev/null and b/indra/newview/skins/gemini/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/gemini/textures/cam_zoom_plus_in.tga b/indra/newview/skins/gemini/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..1af847c9e Binary files /dev/null and b/indra/newview/skins/gemini/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/gemini/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/gemini/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..a31d5e5db Binary files /dev/null and b/indra/newview/skins/gemini/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/gemini/textures/checkbox_disabled_false.tga b/indra/newview/skins/gemini/textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..d44a00be6 Binary files /dev/null and b/indra/newview/skins/gemini/textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/gemini/textures/checkbox_disabled_true.tga b/indra/newview/skins/gemini/textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..cbeba01e3 Binary files /dev/null and b/indra/newview/skins/gemini/textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/gemini/textures/checkbox_enabled_false.tga b/indra/newview/skins/gemini/textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..f1a14561a Binary files /dev/null and b/indra/newview/skins/gemini/textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/gemini/textures/checkbox_enabled_true.tga b/indra/newview/skins/gemini/textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..8b9e7a933 Binary files /dev/null and b/indra/newview/skins/gemini/textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/gemini/textures/checkerboard_transparency_bg.png b/indra/newview/skins/gemini/textures/checkerboard_transparency_bg.png new file mode 100644 index 000000000..9a1693520 Binary files /dev/null and b/indra/newview/skins/gemini/textures/checkerboard_transparency_bg.png differ diff --git a/indra/newview/skins/gemini/textures/circle.tga b/indra/newview/skins/gemini/textures/circle.tga new file mode 100644 index 000000000..d7097e3a3 Binary files /dev/null and b/indra/newview/skins/gemini/textures/circle.tga differ diff --git a/indra/newview/skins/gemini/textures/close_in_blue.tga b/indra/newview/skins/gemini/textures/close_in_blue.tga new file mode 100644 index 000000000..8200eba32 Binary files /dev/null and b/indra/newview/skins/gemini/textures/close_in_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/close_inactive_blue.tga b/indra/newview/skins/gemini/textures/close_inactive_blue.tga new file mode 100644 index 000000000..191c5d3e8 Binary files /dev/null and b/indra/newview/skins/gemini/textures/close_inactive_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/closebox.tga b/indra/newview/skins/gemini/textures/closebox.tga new file mode 100644 index 000000000..294d4fb24 Binary files /dev/null and b/indra/newview/skins/gemini/textures/closebox.tga differ diff --git a/indra/newview/skins/gemini/textures/color_swatch_alpha.tga b/indra/newview/skins/gemini/textures/color_swatch_alpha.tga new file mode 100644 index 000000000..814a004e6 Binary files /dev/null and b/indra/newview/skins/gemini/textures/color_swatch_alpha.tga differ diff --git a/indra/newview/skins/gemini/textures/combobox_arrow.tga b/indra/newview/skins/gemini/textures/combobox_arrow.tga new file mode 100644 index 000000000..ad08f32bb Binary files /dev/null and b/indra/newview/skins/gemini/textures/combobox_arrow.tga differ diff --git a/indra/newview/skins/gemini/textures/crosshairs.tga b/indra/newview/skins/gemini/textures/crosshairs.tga new file mode 100644 index 000000000..ac4d63dc5 Binary files /dev/null and b/indra/newview/skins/gemini/textures/crosshairs.tga differ diff --git a/indra/newview/skins/gemini/textures/darkgray.tga b/indra/newview/skins/gemini/textures/darkgray.tga new file mode 100644 index 000000000..2063d685a Binary files /dev/null and b/indra/newview/skins/gemini/textures/darkgray.tga differ diff --git a/indra/newview/skins/gemini/textures/direction_arrow.tga b/indra/newview/skins/gemini/textures/direction_arrow.tga new file mode 100644 index 000000000..f3ef1068c Binary files /dev/null and b/indra/newview/skins/gemini/textures/direction_arrow.tga differ diff --git a/indra/newview/skins/gemini/textures/down_arrow.png b/indra/newview/skins/gemini/textures/down_arrow.png new file mode 100644 index 000000000..155f80c97 Binary files /dev/null and b/indra/newview/skins/gemini/textures/down_arrow.png differ diff --git a/indra/newview/skins/gemini/textures/e3369e02-93e1-43dc-b9c0-4533db0963d0.tga b/indra/newview/skins/gemini/textures/e3369e02-93e1-43dc-b9c0-4533db0963d0.tga new file mode 100644 index 000000000..0d127f946 Binary files /dev/null and b/indra/newview/skins/gemini/textures/e3369e02-93e1-43dc-b9c0-4533db0963d0.tga differ diff --git a/indra/newview/skins/gemini/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga b/indra/newview/skins/gemini/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga new file mode 100644 index 000000000..6fdba25d4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga differ diff --git a/indra/newview/skins/gemini/textures/eye_button_active.tga b/indra/newview/skins/gemini/textures/eye_button_active.tga new file mode 100644 index 000000000..4dfdfc25d Binary files /dev/null and b/indra/newview/skins/gemini/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/gemini/textures/eye_button_inactive.tga b/indra/newview/skins/gemini/textures/eye_button_inactive.tga new file mode 100644 index 000000000..dbe24ae89 Binary files /dev/null and b/indra/newview/skins/gemini/textures/eye_button_inactive.tga differ diff --git a/indra/newview/skins/gemini/textures/f9bbb2fe-584b-4c01-86fc-599c69534c1b.tga b/indra/newview/skins/gemini/textures/f9bbb2fe-584b-4c01-86fc-599c69534c1b.tga new file mode 100644 index 000000000..3706c96e0 Binary files /dev/null and b/indra/newview/skins/gemini/textures/f9bbb2fe-584b-4c01-86fc-599c69534c1b.tga differ diff --git a/indra/newview/skins/gemini/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/gemini/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..33355262d Binary files /dev/null and b/indra/newview/skins/gemini/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/gemini/textures/ff_edit_mine.tga b/indra/newview/skins/gemini/textures/ff_edit_mine.tga new file mode 100644 index 000000000..8f0c35b98 Binary files /dev/null and b/indra/newview/skins/gemini/textures/ff_edit_mine.tga differ diff --git a/indra/newview/skins/gemini/textures/ff_edit_mine_button.tga b/indra/newview/skins/gemini/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..07627a65c Binary files /dev/null and b/indra/newview/skins/gemini/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/gemini/textures/ff_edit_theirs.tga b/indra/newview/skins/gemini/textures/ff_edit_theirs.tga new file mode 100644 index 000000000..005ada2de Binary files /dev/null and b/indra/newview/skins/gemini/textures/ff_edit_theirs.tga differ diff --git a/indra/newview/skins/gemini/textures/ff_edit_theirs_button.tga b/indra/newview/skins/gemini/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..798ef641d Binary files /dev/null and b/indra/newview/skins/gemini/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/gemini/textures/ff_online_status_button.tga b/indra/newview/skins/gemini/textures/ff_online_status_button.tga new file mode 100644 index 000000000..9076df6b9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/gemini/textures/ff_visible_map.tga b/indra/newview/skins/gemini/textures/ff_visible_map.tga new file mode 100644 index 000000000..a4dad78da Binary files /dev/null and b/indra/newview/skins/gemini/textures/ff_visible_map.tga differ diff --git a/indra/newview/skins/gemini/textures/ff_visible_map_button.tga b/indra/newview/skins/gemini/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..8d13adee3 Binary files /dev/null and b/indra/newview/skins/gemini/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/gemini/textures/ff_visible_online.tga b/indra/newview/skins/gemini/textures/ff_visible_online.tga new file mode 100644 index 000000000..74e3a4e31 Binary files /dev/null and b/indra/newview/skins/gemini/textures/ff_visible_online.tga differ diff --git a/indra/newview/skins/gemini/textures/ff_visible_online_button.tga b/indra/newview/skins/gemini/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..08a6cbedd Binary files /dev/null and b/indra/newview/skins/gemini/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/gemini/textures/flag_blue.tga b/indra/newview/skins/gemini/textures/flag_blue.tga new file mode 100644 index 000000000..e61e7a912 Binary files /dev/null and b/indra/newview/skins/gemini/textures/flag_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/flag_green.tga b/indra/newview/skins/gemini/textures/flag_green.tga new file mode 100644 index 000000000..5f0f05c24 Binary files /dev/null and b/indra/newview/skins/gemini/textures/flag_green.tga differ diff --git a/indra/newview/skins/gemini/textures/flag_orange.tga b/indra/newview/skins/gemini/textures/flag_orange.tga new file mode 100644 index 000000000..6e73c31b5 Binary files /dev/null and b/indra/newview/skins/gemini/textures/flag_orange.tga differ diff --git a/indra/newview/skins/gemini/textures/flag_pink.tga b/indra/newview/skins/gemini/textures/flag_pink.tga new file mode 100644 index 000000000..ccf52b9a4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/flag_pink.tga differ diff --git a/indra/newview/skins/gemini/textures/flag_purple.tga b/indra/newview/skins/gemini/textures/flag_purple.tga new file mode 100644 index 000000000..3ef8f0921 Binary files /dev/null and b/indra/newview/skins/gemini/textures/flag_purple.tga differ diff --git a/indra/newview/skins/gemini/textures/flag_red.tga b/indra/newview/skins/gemini/textures/flag_red.tga new file mode 100644 index 000000000..87afb595a Binary files /dev/null and b/indra/newview/skins/gemini/textures/flag_red.tga differ diff --git a/indra/newview/skins/gemini/textures/flag_yellow.tga b/indra/newview/skins/gemini/textures/flag_yellow.tga new file mode 100644 index 000000000..4c4a64768 Binary files /dev/null and b/indra/newview/skins/gemini/textures/flag_yellow.tga differ diff --git a/indra/newview/skins/gemini/textures/flyout_btn_left.tga b/indra/newview/skins/gemini/textures/flyout_btn_left.tga new file mode 100644 index 000000000..a17a87d59 Binary files /dev/null and b/indra/newview/skins/gemini/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/gemini/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/gemini/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..917e49ef4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/gemini/textures/flyout_btn_left_selected.tga b/indra/newview/skins/gemini/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..448b4ed36 Binary files /dev/null and b/indra/newview/skins/gemini/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/gemini/textures/flyout_btn_right.tga b/indra/newview/skins/gemini/textures/flyout_btn_right.tga new file mode 100644 index 000000000..eb7180ba9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/gemini/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/gemini/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..800c56941 Binary files /dev/null and b/indra/newview/skins/gemini/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/gemini/textures/flyout_btn_right_selected.tga b/indra/newview/skins/gemini/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..40fd65f66 Binary files /dev/null and b/indra/newview/skins/gemini/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/gemini/textures/folder_arrow.tga b/indra/newview/skins/gemini/textures/folder_arrow.tga new file mode 100644 index 000000000..77d470731 Binary files /dev/null and b/indra/newview/skins/gemini/textures/folder_arrow.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_active-speakers-dot-lvl0.tga b/indra/newview/skins/gemini/textures/icn_active-speakers-dot-lvl0.tga new file mode 100644 index 000000000..35846cef3 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_active-speakers-dot-lvl0.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_active-speakers-dot-lvl1.tga b/indra/newview/skins/gemini/textures/icn_active-speakers-dot-lvl1.tga new file mode 100644 index 000000000..1f9f564fa Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_active-speakers-dot-lvl1.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_active-speakers-dot-lvl2.tga b/indra/newview/skins/gemini/textures/icn_active-speakers-dot-lvl2.tga new file mode 100644 index 000000000..b2e5609f1 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_active-speakers-dot-lvl2.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_active-speakers-typing1.tga b/indra/newview/skins/gemini/textures/icn_active-speakers-typing1.tga new file mode 100644 index 000000000..3706c96e0 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_active-speakers-typing1.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_active-speakers-typing2.tga b/indra/newview/skins/gemini/textures/icn_active-speakers-typing2.tga new file mode 100644 index 000000000..0d127f946 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_active-speakers-typing2.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_active-speakers-typing3.tga b/indra/newview/skins/gemini/textures/icn_active-speakers-typing3.tga new file mode 100644 index 000000000..031b3ad34 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_active-speakers-typing3.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_chatbar.tga b/indra/newview/skins/gemini/textures/icn_chatbar.tga new file mode 100644 index 000000000..5d4fd41bc Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_chatbar.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_clear_lineeditor.tga b/indra/newview/skins/gemini/textures/icn_clear_lineeditor.tga new file mode 100644 index 000000000..8cd8310c6 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_clear_lineeditor.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_label_media.tga b/indra/newview/skins/gemini/textures/icn_label_media.tga new file mode 100644 index 000000000..6f5090a9c Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_label_media.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_label_music.tga b/indra/newview/skins/gemini/textures/icn_label_music.tga new file mode 100644 index 000000000..31120a5a9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_label_web.tga b/indra/newview/skins/gemini/textures/icn_label_web.tga new file mode 100644 index 000000000..512264179 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_media-pause.tga b/indra/newview/skins/gemini/textures/icn_media-pause.tga new file mode 100644 index 000000000..0b5313763 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_media-pause_active.tga b/indra/newview/skins/gemini/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..c70e39a1a Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_media-pause_disabled.tga b/indra/newview/skins/gemini/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..a24871e44 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_media-pause_enabled.tga b/indra/newview/skins/gemini/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..955bd561f Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_media-play.tga b/indra/newview/skins/gemini/textures/icn_media-play.tga new file mode 100644 index 000000000..c7b0bcb68 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_media-play.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_media-play_active.tga b/indra/newview/skins/gemini/textures/icn_media-play_active.tga new file mode 100644 index 000000000..627b61a4c Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_media-play_active.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_media-play_disabled.tga b/indra/newview/skins/gemini/textures/icn_media-play_disabled.tga new file mode 100644 index 000000000..c969ff696 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_media-play_disabled.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_media-play_enabled.tga b/indra/newview/skins/gemini/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..7fe54bb47 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_media-stop_active.tga b/indra/newview/skins/gemini/textures/icn_media-stop_active.tga new file mode 100644 index 000000000..b11a317ac Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_media-stop_active.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_media-stop_disabled.tga b/indra/newview/skins/gemini/textures/icn_media-stop_disabled.tga new file mode 100644 index 000000000..25f6287dc Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_media-stop_disabled.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_media-stop_enabled.tga b/indra/newview/skins/gemini/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..f5d5f47db Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_media.tga b/indra/newview/skins/gemini/textures/icn_media.tga new file mode 100644 index 000000000..6f5090a9c Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_media.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_media_movie.tga b/indra/newview/skins/gemini/textures/icn_media_movie.tga new file mode 100644 index 000000000..6f5090a9c Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_media_web.tga b/indra/newview/skins/gemini/textures/icn_media_web.tga new file mode 100644 index 000000000..512264179 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_music-pause.tga b/indra/newview/skins/gemini/textures/icn_music-pause.tga new file mode 100644 index 000000000..0af8e25d1 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_music-play.tga b/indra/newview/skins/gemini/textures/icn_music-play.tga new file mode 100644 index 000000000..8e4a70cf5 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_music.tga b/indra/newview/skins/gemini/textures/icn_music.tga new file mode 100644 index 000000000..31120a5a9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_music.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_pause.tga b/indra/newview/skins/gemini/textures/icn_pause.tga new file mode 100644 index 000000000..5107993ec Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_pause.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_play.tga b/indra/newview/skins/gemini/textures/icn_play.tga new file mode 100644 index 000000000..eb2c0f319 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_play.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_rounded-text-field.tga b/indra/newview/skins/gemini/textures/icn_rounded-text-field.tga new file mode 100644 index 000000000..7da504f93 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_rounded-text-field.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_scrollbar.tga b/indra/newview/skins/gemini/textures/icn_scrollbar.tga new file mode 100644 index 000000000..a19a8a5d1 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_scrollbar.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_scrollbar_bg.tga b/indra/newview/skins/gemini/textures/icn_scrollbar_bg.tga new file mode 100644 index 000000000..1e4bc7a8a Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_scrollbar_bg.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_scrollbar_thumb.tga b/indra/newview/skins/gemini/textures/icn_scrollbar_thumb.tga new file mode 100644 index 000000000..d63c31472 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_scrollbar_thumb.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_slide-groove_dark.tga b/indra/newview/skins/gemini/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..ce0bd07e3 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_slide-highlight.tga b/indra/newview/skins/gemini/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..5b971e679 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/gemini/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..e4c1b0980 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/gemini/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..a7d29a14b Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_speaker_dark.tga b/indra/newview/skins/gemini/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..f2f24efb0 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_stop.tga b/indra/newview/skins/gemini/textures/icn_stop.tga new file mode 100644 index 000000000..7a53bccc2 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_stop.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_textfield_enabled.tga b/indra/newview/skins/gemini/textures/icn_textfield_enabled.tga new file mode 100644 index 000000000..fc681a195 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_textfield_enabled.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_toolbar_build.tga b/indra/newview/skins/gemini/textures/icn_toolbar_build.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_toolbar_build.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_toolbar_fly.tga b/indra/newview/skins/gemini/textures/icn_toolbar_fly.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_toolbar_fly.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_toolbar_inventory.tga b/indra/newview/skins/gemini/textures/icn_toolbar_inventory.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_toolbar_inventory.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_toolbar_map.tga b/indra/newview/skins/gemini/textures/icn_toolbar_map.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_toolbar_map.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_toolbar_minimap.tga b/indra/newview/skins/gemini/textures/icn_toolbar_minimap.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_toolbar_minimap.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_toolbar_search.tga b/indra/newview/skins/gemini/textures/icn_toolbar_search.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_toolbar_search.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_toolbar_snapshot.tga b/indra/newview/skins/gemini/textures/icn_toolbar_snapshot.tga new file mode 100644 index 000000000..e1a814b1e Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_toolbar_snapshot.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_voice-call-end.tga b/indra/newview/skins/gemini/textures/icn_voice-call-end.tga new file mode 100644 index 000000000..2da4e856b Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_voice-call-end.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_voice-call-start.tga b/indra/newview/skins/gemini/textures/icn_voice-call-start.tga new file mode 100644 index 000000000..07701cb5a Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_voice-call-start.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_voice-groupfocus.tga b/indra/newview/skins/gemini/textures/icn_voice-groupfocus.tga new file mode 100644 index 000000000..9f48d4609 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_voice-groupfocus.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_voice-localchat.tga b/indra/newview/skins/gemini/textures/icn_voice-localchat.tga new file mode 100644 index 000000000..7cf267eaf Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_voice-localchat.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_voice-pvtfocus.tga b/indra/newview/skins/gemini/textures/icn_voice-pvtfocus.tga new file mode 100644 index 000000000..abadb09aa Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_voice-pvtfocus.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_voice_ptt-off.tga b/indra/newview/skins/gemini/textures/icn_voice_ptt-off.tga new file mode 100644 index 000000000..15ecbdff9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_voice_ptt-off.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_voice_ptt-on-lvl1.tga b/indra/newview/skins/gemini/textures/icn_voice_ptt-on-lvl1.tga new file mode 100644 index 000000000..ae72af131 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_voice_ptt-on-lvl1.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_voice_ptt-on-lvl2.tga b/indra/newview/skins/gemini/textures/icn_voice_ptt-on-lvl2.tga new file mode 100644 index 000000000..4dfc2dd29 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_voice_ptt-on-lvl2.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_voice_ptt-on-lvl3.tga b/indra/newview/skins/gemini/textures/icn_voice_ptt-on-lvl3.tga new file mode 100644 index 000000000..018b0bef4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_voice_ptt-on-lvl3.tga differ diff --git a/indra/newview/skins/gemini/textures/icn_voice_ptt-on.tga b/indra/newview/skins/gemini/textures/icn_voice_ptt-on.tga new file mode 100644 index 000000000..9eb643110 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icn_voice_ptt-on.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_auction.tga b/indra/newview/skins/gemini/textures/icon_auction.tga new file mode 100644 index 000000000..d121833b4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_auction.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_avatar_expand.png b/indra/newview/skins/gemini/textures/icon_avatar_expand.png new file mode 100644 index 000000000..47698e9eb Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_avatar_expand.png differ diff --git a/indra/newview/skins/gemini/textures/icon_avatar_offline.tga b/indra/newview/skins/gemini/textures/icon_avatar_offline.tga new file mode 100644 index 000000000..cfa95eb00 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_avatar_offline.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_avatar_online.tga b/indra/newview/skins/gemini/textures/icon_avatar_online.tga new file mode 100644 index 000000000..45221213e Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_avatar_online.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_day_cycle.tga b/indra/newview/skins/gemini/textures/icon_day_cycle.tga new file mode 100644 index 000000000..2d5dee1e9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_day_cycle.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_diurnal.tga b/indra/newview/skins/gemini/textures/icon_diurnal.tga new file mode 100644 index 000000000..fc720c826 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_diurnal.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_event.tga b/indra/newview/skins/gemini/textures/icon_event.tga new file mode 100644 index 000000000..7805dbce6 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_event.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_event_mature.tga b/indra/newview/skins/gemini/textures/icon_event_mature.tga new file mode 100644 index 000000000..61c879bc9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_event_mature.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_for_sale.tga b/indra/newview/skins/gemini/textures/icon_for_sale.tga new file mode 100644 index 000000000..455b1aeb1 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_for_sale.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_group.tga b/indra/newview/skins/gemini/textures/icon_group.tga new file mode 100644 index 000000000..22122d6cf Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_group.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_groupnotice.tga b/indra/newview/skins/gemini/textures/icon_groupnotice.tga new file mode 100644 index 000000000..edf2c6180 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_groupnotice.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_groupnoticeinventory.tga b/indra/newview/skins/gemini/textures/icon_groupnoticeinventory.tga new file mode 100644 index 000000000..f31390632 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_groupnoticeinventory.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_lock.tga b/indra/newview/skins/gemini/textures/icon_lock.tga new file mode 100644 index 000000000..23521aa11 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_lock.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_place.tga b/indra/newview/skins/gemini/textures/icon_place.tga new file mode 100644 index 000000000..2170c9849 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_place.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_popular.tga b/indra/newview/skins/gemini/textures/icon_popular.tga new file mode 100644 index 000000000..f1165b8aa Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_popular.tga differ diff --git a/indra/newview/skins/gemini/textures/icon_top_pick.tga b/indra/newview/skins/gemini/textures/icon_top_pick.tga new file mode 100644 index 000000000..7fe119a81 Binary files /dev/null and b/indra/newview/skins/gemini/textures/icon_top_pick.tga differ diff --git a/indra/newview/skins/gemini/textures/info_error.tga b/indra/newview/skins/gemini/textures/info_error.tga new file mode 100644 index 000000000..d5d71ad95 Binary files /dev/null and b/indra/newview/skins/gemini/textures/info_error.tga differ diff --git a/indra/newview/skins/gemini/textures/info_fetching.tga b/indra/newview/skins/gemini/textures/info_fetching.tga new file mode 100644 index 000000000..d9faa4014 Binary files /dev/null and b/indra/newview/skins/gemini/textures/info_fetching.tga differ diff --git a/indra/newview/skins/gemini/textures/info_unknown.tga b/indra/newview/skins/gemini/textures/info_unknown.tga new file mode 100644 index 000000000..b04e4b064 Binary files /dev/null and b/indra/newview/skins/gemini/textures/info_unknown.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_animation.tga b/indra/newview/skins/gemini/textures/inv_folder_animation.tga new file mode 100644 index 000000000..1b4df7a2d Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_animation.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_bodypart.tga b/indra/newview/skins/gemini/textures/inv_folder_bodypart.tga new file mode 100644 index 000000000..abcb1bda7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_bodypart.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_callingcard.tga b/indra/newview/skins/gemini/textures/inv_folder_callingcard.tga new file mode 100644 index 000000000..db7d8f7b0 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_callingcard.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_clothing.tga b/indra/newview/skins/gemini/textures/inv_folder_clothing.tga new file mode 100644 index 000000000..d214789cb Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_clothing.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_gesture.tga b/indra/newview/skins/gemini/textures/inv_folder_gesture.tga new file mode 100644 index 000000000..83accbb1e Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_gesture.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_landmark.tga b/indra/newview/skins/gemini/textures/inv_folder_landmark.tga new file mode 100644 index 000000000..6923dd228 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_landmark.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_lostandfound.tga b/indra/newview/skins/gemini/textures/inv_folder_lostandfound.tga new file mode 100644 index 000000000..67f9a9a83 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_lostandfound.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_notecard.tga b/indra/newview/skins/gemini/textures/inv_folder_notecard.tga new file mode 100644 index 000000000..400ef3cc4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_notecard.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_object.tga b/indra/newview/skins/gemini/textures/inv_folder_object.tga new file mode 100644 index 000000000..c3d04bf27 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_object.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_plain_closed.tga b/indra/newview/skins/gemini/textures/inv_folder_plain_closed.tga new file mode 100644 index 000000000..e351836e2 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_plain_closed.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_plain_open.tga b/indra/newview/skins/gemini/textures/inv_folder_plain_open.tga new file mode 100644 index 000000000..7bc80347b Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_plain_open.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_script.tga b/indra/newview/skins/gemini/textures/inv_folder_script.tga new file mode 100644 index 000000000..3e1a164da Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_script.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_snapshot.tga b/indra/newview/skins/gemini/textures/inv_folder_snapshot.tga new file mode 100644 index 000000000..d32538d9c Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_snapshot.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_sound.tga b/indra/newview/skins/gemini/textures/inv_folder_sound.tga new file mode 100644 index 000000000..5e54c4774 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_sound.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_texture.tga b/indra/newview/skins/gemini/textures/inv_folder_texture.tga new file mode 100644 index 000000000..4fe75d07d Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_texture.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_folder_trash.tga b/indra/newview/skins/gemini/textures/inv_folder_trash.tga new file mode 100644 index 000000000..54043e9cf Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_folder_trash.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_animation.tga b/indra/newview/skins/gemini/textures/inv_item_animation.tga new file mode 100644 index 000000000..2b12b2809 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_animation.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_attach.tga b/indra/newview/skins/gemini/textures/inv_item_attach.tga new file mode 100644 index 000000000..053899332 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_attach.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_callingcard_offline.tga b/indra/newview/skins/gemini/textures/inv_item_callingcard_offline.tga new file mode 100644 index 000000000..44222d306 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_callingcard_offline.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_callingcard_online.tga b/indra/newview/skins/gemini/textures/inv_item_callingcard_online.tga new file mode 100644 index 000000000..42be4d2e1 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_callingcard_online.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_clothing.tga b/indra/newview/skins/gemini/textures/inv_item_clothing.tga new file mode 100644 index 000000000..4c4c9391b Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_clothing.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_eyes.tga b/indra/newview/skins/gemini/textures/inv_item_eyes.tga new file mode 100644 index 000000000..053ffbe23 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_eyes.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_gesture.tga b/indra/newview/skins/gemini/textures/inv_item_gesture.tga new file mode 100644 index 000000000..52ac90c90 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_gesture.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_gloves.tga b/indra/newview/skins/gemini/textures/inv_item_gloves.tga new file mode 100644 index 000000000..26041711b Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_gloves.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_hair.tga b/indra/newview/skins/gemini/textures/inv_item_hair.tga new file mode 100644 index 000000000..03156a7b7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_hair.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_jacket.tga b/indra/newview/skins/gemini/textures/inv_item_jacket.tga new file mode 100644 index 000000000..f37c593d8 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_jacket.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_landmark.tga b/indra/newview/skins/gemini/textures/inv_item_landmark.tga new file mode 100644 index 000000000..c161deb38 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_landmark.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_landmark_visited.tga b/indra/newview/skins/gemini/textures/inv_item_landmark_visited.tga new file mode 100644 index 000000000..372a0f63f Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_landmark_visited.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_notecard.tga b/indra/newview/skins/gemini/textures/inv_item_notecard.tga new file mode 100644 index 000000000..2534d1b2a Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_notecard.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_object.tga b/indra/newview/skins/gemini/textures/inv_item_object.tga new file mode 100644 index 000000000..edad15fdc Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_object.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_object_multi.tga b/indra/newview/skins/gemini/textures/inv_item_object_multi.tga new file mode 100644 index 000000000..7af666b61 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_object_multi.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_pants.tga b/indra/newview/skins/gemini/textures/inv_item_pants.tga new file mode 100644 index 000000000..ec3246ea7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_pants.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_script.tga b/indra/newview/skins/gemini/textures/inv_item_script.tga new file mode 100644 index 000000000..e396d0986 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_script.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_script_dangerous.tga b/indra/newview/skins/gemini/textures/inv_item_script_dangerous.tga new file mode 100644 index 000000000..1ee742a8b Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_script_dangerous.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_shape.tga b/indra/newview/skins/gemini/textures/inv_item_shape.tga new file mode 100644 index 000000000..5d9db4e44 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_shape.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_shirt.tga b/indra/newview/skins/gemini/textures/inv_item_shirt.tga new file mode 100644 index 000000000..2e1c627da Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_shirt.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_shoes.tga b/indra/newview/skins/gemini/textures/inv_item_shoes.tga new file mode 100644 index 000000000..ae93bfe70 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_shoes.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_skin.tga b/indra/newview/skins/gemini/textures/inv_item_skin.tga new file mode 100644 index 000000000..f0d7f2059 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_skin.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_skirt.tga b/indra/newview/skins/gemini/textures/inv_item_skirt.tga new file mode 100644 index 000000000..d8f397285 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_skirt.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_snapshot.tga b/indra/newview/skins/gemini/textures/inv_item_snapshot.tga new file mode 100644 index 000000000..c9d41a68d Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_snapshot.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_socks.tga b/indra/newview/skins/gemini/textures/inv_item_socks.tga new file mode 100644 index 000000000..dabcf6d82 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_socks.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_sound.tga b/indra/newview/skins/gemini/textures/inv_item_sound.tga new file mode 100644 index 000000000..efa113226 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_sound.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_texture.tga b/indra/newview/skins/gemini/textures/inv_item_texture.tga new file mode 100644 index 000000000..fc5a42061 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_texture.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_underpants.tga b/indra/newview/skins/gemini/textures/inv_item_underpants.tga new file mode 100644 index 000000000..e712f9c5d Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_underpants.tga differ diff --git a/indra/newview/skins/gemini/textures/inv_item_undershirt.tga b/indra/newview/skins/gemini/textures/inv_item_undershirt.tga new file mode 100644 index 000000000..c7b4aae78 Binary files /dev/null and b/indra/newview/skins/gemini/textures/inv_item_undershirt.tga differ diff --git a/indra/newview/skins/gemini/textures/lag_status_critical.tga b/indra/newview/skins/gemini/textures/lag_status_critical.tga new file mode 100644 index 000000000..bbc71d9e7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/lag_status_critical.tga differ diff --git a/indra/newview/skins/gemini/textures/lag_status_good.tga b/indra/newview/skins/gemini/textures/lag_status_good.tga new file mode 100644 index 000000000..680ba90f1 Binary files /dev/null and b/indra/newview/skins/gemini/textures/lag_status_good.tga differ diff --git a/indra/newview/skins/gemini/textures/lag_status_warning.tga b/indra/newview/skins/gemini/textures/lag_status_warning.tga new file mode 100644 index 000000000..13ce3cc39 Binary files /dev/null and b/indra/newview/skins/gemini/textures/lag_status_warning.tga differ diff --git a/indra/newview/skins/gemini/textures/legend.tga b/indra/newview/skins/gemini/textures/legend.tga new file mode 100644 index 000000000..0dbb8fda4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/legend.tga differ diff --git a/indra/newview/skins/gemini/textures/lightgray.tga b/indra/newview/skins/gemini/textures/lightgray.tga new file mode 100644 index 000000000..2063d685a Binary files /dev/null and b/indra/newview/skins/gemini/textures/lightgray.tga differ diff --git a/indra/newview/skins/gemini/textures/map_avatar_16.tga b/indra/newview/skins/gemini/textures/map_avatar_16.tga new file mode 100644 index 000000000..ce129e359 Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_avatar_16.tga differ diff --git a/indra/newview/skins/gemini/textures/map_avatar_32.tga b/indra/newview/skins/gemini/textures/map_avatar_32.tga new file mode 100644 index 000000000..aebeab409 Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_avatar_32.tga differ diff --git a/indra/newview/skins/gemini/textures/map_avatar_8.tga b/indra/newview/skins/gemini/textures/map_avatar_8.tga new file mode 100644 index 000000000..28552f223 Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_avatar_8.tga differ diff --git a/indra/newview/skins/gemini/textures/map_avatar_above_32.tga b/indra/newview/skins/gemini/textures/map_avatar_above_32.tga new file mode 100644 index 000000000..65bd0561a Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_avatar_above_32.tga differ diff --git a/indra/newview/skins/gemini/textures/map_avatar_above_8.tga b/indra/newview/skins/gemini/textures/map_avatar_above_8.tga new file mode 100644 index 000000000..193428e53 Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_avatar_above_8.tga differ diff --git a/indra/newview/skins/gemini/textures/map_avatar_below_32.tga b/indra/newview/skins/gemini/textures/map_avatar_below_32.tga new file mode 100644 index 000000000..496c44b36 Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_avatar_below_32.tga differ diff --git a/indra/newview/skins/gemini/textures/map_avatar_below_8.tga b/indra/newview/skins/gemini/textures/map_avatar_below_8.tga new file mode 100644 index 000000000..9e14bfab9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_avatar_below_8.tga differ diff --git a/indra/newview/skins/gemini/textures/map_avatar_you_32.tga b/indra/newview/skins/gemini/textures/map_avatar_you_32.tga new file mode 100644 index 000000000..782207efd Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_avatar_you_32.tga differ diff --git a/indra/newview/skins/gemini/textures/map_avatar_you_8.tga b/indra/newview/skins/gemini/textures/map_avatar_you_8.tga new file mode 100644 index 000000000..61f319fd9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_avatar_you_8.tga differ diff --git a/indra/newview/skins/gemini/textures/map_event.tga b/indra/newview/skins/gemini/textures/map_event.tga new file mode 100644 index 000000000..c229b379a Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_event.tga differ diff --git a/indra/newview/skins/gemini/textures/map_event_mature.tga b/indra/newview/skins/gemini/textures/map_event_mature.tga new file mode 100644 index 000000000..61c879bc9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_event_mature.tga differ diff --git a/indra/newview/skins/gemini/textures/map_home.tga b/indra/newview/skins/gemini/textures/map_home.tga new file mode 100644 index 000000000..7478de371 Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_home.tga differ diff --git a/indra/newview/skins/gemini/textures/map_infohub.tga b/indra/newview/skins/gemini/textures/map_infohub.tga new file mode 100644 index 000000000..d0134fa5f Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_infohub.tga differ diff --git a/indra/newview/skins/gemini/textures/map_telehub.tga b/indra/newview/skins/gemini/textures/map_telehub.tga new file mode 100644 index 000000000..ef63a3eb7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_telehub.tga differ diff --git a/indra/newview/skins/gemini/textures/map_track_16.tga b/indra/newview/skins/gemini/textures/map_track_16.tga new file mode 100644 index 000000000..451ce24cf Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_track_16.tga differ diff --git a/indra/newview/skins/gemini/textures/map_track_8.tga b/indra/newview/skins/gemini/textures/map_track_8.tga new file mode 100644 index 000000000..53425ff45 Binary files /dev/null and b/indra/newview/skins/gemini/textures/map_track_8.tga differ diff --git a/indra/newview/skins/gemini/textures/media_icon.tga b/indra/newview/skins/gemini/textures/media_icon.tga new file mode 100644 index 000000000..289520cde Binary files /dev/null and b/indra/newview/skins/gemini/textures/media_icon.tga differ diff --git a/indra/newview/skins/gemini/textures/minimize.tga b/indra/newview/skins/gemini/textures/minimize.tga new file mode 100644 index 000000000..a21fd9148 Binary files /dev/null and b/indra/newview/skins/gemini/textures/minimize.tga differ diff --git a/indra/newview/skins/gemini/textures/minimize_inactive.tga b/indra/newview/skins/gemini/textures/minimize_inactive.tga new file mode 100644 index 000000000..fcd62aa35 Binary files /dev/null and b/indra/newview/skins/gemini/textures/minimize_inactive.tga differ diff --git a/indra/newview/skins/gemini/textures/minimize_pressed.tga b/indra/newview/skins/gemini/textures/minimize_pressed.tga new file mode 100644 index 000000000..0061dd5f5 Binary files /dev/null and b/indra/newview/skins/gemini/textures/minimize_pressed.tga differ diff --git a/indra/newview/skins/gemini/textures/missing_asset.tga b/indra/newview/skins/gemini/textures/missing_asset.tga new file mode 100644 index 000000000..9a43f4db5 Binary files /dev/null and b/indra/newview/skins/gemini/textures/missing_asset.tga differ diff --git a/indra/newview/skins/gemini/textures/move_backward_in.tga b/indra/newview/skins/gemini/textures/move_backward_in.tga new file mode 100644 index 000000000..6a20f9d87 Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/gemini/textures/move_backward_out.tga b/indra/newview/skins/gemini/textures/move_backward_out.tga new file mode 100644 index 000000000..4ec091fc4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/gemini/textures/move_down_in.tga b/indra/newview/skins/gemini/textures/move_down_in.tga new file mode 100644 index 000000000..4abfc72b7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_down_in.tga differ diff --git a/indra/newview/skins/gemini/textures/move_down_out.tga b/indra/newview/skins/gemini/textures/move_down_out.tga new file mode 100644 index 000000000..8af4f12ba Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_down_out.tga differ diff --git a/indra/newview/skins/gemini/textures/move_forward_in.tga b/indra/newview/skins/gemini/textures/move_forward_in.tga new file mode 100644 index 000000000..bdaa7b4a2 Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/gemini/textures/move_forward_out.tga b/indra/newview/skins/gemini/textures/move_forward_out.tga new file mode 100644 index 000000000..7aa345bc7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/gemini/textures/move_left_in.tga b/indra/newview/skins/gemini/textures/move_left_in.tga new file mode 100644 index 000000000..4a283969a Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_left_in.tga differ diff --git a/indra/newview/skins/gemini/textures/move_left_out.tga b/indra/newview/skins/gemini/textures/move_left_out.tga new file mode 100644 index 000000000..b391bddf8 Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_left_out.tga differ diff --git a/indra/newview/skins/gemini/textures/move_right_in.tga b/indra/newview/skins/gemini/textures/move_right_in.tga new file mode 100644 index 000000000..b1c33e22d Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_right_in.tga differ diff --git a/indra/newview/skins/gemini/textures/move_right_out.tga b/indra/newview/skins/gemini/textures/move_right_out.tga new file mode 100644 index 000000000..c7446e7a0 Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_right_out.tga differ diff --git a/indra/newview/skins/gemini/textures/move_turn_left_in.tga b/indra/newview/skins/gemini/textures/move_turn_left_in.tga new file mode 100644 index 000000000..ae6217b86 Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/gemini/textures/move_turn_left_out.tga b/indra/newview/skins/gemini/textures/move_turn_left_out.tga new file mode 100644 index 000000000..ab3abb6e6 Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/gemini/textures/move_turn_right_in.tga b/indra/newview/skins/gemini/textures/move_turn_right_in.tga new file mode 100644 index 000000000..8bfea0770 Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/gemini/textures/move_turn_right_out.tga b/indra/newview/skins/gemini/textures/move_turn_right_out.tga new file mode 100644 index 000000000..0ddb51a9a Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/gemini/textures/move_up_in.tga b/indra/newview/skins/gemini/textures/move_up_in.tga new file mode 100644 index 000000000..876ce4ac0 Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_up_in.tga differ diff --git a/indra/newview/skins/gemini/textures/move_up_out.tga b/indra/newview/skins/gemini/textures/move_up_out.tga new file mode 100644 index 000000000..7c0493626 Binary files /dev/null and b/indra/newview/skins/gemini/textures/move_up_out.tga differ diff --git a/indra/newview/skins/gemini/textures/music_icon.tga b/indra/newview/skins/gemini/textures/music_icon.tga new file mode 100644 index 000000000..aeaff02e0 Binary files /dev/null and b/indra/newview/skins/gemini/textures/music_icon.tga differ diff --git a/indra/newview/skins/gemini/textures/mute_icon.tga b/indra/newview/skins/gemini/textures/mute_icon.tga new file mode 100644 index 000000000..879b9e618 Binary files /dev/null and b/indra/newview/skins/gemini/textures/mute_icon.tga differ diff --git a/indra/newview/skins/gemini/textures/notify_box_icon.tga b/indra/newview/skins/gemini/textures/notify_box_icon.tga new file mode 100644 index 000000000..0672c89ee Binary files /dev/null and b/indra/newview/skins/gemini/textures/notify_box_icon.tga differ diff --git a/indra/newview/skins/gemini/textures/notify_caution_icon.tga b/indra/newview/skins/gemini/textures/notify_caution_icon.tga new file mode 100644 index 000000000..abc23d1d7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/notify_caution_icon.tga differ diff --git a/indra/newview/skins/gemini/textures/notify_next.png b/indra/newview/skins/gemini/textures/notify_next.png new file mode 100644 index 000000000..6faa14a99 Binary files /dev/null and b/indra/newview/skins/gemini/textures/notify_next.png differ diff --git a/indra/newview/skins/gemini/textures/notify_tip_icon.tga b/indra/newview/skins/gemini/textures/notify_tip_icon.tga new file mode 100644 index 000000000..f79a634a9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/notify_tip_icon.tga differ diff --git a/indra/newview/skins/gemini/textures/object_cone.tga b/indra/newview/skins/gemini/textures/object_cone.tga new file mode 100644 index 000000000..f21a0338a Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_cone.tga differ diff --git a/indra/newview/skins/gemini/textures/object_cone_active.tga b/indra/newview/skins/gemini/textures/object_cone_active.tga new file mode 100644 index 000000000..6f071c542 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_cone_active.tga differ diff --git a/indra/newview/skins/gemini/textures/object_cube.tga b/indra/newview/skins/gemini/textures/object_cube.tga new file mode 100644 index 000000000..f8a9caedd Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_cube.tga differ diff --git a/indra/newview/skins/gemini/textures/object_cube_active.tga b/indra/newview/skins/gemini/textures/object_cube_active.tga new file mode 100644 index 000000000..4f87127c7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_cube_active.tga differ diff --git a/indra/newview/skins/gemini/textures/object_cylinder.tga b/indra/newview/skins/gemini/textures/object_cylinder.tga new file mode 100644 index 000000000..f28c3cb8d Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_cylinder.tga differ diff --git a/indra/newview/skins/gemini/textures/object_cylinder_active.tga b/indra/newview/skins/gemini/textures/object_cylinder_active.tga new file mode 100644 index 000000000..0b8451821 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_cylinder_active.tga differ diff --git a/indra/newview/skins/gemini/textures/object_grass.tga b/indra/newview/skins/gemini/textures/object_grass.tga new file mode 100644 index 000000000..b0deccca9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_grass.tga differ diff --git a/indra/newview/skins/gemini/textures/object_grass_active.tga b/indra/newview/skins/gemini/textures/object_grass_active.tga new file mode 100644 index 000000000..b9fef1282 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_grass_active.tga differ diff --git a/indra/newview/skins/gemini/textures/object_hemi_cone.tga b/indra/newview/skins/gemini/textures/object_hemi_cone.tga new file mode 100644 index 000000000..94657773b Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_hemi_cone.tga differ diff --git a/indra/newview/skins/gemini/textures/object_hemi_cone_active.tga b/indra/newview/skins/gemini/textures/object_hemi_cone_active.tga new file mode 100644 index 000000000..f52a10f07 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_hemi_cone_active.tga differ diff --git a/indra/newview/skins/gemini/textures/object_hemi_cylinder.tga b/indra/newview/skins/gemini/textures/object_hemi_cylinder.tga new file mode 100644 index 000000000..db7132bad Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_hemi_cylinder.tga differ diff --git a/indra/newview/skins/gemini/textures/object_hemi_cylinder_active.tga b/indra/newview/skins/gemini/textures/object_hemi_cylinder_active.tga new file mode 100644 index 000000000..e1b1d6a6d Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_hemi_cylinder_active.tga differ diff --git a/indra/newview/skins/gemini/textures/object_hemi_sphere.tga b/indra/newview/skins/gemini/textures/object_hemi_sphere.tga new file mode 100644 index 000000000..0ce884c37 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_hemi_sphere.tga differ diff --git a/indra/newview/skins/gemini/textures/object_hemi_sphere_active.tga b/indra/newview/skins/gemini/textures/object_hemi_sphere_active.tga new file mode 100644 index 000000000..4c7282e2a Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_hemi_sphere_active.tga differ diff --git a/indra/newview/skins/gemini/textures/object_prism.tga b/indra/newview/skins/gemini/textures/object_prism.tga new file mode 100644 index 000000000..0b25d112f Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_prism.tga differ diff --git a/indra/newview/skins/gemini/textures/object_prism_active.tga b/indra/newview/skins/gemini/textures/object_prism_active.tga new file mode 100644 index 000000000..99c664739 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_prism_active.tga differ diff --git a/indra/newview/skins/gemini/textures/object_pyramid.tga b/indra/newview/skins/gemini/textures/object_pyramid.tga new file mode 100644 index 000000000..f9ecde878 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_pyramid.tga differ diff --git a/indra/newview/skins/gemini/textures/object_pyramid_active.tga b/indra/newview/skins/gemini/textures/object_pyramid_active.tga new file mode 100644 index 000000000..2c714d578 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_pyramid_active.tga differ diff --git a/indra/newview/skins/gemini/textures/object_ring.tga b/indra/newview/skins/gemini/textures/object_ring.tga new file mode 100644 index 000000000..c82566e53 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_ring.tga differ diff --git a/indra/newview/skins/gemini/textures/object_ring_active.tga b/indra/newview/skins/gemini/textures/object_ring_active.tga new file mode 100644 index 000000000..a935d5e65 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_ring_active.tga differ diff --git a/indra/newview/skins/gemini/textures/object_sphere.tga b/indra/newview/skins/gemini/textures/object_sphere.tga new file mode 100644 index 000000000..22440ed3f Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_sphere.tga differ diff --git a/indra/newview/skins/gemini/textures/object_sphere_active.tga b/indra/newview/skins/gemini/textures/object_sphere_active.tga new file mode 100644 index 000000000..13092e279 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_sphere_active.tga differ diff --git a/indra/newview/skins/gemini/textures/object_tetrahedron.tga b/indra/newview/skins/gemini/textures/object_tetrahedron.tga new file mode 100644 index 000000000..e61ee4ec6 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_tetrahedron.tga differ diff --git a/indra/newview/skins/gemini/textures/object_tetrahedron_active.tga b/indra/newview/skins/gemini/textures/object_tetrahedron_active.tga new file mode 100644 index 000000000..95a50dc01 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_tetrahedron_active.tga differ diff --git a/indra/newview/skins/gemini/textures/object_torus.tga b/indra/newview/skins/gemini/textures/object_torus.tga new file mode 100644 index 000000000..e01e22524 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_torus.tga differ diff --git a/indra/newview/skins/gemini/textures/object_torus_active.tga b/indra/newview/skins/gemini/textures/object_torus_active.tga new file mode 100644 index 000000000..055247634 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_torus_active.tga differ diff --git a/indra/newview/skins/gemini/textures/object_tree.tga b/indra/newview/skins/gemini/textures/object_tree.tga new file mode 100644 index 000000000..0b5a1c7df Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_tree.tga differ diff --git a/indra/newview/skins/gemini/textures/object_tree_active.tga b/indra/newview/skins/gemini/textures/object_tree_active.tga new file mode 100644 index 000000000..d730fea31 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_tree_active.tga differ diff --git a/indra/newview/skins/gemini/textures/object_tube.tga b/indra/newview/skins/gemini/textures/object_tube.tga new file mode 100644 index 000000000..be8a34182 Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_tube.tga differ diff --git a/indra/newview/skins/gemini/textures/object_tube_active.tga b/indra/newview/skins/gemini/textures/object_tube_active.tga new file mode 100644 index 000000000..a9efb3afa Binary files /dev/null and b/indra/newview/skins/gemini/textures/object_tube_active.tga differ diff --git a/indra/newview/skins/gemini/textures/payment_info_charter.tga b/indra/newview/skins/gemini/textures/payment_info_charter.tga new file mode 100644 index 000000000..6205da7b4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/payment_info_charter.tga differ diff --git a/indra/newview/skins/gemini/textures/payment_info_filled.tga b/indra/newview/skins/gemini/textures/payment_info_filled.tga new file mode 100644 index 000000000..65e619692 Binary files /dev/null and b/indra/newview/skins/gemini/textures/payment_info_filled.tga differ diff --git a/indra/newview/skins/gemini/textures/payment_info_used.tga b/indra/newview/skins/gemini/textures/payment_info_used.tga new file mode 100644 index 000000000..345b3b302 Binary files /dev/null and b/indra/newview/skins/gemini/textures/payment_info_used.tga differ diff --git a/indra/newview/skins/gemini/textures/preview.png b/indra/newview/skins/gemini/textures/preview.png new file mode 100644 index 000000000..156da5364 Binary files /dev/null and b/indra/newview/skins/gemini/textures/preview.png differ diff --git a/indra/newview/skins/gemini/textures/progress_fill.tga b/indra/newview/skins/gemini/textures/progress_fill.tga new file mode 100644 index 000000000..9cf5270be Binary files /dev/null and b/indra/newview/skins/gemini/textures/progress_fill.tga differ diff --git a/indra/newview/skins/gemini/textures/progressbar_fill.tga b/indra/newview/skins/gemini/textures/progressbar_fill.tga new file mode 100644 index 000000000..c6aaf862f Binary files /dev/null and b/indra/newview/skins/gemini/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/gemini/textures/progressbar_track.tga b/indra/newview/skins/gemini/textures/progressbar_track.tga new file mode 100644 index 000000000..7a5b5d5b9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/gemini/textures/propertyline.tga b/indra/newview/skins/gemini/textures/propertyline.tga new file mode 100644 index 000000000..0c504eea7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/propertyline.tga differ diff --git a/indra/newview/skins/gemini/textures/ptt_lock_off.tga b/indra/newview/skins/gemini/textures/ptt_lock_off.tga new file mode 100644 index 000000000..09c479807 Binary files /dev/null and b/indra/newview/skins/gemini/textures/ptt_lock_off.tga differ diff --git a/indra/newview/skins/gemini/textures/ptt_lock_on.tga b/indra/newview/skins/gemini/textures/ptt_lock_on.tga new file mode 100644 index 000000000..dfb8ce284 Binary files /dev/null and b/indra/newview/skins/gemini/textures/ptt_lock_on.tga differ diff --git a/indra/newview/skins/gemini/textures/radio_active_false.tga b/indra/newview/skins/gemini/textures/radio_active_false.tga new file mode 100644 index 000000000..edcf411c1 Binary files /dev/null and b/indra/newview/skins/gemini/textures/radio_active_false.tga differ diff --git a/indra/newview/skins/gemini/textures/radio_active_true.tga b/indra/newview/skins/gemini/textures/radio_active_true.tga new file mode 100644 index 000000000..adfc155a7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/radio_active_true.tga differ diff --git a/indra/newview/skins/gemini/textures/radio_inactive_false.tga b/indra/newview/skins/gemini/textures/radio_inactive_false.tga new file mode 100644 index 000000000..748f00935 Binary files /dev/null and b/indra/newview/skins/gemini/textures/radio_inactive_false.tga differ diff --git a/indra/newview/skins/gemini/textures/radio_inactive_true.tga b/indra/newview/skins/gemini/textures/radio_inactive_true.tga new file mode 100644 index 000000000..98c9eb88b Binary files /dev/null and b/indra/newview/skins/gemini/textures/radio_inactive_true.tga differ diff --git a/indra/newview/skins/gemini/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/gemini/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..984393840 Binary files /dev/null and b/indra/newview/skins/gemini/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/restore.tga b/indra/newview/skins/gemini/textures/restore.tga new file mode 100644 index 000000000..87910e288 Binary files /dev/null and b/indra/newview/skins/gemini/textures/restore.tga differ diff --git a/indra/newview/skins/gemini/textures/restore_inactive.tga b/indra/newview/skins/gemini/textures/restore_inactive.tga new file mode 100644 index 000000000..dbbec7ea1 Binary files /dev/null and b/indra/newview/skins/gemini/textures/restore_inactive.tga differ diff --git a/indra/newview/skins/gemini/textures/restore_pressed.tga b/indra/newview/skins/gemini/textures/restore_pressed.tga new file mode 100644 index 000000000..1922ca881 Binary files /dev/null and b/indra/newview/skins/gemini/textures/restore_pressed.tga differ diff --git a/indra/newview/skins/gemini/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/gemini/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..5e7379950 Binary files /dev/null and b/indra/newview/skins/gemini/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/scrollbutton_down_out_blue.tga b/indra/newview/skins/gemini/textures/scrollbutton_down_out_blue.tga new file mode 100644 index 000000000..c5cf9bf9f Binary files /dev/null and b/indra/newview/skins/gemini/textures/scrollbutton_down_out_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/gemini/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..480842a3b Binary files /dev/null and b/indra/newview/skins/gemini/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/scrollbutton_left_out_blue.tga b/indra/newview/skins/gemini/textures/scrollbutton_left_out_blue.tga new file mode 100644 index 000000000..71aad797b Binary files /dev/null and b/indra/newview/skins/gemini/textures/scrollbutton_left_out_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/gemini/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..6d7f13bfc Binary files /dev/null and b/indra/newview/skins/gemini/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/scrollbutton_right_out_blue.tga b/indra/newview/skins/gemini/textures/scrollbutton_right_out_blue.tga new file mode 100644 index 000000000..0edc59af3 Binary files /dev/null and b/indra/newview/skins/gemini/textures/scrollbutton_right_out_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/gemini/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..4c6a8fe41 Binary files /dev/null and b/indra/newview/skins/gemini/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/scrollbutton_up_out_blue.tga b/indra/newview/skins/gemini/textures/scrollbutton_up_out_blue.tga new file mode 100644 index 000000000..5cd5dff46 Binary files /dev/null and b/indra/newview/skins/gemini/textures/scrollbutton_up_out_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/skin_thumbnail_dark.png b/indra/newview/skins/gemini/textures/skin_thumbnail_dark.png new file mode 100644 index 000000000..2cac82923 Binary files /dev/null and b/indra/newview/skins/gemini/textures/skin_thumbnail_dark.png differ diff --git a/indra/newview/skins/gemini/textures/skin_thumbnail_default.png b/indra/newview/skins/gemini/textures/skin_thumbnail_default.png new file mode 100644 index 000000000..40fe64bb4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/skin_thumbnail_default.png differ diff --git a/indra/newview/skins/gemini/textures/skin_thumbnail_emerald.png b/indra/newview/skins/gemini/textures/skin_thumbnail_emerald.png new file mode 100644 index 000000000..ab35bc0ab Binary files /dev/null and b/indra/newview/skins/gemini/textures/skin_thumbnail_emerald.png differ diff --git a/indra/newview/skins/gemini/textures/skin_thumbnail_gred.png b/indra/newview/skins/gemini/textures/skin_thumbnail_gred.png new file mode 100644 index 000000000..827135499 Binary files /dev/null and b/indra/newview/skins/gemini/textures/skin_thumbnail_gred.png differ diff --git a/indra/newview/skins/gemini/textures/skin_thumbnail_pslgreen.png b/indra/newview/skins/gemini/textures/skin_thumbnail_pslgreen.png new file mode 100644 index 000000000..73e117e9f Binary files /dev/null and b/indra/newview/skins/gemini/textures/skin_thumbnail_pslgreen.png differ diff --git a/indra/newview/skins/gemini/textures/skin_thumbnail_pslpurple.png b/indra/newview/skins/gemini/textures/skin_thumbnail_pslpurple.png new file mode 100644 index 000000000..902ad82b1 Binary files /dev/null and b/indra/newview/skins/gemini/textures/skin_thumbnail_pslpurple.png differ diff --git a/indra/newview/skins/gemini/textures/skin_thumbnail_ruby.png b/indra/newview/skins/gemini/textures/skin_thumbnail_ruby.png new file mode 100644 index 000000000..d45e75ad0 Binary files /dev/null and b/indra/newview/skins/gemini/textures/skin_thumbnail_ruby.png differ diff --git a/indra/newview/skins/gemini/textures/skin_thumbnail_saphire.png b/indra/newview/skins/gemini/textures/skin_thumbnail_saphire.png new file mode 100644 index 000000000..7ec8e1991 Binary files /dev/null and b/indra/newview/skins/gemini/textures/skin_thumbnail_saphire.png differ diff --git a/indra/newview/skins/gemini/textures/skin_thumbnail_silver.png b/indra/newview/skins/gemini/textures/skin_thumbnail_silver.png new file mode 100644 index 000000000..51707bb9d Binary files /dev/null and b/indra/newview/skins/gemini/textures/skin_thumbnail_silver.png differ diff --git a/indra/newview/skins/gemini/textures/slim_icon_16_viewer.tga b/indra/newview/skins/gemini/textures/slim_icon_16_viewer.tga new file mode 100644 index 000000000..552181d36 Binary files /dev/null and b/indra/newview/skins/gemini/textures/slim_icon_16_viewer.tga differ diff --git a/indra/newview/skins/gemini/textures/sm_rounded_corners_simple.tga b/indra/newview/skins/gemini/textures/sm_rounded_corners_simple.tga new file mode 100644 index 000000000..85157e461 Binary files /dev/null and b/indra/newview/skins/gemini/textures/sm_rounded_corners_simple.tga differ diff --git a/indra/newview/skins/gemini/textures/smicon_warn.tga b/indra/newview/skins/gemini/textures/smicon_warn.tga new file mode 100644 index 000000000..90ccaa07e Binary files /dev/null and b/indra/newview/skins/gemini/textures/smicon_warn.tga differ diff --git a/indra/newview/skins/gemini/textures/spacer24.tga b/indra/newview/skins/gemini/textures/spacer24.tga new file mode 100644 index 000000000..c7cab6b38 Binary files /dev/null and b/indra/newview/skins/gemini/textures/spacer24.tga differ diff --git a/indra/newview/skins/gemini/textures/spacer35.tga b/indra/newview/skins/gemini/textures/spacer35.tga new file mode 100644 index 000000000..b88bc6680 Binary files /dev/null and b/indra/newview/skins/gemini/textures/spacer35.tga differ diff --git a/indra/newview/skins/gemini/textures/spin_down_in_blue.tga b/indra/newview/skins/gemini/textures/spin_down_in_blue.tga new file mode 100644 index 000000000..b9eb36ba9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/spin_down_in_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/spin_down_out_blue.tga b/indra/newview/skins/gemini/textures/spin_down_out_blue.tga new file mode 100644 index 000000000..c9cb5e8bf Binary files /dev/null and b/indra/newview/skins/gemini/textures/spin_down_out_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/spin_up_in_blue.tga b/indra/newview/skins/gemini/textures/spin_up_in_blue.tga new file mode 100644 index 000000000..b604b8843 Binary files /dev/null and b/indra/newview/skins/gemini/textures/spin_up_in_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/spin_up_out_blue.tga b/indra/newview/skins/gemini/textures/spin_up_out_blue.tga new file mode 100644 index 000000000..4e3941e45 Binary files /dev/null and b/indra/newview/skins/gemini/textures/spin_up_out_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/square_btn_32x128.tga b/indra/newview/skins/gemini/textures/square_btn_32x128.tga new file mode 100644 index 000000000..d8591d144 Binary files /dev/null and b/indra/newview/skins/gemini/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/gemini/textures/square_btn_selected_32x128.tga b/indra/newview/skins/gemini/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..f830e7f1a Binary files /dev/null and b/indra/newview/skins/gemini/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/gemini/textures/startup_logo.j2c b/indra/newview/skins/gemini/textures/startup_logo.j2c new file mode 100644 index 000000000..589e69a6b Binary files /dev/null and b/indra/newview/skins/gemini/textures/startup_logo.j2c differ diff --git a/indra/newview/skins/gemini/textures/status_busy.tga b/indra/newview/skins/gemini/textures/status_busy.tga new file mode 100644 index 000000000..7743d9c7b Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_busy.tga differ diff --git a/indra/newview/skins/gemini/textures/status_buy_currency.tga b/indra/newview/skins/gemini/textures/status_buy_currency.tga new file mode 100644 index 000000000..d72078aa0 Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/gemini/textures/status_buy_currency_pressed.tga b/indra/newview/skins/gemini/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..acb047932 Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/gemini/textures/status_buy_land.tga b/indra/newview/skins/gemini/textures/status_buy_land.tga new file mode 100644 index 000000000..490383717 Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/gemini/textures/status_buy_land_pressed.tga b/indra/newview/skins/gemini/textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..af5d1896f Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/gemini/textures/status_health.tga b/indra/newview/skins/gemini/textures/status_health.tga new file mode 100644 index 000000000..3d5f455fc Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_health.tga differ diff --git a/indra/newview/skins/gemini/textures/status_money.tga b/indra/newview/skins/gemini/textures/status_money.tga new file mode 100644 index 000000000..d5be31fc6 Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_money.tga differ diff --git a/indra/newview/skins/gemini/textures/status_no_build.tga b/indra/newview/skins/gemini/textures/status_no_build.tga new file mode 100644 index 000000000..8e471e185 Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_no_build.tga differ diff --git a/indra/newview/skins/gemini/textures/status_no_fly.tga b/indra/newview/skins/gemini/textures/status_no_fly.tga new file mode 100644 index 000000000..cde2700ab Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_no_fly.tga differ diff --git a/indra/newview/skins/gemini/textures/status_no_push.tga b/indra/newview/skins/gemini/textures/status_no_push.tga new file mode 100644 index 000000000..5ccbfa50f Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_no_push.tga differ diff --git a/indra/newview/skins/gemini/textures/status_no_scripts.tga b/indra/newview/skins/gemini/textures/status_no_scripts.tga new file mode 100644 index 000000000..52ecdb1b8 Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_no_scripts.tga differ diff --git a/indra/newview/skins/gemini/textures/status_no_voice.tga b/indra/newview/skins/gemini/textures/status_no_voice.tga new file mode 100644 index 000000000..4ab4498cb Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_no_voice.tga differ diff --git a/indra/newview/skins/gemini/textures/status_script_debug.tga b/indra/newview/skins/gemini/textures/status_script_debug.tga new file mode 100644 index 000000000..6fca61483 Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_script_debug.tga differ diff --git a/indra/newview/skins/gemini/textures/status_search.tga b/indra/newview/skins/gemini/textures/status_search.tga new file mode 100644 index 000000000..3ac10c476 Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_search.tga differ diff --git a/indra/newview/skins/gemini/textures/status_search_btn.png b/indra/newview/skins/gemini/textures/status_search_btn.png new file mode 100644 index 000000000..67f61332b Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_search_btn.png differ diff --git a/indra/newview/skins/gemini/textures/status_search_btn_pressed.png b/indra/newview/skins/gemini/textures/status_search_btn_pressed.png new file mode 100644 index 000000000..1437273d3 Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_search_btn_pressed.png differ diff --git a/indra/newview/skins/gemini/textures/status_voice.tga b/indra/newview/skins/gemini/textures/status_voice.tga new file mode 100644 index 000000000..4ab4498cb Binary files /dev/null and b/indra/newview/skins/gemini/textures/status_voice.tga differ diff --git a/indra/newview/skins/gemini/textures/tab_background_darkpurple.tga b/indra/newview/skins/gemini/textures/tab_background_darkpurple.tga new file mode 100644 index 000000000..8169f9869 Binary files /dev/null and b/indra/newview/skins/gemini/textures/tab_background_darkpurple.tga differ diff --git a/indra/newview/skins/gemini/textures/tab_background_lightgrey.tga b/indra/newview/skins/gemini/textures/tab_background_lightgrey.tga new file mode 100644 index 000000000..c2f8818f7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/tab_background_lightgrey.tga differ diff --git a/indra/newview/skins/gemini/textures/tab_background_purple.tga b/indra/newview/skins/gemini/textures/tab_background_purple.tga new file mode 100644 index 000000000..aa01b3cb6 Binary files /dev/null and b/indra/newview/skins/gemini/textures/tab_background_purple.tga differ diff --git a/indra/newview/skins/gemini/textures/tab_bottom_blue.tga b/indra/newview/skins/gemini/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..0fc6b0424 Binary files /dev/null and b/indra/newview/skins/gemini/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/gemini/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..b991521f4 Binary files /dev/null and b/indra/newview/skins/gemini/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/tab_left.tga b/indra/newview/skins/gemini/textures/tab_left.tga new file mode 100644 index 000000000..5552bec46 Binary files /dev/null and b/indra/newview/skins/gemini/textures/tab_left.tga differ diff --git a/indra/newview/skins/gemini/textures/tab_left_selected.tga b/indra/newview/skins/gemini/textures/tab_left_selected.tga new file mode 100644 index 000000000..82386cc9d Binary files /dev/null and b/indra/newview/skins/gemini/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/gemini/textures/tab_top_blue.tga b/indra/newview/skins/gemini/textures/tab_top_blue.tga new file mode 100644 index 000000000..3f63a4f30 Binary files /dev/null and b/indra/newview/skins/gemini/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/tab_top_selected_blue.tga b/indra/newview/skins/gemini/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..3ff4821d6 Binary files /dev/null and b/indra/newview/skins/gemini/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/gemini/textures/tabarea.tga b/indra/newview/skins/gemini/textures/tabarea.tga new file mode 100644 index 000000000..5517aebfc Binary files /dev/null and b/indra/newview/skins/gemini/textures/tabarea.tga differ diff --git a/indra/newview/skins/gemini/textures/tearoff_pressed.tga b/indra/newview/skins/gemini/textures/tearoff_pressed.tga new file mode 100644 index 000000000..620d109de Binary files /dev/null and b/indra/newview/skins/gemini/textures/tearoff_pressed.tga differ diff --git a/indra/newview/skins/gemini/textures/tearoffbox.tga b/indra/newview/skins/gemini/textures/tearoffbox.tga new file mode 100644 index 000000000..0670d2e91 Binary files /dev/null and b/indra/newview/skins/gemini/textures/tearoffbox.tga differ diff --git a/indra/newview/skins/gemini/textures/textures.xml b/indra/newview/skins/gemini/textures/textures.xml new file mode 100644 index 000000000..2c4b0cbea --- /dev/null +++ b/indra/newview/skins/gemini/textures/textures.xml @@ -0,0 +1,382 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/gemini/textures/tool_dozer.tga b/indra/newview/skins/gemini/textures/tool_dozer.tga new file mode 100644 index 000000000..6f196ab2f Binary files /dev/null and b/indra/newview/skins/gemini/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/gemini/textures/tool_dozer_active.tga b/indra/newview/skins/gemini/textures/tool_dozer_active.tga new file mode 100644 index 000000000..f618a6cf3 Binary files /dev/null and b/indra/newview/skins/gemini/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/gemini/textures/tool_zoom.tga b/indra/newview/skins/gemini/textures/tool_zoom.tga new file mode 100644 index 000000000..d48798ee5 Binary files /dev/null and b/indra/newview/skins/gemini/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/gemini/textures/tool_zoom_active.tga b/indra/newview/skins/gemini/textures/tool_zoom_active.tga new file mode 100644 index 000000000..698887066 Binary files /dev/null and b/indra/newview/skins/gemini/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/gemini/textures/toolbar_bg.tga b/indra/newview/skins/gemini/textures/toolbar_bg.tga new file mode 100644 index 000000000..3a0577627 Binary files /dev/null and b/indra/newview/skins/gemini/textures/toolbar_bg.tga differ diff --git a/indra/newview/skins/gemini/textures/toolbar_btn_disabled.tga b/indra/newview/skins/gemini/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..7bb8648a7 Binary files /dev/null and b/indra/newview/skins/gemini/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/gemini/textures/toolbar_btn_enabled.tga b/indra/newview/skins/gemini/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..a6fab50f8 Binary files /dev/null and b/indra/newview/skins/gemini/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/gemini/textures/toolbar_btn_selected.tga b/indra/newview/skins/gemini/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..a93ae11f9 Binary files /dev/null and b/indra/newview/skins/gemini/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/gemini/textures/toolbar_tab.tga b/indra/newview/skins/gemini/textures/toolbar_tab.tga new file mode 100644 index 000000000..5ea1a28d2 Binary files /dev/null and b/indra/newview/skins/gemini/textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/gemini/textures/up_arrow.png b/indra/newview/skins/gemini/textures/up_arrow.png new file mode 100644 index 000000000..fe68ad49d Binary files /dev/null and b/indra/newview/skins/gemini/textures/up_arrow.png differ diff --git a/indra/newview/skins/gemini/textures/up_arrow.tga b/indra/newview/skins/gemini/textures/up_arrow.tga new file mode 100644 index 000000000..c2bd8cceb Binary files /dev/null and b/indra/newview/skins/gemini/textures/up_arrow.tga differ diff --git a/indra/newview/skins/gemini/textures/uv_test2.tga b/indra/newview/skins/gemini/textures/uv_test2.tga new file mode 100644 index 000000000..a16000d1e Binary files /dev/null and b/indra/newview/skins/gemini/textures/uv_test2.tga differ diff --git a/indra/newview/skins/gemini/textures/white.tga b/indra/newview/skins/gemini/textures/white.tga new file mode 100644 index 000000000..9fe68631c Binary files /dev/null and b/indra/newview/skins/gemini/textures/white.tga differ diff --git a/indra/newview/skins/gred/License and Credit.txt b/indra/newview/skins/gred/License and Credit.txt new file mode 100644 index 000000000..fe1f04c89 --- /dev/null +++ b/indra/newview/skins/gred/License and Credit.txt @@ -0,0 +1,6 @@ +This skin was modified by JB Kraft from the default linden skin provided. +This skin was modified by Chalice Yao from the default linden skin and JB Kraft's skin. +This skin was modified by LordGregGreg Back from the default linden skin and JB Kraft's skin. + + +All Images and modifications done are provided free to use, modify, and distribute, so long as this infomation is distributed with it. diff --git a/indra/newview/skins/gred/colors_base.xml b/indra/newview/skins/gred/colors_base.xml new file mode 100644 index 000000000..64130c117 --- /dev/null +++ b/indra/newview/skins/gred/colors_base.xml @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/gred/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/gred/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..281a15b51 Binary files /dev/null and b/indra/newview/skins/gred/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/gred/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga b/indra/newview/skins/gred/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga new file mode 100644 index 000000000..3cf64443a Binary files /dev/null and b/indra/newview/skins/gred/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga differ diff --git a/indra/newview/skins/gred/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/gred/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..8818839d3 Binary files /dev/null and b/indra/newview/skins/gred/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/gred/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga b/indra/newview/skins/gred/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga new file mode 100644 index 000000000..788ef1d56 Binary files /dev/null and b/indra/newview/skins/gred/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga differ diff --git a/indra/newview/skins/gred/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga b/indra/newview/skins/gred/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga new file mode 100644 index 000000000..579c621e0 Binary files /dev/null and b/indra/newview/skins/gred/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga differ diff --git a/indra/newview/skins/gred/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/gred/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..420eed2f0 Binary files /dev/null and b/indra/newview/skins/gred/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/gred/textures/btn_chatbar.tga b/indra/newview/skins/gred/textures/btn_chatbar.tga new file mode 100644 index 000000000..58bb3ab87 Binary files /dev/null and b/indra/newview/skins/gred/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/gred/textures/btn_chatbar_selected.tga b/indra/newview/skins/gred/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..a4d78f0c4 Binary files /dev/null and b/indra/newview/skins/gred/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/gred/textures/button_anim_pause.tga b/indra/newview/skins/gred/textures/button_anim_pause.tga new file mode 100644 index 000000000..f733623ef Binary files /dev/null and b/indra/newview/skins/gred/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/gred/textures/button_anim_pause_selected.tga b/indra/newview/skins/gred/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..5b4a1321e Binary files /dev/null and b/indra/newview/skins/gred/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/gred/textures/button_anim_play.tga b/indra/newview/skins/gred/textures/button_anim_play.tga new file mode 100644 index 000000000..f16f7cdd6 Binary files /dev/null and b/indra/newview/skins/gred/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/gred/textures/button_anim_play_selected.tga b/indra/newview/skins/gred/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..229868f0f Binary files /dev/null and b/indra/newview/skins/gred/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/gred/textures/button_anim_stop.tga b/indra/newview/skins/gred/textures/button_anim_stop.tga new file mode 100644 index 000000000..56b11569f Binary files /dev/null and b/indra/newview/skins/gred/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/gred/textures/button_anim_stop_selected.tga b/indra/newview/skins/gred/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..e57c7a71a Binary files /dev/null and b/indra/newview/skins/gred/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/gred/textures/button_disabled_32x128.tga b/indra/newview/skins/gred/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..03a688ad5 Binary files /dev/null and b/indra/newview/skins/gred/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/gred/textures/button_enabled_32x128.tga b/indra/newview/skins/gred/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..261666bc5 Binary files /dev/null and b/indra/newview/skins/gred/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/gred/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/gred/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..6068daf42 Binary files /dev/null and b/indra/newview/skins/gred/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/gred/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/gred/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..32669bee2 Binary files /dev/null and b/indra/newview/skins/gred/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/gred/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/gred/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..cc796502d Binary files /dev/null and b/indra/newview/skins/gred/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/gred/textures/cam_rotate_in.tga b/indra/newview/skins/gred/textures/cam_rotate_in.tga new file mode 100644 index 000000000..d08f98059 Binary files /dev/null and b/indra/newview/skins/gred/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/gred/textures/cam_rotate_out.tga b/indra/newview/skins/gred/textures/cam_rotate_out.tga new file mode 100644 index 000000000..f8f64f1df Binary files /dev/null and b/indra/newview/skins/gred/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/gred/textures/cam_tracking_in.tga b/indra/newview/skins/gred/textures/cam_tracking_in.tga new file mode 100644 index 000000000..562c951be Binary files /dev/null and b/indra/newview/skins/gred/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/gred/textures/cam_tracking_out.tga b/indra/newview/skins/gred/textures/cam_tracking_out.tga new file mode 100644 index 000000000..7835704d1 Binary files /dev/null and b/indra/newview/skins/gred/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/gred/textures/cam_zoom_minus_in.tga b/indra/newview/skins/gred/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..a1da27bf8 Binary files /dev/null and b/indra/newview/skins/gred/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/gred/textures/cam_zoom_out.tga b/indra/newview/skins/gred/textures/cam_zoom_out.tga new file mode 100644 index 000000000..2e9519d72 Binary files /dev/null and b/indra/newview/skins/gred/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/gred/textures/cam_zoom_plus_in.tga b/indra/newview/skins/gred/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..c17d60792 Binary files /dev/null and b/indra/newview/skins/gred/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/gred/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/gred/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..b66e5df26 Binary files /dev/null and b/indra/newview/skins/gred/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/gred/textures/color_swatch_alpha.tga b/indra/newview/skins/gred/textures/color_swatch_alpha.tga new file mode 100644 index 000000000..814a004e6 Binary files /dev/null and b/indra/newview/skins/gred/textures/color_swatch_alpha.tga differ diff --git a/indra/newview/skins/gred/textures/darkgray.tga b/indra/newview/skins/gred/textures/darkgray.tga new file mode 100644 index 000000000..e69be0893 Binary files /dev/null and b/indra/newview/skins/gred/textures/darkgray.tga differ diff --git a/indra/newview/skins/gred/textures/eye_button_active.tga b/indra/newview/skins/gred/textures/eye_button_active.tga new file mode 100644 index 000000000..340b1efed Binary files /dev/null and b/indra/newview/skins/gred/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/gred/textures/eye_button_inactive.tga b/indra/newview/skins/gred/textures/eye_button_inactive.tga new file mode 100644 index 000000000..47d375d51 Binary files /dev/null and b/indra/newview/skins/gred/textures/eye_button_inactive.tga differ diff --git a/indra/newview/skins/gred/textures/ff_edit_mine_button.tga b/indra/newview/skins/gred/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..7c511a26f Binary files /dev/null and b/indra/newview/skins/gred/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/gred/textures/ff_edit_theirs_button.tga b/indra/newview/skins/gred/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..dee5559ae Binary files /dev/null and b/indra/newview/skins/gred/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/gred/textures/ff_visible_map_button.tga b/indra/newview/skins/gred/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..78567f545 Binary files /dev/null and b/indra/newview/skins/gred/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/gred/textures/ff_visible_online_button.tga b/indra/newview/skins/gred/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..b630b1f72 Binary files /dev/null and b/indra/newview/skins/gred/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/gred/textures/flyout_btn_left.tga b/indra/newview/skins/gred/textures/flyout_btn_left.tga new file mode 100644 index 000000000..91ddd89cb Binary files /dev/null and b/indra/newview/skins/gred/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/gred/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/gred/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..183f6cfe2 Binary files /dev/null and b/indra/newview/skins/gred/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/gred/textures/flyout_btn_left_selected.tga b/indra/newview/skins/gred/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..4612c7898 Binary files /dev/null and b/indra/newview/skins/gred/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/gred/textures/flyout_btn_right.tga b/indra/newview/skins/gred/textures/flyout_btn_right.tga new file mode 100644 index 000000000..e674eddb7 Binary files /dev/null and b/indra/newview/skins/gred/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/gred/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/gred/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..1def03407 Binary files /dev/null and b/indra/newview/skins/gred/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/gred/textures/flyout_btn_right_selected.tga b/indra/newview/skins/gred/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..289209cd8 Binary files /dev/null and b/indra/newview/skins/gred/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/gred/textures/folder_arrow.tga b/indra/newview/skins/gred/textures/folder_arrow.tga new file mode 100644 index 000000000..77d470731 Binary files /dev/null and b/indra/newview/skins/gred/textures/folder_arrow.tga differ diff --git a/indra/newview/skins/gred/textures/icn_chatbar.tga b/indra/newview/skins/gred/textures/icn_chatbar.tga new file mode 100644 index 000000000..94fd6dc89 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_chatbar.tga differ diff --git a/indra/newview/skins/gred/textures/icn_media-pause_active.tga b/indra/newview/skins/gred/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..8988829aa Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/gred/textures/icn_media-pause_disabled.tga b/indra/newview/skins/gred/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..4690f4256 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/gred/textures/icn_media-pause_enabled.tga b/indra/newview/skins/gred/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..c01399e27 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/gred/textures/icn_media-play_enabled.tga b/indra/newview/skins/gred/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..accac38b0 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/gred/textures/icn_media-stop_enabled.tga b/indra/newview/skins/gred/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..d935fa317 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/gred/textures/icn_media.tga b/indra/newview/skins/gred/textures/icn_media.tga new file mode 100644 index 000000000..2a035ba5d Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_media.tga differ diff --git a/indra/newview/skins/gred/textures/icn_music.tga b/indra/newview/skins/gred/textures/icn_music.tga new file mode 100644 index 000000000..81da5abcf Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_music.tga differ diff --git a/indra/newview/skins/gred/textures/icn_scrollbar.tga b/indra/newview/skins/gred/textures/icn_scrollbar.tga new file mode 100644 index 000000000..caa0fa750 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_scrollbar.tga differ diff --git a/indra/newview/skins/gred/textures/icn_scrollbar_bg.tga b/indra/newview/skins/gred/textures/icn_scrollbar_bg.tga new file mode 100644 index 000000000..61052eaba Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_scrollbar_bg.tga differ diff --git a/indra/newview/skins/gred/textures/icn_scrollbar_thumb.tga b/indra/newview/skins/gred/textures/icn_scrollbar_thumb.tga new file mode 100644 index 000000000..2e34d4eae Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_scrollbar_thumb.tga differ diff --git a/indra/newview/skins/gred/textures/icn_slide-groove_dark.tga b/indra/newview/skins/gred/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..cb31addc1 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/gred/textures/icn_slide-highlight.tga b/indra/newview/skins/gred/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..f300d9f30 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/gred/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/gred/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..463234507 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/gred/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/gred/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..ca3c0c1c8 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/gred/textures/icn_speaker_dark.tga b/indra/newview/skins/gred/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..5fd5e7cc2 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/gred/textures/icn_toolbar_build.tga b/indra/newview/skins/gred/textures/icn_toolbar_build.tga new file mode 100644 index 000000000..9dad39d44 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_toolbar_build.tga differ diff --git a/indra/newview/skins/gred/textures/icn_toolbar_fly.tga b/indra/newview/skins/gred/textures/icn_toolbar_fly.tga new file mode 100644 index 000000000..8bd422ac5 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_toolbar_fly.tga differ diff --git a/indra/newview/skins/gred/textures/icn_toolbar_inventory.tga b/indra/newview/skins/gred/textures/icn_toolbar_inventory.tga new file mode 100644 index 000000000..b832ebce9 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_toolbar_inventory.tga differ diff --git a/indra/newview/skins/gred/textures/icn_toolbar_map.tga b/indra/newview/skins/gred/textures/icn_toolbar_map.tga new file mode 100644 index 000000000..a100f5784 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_toolbar_map.tga differ diff --git a/indra/newview/skins/gred/textures/icn_toolbar_minimap.tga b/indra/newview/skins/gred/textures/icn_toolbar_minimap.tga new file mode 100644 index 000000000..21149f326 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_toolbar_minimap.tga differ diff --git a/indra/newview/skins/gred/textures/icn_toolbar_radar.tga b/indra/newview/skins/gred/textures/icn_toolbar_radar.tga new file mode 100644 index 000000000..d1a55ed74 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_toolbar_radar.tga differ diff --git a/indra/newview/skins/gred/textures/icn_toolbar_search.tga b/indra/newview/skins/gred/textures/icn_toolbar_search.tga new file mode 100644 index 000000000..2da9704f1 Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_toolbar_search.tga differ diff --git a/indra/newview/skins/gred/textures/icn_toolbar_snapshot.tga b/indra/newview/skins/gred/textures/icn_toolbar_snapshot.tga new file mode 100644 index 000000000..23b97c0eb Binary files /dev/null and b/indra/newview/skins/gred/textures/icn_toolbar_snapshot.tga differ diff --git a/indra/newview/skins/gred/textures/lightgray.tga b/indra/newview/skins/gred/textures/lightgray.tga new file mode 100644 index 000000000..e69be0893 Binary files /dev/null and b/indra/newview/skins/gred/textures/lightgray.tga differ diff --git a/indra/newview/skins/gred/textures/move_backward_in.tga b/indra/newview/skins/gred/textures/move_backward_in.tga new file mode 100644 index 000000000..b64204eb2 Binary files /dev/null and b/indra/newview/skins/gred/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/gred/textures/move_backward_out.tga b/indra/newview/skins/gred/textures/move_backward_out.tga new file mode 100644 index 000000000..1acce4b7b Binary files /dev/null and b/indra/newview/skins/gred/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/gred/textures/move_down_in.tga b/indra/newview/skins/gred/textures/move_down_in.tga new file mode 100644 index 000000000..904e9a8c8 Binary files /dev/null and b/indra/newview/skins/gred/textures/move_down_in.tga differ diff --git a/indra/newview/skins/gred/textures/move_down_out.tga b/indra/newview/skins/gred/textures/move_down_out.tga new file mode 100644 index 000000000..39bcda4c3 Binary files /dev/null and b/indra/newview/skins/gred/textures/move_down_out.tga differ diff --git a/indra/newview/skins/gred/textures/move_forward_in.tga b/indra/newview/skins/gred/textures/move_forward_in.tga new file mode 100644 index 000000000..d41a1e1ed Binary files /dev/null and b/indra/newview/skins/gred/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/gred/textures/move_forward_out.tga b/indra/newview/skins/gred/textures/move_forward_out.tga new file mode 100644 index 000000000..643c26066 Binary files /dev/null and b/indra/newview/skins/gred/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/gred/textures/move_left_in.tga b/indra/newview/skins/gred/textures/move_left_in.tga new file mode 100644 index 000000000..f63ff2d4a Binary files /dev/null and b/indra/newview/skins/gred/textures/move_left_in.tga differ diff --git a/indra/newview/skins/gred/textures/move_left_out.tga b/indra/newview/skins/gred/textures/move_left_out.tga new file mode 100644 index 000000000..775bc151b Binary files /dev/null and b/indra/newview/skins/gred/textures/move_left_out.tga differ diff --git a/indra/newview/skins/gred/textures/move_right_in.tga b/indra/newview/skins/gred/textures/move_right_in.tga new file mode 100644 index 000000000..c85c4c335 Binary files /dev/null and b/indra/newview/skins/gred/textures/move_right_in.tga differ diff --git a/indra/newview/skins/gred/textures/move_right_out.tga b/indra/newview/skins/gred/textures/move_right_out.tga new file mode 100644 index 000000000..729331d99 Binary files /dev/null and b/indra/newview/skins/gred/textures/move_right_out.tga differ diff --git a/indra/newview/skins/gred/textures/move_turn_left_in.tga b/indra/newview/skins/gred/textures/move_turn_left_in.tga new file mode 100644 index 000000000..970b7f2ec Binary files /dev/null and b/indra/newview/skins/gred/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/gred/textures/move_turn_left_out.tga b/indra/newview/skins/gred/textures/move_turn_left_out.tga new file mode 100644 index 000000000..8c1677574 Binary files /dev/null and b/indra/newview/skins/gred/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/gred/textures/move_turn_right_in.tga b/indra/newview/skins/gred/textures/move_turn_right_in.tga new file mode 100644 index 000000000..367deaeb9 Binary files /dev/null and b/indra/newview/skins/gred/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/gred/textures/move_turn_right_out.tga b/indra/newview/skins/gred/textures/move_turn_right_out.tga new file mode 100644 index 000000000..3105adb7b Binary files /dev/null and b/indra/newview/skins/gred/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/gred/textures/move_up_in.tga b/indra/newview/skins/gred/textures/move_up_in.tga new file mode 100644 index 000000000..f62727d90 Binary files /dev/null and b/indra/newview/skins/gred/textures/move_up_in.tga differ diff --git a/indra/newview/skins/gred/textures/move_up_out.tga b/indra/newview/skins/gred/textures/move_up_out.tga new file mode 100644 index 000000000..777b221f8 Binary files /dev/null and b/indra/newview/skins/gred/textures/move_up_out.tga differ diff --git a/indra/newview/skins/gred/textures/notify_next.png b/indra/newview/skins/gred/textures/notify_next.png new file mode 100644 index 000000000..c78f2ed34 Binary files /dev/null and b/indra/newview/skins/gred/textures/notify_next.png differ diff --git a/indra/newview/skins/gred/textures/preview.png b/indra/newview/skins/gred/textures/preview.png new file mode 100644 index 000000000..827135499 Binary files /dev/null and b/indra/newview/skins/gred/textures/preview.png differ diff --git a/indra/newview/skins/gred/textures/progress_fill.tga b/indra/newview/skins/gred/textures/progress_fill.tga new file mode 100644 index 000000000..bbdf5dd0b Binary files /dev/null and b/indra/newview/skins/gred/textures/progress_fill.tga differ diff --git a/indra/newview/skins/gred/textures/progressbar_fill.tga b/indra/newview/skins/gred/textures/progressbar_fill.tga new file mode 100644 index 000000000..7070343c0 Binary files /dev/null and b/indra/newview/skins/gred/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/gred/textures/progressbar_track.tga b/indra/newview/skins/gred/textures/progressbar_track.tga new file mode 100644 index 000000000..3434330c1 Binary files /dev/null and b/indra/newview/skins/gred/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/gred/textures/ptt_lock_off.tga b/indra/newview/skins/gred/textures/ptt_lock_off.tga new file mode 100644 index 000000000..4fd819917 Binary files /dev/null and b/indra/newview/skins/gred/textures/ptt_lock_off.tga differ diff --git a/indra/newview/skins/gred/textures/ptt_lock_on.tga b/indra/newview/skins/gred/textures/ptt_lock_on.tga new file mode 100644 index 000000000..220875348 Binary files /dev/null and b/indra/newview/skins/gred/textures/ptt_lock_on.tga differ diff --git a/indra/newview/skins/gred/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/gred/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..6171829e3 Binary files /dev/null and b/indra/newview/skins/gred/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/gred/textures/scrollbutton_down_out_blue.tga b/indra/newview/skins/gred/textures/scrollbutton_down_out_blue.tga new file mode 100644 index 000000000..9b1766d39 Binary files /dev/null and b/indra/newview/skins/gred/textures/scrollbutton_down_out_blue.tga differ diff --git a/indra/newview/skins/gred/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/gred/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..dfcb3516a Binary files /dev/null and b/indra/newview/skins/gred/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/gred/textures/scrollbutton_left_out_blue.tga b/indra/newview/skins/gred/textures/scrollbutton_left_out_blue.tga new file mode 100644 index 000000000..9a336aa71 Binary files /dev/null and b/indra/newview/skins/gred/textures/scrollbutton_left_out_blue.tga differ diff --git a/indra/newview/skins/gred/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/gred/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..36f81df30 Binary files /dev/null and b/indra/newview/skins/gred/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/gred/textures/scrollbutton_right_out_blue.tga b/indra/newview/skins/gred/textures/scrollbutton_right_out_blue.tga new file mode 100644 index 000000000..3098cf889 Binary files /dev/null and b/indra/newview/skins/gred/textures/scrollbutton_right_out_blue.tga differ diff --git a/indra/newview/skins/gred/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/gred/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..8b67a30d8 Binary files /dev/null and b/indra/newview/skins/gred/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/gred/textures/scrollbutton_up_out_blue.tga b/indra/newview/skins/gred/textures/scrollbutton_up_out_blue.tga new file mode 100644 index 000000000..9dc23d182 Binary files /dev/null and b/indra/newview/skins/gred/textures/scrollbutton_up_out_blue.tga differ diff --git a/indra/newview/skins/gred/textures/spin_down_in_blue.tga b/indra/newview/skins/gred/textures/spin_down_in_blue.tga new file mode 100644 index 000000000..952fe0621 Binary files /dev/null and b/indra/newview/skins/gred/textures/spin_down_in_blue.tga differ diff --git a/indra/newview/skins/gred/textures/spin_down_out_blue.tga b/indra/newview/skins/gred/textures/spin_down_out_blue.tga new file mode 100644 index 000000000..092ef95a7 Binary files /dev/null and b/indra/newview/skins/gred/textures/spin_down_out_blue.tga differ diff --git a/indra/newview/skins/gred/textures/spin_up_in_blue.tga b/indra/newview/skins/gred/textures/spin_up_in_blue.tga new file mode 100644 index 000000000..c19e91827 Binary files /dev/null and b/indra/newview/skins/gred/textures/spin_up_in_blue.tga differ diff --git a/indra/newview/skins/gred/textures/spin_up_out_blue.tga b/indra/newview/skins/gred/textures/spin_up_out_blue.tga new file mode 100644 index 000000000..c761ee891 Binary files /dev/null and b/indra/newview/skins/gred/textures/spin_up_out_blue.tga differ diff --git a/indra/newview/skins/gred/textures/square_btn_32x128.tga b/indra/newview/skins/gred/textures/square_btn_32x128.tga new file mode 100644 index 000000000..271b06055 Binary files /dev/null and b/indra/newview/skins/gred/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/gred/textures/square_btn_selected_32x128.tga b/indra/newview/skins/gred/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..16e8f1fe1 Binary files /dev/null and b/indra/newview/skins/gred/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/gred/textures/startup_logo.png b/indra/newview/skins/gred/textures/startup_logo.png new file mode 100644 index 000000000..9541b16a8 Binary files /dev/null and b/indra/newview/skins/gred/textures/startup_logo.png differ diff --git a/indra/newview/skins/gred/textures/status_buy_currency.tga b/indra/newview/skins/gred/textures/status_buy_currency.tga new file mode 100644 index 000000000..5de731caf Binary files /dev/null and b/indra/newview/skins/gred/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/gred/textures/status_buy_currency_pressed.tga b/indra/newview/skins/gred/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..2172843dc Binary files /dev/null and b/indra/newview/skins/gred/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/gred/textures/status_buy_land.tga b/indra/newview/skins/gred/textures/status_buy_land.tga new file mode 100644 index 000000000..f1364ac20 Binary files /dev/null and b/indra/newview/skins/gred/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/gred/textures/status_buy_land_pressed.tga b/indra/newview/skins/gred/textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..51a476231 Binary files /dev/null and b/indra/newview/skins/gred/textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/gred/textures/tab_bottom_blue.tga b/indra/newview/skins/gred/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..72e88597b Binary files /dev/null and b/indra/newview/skins/gred/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/gred/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/gred/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..507c595e5 Binary files /dev/null and b/indra/newview/skins/gred/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/gred/textures/tab_left.tga b/indra/newview/skins/gred/textures/tab_left.tga new file mode 100644 index 000000000..8ff4e4fe7 Binary files /dev/null and b/indra/newview/skins/gred/textures/tab_left.tga differ diff --git a/indra/newview/skins/gred/textures/tab_left_selected.tga b/indra/newview/skins/gred/textures/tab_left_selected.tga new file mode 100644 index 000000000..96017ebc2 Binary files /dev/null and b/indra/newview/skins/gred/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/gred/textures/tab_top_blue.tga b/indra/newview/skins/gred/textures/tab_top_blue.tga new file mode 100644 index 000000000..531bea4f0 Binary files /dev/null and b/indra/newview/skins/gred/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/gred/textures/tab_top_selected_blue.tga b/indra/newview/skins/gred/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..399862654 Binary files /dev/null and b/indra/newview/skins/gred/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/gred/textures/textures.xml b/indra/newview/skins/gred/textures/textures.xml new file mode 100644 index 000000000..4dbbdf01b --- /dev/null +++ b/indra/newview/skins/gred/textures/textures.xml @@ -0,0 +1,386 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/gred/textures/tool_dozer.tga b/indra/newview/skins/gred/textures/tool_dozer.tga new file mode 100644 index 000000000..39b36b847 Binary files /dev/null and b/indra/newview/skins/gred/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/gred/textures/tool_dozer_active.tga b/indra/newview/skins/gred/textures/tool_dozer_active.tga new file mode 100644 index 000000000..e0c0b3ff0 Binary files /dev/null and b/indra/newview/skins/gred/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/gred/textures/tool_zoom.tga b/indra/newview/skins/gred/textures/tool_zoom.tga new file mode 100644 index 000000000..49e5bbdad Binary files /dev/null and b/indra/newview/skins/gred/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/gred/textures/tool_zoom_active.tga b/indra/newview/skins/gred/textures/tool_zoom_active.tga new file mode 100644 index 000000000..2dc5f25ac Binary files /dev/null and b/indra/newview/skins/gred/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/gred/textures/toolbar_bg.tga b/indra/newview/skins/gred/textures/toolbar_bg.tga new file mode 100644 index 000000000..4c5cb6674 Binary files /dev/null and b/indra/newview/skins/gred/textures/toolbar_bg.tga differ diff --git a/indra/newview/skins/gred/textures/toolbar_btn_disabled.tga b/indra/newview/skins/gred/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..2807fbe64 Binary files /dev/null and b/indra/newview/skins/gred/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/gred/textures/toolbar_btn_enabled.tga b/indra/newview/skins/gred/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..579ff89e7 Binary files /dev/null and b/indra/newview/skins/gred/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/gred/textures/toolbar_btn_selected.tga b/indra/newview/skins/gred/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..212127301 Binary files /dev/null and b/indra/newview/skins/gred/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/gred/textures/toolbar_tab.tga b/indra/newview/skins/gred/textures/toolbar_tab.tga new file mode 100644 index 000000000..eda95f6e2 Binary files /dev/null and b/indra/newview/skins/gred/textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/kDarkNvid.xml b/indra/newview/skins/kDarkNvid.xml new file mode 100644 index 000000000..cf2f879cb --- /dev/null +++ b/indra/newview/skins/kDarkNvid.xml @@ -0,0 +1,14 @@ + + + skin_name + Kirsten Dark Nv + author_name + Kirstenlee Cinquetti + additional_author_names + 3DX, Linden Lab + skin_info + This is the skin from Kirsten's build 377 + folder_name + kdarknv + + diff --git a/indra/newview/skins/kdarknv/colors.xml b/indra/newview/skins/kdarknv/colors.xml new file mode 100644 index 000000000..2a87bd898 --- /dev/null +++ b/indra/newview/skins/kdarknv/colors.xml @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/indra/newview/skins/kdarknv/colors_base.xml b/indra/newview/skins/kdarknv/colors_base.xml new file mode 100644 index 000000000..5d33dd652 --- /dev/null +++ b/indra/newview/skins/kdarknv/colors_base.xml @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/kdarknv/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/kdarknv/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..6613c80e6 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/kdarknv/textures/0187babf-6c0d-5891-ebed-4ecab1426683.j2c b/indra/newview/skins/kdarknv/textures/0187babf-6c0d-5891-ebed-4ecab1426683.j2c new file mode 100644 index 000000000..0e63168bd Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/0187babf-6c0d-5891-ebed-4ecab1426683.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/041ee5a0-cb6a-9ac5-6e49-41e9320507d5.j2c b/indra/newview/skins/kdarknv/textures/041ee5a0-cb6a-9ac5-6e49-41e9320507d5.j2c new file mode 100644 index 000000000..e536c3338 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/041ee5a0-cb6a-9ac5-6e49-41e9320507d5.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/058c75c0-a0d5-f2f8-43f3-e9699a89c2fc.j2c b/indra/newview/skins/kdarknv/textures/058c75c0-a0d5-f2f8-43f3-e9699a89c2fc.j2c new file mode 100644 index 000000000..e351995de Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/058c75c0-a0d5-f2f8-43f3-e9699a89c2fc.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/073c9723-540c-5449-cdd4-0e87fdc159e3.j2c b/indra/newview/skins/kdarknv/textures/073c9723-540c-5449-cdd4-0e87fdc159e3.j2c new file mode 100644 index 000000000..7cae5cbf1 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/073c9723-540c-5449-cdd4-0e87fdc159e3.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga b/indra/newview/skins/kdarknv/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga new file mode 100644 index 000000000..edb4d79a6 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga differ diff --git a/indra/newview/skins/kdarknv/textures/0a94b42f-ec84-5f9c-14b7-1ef8505ceead.j2c b/indra/newview/skins/kdarknv/textures/0a94b42f-ec84-5f9c-14b7-1ef8505ceead.j2c new file mode 100644 index 000000000..03d4b1a9b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/0a94b42f-ec84-5f9c-14b7-1ef8505ceead.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/0b444c3a-75c2-4891-9d1e-ac35c8d13d62.j2c b/indra/newview/skins/kdarknv/textures/0b444c3a-75c2-4891-9d1e-ac35c8d13d62.j2c new file mode 100644 index 000000000..0bca24d6b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/0b444c3a-75c2-4891-9d1e-ac35c8d13d62.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/0bc58228-74a0-7e83-89bc-5c23464bcec5.j2c b/indra/newview/skins/kdarknv/textures/0bc58228-74a0-7e83-89bc-5c23464bcec5.j2c new file mode 100644 index 000000000..20cbd5b3a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/0bc58228-74a0-7e83-89bc-5c23464bcec5.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/0ff70ead-4562-45f9-9e8a-52b1a3286868.j2c b/indra/newview/skins/kdarknv/textures/0ff70ead-4562-45f9-9e8a-52b1a3286868.j2c new file mode 100644 index 000000000..d0f7e3a02 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/0ff70ead-4562-45f9-9e8a-52b1a3286868.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/10d2a01a-0818-84b9-4b96-c2eb63256519.j2c b/indra/newview/skins/kdarknv/textures/10d2a01a-0818-84b9-4b96-c2eb63256519.j2c new file mode 100644 index 000000000..a6e213a26 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/10d2a01a-0818-84b9-4b96-c2eb63256519.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/11ee27f5-43c0-414e-afd5-d7f5688c351f.j2c b/indra/newview/skins/kdarknv/textures/11ee27f5-43c0-414e-afd5-d7f5688c351f.j2c new file mode 100644 index 000000000..3fb9c95aa Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/11ee27f5-43c0-414e-afd5-d7f5688c351f.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/179cdabd-398a-9b6b-1391-4dc333ba321f.j2c b/indra/newview/skins/kdarknv/textures/179cdabd-398a-9b6b-1391-4dc333ba321f.j2c new file mode 100644 index 000000000..8971ac364 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/179cdabd-398a-9b6b-1391-4dc333ba321f.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/18fb888b-e8f1-dce7-7da7-321d651ea6b0.j2c b/indra/newview/skins/kdarknv/textures/18fb888b-e8f1-dce7-7da7-321d651ea6b0.j2c new file mode 100644 index 000000000..a10153010 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/18fb888b-e8f1-dce7-7da7-321d651ea6b0.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/19c76b49-c5f4-aeca-7cd8-17010f2969c3.j2c b/indra/newview/skins/kdarknv/textures/19c76b49-c5f4-aeca-7cd8-17010f2969c3.j2c new file mode 100644 index 000000000..ecab78e75 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/19c76b49-c5f4-aeca-7cd8-17010f2969c3.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/1e63e323-5fe0-452e-92f8-b98bd0f764e3.j2c b/indra/newview/skins/kdarknv/textures/1e63e323-5fe0-452e-92f8-b98bd0f764e3.j2c new file mode 100644 index 000000000..995932aa4 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/1e63e323-5fe0-452e-92f8-b98bd0f764e3.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/2660b114-1d66-3cde-e148-ebc2d1f963d5.j2c b/indra/newview/skins/kdarknv/textures/2660b114-1d66-3cde-e148-ebc2d1f963d5.j2c new file mode 100644 index 000000000..947b600f9 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/2660b114-1d66-3cde-e148-ebc2d1f963d5.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/28f0f9ca-0423-4d1b-9e76-616ffce99544.j2c b/indra/newview/skins/kdarknv/textures/28f0f9ca-0423-4d1b-9e76-616ffce99544.j2c new file mode 100644 index 000000000..73d094a52 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/28f0f9ca-0423-4d1b-9e76-616ffce99544.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/29de489d-0491-fb00-7dab-f9e686d31e83.j2c b/indra/newview/skins/kdarknv/textures/29de489d-0491-fb00-7dab-f9e686d31e83.j2c new file mode 100644 index 000000000..17e7c6c6a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/29de489d-0491-fb00-7dab-f9e686d31e83.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/2a4880b6-b7a3-690a-2049-bfbe38eafb9f.j2c b/indra/newview/skins/kdarknv/textures/2a4880b6-b7a3-690a-2049-bfbe38eafb9f.j2c new file mode 100644 index 000000000..5361a56f3 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/2a4880b6-b7a3-690a-2049-bfbe38eafb9f.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/2caf1179-7861-6ff3-4b7d-46e17780bdfa.j2c b/indra/newview/skins/kdarknv/textures/2caf1179-7861-6ff3-4b7d-46e17780bdfa.j2c new file mode 100644 index 000000000..675bdb439 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/2caf1179-7861-6ff3-4b7d-46e17780bdfa.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/2d784476-d0db-9979-0cff-9408745a7cf3.j2c b/indra/newview/skins/kdarknv/textures/2d784476-d0db-9979-0cff-9408745a7cf3.j2c new file mode 100644 index 000000000..0bc1a4fb5 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/2d784476-d0db-9979-0cff-9408745a7cf3.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/30047cec-269d-408e-0c30-b2603b887268.j2c b/indra/newview/skins/kdarknv/textures/30047cec-269d-408e-0c30-b2603b887268.j2c new file mode 100644 index 000000000..3a32fcbb9 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/30047cec-269d-408e-0c30-b2603b887268.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/303cd381-8560-7579-23f1-f0a880799740.j2c b/indra/newview/skins/kdarknv/textures/303cd381-8560-7579-23f1-f0a880799740.j2c new file mode 100644 index 000000000..905bd1b5c Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/303cd381-8560-7579-23f1-f0a880799740.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/335f8f14-f2db-db7c-1c04-734dc7657439.j2c b/indra/newview/skins/kdarknv/textures/335f8f14-f2db-db7c-1c04-734dc7657439.j2c new file mode 100644 index 000000000..5b8ffe5a4 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/335f8f14-f2db-db7c-1c04-734dc7657439.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/35f217a3-f618-49cf-bbca-c86d486551a9.j2c b/indra/newview/skins/kdarknv/textures/35f217a3-f618-49cf-bbca-c86d486551a9.j2c new file mode 100644 index 000000000..5c2c85e82 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/35f217a3-f618-49cf-bbca-c86d486551a9.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga b/indra/newview/skins/kdarknv/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga new file mode 100644 index 000000000..f7841968a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga differ diff --git a/indra/newview/skins/kdarknv/textures/3c59f7fe-9dc8-47f9-8aaf-a9dd1fbc3bef.j2c b/indra/newview/skins/kdarknv/textures/3c59f7fe-9dc8-47f9-8aaf-a9dd1fbc3bef.j2c new file mode 100644 index 000000000..6c3319efb Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/3c59f7fe-9dc8-47f9-8aaf-a9dd1fbc3bef.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/3cddf591-a726-4702-87b3-70c1daf88f90.j2c b/indra/newview/skins/kdarknv/textures/3cddf591-a726-4702-87b3-70c1daf88f90.j2c new file mode 100644 index 000000000..6535a9873 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/3cddf591-a726-4702-87b3-70c1daf88f90.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/402f8b24-5f9d-4905-b5f8-37baff603e88.j2c b/indra/newview/skins/kdarknv/textures/402f8b24-5f9d-4905-b5f8-37baff603e88.j2c new file mode 100644 index 000000000..0a38dde77 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/402f8b24-5f9d-4905-b5f8-37baff603e88.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/4726f13e-bd07-f2fb-feb0-bfa2ac58ab61.j2c b/indra/newview/skins/kdarknv/textures/4726f13e-bd07-f2fb-feb0-bfa2ac58ab61.j2c new file mode 100644 index 000000000..46eb2da8c Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/4726f13e-bd07-f2fb-feb0-bfa2ac58ab61.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/48766d75-6e58-de84-68fe-1980c64feaee.j2c b/indra/newview/skins/kdarknv/textures/48766d75-6e58-de84-68fe-1980c64feaee.j2c new file mode 100644 index 000000000..ac98d6c98 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/48766d75-6e58-de84-68fe-1980c64feaee.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/53a2f406-4895-1d13-d541-d2e3b86bc19c.j2c b/indra/newview/skins/kdarknv/textures/53a2f406-4895-1d13-d541-d2e3b86bc19c.j2c new file mode 100644 index 000000000..ecc76fa8c Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/53a2f406-4895-1d13-d541-d2e3b86bc19c.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/5894e2e7-ab8d-edfa-e61c-18cf16854ba3.j2c b/indra/newview/skins/kdarknv/textures/5894e2e7-ab8d-edfa-e61c-18cf16854ba3.j2c new file mode 100644 index 000000000..34f69c238 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/5894e2e7-ab8d-edfa-e61c-18cf16854ba3.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/5ab48dd5-05d0-4f1a-ace6-efd4e2fb3508.j2c b/indra/newview/skins/kdarknv/textures/5ab48dd5-05d0-4f1a-ace6-efd4e2fb3508.j2c new file mode 100644 index 000000000..81ccfbce8 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/5ab48dd5-05d0-4f1a-ace6-efd4e2fb3508.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/5abfabc2-5d6d-4912-acd8-d7e38ae93d02.j2c b/indra/newview/skins/kdarknv/textures/5abfabc2-5d6d-4912-acd8-d7e38ae93d02.j2c new file mode 100644 index 000000000..1068e940b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/5abfabc2-5d6d-4912-acd8-d7e38ae93d02.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/5bc11cd6-2f40-071e-a8da-0903394204f9.j2c b/indra/newview/skins/kdarknv/textures/5bc11cd6-2f40-071e-a8da-0903394204f9.j2c new file mode 100644 index 000000000..9ac79088d Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/5bc11cd6-2f40-071e-a8da-0903394204f9.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/63338ede-0037-c4fd-855b-015d77112fc8.j2c b/indra/newview/skins/kdarknv/textures/63338ede-0037-c4fd-855b-015d77112fc8.j2c new file mode 100644 index 000000000..458be1cef Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/63338ede-0037-c4fd-855b-015d77112fc8.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/64367bd1-697e-b3e6-0b65-3f862a577366.j2c b/indra/newview/skins/kdarknv/textures/64367bd1-697e-b3e6-0b65-3f862a577366.j2c new file mode 100644 index 000000000..1650c7866 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/64367bd1-697e-b3e6-0b65-3f862a577366.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/64eed6af-f575-35c7-baa4-b140bdcdb00f.j2c b/indra/newview/skins/kdarknv/textures/64eed6af-f575-35c7-baa4-b140bdcdb00f.j2c new file mode 100644 index 000000000..1068e940b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/64eed6af-f575-35c7-baa4-b140bdcdb00f.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/6522e74d-1660-4e7f-b601-6f48c1659a77.j2c b/indra/newview/skins/kdarknv/textures/6522e74d-1660-4e7f-b601-6f48c1659a77.j2c new file mode 100644 index 000000000..4e99f3ecb Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/6522e74d-1660-4e7f-b601-6f48c1659a77.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/67931331-0c02-4876-1255-28770896c6a2.j2c b/indra/newview/skins/kdarknv/textures/67931331-0c02-4876-1255-28770896c6a2.j2c new file mode 100644 index 000000000..3f6349352 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/67931331-0c02-4876-1255-28770896c6a2.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/6c4727b8-ac79-ba44-3b81-f9aa887b47eb.j2c b/indra/newview/skins/kdarknv/textures/6c4727b8-ac79-ba44-3b81-f9aa887b47eb.j2c new file mode 100644 index 000000000..adff7dc06 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/6c4727b8-ac79-ba44-3b81-f9aa887b47eb.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/6c9fa78a-1c69-2168-325b-3e03ffa348ce.j2c b/indra/newview/skins/kdarknv/textures/6c9fa78a-1c69-2168-325b-3e03ffa348ce.j2c new file mode 100644 index 000000000..e657b9617 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/6c9fa78a-1c69-2168-325b-3e03ffa348ce.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/6de37e4e-7029-61f5-54b8-f5e63f983f58.j2c b/indra/newview/skins/kdarknv/textures/6de37e4e-7029-61f5-54b8-f5e63f983f58.j2c new file mode 100644 index 000000000..434ba49d6 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/6de37e4e-7029-61f5-54b8-f5e63f983f58.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/735198cf-6ea0-2550-e222-21d3c6a341ae.j2c b/indra/newview/skins/kdarknv/textures/735198cf-6ea0-2550-e222-21d3c6a341ae.j2c new file mode 100644 index 000000000..baedd892c Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/735198cf-6ea0-2550-e222-21d3c6a341ae.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/7581f2f4-d0d2-481a-bc75-69a13d9caeaa.j2c b/indra/newview/skins/kdarknv/textures/7581f2f4-d0d2-481a-bc75-69a13d9caeaa.j2c new file mode 100644 index 000000000..47f7911d8 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/7581f2f4-d0d2-481a-bc75-69a13d9caeaa.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/78af921a-3c49-47a1-9c4e-2608951164ae.j2c b/indra/newview/skins/kdarknv/textures/78af921a-3c49-47a1-9c4e-2608951164ae.j2c new file mode 100644 index 000000000..16d3625d0 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/78af921a-3c49-47a1-9c4e-2608951164ae.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/79504bf5-c3ec-0763-6563-d843de66d0a1.j2c b/indra/newview/skins/kdarknv/textures/79504bf5-c3ec-0763-6563-d843de66d0a1.j2c new file mode 100644 index 000000000..134574e48 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/79504bf5-c3ec-0763-6563-d843de66d0a1.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/kdarknv/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..dd57c8027 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/kdarknv/textures/7a2b3a4a-53c2-53ac-5716-aac7d743c020.j2c b/indra/newview/skins/kdarknv/textures/7a2b3a4a-53c2-53ac-5716-aac7d743c020.j2c new file mode 100644 index 000000000..ca37c7825 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/7a2b3a4a-53c2-53ac-5716-aac7d743c020.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/7c0cf89b-44b1-1ce2-dd74-07102a98ac2a.j2c b/indra/newview/skins/kdarknv/textures/7c0cf89b-44b1-1ce2-dd74-07102a98ac2a.j2c new file mode 100644 index 000000000..5d556d961 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/7c0cf89b-44b1-1ce2-dd74-07102a98ac2a.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/7ca39b4c-bd19-4699-aff7-f93fd03d3e7b.j2c b/indra/newview/skins/kdarknv/textures/7ca39b4c-bd19-4699-aff7-f93fd03d3e7b.j2c new file mode 100644 index 000000000..15a1f3649 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/7ca39b4c-bd19-4699-aff7-f93fd03d3e7b.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/7cb070bc-fc00-4527-9c4d-7f7e0c4191be.j2c b/indra/newview/skins/kdarknv/textures/7cb070bc-fc00-4527-9c4d-7f7e0c4191be.j2c new file mode 100644 index 000000000..b3c70be6d Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/7cb070bc-fc00-4527-9c4d-7f7e0c4191be.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/822ded49-9a6c-f61c-cb89-6df54f42cdf4.j2c b/indra/newview/skins/kdarknv/textures/822ded49-9a6c-f61c-cb89-6df54f42cdf4.j2c new file mode 100644 index 000000000..a650bcd47 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/822ded49-9a6c-f61c-cb89-6df54f42cdf4.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/827ff765-8c1d-a8b1-23f7-fdcba560effc.j2c b/indra/newview/skins/kdarknv/textures/827ff765-8c1d-a8b1-23f7-fdcba560effc.j2c new file mode 100644 index 000000000..eb13fcc88 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/827ff765-8c1d-a8b1-23f7-fdcba560effc.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/83b77fc6-10b4-63ec-4de7-f40629f238c5.j2c b/indra/newview/skins/kdarknv/textures/83b77fc6-10b4-63ec-4de7-f40629f238c5.j2c new file mode 100644 index 000000000..e7771e4c4 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/83b77fc6-10b4-63ec-4de7-f40629f238c5.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/8872f2b8-31db-42d8-580a-b3e4a91262de.j2c b/indra/newview/skins/kdarknv/textures/8872f2b8-31db-42d8-580a-b3e4a91262de.j2c new file mode 100644 index 000000000..350b638bb Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/8872f2b8-31db-42d8-580a-b3e4a91262de.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/8a515889-eac9-fb55-8eba-d2dc09eb32c8.j2c b/indra/newview/skins/kdarknv/textures/8a515889-eac9-fb55-8eba-d2dc09eb32c8.j2c new file mode 100644 index 000000000..70821f263 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/8a515889-eac9-fb55-8eba-d2dc09eb32c8.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/8dcd4a48-2d37-4909-9f78-f7a9eb4ef903.j2c b/indra/newview/skins/kdarknv/textures/8dcd4a48-2d37-4909-9f78-f7a9eb4ef903.j2c new file mode 100644 index 000000000..1068e940b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/8dcd4a48-2d37-4909-9f78-f7a9eb4ef903.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/8f458549-173b-23ff-d4ff-bfaa5ea2371b.j2c b/indra/newview/skins/kdarknv/textures/8f458549-173b-23ff-d4ff-bfaa5ea2371b.j2c new file mode 100644 index 000000000..881929410 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/8f458549-173b-23ff-d4ff-bfaa5ea2371b.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/92e66e00-f56f-598a-7997-048aa64cde18.j2c b/indra/newview/skins/kdarknv/textures/92e66e00-f56f-598a-7997-048aa64cde18.j2c new file mode 100644 index 000000000..287555fc3 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/92e66e00-f56f-598a-7997-048aa64cde18.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/95281d5c-d27a-ee13-e067-08295b67b58a.j2c b/indra/newview/skins/kdarknv/textures/95281d5c-d27a-ee13-e067-08295b67b58a.j2c new file mode 100644 index 000000000..03d4b1a9b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/95281d5c-d27a-ee13-e067-08295b67b58a.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/96b4de31-f4fa-337d-ec78-451e3609769e.j2c b/indra/newview/skins/kdarknv/textures/96b4de31-f4fa-337d-ec78-451e3609769e.j2c new file mode 100644 index 000000000..4453ecb76 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/96b4de31-f4fa-337d-ec78-451e3609769e.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/978380f0-aaf7-c459-14e3-9808833fd372.j2c b/indra/newview/skins/kdarknv/textures/978380f0-aaf7-c459-14e3-9808833fd372.j2c new file mode 100644 index 000000000..38227ffcd Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/978380f0-aaf7-c459-14e3-9808833fd372.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/988dd995-1769-bdc9-8842-51f8f2b03884.j2c b/indra/newview/skins/kdarknv/textures/988dd995-1769-bdc9-8842-51f8f2b03884.j2c new file mode 100644 index 000000000..03d4b1a9b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/988dd995-1769-bdc9-8842-51f8f2b03884.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/99bd60a2-3250-efc9-2e39-2fbcadefbecc.j2c b/indra/newview/skins/kdarknv/textures/99bd60a2-3250-efc9-2e39-2fbcadefbecc.j2c new file mode 100644 index 000000000..c965530c0 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/99bd60a2-3250-efc9-2e39-2fbcadefbecc.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/9c88539c-fd04-46b8-bea2-ddf1bcffe3bd.j2c b/indra/newview/skins/kdarknv/textures/9c88539c-fd04-46b8-bea2-ddf1bcffe3bd.j2c new file mode 100644 index 000000000..a84aa7742 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/9c88539c-fd04-46b8-bea2-ddf1bcffe3bd.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/9deab416-9c63-78d6-d558-9a156f12044c.j2c b/indra/newview/skins/kdarknv/textures/9deab416-9c63-78d6-d558-9a156f12044c.j2c new file mode 100644 index 000000000..f4e4cba34 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/9deab416-9c63-78d6-d558-9a156f12044c.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/MapBg.tga b/indra/newview/skins/kdarknv/textures/MapBg.tga new file mode 100644 index 000000000..0fe370359 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/MapBg.tga differ diff --git a/indra/newview/skins/kdarknv/textures/MapBg2.tga b/indra/newview/skins/kdarknv/textures/MapBg2.tga new file mode 100644 index 000000000..a37e553d3 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/MapBg2.tga differ diff --git a/indra/newview/skins/kdarknv/textures/MapBg3.tga b/indra/newview/skins/kdarknv/textures/MapBg3.tga new file mode 100644 index 000000000..14d86a942 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/MapBg3.tga differ diff --git a/indra/newview/skins/kdarknv/textures/a6162133-724b-54df-a12f-51cd070ad6f3.j2c b/indra/newview/skins/kdarknv/textures/a6162133-724b-54df-a12f-51cd070ad6f3.j2c new file mode 100644 index 000000000..9d93153bc Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/a6162133-724b-54df-a12f-51cd070ad6f3.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/a85ac674-cb75-4af6-9499-df7c5aaf7a28.j2c b/indra/newview/skins/kdarknv/textures/a85ac674-cb75-4af6-9499-df7c5aaf7a28.j2c new file mode 100644 index 000000000..aa222571d Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/a85ac674-cb75-4af6-9499-df7c5aaf7a28.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/abb783e6-3e93-26c0-248a-247666855da3.j2c b/indra/newview/skins/kdarknv/textures/abb783e6-3e93-26c0-248a-247666855da3.j2c new file mode 100644 index 000000000..13c43b4a4 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/abb783e6-3e93-26c0-248a-247666855da3.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/active_speakers.tga b/indra/newview/skins/kdarknv/textures/active_speakers.tga new file mode 100644 index 000000000..37521d2dd Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/active_speakers.tga differ diff --git a/indra/newview/skins/kdarknv/textures/active_voice_tab.tga b/indra/newview/skins/kdarknv/textures/active_voice_tab.tga new file mode 100644 index 000000000..1a68c98e3 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/active_voice_tab.tga differ diff --git a/indra/newview/skins/kdarknv/textures/ae874d1a-93ef-54fb-5fd3-eb0cb156afc0.j2c b/indra/newview/skins/kdarknv/textures/ae874d1a-93ef-54fb-5fd3-eb0cb156afc0.j2c new file mode 100644 index 000000000..61711d2bf Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/ae874d1a-93ef-54fb-5fd3-eb0cb156afc0.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/alpha_gradient_2d.j2c b/indra/newview/skins/kdarknv/textures/alpha_gradient_2d.j2c new file mode 100644 index 000000000..5de5a80a6 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/alpha_gradient_2d.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/arrow_down.tga b/indra/newview/skins/kdarknv/textures/arrow_down.tga new file mode 100644 index 000000000..5fb5e67b2 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/arrow_down.tga differ diff --git a/indra/newview/skins/kdarknv/textures/arrow_up.tga b/indra/newview/skins/kdarknv/textures/arrow_up.tga new file mode 100644 index 000000000..aa92ec074 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/arrow_up.tga differ diff --git a/indra/newview/skins/kdarknv/textures/avatar_thumb_bkgrnd.j2c b/indra/newview/skins/kdarknv/textures/avatar_thumb_bkgrnd.j2c new file mode 100644 index 000000000..555551ba1 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/avatar_thumb_bkgrnd.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga b/indra/newview/skins/kdarknv/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga new file mode 100644 index 000000000..adc20506b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga differ diff --git a/indra/newview/skins/kdarknv/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/kdarknv/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..66c9dc4e0 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/kdarknv/textures/b4ba225c-373f-446d-9f7e-6cb7b5cf9b3d.j2c b/indra/newview/skins/kdarknv/textures/b4ba225c-373f-446d-9f7e-6cb7b5cf9b3d.j2c new file mode 100644 index 000000000..0e5279f5d Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/b4ba225c-373f-446d-9f7e-6cb7b5cf9b3d.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/b8d3965a-ad78-bf43-699b-bff8eca6c975.j2c b/indra/newview/skins/kdarknv/textures/b8d3965a-ad78-bf43-699b-bff8eca6c975.j2c new file mode 100644 index 000000000..44f31a0df Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/b8d3965a-ad78-bf43-699b-bff8eca6c975.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/b8eed5f0-64b7-6e12-b67f-43fa8e773440.j2c b/indra/newview/skins/kdarknv/textures/b8eed5f0-64b7-6e12-b67f-43fa8e773440.j2c new file mode 100644 index 000000000..f1e7a9661 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/b8eed5f0-64b7-6e12-b67f-43fa8e773440.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/b9e1cf8a-9660-c020-0c69-18f1ea27268a.j2c b/indra/newview/skins/kdarknv/textures/b9e1cf8a-9660-c020-0c69-18f1ea27268a.j2c new file mode 100644 index 000000000..2cd79e4d6 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/b9e1cf8a-9660-c020-0c69-18f1ea27268a.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/b9f1a3b8-933e-b7c8-e6f5-dba1bc666bed.j2c b/indra/newview/skins/kdarknv/textures/b9f1a3b8-933e-b7c8-e6f5-dba1bc666bed.j2c new file mode 100644 index 000000000..df28fa35e Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/b9f1a3b8-933e-b7c8-e6f5-dba1bc666bed.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/badge_error.j2c b/indra/newview/skins/kdarknv/textures/badge_error.j2c new file mode 100644 index 000000000..e8f3da507 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/badge_error.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/badge_note.j2c b/indra/newview/skins/kdarknv/textures/badge_note.j2c new file mode 100644 index 000000000..1ab5233fa Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/badge_note.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/badge_ok.j2c b/indra/newview/skins/kdarknv/textures/badge_ok.j2c new file mode 100644 index 000000000..f85b880f1 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/badge_ok.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/badge_warn.j2c b/indra/newview/skins/kdarknv/textures/badge_warn.j2c new file mode 100644 index 000000000..26437ca42 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/badge_warn.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/beb169c7-11ea-fff2-efe5-0f24dc881df2.j2c b/indra/newview/skins/kdarknv/textures/beb169c7-11ea-fff2-efe5-0f24dc881df2.j2c new file mode 100644 index 000000000..ccbeb08f4 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/beb169c7-11ea-fff2-efe5-0f24dc881df2.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/btn_chatbar.tga b/indra/newview/skins/kdarknv/textures/btn_chatbar.tga new file mode 100644 index 000000000..5a2cf122b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/kdarknv/textures/btn_chatbar_selected.tga b/indra/newview/skins/kdarknv/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..bd8963cb7 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/kdarknv/textures/button_disabled_32x128.tga b/indra/newview/skins/kdarknv/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..ce86b28c3 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/kdarknv/textures/button_enabled_32x128.tga b/indra/newview/skins/kdarknv/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..197df4f03 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/kdarknv/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/kdarknv/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..48818cc02 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/kdarknv/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/kdarknv/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..7e56d230f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/kdarknv/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/kdarknv/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..8b743416e Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/kdarknv/textures/c7d8bbf3-21ee-4f6e-9b20-3cf18425af1d.j2c b/indra/newview/skins/kdarknv/textures/c7d8bbf3-21ee-4f6e-9b20-3cf18425af1d.j2c new file mode 100644 index 000000000..0bca24d6b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/c7d8bbf3-21ee-4f6e-9b20-3cf18425af1d.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/ca4e8c27-473c-eb1c-2f5d-50ee3f07d85c.j2c b/indra/newview/skins/kdarknv/textures/ca4e8c27-473c-eb1c-2f5d-50ee3f07d85c.j2c new file mode 100644 index 000000000..927af8007 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/ca4e8c27-473c-eb1c-2f5d-50ee3f07d85c.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/cam_rotate_in.tga b/indra/newview/skins/kdarknv/textures/cam_rotate_in.tga new file mode 100644 index 000000000..4e4a896c5 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/kdarknv/textures/cam_rotate_out.tga b/indra/newview/skins/kdarknv/textures/cam_rotate_out.tga new file mode 100644 index 000000000..28d6467ac Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/kdarknv/textures/cam_tracking_in.tga b/indra/newview/skins/kdarknv/textures/cam_tracking_in.tga new file mode 100644 index 000000000..ad9b66aad Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/kdarknv/textures/cam_tracking_out.tga b/indra/newview/skins/kdarknv/textures/cam_tracking_out.tga new file mode 100644 index 000000000..e589a1122 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/kdarknv/textures/cam_zoom_minus_in.tga b/indra/newview/skins/kdarknv/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..57c62a2ec Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/kdarknv/textures/cam_zoom_out.tga b/indra/newview/skins/kdarknv/textures/cam_zoom_out.tga new file mode 100644 index 000000000..8a1d63305 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/kdarknv/textures/cam_zoom_plus_in.tga b/indra/newview/skins/kdarknv/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..26d17e651 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/kdarknv/textures/cce0f112-878f-4586-a2e2-a8f104bba271.j2c b/indra/newview/skins/kdarknv/textures/cce0f112-878f-4586-a2e2-a8f104bba271.j2c new file mode 100644 index 000000000..2915b5d68 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/cce0f112-878f-4586-a2e2-a8f104bba271.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/cdd9a9fc-6d0b-f90d-8416-c72b6019bca8.j2c b/indra/newview/skins/kdarknv/textures/cdd9a9fc-6d0b-f90d-8416-c72b6019bca8.j2c new file mode 100644 index 000000000..d6e52c206 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/cdd9a9fc-6d0b-f90d-8416-c72b6019bca8.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/kdarknv/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..046e69688 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/kdarknv/textures/checkbox_disabled_false.tga b/indra/newview/skins/kdarknv/textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..76a478c29 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/kdarknv/textures/checkbox_disabled_true.tga b/indra/newview/skins/kdarknv/textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..fadfc93d0 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/kdarknv/textures/checkbox_enabled_false.tga b/indra/newview/skins/kdarknv/textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..99b7a6b97 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/kdarknv/textures/checkbox_enabled_true.tga b/indra/newview/skins/kdarknv/textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..0abd59314 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/kdarknv/textures/closebox.png b/indra/newview/skins/kdarknv/textures/closebox.png new file mode 100644 index 000000000..e9b147995 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/closebox.png differ diff --git a/indra/newview/skins/kdarknv/textures/closebox_active.png b/indra/newview/skins/kdarknv/textures/closebox_active.png new file mode 100644 index 000000000..73536721c Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/closebox_active.png differ diff --git a/indra/newview/skins/kdarknv/textures/cloud-particle.j2c b/indra/newview/skins/kdarknv/textures/cloud-particle.j2c new file mode 100644 index 000000000..6c03bf6d0 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/cloud-particle.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/combobox_arrow.tga b/indra/newview/skins/kdarknv/textures/combobox_arrow.tga new file mode 100644 index 000000000..125d1b80f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/combobox_arrow.tga differ diff --git a/indra/newview/skins/kdarknv/textures/d07f6eed-b96a-47cd-b51d-400ad4a1c428.j2c b/indra/newview/skins/kdarknv/textures/d07f6eed-b96a-47cd-b51d-400ad4a1c428.j2c new file mode 100644 index 000000000..013102c53 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/d07f6eed-b96a-47cd-b51d-400ad4a1c428.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/d21e44ca-ff1c-a96e-b2ef-c0753426b7d9.j2c b/indra/newview/skins/kdarknv/textures/d21e44ca-ff1c-a96e-b2ef-c0753426b7d9.j2c new file mode 100644 index 000000000..909f9f972 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/d21e44ca-ff1c-a96e-b2ef-c0753426b7d9.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/d319ce44-0821-932a-cd18-cd1afb9d3ead.j2c b/indra/newview/skins/kdarknv/textures/d319ce44-0821-932a-cd18-cd1afb9d3ead.j2c new file mode 100644 index 000000000..152715d63 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/d319ce44-0821-932a-cd18-cd1afb9d3ead.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/d691a01c-13b7-578d-57c0-5caef0b4e7e1.j2c b/indra/newview/skins/kdarknv/textures/d691a01c-13b7-578d-57c0-5caef0b4e7e1.j2c new file mode 100644 index 000000000..493a09712 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/d691a01c-13b7-578d-57c0-5caef0b4e7e1.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/d7d99e40-10e2-5739-d063-91dcbdefc492.j2c b/indra/newview/skins/kdarknv/textures/d7d99e40-10e2-5739-d063-91dcbdefc492.j2c new file mode 100644 index 000000000..2db576679 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/d7d99e40-10e2-5739-d063-91dcbdefc492.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/d9258671-868f-7511-c321-7baef9e948a4.j2c b/indra/newview/skins/kdarknv/textures/d9258671-868f-7511-c321-7baef9e948a4.j2c new file mode 100644 index 000000000..d343f63d7 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/d9258671-868f-7511-c321-7baef9e948a4.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/db9d39ec-a896-c287-1ced-64566217021e.j2c b/indra/newview/skins/kdarknv/textures/db9d39ec-a896-c287-1ced-64566217021e.j2c new file mode 100644 index 000000000..c11984bf6 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/db9d39ec-a896-c287-1ced-64566217021e.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/de651394-f926-48db-b666-e49d83af1bbc.j2c b/indra/newview/skins/kdarknv/textures/de651394-f926-48db-b666-e49d83af1bbc.j2c new file mode 100644 index 000000000..11b398470 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/de651394-f926-48db-b666-e49d83af1bbc.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/default_land_picture.j2c b/indra/newview/skins/kdarknv/textures/default_land_picture.j2c new file mode 100644 index 000000000..34df0291a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/default_land_picture.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/default_profile_picture.j2c b/indra/newview/skins/kdarknv/textures/default_profile_picture.j2c new file mode 100644 index 000000000..c53a22e81 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/default_profile_picture.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/e121e2fc-7573-740f-edfd-0d45a9ba486e.j2c b/indra/newview/skins/kdarknv/textures/e121e2fc-7573-740f-edfd-0d45a9ba486e.j2c new file mode 100644 index 000000000..d88c13a0a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/e121e2fc-7573-740f-edfd-0d45a9ba486e.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/e38248f9-f2ee-2c9f-aa49-4860857e3b08.j2c b/indra/newview/skins/kdarknv/textures/e38248f9-f2ee-2c9f-aa49-4860857e3b08.j2c new file mode 100644 index 000000000..8c2c1078e Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/e38248f9-f2ee-2c9f-aa49-4860857e3b08.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/e569711a-27c2-aad4-9246-0c910239a179.j2c b/indra/newview/skins/kdarknv/textures/e569711a-27c2-aad4-9246-0c910239a179.j2c new file mode 100644 index 000000000..9be14d475 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/e569711a-27c2-aad4-9246-0c910239a179.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/e674ca0c-a387-4dae-a0b4-db6bd073faa5.j2c b/indra/newview/skins/kdarknv/textures/e674ca0c-a387-4dae-a0b4-db6bd073faa5.j2c new file mode 100644 index 000000000..9541c5d43 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/e674ca0c-a387-4dae-a0b4-db6bd073faa5.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/ebf2aa19-6c34-c5d8-4f14-853da1241f91.j2c b/indra/newview/skins/kdarknv/textures/ebf2aa19-6c34-c5d8-4f14-853da1241f91.j2c new file mode 100644 index 000000000..cb0bb9cac Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/ebf2aa19-6c34-c5d8-4f14-853da1241f91.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/eye_button_active.tga b/indra/newview/skins/kdarknv/textures/eye_button_active.tga new file mode 100644 index 000000000..575b648f8 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/eye_button_inactive.tga b/indra/newview/skins/kdarknv/textures/eye_button_inactive.tga new file mode 100644 index 000000000..6ca8feec8 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/eye_button_inactive.tga differ diff --git a/indra/newview/skins/kdarknv/textures/f2d7b6f6-4200-1e9a-fd5b-96459e950f94.j2c b/indra/newview/skins/kdarknv/textures/f2d7b6f6-4200-1e9a-fd5b-96459e950f94.j2c new file mode 100644 index 000000000..cb8a0cbd9 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/f2d7b6f6-4200-1e9a-fd5b-96459e950f94.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/f4b6b161-6530-6679-1a84-adfcb71a8b12.j2c b/indra/newview/skins/kdarknv/textures/f4b6b161-6530-6679-1a84-adfcb71a8b12.j2c new file mode 100644 index 000000000..73f80eb7f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/f4b6b161-6530-6679-1a84-adfcb71a8b12.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/f54a0c32-3cd1-d49a-5b4f-7b792bebc204.j2c b/indra/newview/skins/kdarknv/textures/f54a0c32-3cd1-d49a-5b4f-7b792bebc204.j2c new file mode 100644 index 000000000..03d4b1a9b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/f54a0c32-3cd1-d49a-5b4f-7b792bebc204.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/fb1fecba-9585-415b-ad15-6e6e3d6c5479.j2c b/indra/newview/skins/kdarknv/textures/fb1fecba-9585-415b-ad15-6e6e3d6c5479.j2c new file mode 100644 index 000000000..8cdf151fd Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/fb1fecba-9585-415b-ad15-6e6e3d6c5479.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/fb2ae204-3fd1-df33-594f-c9f882830e66.j2c b/indra/newview/skins/kdarknv/textures/fb2ae204-3fd1-df33-594f-c9f882830e66.j2c new file mode 100644 index 000000000..2db851704 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/fb2ae204-3fd1-df33-594f-c9f882830e66.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/fc987bf9-b8cb-f8e5-45f2-d664ca6bd3eb.j2c b/indra/newview/skins/kdarknv/textures/fc987bf9-b8cb-f8e5-45f2-d664ca6bd3eb.j2c new file mode 100644 index 000000000..49913c5ed Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/fc987bf9-b8cb-f8e5-45f2-d664ca6bd3eb.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/kdarknv/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..8b9d012a9 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/kdarknv/textures/ff_edit_mine_button.tga b/indra/newview/skins/kdarknv/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..01770a3c4 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/kdarknv/textures/ff_edit_theirs_button.tga b/indra/newview/skins/kdarknv/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..78a23b0b7 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/kdarknv/textures/ff_online_status_button.tga b/indra/newview/skins/kdarknv/textures/ff_online_status_button.tga new file mode 100644 index 000000000..79f291829 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/kdarknv/textures/ff_visible_map.tga b/indra/newview/skins/kdarknv/textures/ff_visible_map.tga new file mode 100644 index 000000000..a4dcc5c0f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/ff_visible_map.tga differ diff --git a/indra/newview/skins/kdarknv/textures/ff_visible_map_button.tga b/indra/newview/skins/kdarknv/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..bce9a8c61 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/kdarknv/textures/ff_visible_online.tga b/indra/newview/skins/kdarknv/textures/ff_visible_online.tga new file mode 100644 index 000000000..f56ee594f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/ff_visible_online.tga differ diff --git a/indra/newview/skins/kdarknv/textures/ff_visible_online_button.tga b/indra/newview/skins/kdarknv/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..c888b08c7 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/kdarknv/textures/flyout_btn_left.tga b/indra/newview/skins/kdarknv/textures/flyout_btn_left.tga new file mode 100644 index 000000000..32a9cea99 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/kdarknv/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/kdarknv/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..42f920949 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/kdarknv/textures/flyout_btn_left_selected.tga b/indra/newview/skins/kdarknv/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..0aba4c07b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/kdarknv/textures/flyout_btn_right.tga b/indra/newview/skins/kdarknv/textures/flyout_btn_right.tga new file mode 100644 index 000000000..76b56d178 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/kdarknv/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/kdarknv/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..b23c57470 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/kdarknv/textures/flyout_btn_right_selected.tga b/indra/newview/skins/kdarknv/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..82d771ed6 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/kdarknv/textures/foot_shadow.j2c b/indra/newview/skins/kdarknv/textures/foot_shadow.j2c new file mode 100644 index 000000000..f9ce9da7d Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/foot_shadow.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/icn_chatbar.tga b/indra/newview/skins/kdarknv/textures/icn_chatbar.tga new file mode 100644 index 000000000..dc9c2c608 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_chatbar.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_label_media.tga b/indra/newview/skins/kdarknv/textures/icn_label_media.tga new file mode 100644 index 000000000..5bd57abce Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_label_media.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_label_music.tga b/indra/newview/skins/kdarknv/textures/icn_label_music.tga new file mode 100644 index 000000000..71c65316b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_label_web.tga b/indra/newview/skins/kdarknv/textures/icn_label_web.tga new file mode 100644 index 000000000..426ed02f0 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_media-pause.tga b/indra/newview/skins/kdarknv/textures/icn_media-pause.tga new file mode 100644 index 000000000..a2f284295 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_media-pause_active.tga b/indra/newview/skins/kdarknv/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..8988829aa Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_media-pause_disabled.tga b/indra/newview/skins/kdarknv/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..4690f4256 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_media-pause_enabled.tga b/indra/newview/skins/kdarknv/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..c01399e27 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_media-play.tga b/indra/newview/skins/kdarknv/textures/icn_media-play.tga new file mode 100644 index 000000000..c810318bd Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_media-play.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_media-play_enabled.tga b/indra/newview/skins/kdarknv/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..accac38b0 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_media-stop_enabled.tga b/indra/newview/skins/kdarknv/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..d935fa317 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_media_movie.tga b/indra/newview/skins/kdarknv/textures/icn_media_movie.tga new file mode 100644 index 000000000..6b630e832 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_media_web.tga b/indra/newview/skins/kdarknv/textures/icn_media_web.tga new file mode 100644 index 000000000..d5b0ba1cd Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_music-pause.tga b/indra/newview/skins/kdarknv/textures/icn_music-pause.tga new file mode 100644 index 000000000..22952f53a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_music-play.tga b/indra/newview/skins/kdarknv/textures/icn_music-play.tga new file mode 100644 index 000000000..e38f784d0 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_music.tga b/indra/newview/skins/kdarknv/textures/icn_music.tga new file mode 100644 index 000000000..81da5abcf Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_music.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_pause.tga b/indra/newview/skins/kdarknv/textures/icn_pause.tga new file mode 100644 index 000000000..fa49141a9 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_pause.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_play.tga b/indra/newview/skins/kdarknv/textures/icn_play.tga new file mode 100644 index 000000000..c907f6e21 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_play.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_rounded-text-field.tga b/indra/newview/skins/kdarknv/textures/icn_rounded-text-field.tga new file mode 100644 index 000000000..20953ad10 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_rounded-text-field.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_slide-groove_dark.tga b/indra/newview/skins/kdarknv/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..d2088c3dd Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_slide-highlight.tga b/indra/newview/skins/kdarknv/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..40b4ea632 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/kdarknv/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..7605b2c43 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_stop.tga b/indra/newview/skins/kdarknv/textures/icn_stop.tga new file mode 100644 index 000000000..b85621ba6 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_stop.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_toolbar_build.tga b/indra/newview/skins/kdarknv/textures/icn_toolbar_build.tga new file mode 100644 index 000000000..5c885a61b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_toolbar_build.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_toolbar_fly.tga b/indra/newview/skins/kdarknv/textures/icn_toolbar_fly.tga new file mode 100644 index 000000000..cc4dd7f2e Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_toolbar_fly.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_toolbar_inventory.tga b/indra/newview/skins/kdarknv/textures/icn_toolbar_inventory.tga new file mode 100644 index 000000000..0237e0cce Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_toolbar_inventory.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_toolbar_map.tga b/indra/newview/skins/kdarknv/textures/icn_toolbar_map.tga new file mode 100644 index 000000000..9f2652348 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_toolbar_map.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_toolbar_search.tga b/indra/newview/skins/kdarknv/textures/icn_toolbar_search.tga new file mode 100644 index 000000000..daa29e74f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_toolbar_search.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icn_toolbar_snapshot.tga b/indra/newview/skins/kdarknv/textures/icn_toolbar_snapshot.tga new file mode 100644 index 000000000..0233f9509 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icn_toolbar_snapshot.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icon_for_sale.tga b/indra/newview/skins/kdarknv/textures/icon_for_sale.tga new file mode 100644 index 000000000..cb7f3131b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icon_for_sale.tga differ diff --git a/indra/newview/skins/kdarknv/textures/icon_popular.tga b/indra/newview/skins/kdarknv/textures/icon_popular.tga new file mode 100644 index 000000000..5eb9c3809 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/icon_popular.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_animation.tga b/indra/newview/skins/kdarknv/textures/inv_folder_animation.tga new file mode 100644 index 000000000..ac10b69e3 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_animation.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_bodypart.tga b/indra/newview/skins/kdarknv/textures/inv_folder_bodypart.tga new file mode 100644 index 000000000..b2fb50d8c Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_bodypart.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_callingcard.tga b/indra/newview/skins/kdarknv/textures/inv_folder_callingcard.tga new file mode 100644 index 000000000..774f293bb Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_callingcard.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_clothing.tga b/indra/newview/skins/kdarknv/textures/inv_folder_clothing.tga new file mode 100644 index 000000000..14a4094b4 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_clothing.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_gesture.tga b/indra/newview/skins/kdarknv/textures/inv_folder_gesture.tga new file mode 100644 index 000000000..c464e9177 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_gesture.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_landmark.tga b/indra/newview/skins/kdarknv/textures/inv_folder_landmark.tga new file mode 100644 index 000000000..0e5be5149 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_landmark.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_lostandfound.tga b/indra/newview/skins/kdarknv/textures/inv_folder_lostandfound.tga new file mode 100644 index 000000000..31489c5aa Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_lostandfound.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_notecard.tga b/indra/newview/skins/kdarknv/textures/inv_folder_notecard.tga new file mode 100644 index 000000000..70dc09c6d Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_notecard.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_object.tga b/indra/newview/skins/kdarknv/textures/inv_folder_object.tga new file mode 100644 index 000000000..caef96283 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_object.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_plain_closed.tga b/indra/newview/skins/kdarknv/textures/inv_folder_plain_closed.tga new file mode 100644 index 000000000..ef33a6fc7 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_plain_closed.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_plain_open.tga b/indra/newview/skins/kdarknv/textures/inv_folder_plain_open.tga new file mode 100644 index 000000000..d949d2cfb Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_plain_open.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_script.tga b/indra/newview/skins/kdarknv/textures/inv_folder_script.tga new file mode 100644 index 000000000..2c9980a32 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_script.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_snapshot.tga b/indra/newview/skins/kdarknv/textures/inv_folder_snapshot.tga new file mode 100644 index 000000000..271e96348 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_snapshot.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_sound.tga b/indra/newview/skins/kdarknv/textures/inv_folder_sound.tga new file mode 100644 index 000000000..3c0616cd7 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_sound.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_texture.tga b/indra/newview/skins/kdarknv/textures/inv_folder_texture.tga new file mode 100644 index 000000000..78c6704f6 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_texture.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_folder_trash.tga b/indra/newview/skins/kdarknv/textures/inv_folder_trash.tga new file mode 100644 index 000000000..47995fb1f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_folder_trash.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_animation.tga b/indra/newview/skins/kdarknv/textures/inv_item_animation.tga new file mode 100644 index 000000000..637033a2a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_animation.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_attach.tga b/indra/newview/skins/kdarknv/textures/inv_item_attach.tga new file mode 100644 index 000000000..55469f6fd Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_attach.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_callingcard_offline.tga b/indra/newview/skins/kdarknv/textures/inv_item_callingcard_offline.tga new file mode 100644 index 000000000..ad8658cf7 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_callingcard_offline.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_callingcard_online.tga b/indra/newview/skins/kdarknv/textures/inv_item_callingcard_online.tga new file mode 100644 index 000000000..96606011c Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_callingcard_online.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_clothing.tga b/indra/newview/skins/kdarknv/textures/inv_item_clothing.tga new file mode 100644 index 000000000..b7864266a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_clothing.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_eyes.tga b/indra/newview/skins/kdarknv/textures/inv_item_eyes.tga new file mode 100644 index 000000000..8702f7871 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_eyes.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_gesture.tga b/indra/newview/skins/kdarknv/textures/inv_item_gesture.tga new file mode 100644 index 000000000..a6fe629b2 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_gesture.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_gloves.tga b/indra/newview/skins/kdarknv/textures/inv_item_gloves.tga new file mode 100644 index 000000000..bcc6aee5a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_gloves.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_hair.tga b/indra/newview/skins/kdarknv/textures/inv_item_hair.tga new file mode 100644 index 000000000..686214ed4 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_hair.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_jacket.tga b/indra/newview/skins/kdarknv/textures/inv_item_jacket.tga new file mode 100644 index 000000000..69c5f0702 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_jacket.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_landmark.tga b/indra/newview/skins/kdarknv/textures/inv_item_landmark.tga new file mode 100644 index 000000000..833d4e695 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_landmark.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_landmark_visited.tga b/indra/newview/skins/kdarknv/textures/inv_item_landmark_visited.tga new file mode 100644 index 000000000..283f0eced Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_landmark_visited.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_notecard.tga b/indra/newview/skins/kdarknv/textures/inv_item_notecard.tga new file mode 100644 index 000000000..9fb82fed2 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_notecard.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_object.tga b/indra/newview/skins/kdarknv/textures/inv_item_object.tga new file mode 100644 index 000000000..c749105c5 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_object.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_object_multi.tga b/indra/newview/skins/kdarknv/textures/inv_item_object_multi.tga new file mode 100644 index 000000000..4b3a590cf Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_object_multi.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_pants.tga b/indra/newview/skins/kdarknv/textures/inv_item_pants.tga new file mode 100644 index 000000000..38dbc57c4 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_pants.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_script.tga b/indra/newview/skins/kdarknv/textures/inv_item_script.tga new file mode 100644 index 000000000..f9983430b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_script.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_script_dangerous.tga b/indra/newview/skins/kdarknv/textures/inv_item_script_dangerous.tga new file mode 100644 index 000000000..efa78acfd Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_script_dangerous.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_shape.tga b/indra/newview/skins/kdarknv/textures/inv_item_shape.tga new file mode 100644 index 000000000..2e8a5a721 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_shape.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_shirt.tga b/indra/newview/skins/kdarknv/textures/inv_item_shirt.tga new file mode 100644 index 000000000..8c6f5ebf2 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_shirt.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_shoes.tga b/indra/newview/skins/kdarknv/textures/inv_item_shoes.tga new file mode 100644 index 000000000..ac7a2b00d Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_shoes.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_skin.tga b/indra/newview/skins/kdarknv/textures/inv_item_skin.tga new file mode 100644 index 000000000..ab4169f4f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_skin.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_skirt.tga b/indra/newview/skins/kdarknv/textures/inv_item_skirt.tga new file mode 100644 index 000000000..44760408b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_skirt.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_snapshot.tga b/indra/newview/skins/kdarknv/textures/inv_item_snapshot.tga new file mode 100644 index 000000000..648a070d9 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_snapshot.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_socks.tga b/indra/newview/skins/kdarknv/textures/inv_item_socks.tga new file mode 100644 index 000000000..2d7bb7e24 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_socks.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_sound.tga b/indra/newview/skins/kdarknv/textures/inv_item_sound.tga new file mode 100644 index 000000000..7ef90523b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_sound.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_texture.tga b/indra/newview/skins/kdarknv/textures/inv_item_texture.tga new file mode 100644 index 000000000..6b4269d96 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_texture.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_underpants.tga b/indra/newview/skins/kdarknv/textures/inv_item_underpants.tga new file mode 100644 index 000000000..f679e346d Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_underpants.tga differ diff --git a/indra/newview/skins/kdarknv/textures/inv_item_undershirt.tga b/indra/newview/skins/kdarknv/textures/inv_item_undershirt.tga new file mode 100644 index 000000000..359e3d71e Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/inv_item_undershirt.tga differ diff --git a/indra/newview/skins/kdarknv/textures/locked_image.j2c b/indra/newview/skins/kdarknv/textures/locked_image.j2c new file mode 100644 index 000000000..9e8998d67 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/locked_image.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/map_avatar_32.tga b/indra/newview/skins/kdarknv/textures/map_avatar_32.tga new file mode 100644 index 000000000..aebeab409 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/map_avatar_32.tga differ diff --git a/indra/newview/skins/kdarknv/textures/map_avatar_above_32.tga b/indra/newview/skins/kdarknv/textures/map_avatar_above_32.tga new file mode 100644 index 000000000..65bd0561a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/map_avatar_above_32.tga differ diff --git a/indra/newview/skins/kdarknv/textures/map_avatar_below_32.tga b/indra/newview/skins/kdarknv/textures/map_avatar_below_32.tga new file mode 100644 index 000000000..496c44b36 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/map_avatar_below_32.tga differ diff --git a/indra/newview/skins/kdarknv/textures/map_avatar_you_32.tga b/indra/newview/skins/kdarknv/textures/map_avatar_you_32.tga new file mode 100644 index 000000000..782207efd Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/map_avatar_you_32.tga differ diff --git a/indra/newview/skins/kdarknv/textures/map_event_adult.tga b/indra/newview/skins/kdarknv/textures/map_event_adult.tga new file mode 100644 index 000000000..c344fb1e7 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/map_event_adult.tga differ diff --git a/indra/newview/skins/kdarknv/textures/menu_bar.tga b/indra/newview/skins/kdarknv/textures/menu_bar.tga new file mode 100644 index 000000000..a3726f75e Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/menu_bar.tga differ diff --git a/indra/newview/skins/kdarknv/textures/menu_bar2.tga b/indra/newview/skins/kdarknv/textures/menu_bar2.tga new file mode 100644 index 000000000..a269e7eff Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/menu_bar2.tga differ diff --git a/indra/newview/skins/kdarknv/textures/minimize.tga b/indra/newview/skins/kdarknv/textures/minimize.tga new file mode 100644 index 000000000..578bbdb67 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/minimize.tga differ diff --git a/indra/newview/skins/kdarknv/textures/minimize_inactive.tga b/indra/newview/skins/kdarknv/textures/minimize_inactive.tga new file mode 100644 index 000000000..8f09acda9 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/minimize_inactive.tga differ diff --git a/indra/newview/skins/kdarknv/textures/minimize_pressed.tga b/indra/newview/skins/kdarknv/textures/minimize_pressed.tga new file mode 100644 index 000000000..70dff9699 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/minimize_pressed.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_backward_in.tga b/indra/newview/skins/kdarknv/textures/move_backward_in.tga new file mode 100644 index 000000000..e52ca4c71 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_backward_out.tga b/indra/newview/skins/kdarknv/textures/move_backward_out.tga new file mode 100644 index 000000000..5529d0ed2 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_down_in.tga b/indra/newview/skins/kdarknv/textures/move_down_in.tga new file mode 100644 index 000000000..1eb25293f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_down_in.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_down_out.tga b/indra/newview/skins/kdarknv/textures/move_down_out.tga new file mode 100644 index 000000000..b1e793067 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_down_out.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_forward_in.tga b/indra/newview/skins/kdarknv/textures/move_forward_in.tga new file mode 100644 index 000000000..7e900d269 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_forward_out.tga b/indra/newview/skins/kdarknv/textures/move_forward_out.tga new file mode 100644 index 000000000..224d5f38c Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_left_in.tga b/indra/newview/skins/kdarknv/textures/move_left_in.tga new file mode 100644 index 000000000..03d3307a0 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_left_in.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_left_out.tga b/indra/newview/skins/kdarknv/textures/move_left_out.tga new file mode 100644 index 000000000..95c0fcd10 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_left_out.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_right_in.tga b/indra/newview/skins/kdarknv/textures/move_right_in.tga new file mode 100644 index 000000000..dfc3dd8f3 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_right_in.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_right_out.tga b/indra/newview/skins/kdarknv/textures/move_right_out.tga new file mode 100644 index 000000000..33fde41dc Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_right_out.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_turn_left_in.tga b/indra/newview/skins/kdarknv/textures/move_turn_left_in.tga new file mode 100644 index 000000000..91007bcc8 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_turn_left_out.tga b/indra/newview/skins/kdarknv/textures/move_turn_left_out.tga new file mode 100644 index 000000000..b90a8282d Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_turn_right_in.tga b/indra/newview/skins/kdarknv/textures/move_turn_right_in.tga new file mode 100644 index 000000000..0a6d5d40a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_turn_right_out.tga b/indra/newview/skins/kdarknv/textures/move_turn_right_out.tga new file mode 100644 index 000000000..8fcfeb666 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_up_in.tga b/indra/newview/skins/kdarknv/textures/move_up_in.tga new file mode 100644 index 000000000..b7f4497bb Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_up_in.tga differ diff --git a/indra/newview/skins/kdarknv/textures/move_up_out.tga b/indra/newview/skins/kdarknv/textures/move_up_out.tga new file mode 100644 index 000000000..a6bf2a98a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/move_up_out.tga differ diff --git a/indra/newview/skins/kdarknv/textures/noentrylines.j2c b/indra/newview/skins/kdarknv/textures/noentrylines.j2c new file mode 100644 index 000000000..93ec17659 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/noentrylines.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/noentrypasslines.j2c b/indra/newview/skins/kdarknv/textures/noentrypasslines.j2c new file mode 100644 index 000000000..800c46696 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/noentrypasslines.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/notify_next.png b/indra/newview/skins/kdarknv/textures/notify_next.png new file mode 100644 index 000000000..2af1eeea6 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/notify_next.png differ diff --git a/indra/newview/skins/kdarknv/textures/object_cone.tga b/indra/newview/skins/kdarknv/textures/object_cone.tga new file mode 100644 index 000000000..1bbca7594 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_cone.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_cone_active.tga b/indra/newview/skins/kdarknv/textures/object_cone_active.tga new file mode 100644 index 000000000..7b8799d7e Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_cone_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_cube.tga b/indra/newview/skins/kdarknv/textures/object_cube.tga new file mode 100644 index 000000000..c08f8742c Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_cube.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_cube_active.tga b/indra/newview/skins/kdarknv/textures/object_cube_active.tga new file mode 100644 index 000000000..fac474ee2 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_cube_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_cylinder.tga b/indra/newview/skins/kdarknv/textures/object_cylinder.tga new file mode 100644 index 000000000..271c84178 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_cylinder.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_cylinder_active.tga b/indra/newview/skins/kdarknv/textures/object_cylinder_active.tga new file mode 100644 index 000000000..5dc5c5e61 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_cylinder_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_grass.tga b/indra/newview/skins/kdarknv/textures/object_grass.tga new file mode 100644 index 000000000..3e6b8f8dc Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_grass.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_grass_active.tga b/indra/newview/skins/kdarknv/textures/object_grass_active.tga new file mode 100644 index 000000000..98f84e54d Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_grass_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_hemi_cone.tga b/indra/newview/skins/kdarknv/textures/object_hemi_cone.tga new file mode 100644 index 000000000..7b7cc63cd Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_hemi_cone.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_hemi_cone_active.tga b/indra/newview/skins/kdarknv/textures/object_hemi_cone_active.tga new file mode 100644 index 000000000..eabec1556 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_hemi_cone_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_hemi_cylinder.tga b/indra/newview/skins/kdarknv/textures/object_hemi_cylinder.tga new file mode 100644 index 000000000..dc1514076 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_hemi_cylinder.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_hemi_cylinder_active.tga b/indra/newview/skins/kdarknv/textures/object_hemi_cylinder_active.tga new file mode 100644 index 000000000..8047d7f07 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_hemi_cylinder_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_hemi_sphere.tga b/indra/newview/skins/kdarknv/textures/object_hemi_sphere.tga new file mode 100644 index 000000000..9f21f3aa6 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_hemi_sphere.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_hemi_sphere_active.tga b/indra/newview/skins/kdarknv/textures/object_hemi_sphere_active.tga new file mode 100644 index 000000000..c6d20e02c Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_hemi_sphere_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_prism.tga b/indra/newview/skins/kdarknv/textures/object_prism.tga new file mode 100644 index 000000000..489fa35c9 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_prism.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_prism_active.tga b/indra/newview/skins/kdarknv/textures/object_prism_active.tga new file mode 100644 index 000000000..b53b897d5 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_prism_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_pyramid.tga b/indra/newview/skins/kdarknv/textures/object_pyramid.tga new file mode 100644 index 000000000..69a1d095f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_pyramid.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_pyramid_active.tga b/indra/newview/skins/kdarknv/textures/object_pyramid_active.tga new file mode 100644 index 000000000..98aaadeea Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_pyramid_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_ring.tga b/indra/newview/skins/kdarknv/textures/object_ring.tga new file mode 100644 index 000000000..4dd05e41a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_ring.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_ring_active.tga b/indra/newview/skins/kdarknv/textures/object_ring_active.tga new file mode 100644 index 000000000..4e98b5907 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_ring_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_sphere.tga b/indra/newview/skins/kdarknv/textures/object_sphere.tga new file mode 100644 index 000000000..e6a41d5df Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_sphere.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_sphere_active.tga b/indra/newview/skins/kdarknv/textures/object_sphere_active.tga new file mode 100644 index 000000000..33c944a2f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_sphere_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_tetrahedron.tga b/indra/newview/skins/kdarknv/textures/object_tetrahedron.tga new file mode 100644 index 000000000..01e02cd0a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_tetrahedron.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_tetrahedron_active.tga b/indra/newview/skins/kdarknv/textures/object_tetrahedron_active.tga new file mode 100644 index 000000000..3e30a7ccb Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_tetrahedron_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_torus.tga b/indra/newview/skins/kdarknv/textures/object_torus.tga new file mode 100644 index 000000000..8c9f665be Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_torus.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_torus_active.tga b/indra/newview/skins/kdarknv/textures/object_torus_active.tga new file mode 100644 index 000000000..53d2da87f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_torus_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_tree.tga b/indra/newview/skins/kdarknv/textures/object_tree.tga new file mode 100644 index 000000000..dc427e992 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_tree.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_tree_active.tga b/indra/newview/skins/kdarknv/textures/object_tree_active.tga new file mode 100644 index 000000000..36509fda5 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_tree_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_tube.tga b/indra/newview/skins/kdarknv/textures/object_tube.tga new file mode 100644 index 000000000..b53d1e9d4 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_tube.tga differ diff --git a/indra/newview/skins/kdarknv/textures/object_tube_active.tga b/indra/newview/skins/kdarknv/textures/object_tube_active.tga new file mode 100644 index 000000000..c990b0b3c Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/object_tube_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/pixiesmall.j2c b/indra/newview/skins/kdarknv/textures/pixiesmall.j2c new file mode 100644 index 000000000..a1ff64014 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/pixiesmall.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/preview.png b/indra/newview/skins/kdarknv/textures/preview.png new file mode 100644 index 000000000..8f8a9da21 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/preview.png differ diff --git a/indra/newview/skins/kdarknv/textures/progress_fill.tga b/indra/newview/skins/kdarknv/textures/progress_fill.tga new file mode 100644 index 000000000..28b90ed00 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/progress_fill.tga differ diff --git a/indra/newview/skins/kdarknv/textures/progressbar_fill.tga b/indra/newview/skins/kdarknv/textures/progressbar_fill.tga new file mode 100644 index 000000000..b77a39699 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/kdarknv/textures/progressbar_track.tga b/indra/newview/skins/kdarknv/textures/progressbar_track.tga new file mode 100644 index 000000000..d930efca8 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/kdarknv/textures/ptt_lock_off.tga b/indra/newview/skins/kdarknv/textures/ptt_lock_off.tga new file mode 100644 index 000000000..6af4e2e55 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/ptt_lock_off.tga differ diff --git a/indra/newview/skins/kdarknv/textures/ptt_lock_on.tga b/indra/newview/skins/kdarknv/textures/ptt_lock_on.tga new file mode 100644 index 000000000..5a7413bde Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/ptt_lock_on.tga differ diff --git a/indra/newview/skins/kdarknv/textures/radio_active_false.tga b/indra/newview/skins/kdarknv/textures/radio_active_false.tga new file mode 100644 index 000000000..eff49fe0f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/radio_active_false.tga differ diff --git a/indra/newview/skins/kdarknv/textures/radio_active_true.tga b/indra/newview/skins/kdarknv/textures/radio_active_true.tga new file mode 100644 index 000000000..ec202be15 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/radio_active_true.tga differ diff --git a/indra/newview/skins/kdarknv/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/kdarknv/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..820a03991 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/restore_inactive.tga b/indra/newview/skins/kdarknv/textures/restore_inactive.tga new file mode 100644 index 000000000..8f09acda9 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/restore_inactive.tga differ diff --git a/indra/newview/skins/kdarknv/textures/restore_pressed.tga b/indra/newview/skins/kdarknv/textures/restore_pressed.tga new file mode 100644 index 000000000..a30872055 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/restore_pressed.tga differ diff --git a/indra/newview/skins/kdarknv/textures/rounded_square.j2c b/indra/newview/skins/kdarknv/textures/rounded_square.j2c new file mode 100644 index 000000000..c8bb572fa Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/rounded_square.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/rounded_square.tga b/indra/newview/skins/kdarknv/textures/rounded_square.tga new file mode 100644 index 000000000..c8fc7b799 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/rounded_square.tga differ diff --git a/indra/newview/skins/kdarknv/textures/rounded_square_soft.j2c b/indra/newview/skins/kdarknv/textures/rounded_square_soft.j2c new file mode 100644 index 000000000..56e56c1ec Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/rounded_square_soft.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/rounded_square_soft.tga b/indra/newview/skins/kdarknv/textures/rounded_square_soft.tga new file mode 100644 index 000000000..0e5bc79ac Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/rounded_square_soft.tga differ diff --git a/indra/newview/skins/kdarknv/textures/script_error.j2c b/indra/newview/skins/kdarknv/textures/script_error.j2c new file mode 100644 index 000000000..893cb642e Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/script_error.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/kdarknv/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..88417ad0b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/scrollbutton_down_out_blue.tga b/indra/newview/skins/kdarknv/textures/scrollbutton_down_out_blue.tga new file mode 100644 index 000000000..2d00a1226 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/scrollbutton_down_out_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/kdarknv/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..c78b7103a Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/scrollbutton_left_out_blue.tga b/indra/newview/skins/kdarknv/textures/scrollbutton_left_out_blue.tga new file mode 100644 index 000000000..520a2c35f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/scrollbutton_left_out_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/kdarknv/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..714f5c8cb Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/scrollbutton_right_out_blue.tga b/indra/newview/skins/kdarknv/textures/scrollbutton_right_out_blue.tga new file mode 100644 index 000000000..2d546c645 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/scrollbutton_right_out_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/kdarknv/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..3572679e7 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/scrollbutton_up_out_blue.tga b/indra/newview/skins/kdarknv/textures/scrollbutton_up_out_blue.tga new file mode 100644 index 000000000..bc3f170eb Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/scrollbutton_up_out_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/silhouette.j2c b/indra/newview/skins/kdarknv/textures/silhouette.j2c new file mode 100644 index 000000000..3859d4cb3 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/silhouette.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/spin_down_in_blue.tga b/indra/newview/skins/kdarknv/textures/spin_down_in_blue.tga new file mode 100644 index 000000000..8610147dc Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/spin_down_in_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/spin_down_out_blue.tga b/indra/newview/skins/kdarknv/textures/spin_down_out_blue.tga new file mode 100644 index 000000000..9069d8177 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/spin_down_out_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/spin_up_in_blue.tga b/indra/newview/skins/kdarknv/textures/spin_up_in_blue.tga new file mode 100644 index 000000000..620b67858 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/spin_up_in_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/spin_up_out_blue.tga b/indra/newview/skins/kdarknv/textures/spin_up_out_blue.tga new file mode 100644 index 000000000..0e7852b1f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/spin_up_out_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/square_btn_32x128.tga b/indra/newview/skins/kdarknv/textures/square_btn_32x128.tga new file mode 100644 index 000000000..38c8880bc Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/kdarknv/textures/square_btn_selected_32x128.tga b/indra/newview/skins/kdarknv/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..614d339f2 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/kdarknv/textures/startup_logo.j2c b/indra/newview/skins/kdarknv/textures/startup_logo.j2c new file mode 100644 index 000000000..d1b991f17 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/startup_logo.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/status_buy_currency.tga b/indra/newview/skins/kdarknv/textures/status_buy_currency.tga new file mode 100644 index 000000000..15e19e115 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/kdarknv/textures/status_buy_land.tga b/indra/newview/skins/kdarknv/textures/status_buy_land.tga new file mode 100644 index 000000000..b73ec8679 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/kdarknv/textures/status_no_build.tga b/indra/newview/skins/kdarknv/textures/status_no_build.tga new file mode 100644 index 000000000..48a8daa4f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/status_no_build.tga differ diff --git a/indra/newview/skins/kdarknv/textures/status_no_fly.tga b/indra/newview/skins/kdarknv/textures/status_no_fly.tga new file mode 100644 index 000000000..9c207a04d Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/status_no_fly.tga differ diff --git a/indra/newview/skins/kdarknv/textures/status_no_push.tga b/indra/newview/skins/kdarknv/textures/status_no_push.tga new file mode 100644 index 000000000..016c5f6b3 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/status_no_push.tga differ diff --git a/indra/newview/skins/kdarknv/textures/status_no_scripts.tga b/indra/newview/skins/kdarknv/textures/status_no_scripts.tga new file mode 100644 index 000000000..6b1ffa196 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/status_no_scripts.tga differ diff --git a/indra/newview/skins/kdarknv/textures/status_no_voice.tga b/indra/newview/skins/kdarknv/textures/status_no_voice.tga new file mode 100644 index 000000000..0e54952ee Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/status_no_voice.tga differ diff --git a/indra/newview/skins/kdarknv/textures/tab_bottom_blue.tga b/indra/newview/skins/kdarknv/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..62bf8cfbd Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/kdarknv/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..9cfe60d97 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/tab_left.tga b/indra/newview/skins/kdarknv/textures/tab_left.tga new file mode 100644 index 000000000..6b40a245f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/tab_left.tga differ diff --git a/indra/newview/skins/kdarknv/textures/tab_left_selected.tga b/indra/newview/skins/kdarknv/textures/tab_left_selected.tga new file mode 100644 index 000000000..7c7938f55 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/kdarknv/textures/tab_top_blue.tga b/indra/newview/skins/kdarknv/textures/tab_top_blue.tga new file mode 100644 index 000000000..fea0482e1 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/tab_top_selected_blue.tga b/indra/newview/skins/kdarknv/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..5ce34ce0f Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/kdarknv/textures/tearoff_pressed.tga b/indra/newview/skins/kdarknv/textures/tearoff_pressed.tga new file mode 100644 index 000000000..55897e630 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/tearoff_pressed.tga differ diff --git a/indra/newview/skins/kdarknv/textures/tearoffbox.tga b/indra/newview/skins/kdarknv/textures/tearoffbox.tga new file mode 100644 index 000000000..11e243bd2 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/tearoffbox.tga differ diff --git a/indra/newview/skins/kdarknv/textures/textures.xml b/indra/newview/skins/kdarknv/textures/textures.xml new file mode 100644 index 000000000..07c74c2b1 --- /dev/null +++ b/indra/newview/skins/kdarknv/textures/textures.xml @@ -0,0 +1,376 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/kdarknv/textures/tool_dozer.tga b/indra/newview/skins/kdarknv/textures/tool_dozer.tga new file mode 100644 index 000000000..bc1cc7ade Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/kdarknv/textures/tool_dozer_active.tga b/indra/newview/skins/kdarknv/textures/tool_dozer_active.tga new file mode 100644 index 000000000..ba9b289f1 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/tool_zoom.tga b/indra/newview/skins/kdarknv/textures/tool_zoom.tga new file mode 100644 index 000000000..2f6a75e4b Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/kdarknv/textures/tool_zoom_active.tga b/indra/newview/skins/kdarknv/textures/tool_zoom_active.tga new file mode 100644 index 000000000..ff9b40953 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/kdarknv/textures/toolbar_bg.tga b/indra/newview/skins/kdarknv/textures/toolbar_bg.tga new file mode 100644 index 000000000..9e615ed29 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/toolbar_bg.tga differ diff --git a/indra/newview/skins/kdarknv/textures/toolbar_btn_disabled.tga b/indra/newview/skins/kdarknv/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..8154a600e Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/kdarknv/textures/toolbar_btn_enabled.tga b/indra/newview/skins/kdarknv/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..79187aadf Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/kdarknv/textures/toolbar_btn_selected.tga b/indra/newview/skins/kdarknv/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..7a0514462 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/kdarknv/textures/toolbar_tab.tga b/indra/newview/skins/kdarknv/textures/toolbar_tab.tga new file mode 100644 index 000000000..66e108ed3 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/kdarknv/textures/uv_test1.j2c b/indra/newview/skins/kdarknv/textures/uv_test1.j2c new file mode 100644 index 000000000..3d5b54179 Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/uv_test1.j2c differ diff --git a/indra/newview/skins/kdarknv/textures/uv_test2.tga b/indra/newview/skins/kdarknv/textures/uv_test2.tga new file mode 100644 index 000000000..a16000d1e Binary files /dev/null and b/indra/newview/skins/kdarknv/textures/uv_test2.tga differ diff --git a/indra/newview/skins/kliteat.xml b/indra/newview/skins/kliteat.xml new file mode 100644 index 000000000..615874404 --- /dev/null +++ b/indra/newview/skins/kliteat.xml @@ -0,0 +1,14 @@ + + + skin_name + Kirsten Lite At + author_name + Kirstenlee Cinquetti + additional_author_names + 3DX, Linden Lab + skin_info + This is the skin from Kirsten's build 377 + folder_name + kliteat + + diff --git a/indra/newview/skins/kliteat/colors.xml b/indra/newview/skins/kliteat/colors.xml new file mode 100644 index 000000000..d4d87d66d --- /dev/null +++ b/indra/newview/skins/kliteat/colors.xml @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/kliteat/colors_base.xml b/indra/newview/skins/kliteat/colors_base.xml new file mode 100644 index 000000000..5d33dd652 --- /dev/null +++ b/indra/newview/skins/kliteat/colors_base.xml @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/kliteat/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/kliteat/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..c16711134 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/kliteat/textures/0187babf-6c0d-5891-ebed-4ecab1426683.j2c b/indra/newview/skins/kliteat/textures/0187babf-6c0d-5891-ebed-4ecab1426683.j2c new file mode 100644 index 000000000..0e63168bd Binary files /dev/null and b/indra/newview/skins/kliteat/textures/0187babf-6c0d-5891-ebed-4ecab1426683.j2c differ diff --git a/indra/newview/skins/kliteat/textures/041ee5a0-cb6a-9ac5-6e49-41e9320507d5.j2c b/indra/newview/skins/kliteat/textures/041ee5a0-cb6a-9ac5-6e49-41e9320507d5.j2c new file mode 100644 index 000000000..e536c3338 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/041ee5a0-cb6a-9ac5-6e49-41e9320507d5.j2c differ diff --git a/indra/newview/skins/kliteat/textures/058c75c0-a0d5-f2f8-43f3-e9699a89c2fc.j2c b/indra/newview/skins/kliteat/textures/058c75c0-a0d5-f2f8-43f3-e9699a89c2fc.j2c new file mode 100644 index 000000000..e351995de Binary files /dev/null and b/indra/newview/skins/kliteat/textures/058c75c0-a0d5-f2f8-43f3-e9699a89c2fc.j2c differ diff --git a/indra/newview/skins/kliteat/textures/073c9723-540c-5449-cdd4-0e87fdc159e3.j2c b/indra/newview/skins/kliteat/textures/073c9723-540c-5449-cdd4-0e87fdc159e3.j2c new file mode 100644 index 000000000..7cae5cbf1 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/073c9723-540c-5449-cdd4-0e87fdc159e3.j2c differ diff --git a/indra/newview/skins/kliteat/textures/0a94b42f-ec84-5f9c-14b7-1ef8505ceead.j2c b/indra/newview/skins/kliteat/textures/0a94b42f-ec84-5f9c-14b7-1ef8505ceead.j2c new file mode 100644 index 000000000..03d4b1a9b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/0a94b42f-ec84-5f9c-14b7-1ef8505ceead.j2c differ diff --git a/indra/newview/skins/kliteat/textures/0b444c3a-75c2-4891-9d1e-ac35c8d13d62.j2c b/indra/newview/skins/kliteat/textures/0b444c3a-75c2-4891-9d1e-ac35c8d13d62.j2c new file mode 100644 index 000000000..0bca24d6b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/0b444c3a-75c2-4891-9d1e-ac35c8d13d62.j2c differ diff --git a/indra/newview/skins/kliteat/textures/0bc58228-74a0-7e83-89bc-5c23464bcec5.j2c b/indra/newview/skins/kliteat/textures/0bc58228-74a0-7e83-89bc-5c23464bcec5.j2c new file mode 100644 index 000000000..20cbd5b3a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/0bc58228-74a0-7e83-89bc-5c23464bcec5.j2c differ diff --git a/indra/newview/skins/kliteat/textures/0ff70ead-4562-45f9-9e8a-52b1a3286868.j2c b/indra/newview/skins/kliteat/textures/0ff70ead-4562-45f9-9e8a-52b1a3286868.j2c new file mode 100644 index 000000000..d0f7e3a02 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/0ff70ead-4562-45f9-9e8a-52b1a3286868.j2c differ diff --git a/indra/newview/skins/kliteat/textures/10d2a01a-0818-84b9-4b96-c2eb63256519.j2c b/indra/newview/skins/kliteat/textures/10d2a01a-0818-84b9-4b96-c2eb63256519.j2c new file mode 100644 index 000000000..a6e213a26 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/10d2a01a-0818-84b9-4b96-c2eb63256519.j2c differ diff --git a/indra/newview/skins/kliteat/textures/11ee27f5-43c0-414e-afd5-d7f5688c351f.j2c b/indra/newview/skins/kliteat/textures/11ee27f5-43c0-414e-afd5-d7f5688c351f.j2c new file mode 100644 index 000000000..3fb9c95aa Binary files /dev/null and b/indra/newview/skins/kliteat/textures/11ee27f5-43c0-414e-afd5-d7f5688c351f.j2c differ diff --git a/indra/newview/skins/kliteat/textures/179cdabd-398a-9b6b-1391-4dc333ba321f.j2c b/indra/newview/skins/kliteat/textures/179cdabd-398a-9b6b-1391-4dc333ba321f.j2c new file mode 100644 index 000000000..8971ac364 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/179cdabd-398a-9b6b-1391-4dc333ba321f.j2c differ diff --git a/indra/newview/skins/kliteat/textures/18fb888b-e8f1-dce7-7da7-321d651ea6b0.j2c b/indra/newview/skins/kliteat/textures/18fb888b-e8f1-dce7-7da7-321d651ea6b0.j2c new file mode 100644 index 000000000..a10153010 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/18fb888b-e8f1-dce7-7da7-321d651ea6b0.j2c differ diff --git a/indra/newview/skins/kliteat/textures/19c76b49-c5f4-aeca-7cd8-17010f2969c3.j2c b/indra/newview/skins/kliteat/textures/19c76b49-c5f4-aeca-7cd8-17010f2969c3.j2c new file mode 100644 index 000000000..ecab78e75 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/19c76b49-c5f4-aeca-7cd8-17010f2969c3.j2c differ diff --git a/indra/newview/skins/kliteat/textures/1e63e323-5fe0-452e-92f8-b98bd0f764e3.j2c b/indra/newview/skins/kliteat/textures/1e63e323-5fe0-452e-92f8-b98bd0f764e3.j2c new file mode 100644 index 000000000..995932aa4 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/1e63e323-5fe0-452e-92f8-b98bd0f764e3.j2c differ diff --git a/indra/newview/skins/kliteat/textures/2660b114-1d66-3cde-e148-ebc2d1f963d5.j2c b/indra/newview/skins/kliteat/textures/2660b114-1d66-3cde-e148-ebc2d1f963d5.j2c new file mode 100644 index 000000000..947b600f9 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/2660b114-1d66-3cde-e148-ebc2d1f963d5.j2c differ diff --git a/indra/newview/skins/kliteat/textures/28f0f9ca-0423-4d1b-9e76-616ffce99544.j2c b/indra/newview/skins/kliteat/textures/28f0f9ca-0423-4d1b-9e76-616ffce99544.j2c new file mode 100644 index 000000000..73d094a52 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/28f0f9ca-0423-4d1b-9e76-616ffce99544.j2c differ diff --git a/indra/newview/skins/kliteat/textures/29de489d-0491-fb00-7dab-f9e686d31e83.j2c b/indra/newview/skins/kliteat/textures/29de489d-0491-fb00-7dab-f9e686d31e83.j2c new file mode 100644 index 000000000..17e7c6c6a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/29de489d-0491-fb00-7dab-f9e686d31e83.j2c differ diff --git a/indra/newview/skins/kliteat/textures/2a4880b6-b7a3-690a-2049-bfbe38eafb9f.j2c b/indra/newview/skins/kliteat/textures/2a4880b6-b7a3-690a-2049-bfbe38eafb9f.j2c new file mode 100644 index 000000000..5361a56f3 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/2a4880b6-b7a3-690a-2049-bfbe38eafb9f.j2c differ diff --git a/indra/newview/skins/kliteat/textures/2caf1179-7861-6ff3-4b7d-46e17780bdfa.j2c b/indra/newview/skins/kliteat/textures/2caf1179-7861-6ff3-4b7d-46e17780bdfa.j2c new file mode 100644 index 000000000..675bdb439 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/2caf1179-7861-6ff3-4b7d-46e17780bdfa.j2c differ diff --git a/indra/newview/skins/kliteat/textures/2d784476-d0db-9979-0cff-9408745a7cf3.j2c b/indra/newview/skins/kliteat/textures/2d784476-d0db-9979-0cff-9408745a7cf3.j2c new file mode 100644 index 000000000..0bc1a4fb5 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/2d784476-d0db-9979-0cff-9408745a7cf3.j2c differ diff --git a/indra/newview/skins/kliteat/textures/30047cec-269d-408e-0c30-b2603b887268.j2c b/indra/newview/skins/kliteat/textures/30047cec-269d-408e-0c30-b2603b887268.j2c new file mode 100644 index 000000000..3a32fcbb9 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/30047cec-269d-408e-0c30-b2603b887268.j2c differ diff --git a/indra/newview/skins/kliteat/textures/303cd381-8560-7579-23f1-f0a880799740.j2c b/indra/newview/skins/kliteat/textures/303cd381-8560-7579-23f1-f0a880799740.j2c new file mode 100644 index 000000000..905bd1b5c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/303cd381-8560-7579-23f1-f0a880799740.j2c differ diff --git a/indra/newview/skins/kliteat/textures/335f8f14-f2db-db7c-1c04-734dc7657439.j2c b/indra/newview/skins/kliteat/textures/335f8f14-f2db-db7c-1c04-734dc7657439.j2c new file mode 100644 index 000000000..5b8ffe5a4 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/335f8f14-f2db-db7c-1c04-734dc7657439.j2c differ diff --git a/indra/newview/skins/kliteat/textures/35f217a3-f618-49cf-bbca-c86d486551a9.j2c b/indra/newview/skins/kliteat/textures/35f217a3-f618-49cf-bbca-c86d486551a9.j2c new file mode 100644 index 000000000..5c2c85e82 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/35f217a3-f618-49cf-bbca-c86d486551a9.j2c differ diff --git a/indra/newview/skins/kliteat/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga b/indra/newview/skins/kliteat/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga new file mode 100644 index 000000000..f7841968a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga differ diff --git a/indra/newview/skins/kliteat/textures/3c59f7fe-9dc8-47f9-8aaf-a9dd1fbc3bef.j2c b/indra/newview/skins/kliteat/textures/3c59f7fe-9dc8-47f9-8aaf-a9dd1fbc3bef.j2c new file mode 100644 index 000000000..6c3319efb Binary files /dev/null and b/indra/newview/skins/kliteat/textures/3c59f7fe-9dc8-47f9-8aaf-a9dd1fbc3bef.j2c differ diff --git a/indra/newview/skins/kliteat/textures/3cddf591-a726-4702-87b3-70c1daf88f90.j2c b/indra/newview/skins/kliteat/textures/3cddf591-a726-4702-87b3-70c1daf88f90.j2c new file mode 100644 index 000000000..6535a9873 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/3cddf591-a726-4702-87b3-70c1daf88f90.j2c differ diff --git a/indra/newview/skins/kliteat/textures/402f8b24-5f9d-4905-b5f8-37baff603e88.j2c b/indra/newview/skins/kliteat/textures/402f8b24-5f9d-4905-b5f8-37baff603e88.j2c new file mode 100644 index 000000000..0a38dde77 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/402f8b24-5f9d-4905-b5f8-37baff603e88.j2c differ diff --git a/indra/newview/skins/kliteat/textures/4726f13e-bd07-f2fb-feb0-bfa2ac58ab61.j2c b/indra/newview/skins/kliteat/textures/4726f13e-bd07-f2fb-feb0-bfa2ac58ab61.j2c new file mode 100644 index 000000000..46eb2da8c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/4726f13e-bd07-f2fb-feb0-bfa2ac58ab61.j2c differ diff --git a/indra/newview/skins/kliteat/textures/48766d75-6e58-de84-68fe-1980c64feaee.j2c b/indra/newview/skins/kliteat/textures/48766d75-6e58-de84-68fe-1980c64feaee.j2c new file mode 100644 index 000000000..ac98d6c98 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/48766d75-6e58-de84-68fe-1980c64feaee.j2c differ diff --git a/indra/newview/skins/kliteat/textures/53a2f406-4895-1d13-d541-d2e3b86bc19c.j2c b/indra/newview/skins/kliteat/textures/53a2f406-4895-1d13-d541-d2e3b86bc19c.j2c new file mode 100644 index 000000000..ecc76fa8c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/53a2f406-4895-1d13-d541-d2e3b86bc19c.j2c differ diff --git a/indra/newview/skins/kliteat/textures/5894e2e7-ab8d-edfa-e61c-18cf16854ba3.j2c b/indra/newview/skins/kliteat/textures/5894e2e7-ab8d-edfa-e61c-18cf16854ba3.j2c new file mode 100644 index 000000000..34f69c238 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/5894e2e7-ab8d-edfa-e61c-18cf16854ba3.j2c differ diff --git a/indra/newview/skins/kliteat/textures/5ab48dd5-05d0-4f1a-ace6-efd4e2fb3508.j2c b/indra/newview/skins/kliteat/textures/5ab48dd5-05d0-4f1a-ace6-efd4e2fb3508.j2c new file mode 100644 index 000000000..81ccfbce8 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/5ab48dd5-05d0-4f1a-ace6-efd4e2fb3508.j2c differ diff --git a/indra/newview/skins/kliteat/textures/5abfabc2-5d6d-4912-acd8-d7e38ae93d02.j2c b/indra/newview/skins/kliteat/textures/5abfabc2-5d6d-4912-acd8-d7e38ae93d02.j2c new file mode 100644 index 000000000..1068e940b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/5abfabc2-5d6d-4912-acd8-d7e38ae93d02.j2c differ diff --git a/indra/newview/skins/kliteat/textures/5bc11cd6-2f40-071e-a8da-0903394204f9.j2c b/indra/newview/skins/kliteat/textures/5bc11cd6-2f40-071e-a8da-0903394204f9.j2c new file mode 100644 index 000000000..9ac79088d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/5bc11cd6-2f40-071e-a8da-0903394204f9.j2c differ diff --git a/indra/newview/skins/kliteat/textures/63338ede-0037-c4fd-855b-015d77112fc8.j2c b/indra/newview/skins/kliteat/textures/63338ede-0037-c4fd-855b-015d77112fc8.j2c new file mode 100644 index 000000000..458be1cef Binary files /dev/null and b/indra/newview/skins/kliteat/textures/63338ede-0037-c4fd-855b-015d77112fc8.j2c differ diff --git a/indra/newview/skins/kliteat/textures/64367bd1-697e-b3e6-0b65-3f862a577366.j2c b/indra/newview/skins/kliteat/textures/64367bd1-697e-b3e6-0b65-3f862a577366.j2c new file mode 100644 index 000000000..1650c7866 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/64367bd1-697e-b3e6-0b65-3f862a577366.j2c differ diff --git a/indra/newview/skins/kliteat/textures/64eed6af-f575-35c7-baa4-b140bdcdb00f.j2c b/indra/newview/skins/kliteat/textures/64eed6af-f575-35c7-baa4-b140bdcdb00f.j2c new file mode 100644 index 000000000..1068e940b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/64eed6af-f575-35c7-baa4-b140bdcdb00f.j2c differ diff --git a/indra/newview/skins/kliteat/textures/6522e74d-1660-4e7f-b601-6f48c1659a77.j2c b/indra/newview/skins/kliteat/textures/6522e74d-1660-4e7f-b601-6f48c1659a77.j2c new file mode 100644 index 000000000..4e99f3ecb Binary files /dev/null and b/indra/newview/skins/kliteat/textures/6522e74d-1660-4e7f-b601-6f48c1659a77.j2c differ diff --git a/indra/newview/skins/kliteat/textures/67931331-0c02-4876-1255-28770896c6a2.j2c b/indra/newview/skins/kliteat/textures/67931331-0c02-4876-1255-28770896c6a2.j2c new file mode 100644 index 000000000..3f6349352 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/67931331-0c02-4876-1255-28770896c6a2.j2c differ diff --git a/indra/newview/skins/kliteat/textures/6c4727b8-ac79-ba44-3b81-f9aa887b47eb.j2c b/indra/newview/skins/kliteat/textures/6c4727b8-ac79-ba44-3b81-f9aa887b47eb.j2c new file mode 100644 index 000000000..adff7dc06 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/6c4727b8-ac79-ba44-3b81-f9aa887b47eb.j2c differ diff --git a/indra/newview/skins/kliteat/textures/6c9fa78a-1c69-2168-325b-3e03ffa348ce.j2c b/indra/newview/skins/kliteat/textures/6c9fa78a-1c69-2168-325b-3e03ffa348ce.j2c new file mode 100644 index 000000000..e657b9617 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/6c9fa78a-1c69-2168-325b-3e03ffa348ce.j2c differ diff --git a/indra/newview/skins/kliteat/textures/6de37e4e-7029-61f5-54b8-f5e63f983f58.j2c b/indra/newview/skins/kliteat/textures/6de37e4e-7029-61f5-54b8-f5e63f983f58.j2c new file mode 100644 index 000000000..434ba49d6 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/6de37e4e-7029-61f5-54b8-f5e63f983f58.j2c differ diff --git a/indra/newview/skins/kliteat/textures/735198cf-6ea0-2550-e222-21d3c6a341ae.j2c b/indra/newview/skins/kliteat/textures/735198cf-6ea0-2550-e222-21d3c6a341ae.j2c new file mode 100644 index 000000000..baedd892c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/735198cf-6ea0-2550-e222-21d3c6a341ae.j2c differ diff --git a/indra/newview/skins/kliteat/textures/7581f2f4-d0d2-481a-bc75-69a13d9caeaa.j2c b/indra/newview/skins/kliteat/textures/7581f2f4-d0d2-481a-bc75-69a13d9caeaa.j2c new file mode 100644 index 000000000..47f7911d8 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/7581f2f4-d0d2-481a-bc75-69a13d9caeaa.j2c differ diff --git a/indra/newview/skins/kliteat/textures/78af921a-3c49-47a1-9c4e-2608951164ae.j2c b/indra/newview/skins/kliteat/textures/78af921a-3c49-47a1-9c4e-2608951164ae.j2c new file mode 100644 index 000000000..16d3625d0 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/78af921a-3c49-47a1-9c4e-2608951164ae.j2c differ diff --git a/indra/newview/skins/kliteat/textures/79504bf5-c3ec-0763-6563-d843de66d0a1.j2c b/indra/newview/skins/kliteat/textures/79504bf5-c3ec-0763-6563-d843de66d0a1.j2c new file mode 100644 index 000000000..134574e48 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/79504bf5-c3ec-0763-6563-d843de66d0a1.j2c differ diff --git a/indra/newview/skins/kliteat/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/kliteat/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..dd57c8027 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/kliteat/textures/7a2b3a4a-53c2-53ac-5716-aac7d743c020.j2c b/indra/newview/skins/kliteat/textures/7a2b3a4a-53c2-53ac-5716-aac7d743c020.j2c new file mode 100644 index 000000000..ca37c7825 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/7a2b3a4a-53c2-53ac-5716-aac7d743c020.j2c differ diff --git a/indra/newview/skins/kliteat/textures/7c0cf89b-44b1-1ce2-dd74-07102a98ac2a.j2c b/indra/newview/skins/kliteat/textures/7c0cf89b-44b1-1ce2-dd74-07102a98ac2a.j2c new file mode 100644 index 000000000..5d556d961 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/7c0cf89b-44b1-1ce2-dd74-07102a98ac2a.j2c differ diff --git a/indra/newview/skins/kliteat/textures/7ca39b4c-bd19-4699-aff7-f93fd03d3e7b.j2c b/indra/newview/skins/kliteat/textures/7ca39b4c-bd19-4699-aff7-f93fd03d3e7b.j2c new file mode 100644 index 000000000..15a1f3649 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/7ca39b4c-bd19-4699-aff7-f93fd03d3e7b.j2c differ diff --git a/indra/newview/skins/kliteat/textures/7cb070bc-fc00-4527-9c4d-7f7e0c4191be.j2c b/indra/newview/skins/kliteat/textures/7cb070bc-fc00-4527-9c4d-7f7e0c4191be.j2c new file mode 100644 index 000000000..b3c70be6d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/7cb070bc-fc00-4527-9c4d-7f7e0c4191be.j2c differ diff --git a/indra/newview/skins/kliteat/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga b/indra/newview/skins/kliteat/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga new file mode 100644 index 000000000..a40176207 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga differ diff --git a/indra/newview/skins/kliteat/textures/822ded49-9a6c-f61c-cb89-6df54f42cdf4.j2c b/indra/newview/skins/kliteat/textures/822ded49-9a6c-f61c-cb89-6df54f42cdf4.j2c new file mode 100644 index 000000000..a650bcd47 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/822ded49-9a6c-f61c-cb89-6df54f42cdf4.j2c differ diff --git a/indra/newview/skins/kliteat/textures/827ff765-8c1d-a8b1-23f7-fdcba560effc.j2c b/indra/newview/skins/kliteat/textures/827ff765-8c1d-a8b1-23f7-fdcba560effc.j2c new file mode 100644 index 000000000..eb13fcc88 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/827ff765-8c1d-a8b1-23f7-fdcba560effc.j2c differ diff --git a/indra/newview/skins/kliteat/textures/83b77fc6-10b4-63ec-4de7-f40629f238c5.j2c b/indra/newview/skins/kliteat/textures/83b77fc6-10b4-63ec-4de7-f40629f238c5.j2c new file mode 100644 index 000000000..e7771e4c4 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/83b77fc6-10b4-63ec-4de7-f40629f238c5.j2c differ diff --git a/indra/newview/skins/kliteat/textures/8872f2b8-31db-42d8-580a-b3e4a91262de.j2c b/indra/newview/skins/kliteat/textures/8872f2b8-31db-42d8-580a-b3e4a91262de.j2c new file mode 100644 index 000000000..350b638bb Binary files /dev/null and b/indra/newview/skins/kliteat/textures/8872f2b8-31db-42d8-580a-b3e4a91262de.j2c differ diff --git a/indra/newview/skins/kliteat/textures/8a515889-eac9-fb55-8eba-d2dc09eb32c8.j2c b/indra/newview/skins/kliteat/textures/8a515889-eac9-fb55-8eba-d2dc09eb32c8.j2c new file mode 100644 index 000000000..70821f263 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/8a515889-eac9-fb55-8eba-d2dc09eb32c8.j2c differ diff --git a/indra/newview/skins/kliteat/textures/8dcd4a48-2d37-4909-9f78-f7a9eb4ef903.j2c b/indra/newview/skins/kliteat/textures/8dcd4a48-2d37-4909-9f78-f7a9eb4ef903.j2c new file mode 100644 index 000000000..1068e940b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/8dcd4a48-2d37-4909-9f78-f7a9eb4ef903.j2c differ diff --git a/indra/newview/skins/kliteat/textures/8f458549-173b-23ff-d4ff-bfaa5ea2371b.j2c b/indra/newview/skins/kliteat/textures/8f458549-173b-23ff-d4ff-bfaa5ea2371b.j2c new file mode 100644 index 000000000..881929410 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/8f458549-173b-23ff-d4ff-bfaa5ea2371b.j2c differ diff --git a/indra/newview/skins/kliteat/textures/92e66e00-f56f-598a-7997-048aa64cde18.j2c b/indra/newview/skins/kliteat/textures/92e66e00-f56f-598a-7997-048aa64cde18.j2c new file mode 100644 index 000000000..287555fc3 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/92e66e00-f56f-598a-7997-048aa64cde18.j2c differ diff --git a/indra/newview/skins/kliteat/textures/95281d5c-d27a-ee13-e067-08295b67b58a.j2c b/indra/newview/skins/kliteat/textures/95281d5c-d27a-ee13-e067-08295b67b58a.j2c new file mode 100644 index 000000000..03d4b1a9b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/95281d5c-d27a-ee13-e067-08295b67b58a.j2c differ diff --git a/indra/newview/skins/kliteat/textures/96b4de31-f4fa-337d-ec78-451e3609769e.j2c b/indra/newview/skins/kliteat/textures/96b4de31-f4fa-337d-ec78-451e3609769e.j2c new file mode 100644 index 000000000..4453ecb76 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/96b4de31-f4fa-337d-ec78-451e3609769e.j2c differ diff --git a/indra/newview/skins/kliteat/textures/978380f0-aaf7-c459-14e3-9808833fd372.j2c b/indra/newview/skins/kliteat/textures/978380f0-aaf7-c459-14e3-9808833fd372.j2c new file mode 100644 index 000000000..38227ffcd Binary files /dev/null and b/indra/newview/skins/kliteat/textures/978380f0-aaf7-c459-14e3-9808833fd372.j2c differ diff --git a/indra/newview/skins/kliteat/textures/988dd995-1769-bdc9-8842-51f8f2b03884.j2c b/indra/newview/skins/kliteat/textures/988dd995-1769-bdc9-8842-51f8f2b03884.j2c new file mode 100644 index 000000000..03d4b1a9b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/988dd995-1769-bdc9-8842-51f8f2b03884.j2c differ diff --git a/indra/newview/skins/kliteat/textures/99bd60a2-3250-efc9-2e39-2fbcadefbecc.j2c b/indra/newview/skins/kliteat/textures/99bd60a2-3250-efc9-2e39-2fbcadefbecc.j2c new file mode 100644 index 000000000..c965530c0 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/99bd60a2-3250-efc9-2e39-2fbcadefbecc.j2c differ diff --git a/indra/newview/skins/kliteat/textures/9c88539c-fd04-46b8-bea2-ddf1bcffe3bd.j2c b/indra/newview/skins/kliteat/textures/9c88539c-fd04-46b8-bea2-ddf1bcffe3bd.j2c new file mode 100644 index 000000000..a84aa7742 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/9c88539c-fd04-46b8-bea2-ddf1bcffe3bd.j2c differ diff --git a/indra/newview/skins/kliteat/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga b/indra/newview/skins/kliteat/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga new file mode 100644 index 000000000..84c2166c1 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga differ diff --git a/indra/newview/skins/kliteat/textures/9deab416-9c63-78d6-d558-9a156f12044c.j2c b/indra/newview/skins/kliteat/textures/9deab416-9c63-78d6-d558-9a156f12044c.j2c new file mode 100644 index 000000000..f4e4cba34 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/9deab416-9c63-78d6-d558-9a156f12044c.j2c differ diff --git a/indra/newview/skins/kliteat/textures/MapBg.tga b/indra/newview/skins/kliteat/textures/MapBg.tga new file mode 100644 index 000000000..928b80993 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/MapBg.tga differ diff --git a/indra/newview/skins/kliteat/textures/MapBg2.tga b/indra/newview/skins/kliteat/textures/MapBg2.tga new file mode 100644 index 000000000..928b80993 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/MapBg2.tga differ diff --git a/indra/newview/skins/kliteat/textures/MapBg3.tga b/indra/newview/skins/kliteat/textures/MapBg3.tga new file mode 100644 index 000000000..8920b3ecf Binary files /dev/null and b/indra/newview/skins/kliteat/textures/MapBg3.tga differ diff --git a/indra/newview/skins/kliteat/textures/a6162133-724b-54df-a12f-51cd070ad6f3.j2c b/indra/newview/skins/kliteat/textures/a6162133-724b-54df-a12f-51cd070ad6f3.j2c new file mode 100644 index 000000000..9d93153bc Binary files /dev/null and b/indra/newview/skins/kliteat/textures/a6162133-724b-54df-a12f-51cd070ad6f3.j2c differ diff --git a/indra/newview/skins/kliteat/textures/a85ac674-cb75-4af6-9499-df7c5aaf7a28.j2c b/indra/newview/skins/kliteat/textures/a85ac674-cb75-4af6-9499-df7c5aaf7a28.j2c new file mode 100644 index 000000000..aa222571d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/a85ac674-cb75-4af6-9499-df7c5aaf7a28.j2c differ diff --git a/indra/newview/skins/kliteat/textures/abb783e6-3e93-26c0-248a-247666855da3.j2c b/indra/newview/skins/kliteat/textures/abb783e6-3e93-26c0-248a-247666855da3.j2c new file mode 100644 index 000000000..13c43b4a4 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/abb783e6-3e93-26c0-248a-247666855da3.j2c differ diff --git a/indra/newview/skins/kliteat/textures/active_speakers.tga b/indra/newview/skins/kliteat/textures/active_speakers.tga new file mode 100644 index 000000000..37521d2dd Binary files /dev/null and b/indra/newview/skins/kliteat/textures/active_speakers.tga differ diff --git a/indra/newview/skins/kliteat/textures/active_voice_tab.tga b/indra/newview/skins/kliteat/textures/active_voice_tab.tga new file mode 100644 index 000000000..1a68c98e3 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/active_voice_tab.tga differ diff --git a/indra/newview/skins/kliteat/textures/ae874d1a-93ef-54fb-5fd3-eb0cb156afc0.j2c b/indra/newview/skins/kliteat/textures/ae874d1a-93ef-54fb-5fd3-eb0cb156afc0.j2c new file mode 100644 index 000000000..61711d2bf Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ae874d1a-93ef-54fb-5fd3-eb0cb156afc0.j2c differ diff --git a/indra/newview/skins/kliteat/textures/alpha_gradient_2d.j2c b/indra/newview/skins/kliteat/textures/alpha_gradient_2d.j2c new file mode 100644 index 000000000..5de5a80a6 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/alpha_gradient_2d.j2c differ diff --git a/indra/newview/skins/kliteat/textures/arrow_down.tga b/indra/newview/skins/kliteat/textures/arrow_down.tga new file mode 100644 index 000000000..ef552003d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/arrow_down.tga differ diff --git a/indra/newview/skins/kliteat/textures/arrow_up.tga b/indra/newview/skins/kliteat/textures/arrow_up.tga new file mode 100644 index 000000000..814cf23d6 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/arrow_up.tga differ diff --git a/indra/newview/skins/kliteat/textures/avatar_thumb_bkgrnd.j2c b/indra/newview/skins/kliteat/textures/avatar_thumb_bkgrnd.j2c new file mode 100644 index 000000000..555551ba1 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/avatar_thumb_bkgrnd.j2c differ diff --git a/indra/newview/skins/kliteat/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/kliteat/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..66c9dc4e0 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/kliteat/textures/b4ba225c-373f-446d-9f7e-6cb7b5cf9b3d.j2c b/indra/newview/skins/kliteat/textures/b4ba225c-373f-446d-9f7e-6cb7b5cf9b3d.j2c new file mode 100644 index 000000000..0e5279f5d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/b4ba225c-373f-446d-9f7e-6cb7b5cf9b3d.j2c differ diff --git a/indra/newview/skins/kliteat/textures/b8d3965a-ad78-bf43-699b-bff8eca6c975.j2c b/indra/newview/skins/kliteat/textures/b8d3965a-ad78-bf43-699b-bff8eca6c975.j2c new file mode 100644 index 000000000..44f31a0df Binary files /dev/null and b/indra/newview/skins/kliteat/textures/b8d3965a-ad78-bf43-699b-bff8eca6c975.j2c differ diff --git a/indra/newview/skins/kliteat/textures/b8eed5f0-64b7-6e12-b67f-43fa8e773440.j2c b/indra/newview/skins/kliteat/textures/b8eed5f0-64b7-6e12-b67f-43fa8e773440.j2c new file mode 100644 index 000000000..f1e7a9661 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/b8eed5f0-64b7-6e12-b67f-43fa8e773440.j2c differ diff --git a/indra/newview/skins/kliteat/textures/b9e1cf8a-9660-c020-0c69-18f1ea27268a.j2c b/indra/newview/skins/kliteat/textures/b9e1cf8a-9660-c020-0c69-18f1ea27268a.j2c new file mode 100644 index 000000000..2cd79e4d6 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/b9e1cf8a-9660-c020-0c69-18f1ea27268a.j2c differ diff --git a/indra/newview/skins/kliteat/textures/b9f1a3b8-933e-b7c8-e6f5-dba1bc666bed.j2c b/indra/newview/skins/kliteat/textures/b9f1a3b8-933e-b7c8-e6f5-dba1bc666bed.j2c new file mode 100644 index 000000000..df28fa35e Binary files /dev/null and b/indra/newview/skins/kliteat/textures/b9f1a3b8-933e-b7c8-e6f5-dba1bc666bed.j2c differ diff --git a/indra/newview/skins/kliteat/textures/badge_error.j2c b/indra/newview/skins/kliteat/textures/badge_error.j2c new file mode 100644 index 000000000..e8f3da507 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/badge_error.j2c differ diff --git a/indra/newview/skins/kliteat/textures/badge_note.j2c b/indra/newview/skins/kliteat/textures/badge_note.j2c new file mode 100644 index 000000000..1ab5233fa Binary files /dev/null and b/indra/newview/skins/kliteat/textures/badge_note.j2c differ diff --git a/indra/newview/skins/kliteat/textures/badge_ok.j2c b/indra/newview/skins/kliteat/textures/badge_ok.j2c new file mode 100644 index 000000000..f85b880f1 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/badge_ok.j2c differ diff --git a/indra/newview/skins/kliteat/textures/badge_warn.j2c b/indra/newview/skins/kliteat/textures/badge_warn.j2c new file mode 100644 index 000000000..26437ca42 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/badge_warn.j2c differ diff --git a/indra/newview/skins/kliteat/textures/beb169c7-11ea-fff2-efe5-0f24dc881df2.j2c b/indra/newview/skins/kliteat/textures/beb169c7-11ea-fff2-efe5-0f24dc881df2.j2c new file mode 100644 index 000000000..ccbeb08f4 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/beb169c7-11ea-fff2-efe5-0f24dc881df2.j2c differ diff --git a/indra/newview/skins/kliteat/textures/btn_chatbar.tga b/indra/newview/skins/kliteat/textures/btn_chatbar.tga new file mode 100644 index 000000000..9bceb0a59 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/kliteat/textures/btn_chatbar_selected.tga b/indra/newview/skins/kliteat/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..e71658ded Binary files /dev/null and b/indra/newview/skins/kliteat/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/kliteat/textures/button_anim_pause.tga b/indra/newview/skins/kliteat/textures/button_anim_pause.tga new file mode 100644 index 000000000..2d9f2b504 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/kliteat/textures/button_anim_pause_selected.tga b/indra/newview/skins/kliteat/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..5f61ca9b1 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/kliteat/textures/button_anim_play.tga b/indra/newview/skins/kliteat/textures/button_anim_play.tga new file mode 100644 index 000000000..37e9c7ec1 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/kliteat/textures/button_anim_play_selected.tga b/indra/newview/skins/kliteat/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..1129962f6 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/kliteat/textures/button_anim_stop.tga b/indra/newview/skins/kliteat/textures/button_anim_stop.tga new file mode 100644 index 000000000..088896955 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/kliteat/textures/button_anim_stop_selected.tga b/indra/newview/skins/kliteat/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..25a94e1fb Binary files /dev/null and b/indra/newview/skins/kliteat/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/kliteat/textures/button_disabled_32x128.tga b/indra/newview/skins/kliteat/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..30321ed4f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/kliteat/textures/button_enabled_32x128.tga b/indra/newview/skins/kliteat/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..ca288492a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/kliteat/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/kliteat/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..7350309e0 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/kliteat/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/kliteat/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..dfeeda92b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/kliteat/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/kliteat/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..8b743416e Binary files /dev/null and b/indra/newview/skins/kliteat/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/kliteat/textures/c7d8bbf3-21ee-4f6e-9b20-3cf18425af1d.j2c b/indra/newview/skins/kliteat/textures/c7d8bbf3-21ee-4f6e-9b20-3cf18425af1d.j2c new file mode 100644 index 000000000..0bca24d6b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/c7d8bbf3-21ee-4f6e-9b20-3cf18425af1d.j2c differ diff --git a/indra/newview/skins/kliteat/textures/ca4e8c27-473c-eb1c-2f5d-50ee3f07d85c.j2c b/indra/newview/skins/kliteat/textures/ca4e8c27-473c-eb1c-2f5d-50ee3f07d85c.j2c new file mode 100644 index 000000000..927af8007 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ca4e8c27-473c-eb1c-2f5d-50ee3f07d85c.j2c differ diff --git a/indra/newview/skins/kliteat/textures/cam_rotate_in.tga b/indra/newview/skins/kliteat/textures/cam_rotate_in.tga new file mode 100644 index 000000000..f42433e96 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/kliteat/textures/cam_rotate_out.tga b/indra/newview/skins/kliteat/textures/cam_rotate_out.tga new file mode 100644 index 000000000..dc2b6380d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/kliteat/textures/cam_tracking_in.tga b/indra/newview/skins/kliteat/textures/cam_tracking_in.tga new file mode 100644 index 000000000..59693f02a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/kliteat/textures/cam_tracking_out.tga b/indra/newview/skins/kliteat/textures/cam_tracking_out.tga new file mode 100644 index 000000000..9c627cc26 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/kliteat/textures/cam_zoom_minus_in.tga b/indra/newview/skins/kliteat/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..95dc1d53e Binary files /dev/null and b/indra/newview/skins/kliteat/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/kliteat/textures/cam_zoom_out.tga b/indra/newview/skins/kliteat/textures/cam_zoom_out.tga new file mode 100644 index 000000000..8c23b280c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/kliteat/textures/cam_zoom_plus_in.tga b/indra/newview/skins/kliteat/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..55b338af4 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/kliteat/textures/cce0f112-878f-4586-a2e2-a8f104bba271.j2c b/indra/newview/skins/kliteat/textures/cce0f112-878f-4586-a2e2-a8f104bba271.j2c new file mode 100644 index 000000000..2915b5d68 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/cce0f112-878f-4586-a2e2-a8f104bba271.j2c differ diff --git a/indra/newview/skins/kliteat/textures/cdd9a9fc-6d0b-f90d-8416-c72b6019bca8.j2c b/indra/newview/skins/kliteat/textures/cdd9a9fc-6d0b-f90d-8416-c72b6019bca8.j2c new file mode 100644 index 000000000..d6e52c206 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/cdd9a9fc-6d0b-f90d-8416-c72b6019bca8.j2c differ diff --git a/indra/newview/skins/kliteat/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/kliteat/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..046e69688 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/kliteat/textures/checkbox_disabled_false.tga b/indra/newview/skins/kliteat/textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..59888a92b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/kliteat/textures/checkbox_disabled_true.tga b/indra/newview/skins/kliteat/textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..66488eb80 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/kliteat/textures/checkbox_enabled_false.tga b/indra/newview/skins/kliteat/textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..47a95ecac Binary files /dev/null and b/indra/newview/skins/kliteat/textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/kliteat/textures/checkbox_enabled_true.tga b/indra/newview/skins/kliteat/textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..aee17702a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/kliteat/textures/close_in_blue.tga b/indra/newview/skins/kliteat/textures/close_in_blue.tga new file mode 100644 index 000000000..69f383127 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/close_in_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/close_inactive_blue.tga b/indra/newview/skins/kliteat/textures/close_inactive_blue.tga new file mode 100644 index 000000000..fcd62aa35 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/close_inactive_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/closebox.png b/indra/newview/skins/kliteat/textures/closebox.png new file mode 100644 index 000000000..e9b147995 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/closebox.png differ diff --git a/indra/newview/skins/kliteat/textures/closebox.tga b/indra/newview/skins/kliteat/textures/closebox.tga new file mode 100644 index 000000000..616dc48b9 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/closebox.tga differ diff --git a/indra/newview/skins/kliteat/textures/closebox_active.png b/indra/newview/skins/kliteat/textures/closebox_active.png new file mode 100644 index 000000000..73536721c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/closebox_active.png differ diff --git a/indra/newview/skins/kliteat/textures/cloud-particle.j2c b/indra/newview/skins/kliteat/textures/cloud-particle.j2c new file mode 100644 index 000000000..6c03bf6d0 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/cloud-particle.j2c differ diff --git a/indra/newview/skins/kliteat/textures/d07f6eed-b96a-47cd-b51d-400ad4a1c428.j2c b/indra/newview/skins/kliteat/textures/d07f6eed-b96a-47cd-b51d-400ad4a1c428.j2c new file mode 100644 index 000000000..013102c53 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/d07f6eed-b96a-47cd-b51d-400ad4a1c428.j2c differ diff --git a/indra/newview/skins/kliteat/textures/d21e44ca-ff1c-a96e-b2ef-c0753426b7d9.j2c b/indra/newview/skins/kliteat/textures/d21e44ca-ff1c-a96e-b2ef-c0753426b7d9.j2c new file mode 100644 index 000000000..909f9f972 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/d21e44ca-ff1c-a96e-b2ef-c0753426b7d9.j2c differ diff --git a/indra/newview/skins/kliteat/textures/d319ce44-0821-932a-cd18-cd1afb9d3ead.j2c b/indra/newview/skins/kliteat/textures/d319ce44-0821-932a-cd18-cd1afb9d3ead.j2c new file mode 100644 index 000000000..152715d63 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/d319ce44-0821-932a-cd18-cd1afb9d3ead.j2c differ diff --git a/indra/newview/skins/kliteat/textures/d691a01c-13b7-578d-57c0-5caef0b4e7e1.j2c b/indra/newview/skins/kliteat/textures/d691a01c-13b7-578d-57c0-5caef0b4e7e1.j2c new file mode 100644 index 000000000..493a09712 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/d691a01c-13b7-578d-57c0-5caef0b4e7e1.j2c differ diff --git a/indra/newview/skins/kliteat/textures/d7d99e40-10e2-5739-d063-91dcbdefc492.j2c b/indra/newview/skins/kliteat/textures/d7d99e40-10e2-5739-d063-91dcbdefc492.j2c new file mode 100644 index 000000000..2db576679 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/d7d99e40-10e2-5739-d063-91dcbdefc492.j2c differ diff --git a/indra/newview/skins/kliteat/textures/d9258671-868f-7511-c321-7baef9e948a4.j2c b/indra/newview/skins/kliteat/textures/d9258671-868f-7511-c321-7baef9e948a4.j2c new file mode 100644 index 000000000..d343f63d7 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/d9258671-868f-7511-c321-7baef9e948a4.j2c differ diff --git a/indra/newview/skins/kliteat/textures/db9d39ec-a896-c287-1ced-64566217021e.j2c b/indra/newview/skins/kliteat/textures/db9d39ec-a896-c287-1ced-64566217021e.j2c new file mode 100644 index 000000000..c11984bf6 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/db9d39ec-a896-c287-1ced-64566217021e.j2c differ diff --git a/indra/newview/skins/kliteat/textures/de651394-f926-48db-b666-e49d83af1bbc.j2c b/indra/newview/skins/kliteat/textures/de651394-f926-48db-b666-e49d83af1bbc.j2c new file mode 100644 index 000000000..11b398470 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/de651394-f926-48db-b666-e49d83af1bbc.j2c differ diff --git a/indra/newview/skins/kliteat/textures/default_land_picture.j2c b/indra/newview/skins/kliteat/textures/default_land_picture.j2c new file mode 100644 index 000000000..34df0291a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/default_land_picture.j2c differ diff --git a/indra/newview/skins/kliteat/textures/default_profile_picture.j2c b/indra/newview/skins/kliteat/textures/default_profile_picture.j2c new file mode 100644 index 000000000..c53a22e81 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/default_profile_picture.j2c differ diff --git a/indra/newview/skins/kliteat/textures/down_arrow.png b/indra/newview/skins/kliteat/textures/down_arrow.png new file mode 100644 index 000000000..ea89b5024 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/down_arrow.png differ diff --git a/indra/newview/skins/kliteat/textures/e121e2fc-7573-740f-edfd-0d45a9ba486e.j2c b/indra/newview/skins/kliteat/textures/e121e2fc-7573-740f-edfd-0d45a9ba486e.j2c new file mode 100644 index 000000000..d88c13a0a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/e121e2fc-7573-740f-edfd-0d45a9ba486e.j2c differ diff --git a/indra/newview/skins/kliteat/textures/e38248f9-f2ee-2c9f-aa49-4860857e3b08.j2c b/indra/newview/skins/kliteat/textures/e38248f9-f2ee-2c9f-aa49-4860857e3b08.j2c new file mode 100644 index 000000000..8c2c1078e Binary files /dev/null and b/indra/newview/skins/kliteat/textures/e38248f9-f2ee-2c9f-aa49-4860857e3b08.j2c differ diff --git a/indra/newview/skins/kliteat/textures/e569711a-27c2-aad4-9246-0c910239a179.j2c b/indra/newview/skins/kliteat/textures/e569711a-27c2-aad4-9246-0c910239a179.j2c new file mode 100644 index 000000000..9be14d475 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/e569711a-27c2-aad4-9246-0c910239a179.j2c differ diff --git a/indra/newview/skins/kliteat/textures/e674ca0c-a387-4dae-a0b4-db6bd073faa5.j2c b/indra/newview/skins/kliteat/textures/e674ca0c-a387-4dae-a0b4-db6bd073faa5.j2c new file mode 100644 index 000000000..9541c5d43 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/e674ca0c-a387-4dae-a0b4-db6bd073faa5.j2c differ diff --git a/indra/newview/skins/kliteat/textures/ebf2aa19-6c34-c5d8-4f14-853da1241f91.j2c b/indra/newview/skins/kliteat/textures/ebf2aa19-6c34-c5d8-4f14-853da1241f91.j2c new file mode 100644 index 000000000..cb0bb9cac Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ebf2aa19-6c34-c5d8-4f14-853da1241f91.j2c differ diff --git a/indra/newview/skins/kliteat/textures/eye_button_active.tga b/indra/newview/skins/kliteat/textures/eye_button_active.tga new file mode 100644 index 000000000..40db9501b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/eye_button_inactive.tga b/indra/newview/skins/kliteat/textures/eye_button_inactive.tga new file mode 100644 index 000000000..6ca8feec8 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/eye_button_inactive.tga differ diff --git a/indra/newview/skins/kliteat/textures/f2d7b6f6-4200-1e9a-fd5b-96459e950f94.j2c b/indra/newview/skins/kliteat/textures/f2d7b6f6-4200-1e9a-fd5b-96459e950f94.j2c new file mode 100644 index 000000000..cb8a0cbd9 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/f2d7b6f6-4200-1e9a-fd5b-96459e950f94.j2c differ diff --git a/indra/newview/skins/kliteat/textures/f4b6b161-6530-6679-1a84-adfcb71a8b12.j2c b/indra/newview/skins/kliteat/textures/f4b6b161-6530-6679-1a84-adfcb71a8b12.j2c new file mode 100644 index 000000000..73f80eb7f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/f4b6b161-6530-6679-1a84-adfcb71a8b12.j2c differ diff --git a/indra/newview/skins/kliteat/textures/f54a0c32-3cd1-d49a-5b4f-7b792bebc204.j2c b/indra/newview/skins/kliteat/textures/f54a0c32-3cd1-d49a-5b4f-7b792bebc204.j2c new file mode 100644 index 000000000..03d4b1a9b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/f54a0c32-3cd1-d49a-5b4f-7b792bebc204.j2c differ diff --git a/indra/newview/skins/kliteat/textures/fb1fecba-9585-415b-ad15-6e6e3d6c5479.j2c b/indra/newview/skins/kliteat/textures/fb1fecba-9585-415b-ad15-6e6e3d6c5479.j2c new file mode 100644 index 000000000..8cdf151fd Binary files /dev/null and b/indra/newview/skins/kliteat/textures/fb1fecba-9585-415b-ad15-6e6e3d6c5479.j2c differ diff --git a/indra/newview/skins/kliteat/textures/fb2ae204-3fd1-df33-594f-c9f882830e66.j2c b/indra/newview/skins/kliteat/textures/fb2ae204-3fd1-df33-594f-c9f882830e66.j2c new file mode 100644 index 000000000..2db851704 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/fb2ae204-3fd1-df33-594f-c9f882830e66.j2c differ diff --git a/indra/newview/skins/kliteat/textures/fc987bf9-b8cb-f8e5-45f2-d664ca6bd3eb.j2c b/indra/newview/skins/kliteat/textures/fc987bf9-b8cb-f8e5-45f2-d664ca6bd3eb.j2c new file mode 100644 index 000000000..49913c5ed Binary files /dev/null and b/indra/newview/skins/kliteat/textures/fc987bf9-b8cb-f8e5-45f2-d664ca6bd3eb.j2c differ diff --git a/indra/newview/skins/kliteat/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/kliteat/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..8b9d012a9 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/kliteat/textures/ff_edit_mine.tga b/indra/newview/skins/kliteat/textures/ff_edit_mine.tga new file mode 100644 index 000000000..8f0c35b98 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ff_edit_mine.tga differ diff --git a/indra/newview/skins/kliteat/textures/ff_edit_mine_button.tga b/indra/newview/skins/kliteat/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..01770a3c4 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/kliteat/textures/ff_edit_theirs.tga b/indra/newview/skins/kliteat/textures/ff_edit_theirs.tga new file mode 100644 index 000000000..005ada2de Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ff_edit_theirs.tga differ diff --git a/indra/newview/skins/kliteat/textures/ff_edit_theirs_button.tga b/indra/newview/skins/kliteat/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..78a23b0b7 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/kliteat/textures/ff_online_status_button.tga b/indra/newview/skins/kliteat/textures/ff_online_status_button.tga new file mode 100644 index 000000000..79f291829 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/kliteat/textures/ff_visible_map.tga b/indra/newview/skins/kliteat/textures/ff_visible_map.tga new file mode 100644 index 000000000..a4dcc5c0f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ff_visible_map.tga differ diff --git a/indra/newview/skins/kliteat/textures/ff_visible_map_button.tga b/indra/newview/skins/kliteat/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..bce9a8c61 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/kliteat/textures/ff_visible_online.tga b/indra/newview/skins/kliteat/textures/ff_visible_online.tga new file mode 100644 index 000000000..f56ee594f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ff_visible_online.tga differ diff --git a/indra/newview/skins/kliteat/textures/ff_visible_online_button.tga b/indra/newview/skins/kliteat/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..c888b08c7 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/kliteat/textures/flyout_btn_left.tga b/indra/newview/skins/kliteat/textures/flyout_btn_left.tga new file mode 100644 index 000000000..8b0fd8a17 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/kliteat/textures/flyout_btn_left_2.tga b/indra/newview/skins/kliteat/textures/flyout_btn_left_2.tga new file mode 100644 index 000000000..8b0fd8a17 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/flyout_btn_left_2.tga differ diff --git a/indra/newview/skins/kliteat/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/kliteat/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..4b3cd2a4f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/kliteat/textures/flyout_btn_left_selected.tga b/indra/newview/skins/kliteat/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..8b0fd8a17 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/kliteat/textures/flyout_btn_right.tga b/indra/newview/skins/kliteat/textures/flyout_btn_right.tga new file mode 100644 index 000000000..1ef461b3f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/kliteat/textures/flyout_btn_right_2.tga b/indra/newview/skins/kliteat/textures/flyout_btn_right_2.tga new file mode 100644 index 000000000..61ddbf42d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/flyout_btn_right_2.tga differ diff --git a/indra/newview/skins/kliteat/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/kliteat/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..69bef96d9 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/kliteat/textures/flyout_btn_right_selected.tga b/indra/newview/skins/kliteat/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..9e054106b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/kliteat/textures/foot_shadow.j2c b/indra/newview/skins/kliteat/textures/foot_shadow.j2c new file mode 100644 index 000000000..f9ce9da7d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/foot_shadow.j2c differ diff --git a/indra/newview/skins/kliteat/textures/icn_chatbar.tga b/indra/newview/skins/kliteat/textures/icn_chatbar.tga new file mode 100644 index 000000000..8d133b197 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_chatbar.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_label_media.tga b/indra/newview/skins/kliteat/textures/icn_label_media.tga new file mode 100644 index 000000000..29d1a66c9 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_label_media.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_label_music.tga b/indra/newview/skins/kliteat/textures/icn_label_music.tga new file mode 100644 index 000000000..1ad18f380 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_label_web.tga b/indra/newview/skins/kliteat/textures/icn_label_web.tga new file mode 100644 index 000000000..426ed02f0 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_media-pause.tga b/indra/newview/skins/kliteat/textures/icn_media-pause.tga new file mode 100644 index 000000000..4e6e3e0be Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_media-pause_active.tga b/indra/newview/skins/kliteat/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..8988829aa Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_media-pause_disabled.tga b/indra/newview/skins/kliteat/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..4690f4256 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_media-pause_enabled.tga b/indra/newview/skins/kliteat/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..c01399e27 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_media-play.tga b/indra/newview/skins/kliteat/textures/icn_media-play.tga new file mode 100644 index 000000000..c810318bd Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_media-play.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_media-stop_enabled.tga b/indra/newview/skins/kliteat/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..d935fa317 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_media.tga b/indra/newview/skins/kliteat/textures/icn_media.tga new file mode 100644 index 000000000..2a035ba5d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_media.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_media_movie.tga b/indra/newview/skins/kliteat/textures/icn_media_movie.tga new file mode 100644 index 000000000..6b630e832 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_media_web.tga b/indra/newview/skins/kliteat/textures/icn_media_web.tga new file mode 100644 index 000000000..29d1a66c9 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_music-pause.tga b/indra/newview/skins/kliteat/textures/icn_music-pause.tga new file mode 100644 index 000000000..979cb09b2 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_music-play.tga b/indra/newview/skins/kliteat/textures/icn_music-play.tga new file mode 100644 index 000000000..1854abcf0 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_music.tga b/indra/newview/skins/kliteat/textures/icn_music.tga new file mode 100644 index 000000000..81da5abcf Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_music.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_pause.tga b/indra/newview/skins/kliteat/textures/icn_pause.tga new file mode 100644 index 000000000..aec249eb5 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_pause.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_play.tga b/indra/newview/skins/kliteat/textures/icn_play.tga new file mode 100644 index 000000000..64c9a0e6c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_play.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_rounded-text-field.tga b/indra/newview/skins/kliteat/textures/icn_rounded-text-field.tga new file mode 100644 index 000000000..20953ad10 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_rounded-text-field.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_scrollbar.tga b/indra/newview/skins/kliteat/textures/icn_scrollbar.tga new file mode 100644 index 000000000..a19a8a5d1 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_scrollbar.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_scrollbar_bg.tga b/indra/newview/skins/kliteat/textures/icn_scrollbar_bg.tga new file mode 100644 index 000000000..cd484c61e Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_scrollbar_bg.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_scrollbar_thumb.tga b/indra/newview/skins/kliteat/textures/icn_scrollbar_thumb.tga new file mode 100644 index 000000000..b11b1bdcd Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_scrollbar_thumb.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_slide-groove_dark.tga b/indra/newview/skins/kliteat/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..176c4e047 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_slide-highlight.tga b/indra/newview/skins/kliteat/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..056cca83f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/kliteat/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..79d08af01 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/kliteat/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..0a4bb9969 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_speaker_dark.tga b/indra/newview/skins/kliteat/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..579ab1c29 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_stop.tga b/indra/newview/skins/kliteat/textures/icn_stop.tga new file mode 100644 index 000000000..ce303657e Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_stop.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_textfield_enabled.tga b/indra/newview/skins/kliteat/textures/icn_textfield_enabled.tga new file mode 100644 index 000000000..551e7618b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_textfield_enabled.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_toolbar_build.tga b/indra/newview/skins/kliteat/textures/icn_toolbar_build.tga new file mode 100644 index 000000000..8799af4fc Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_toolbar_build.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_toolbar_fly.tga b/indra/newview/skins/kliteat/textures/icn_toolbar_fly.tga new file mode 100644 index 000000000..d197620a7 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_toolbar_fly.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_toolbar_inventory.tga b/indra/newview/skins/kliteat/textures/icn_toolbar_inventory.tga new file mode 100644 index 000000000..6f40f0a2f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_toolbar_inventory.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_toolbar_map.tga b/indra/newview/skins/kliteat/textures/icn_toolbar_map.tga new file mode 100644 index 000000000..2b9bae6bb Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_toolbar_map.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_toolbar_minimap.tga b/indra/newview/skins/kliteat/textures/icn_toolbar_minimap.tga new file mode 100644 index 000000000..a9b996c5f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_toolbar_minimap.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_toolbar_search.tga b/indra/newview/skins/kliteat/textures/icn_toolbar_search.tga new file mode 100644 index 000000000..6a473fb41 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_toolbar_search.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_toolbar_snapshot.tga b/indra/newview/skins/kliteat/textures/icn_toolbar_snapshot.tga new file mode 100644 index 000000000..f38af7aaa Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_toolbar_snapshot.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_voice-call-end.tga b/indra/newview/skins/kliteat/textures/icn_voice-call-end.tga new file mode 100644 index 000000000..7792bc1f5 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_voice-call-end.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_voice-call-start.tga b/indra/newview/skins/kliteat/textures/icn_voice-call-start.tga new file mode 100644 index 000000000..062820b08 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_voice-call-start.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_voice-groupfocus.tga b/indra/newview/skins/kliteat/textures/icn_voice-groupfocus.tga new file mode 100644 index 000000000..6d49ede9f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_voice-groupfocus.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_voice-localchat.tga b/indra/newview/skins/kliteat/textures/icn_voice-localchat.tga new file mode 100644 index 000000000..8a377c1f2 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_voice-localchat.tga differ diff --git a/indra/newview/skins/kliteat/textures/icn_voice-pvtfocus.tga b/indra/newview/skins/kliteat/textures/icn_voice-pvtfocus.tga new file mode 100644 index 000000000..d85824564 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/icn_voice-pvtfocus.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_animation.tga b/indra/newview/skins/kliteat/textures/inv_folder_animation.tga new file mode 100644 index 000000000..ac10b69e3 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_animation.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_bodypart.tga b/indra/newview/skins/kliteat/textures/inv_folder_bodypart.tga new file mode 100644 index 000000000..b2fb50d8c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_bodypart.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_callingcard.tga b/indra/newview/skins/kliteat/textures/inv_folder_callingcard.tga new file mode 100644 index 000000000..774f293bb Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_callingcard.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_clothing.tga b/indra/newview/skins/kliteat/textures/inv_folder_clothing.tga new file mode 100644 index 000000000..14a4094b4 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_clothing.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_gesture.tga b/indra/newview/skins/kliteat/textures/inv_folder_gesture.tga new file mode 100644 index 000000000..c464e9177 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_gesture.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_landmark.tga b/indra/newview/skins/kliteat/textures/inv_folder_landmark.tga new file mode 100644 index 000000000..0e5be5149 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_landmark.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_lostandfound.tga b/indra/newview/skins/kliteat/textures/inv_folder_lostandfound.tga new file mode 100644 index 000000000..31489c5aa Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_lostandfound.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_notecard.tga b/indra/newview/skins/kliteat/textures/inv_folder_notecard.tga new file mode 100644 index 000000000..70dc09c6d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_notecard.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_object.tga b/indra/newview/skins/kliteat/textures/inv_folder_object.tga new file mode 100644 index 000000000..caef96283 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_object.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_plain_closed.tga b/indra/newview/skins/kliteat/textures/inv_folder_plain_closed.tga new file mode 100644 index 000000000..ef33a6fc7 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_plain_closed.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_plain_open.tga b/indra/newview/skins/kliteat/textures/inv_folder_plain_open.tga new file mode 100644 index 000000000..d949d2cfb Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_plain_open.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_script.tga b/indra/newview/skins/kliteat/textures/inv_folder_script.tga new file mode 100644 index 000000000..2c9980a32 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_script.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_snapshot.tga b/indra/newview/skins/kliteat/textures/inv_folder_snapshot.tga new file mode 100644 index 000000000..271e96348 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_snapshot.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_sound.tga b/indra/newview/skins/kliteat/textures/inv_folder_sound.tga new file mode 100644 index 000000000..3c0616cd7 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_sound.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_texture.tga b/indra/newview/skins/kliteat/textures/inv_folder_texture.tga new file mode 100644 index 000000000..78c6704f6 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_texture.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_folder_trash.tga b/indra/newview/skins/kliteat/textures/inv_folder_trash.tga new file mode 100644 index 000000000..47995fb1f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_folder_trash.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_animation.tga b/indra/newview/skins/kliteat/textures/inv_item_animation.tga new file mode 100644 index 000000000..637033a2a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_animation.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_attach.tga b/indra/newview/skins/kliteat/textures/inv_item_attach.tga new file mode 100644 index 000000000..55469f6fd Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_attach.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_callingcard_offline.tga b/indra/newview/skins/kliteat/textures/inv_item_callingcard_offline.tga new file mode 100644 index 000000000..ad8658cf7 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_callingcard_offline.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_callingcard_online.tga b/indra/newview/skins/kliteat/textures/inv_item_callingcard_online.tga new file mode 100644 index 000000000..96606011c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_callingcard_online.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_clothing.tga b/indra/newview/skins/kliteat/textures/inv_item_clothing.tga new file mode 100644 index 000000000..b7864266a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_clothing.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_eyes.tga b/indra/newview/skins/kliteat/textures/inv_item_eyes.tga new file mode 100644 index 000000000..18e83683a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_eyes.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_gesture.tga b/indra/newview/skins/kliteat/textures/inv_item_gesture.tga new file mode 100644 index 000000000..a6fe629b2 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_gesture.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_gloves.tga b/indra/newview/skins/kliteat/textures/inv_item_gloves.tga new file mode 100644 index 000000000..bcc6aee5a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_gloves.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_hair.tga b/indra/newview/skins/kliteat/textures/inv_item_hair.tga new file mode 100644 index 000000000..686214ed4 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_hair.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_jacket.tga b/indra/newview/skins/kliteat/textures/inv_item_jacket.tga new file mode 100644 index 000000000..69c5f0702 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_jacket.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_landmark.tga b/indra/newview/skins/kliteat/textures/inv_item_landmark.tga new file mode 100644 index 000000000..833d4e695 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_landmark.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_landmark_visited.tga b/indra/newview/skins/kliteat/textures/inv_item_landmark_visited.tga new file mode 100644 index 000000000..283f0eced Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_landmark_visited.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_notecard.tga b/indra/newview/skins/kliteat/textures/inv_item_notecard.tga new file mode 100644 index 000000000..0ad68d0a1 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_notecard.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_object.tga b/indra/newview/skins/kliteat/textures/inv_item_object.tga new file mode 100644 index 000000000..c749105c5 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_object.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_object_multi.tga b/indra/newview/skins/kliteat/textures/inv_item_object_multi.tga new file mode 100644 index 000000000..4b3a590cf Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_object_multi.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_pants.tga b/indra/newview/skins/kliteat/textures/inv_item_pants.tga new file mode 100644 index 000000000..38dbc57c4 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_pants.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_script.tga b/indra/newview/skins/kliteat/textures/inv_item_script.tga new file mode 100644 index 000000000..f9983430b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_script.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_script_dangerous.tga b/indra/newview/skins/kliteat/textures/inv_item_script_dangerous.tga new file mode 100644 index 000000000..efa78acfd Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_script_dangerous.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_shape.tga b/indra/newview/skins/kliteat/textures/inv_item_shape.tga new file mode 100644 index 000000000..2e8a5a721 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_shape.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_shirt.tga b/indra/newview/skins/kliteat/textures/inv_item_shirt.tga new file mode 100644 index 000000000..8c6f5ebf2 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_shirt.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_shoes.tga b/indra/newview/skins/kliteat/textures/inv_item_shoes.tga new file mode 100644 index 000000000..ac7a2b00d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_shoes.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_skin.tga b/indra/newview/skins/kliteat/textures/inv_item_skin.tga new file mode 100644 index 000000000..ab4169f4f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_skin.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_skirt.tga b/indra/newview/skins/kliteat/textures/inv_item_skirt.tga new file mode 100644 index 000000000..44760408b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_skirt.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_snapshot.tga b/indra/newview/skins/kliteat/textures/inv_item_snapshot.tga new file mode 100644 index 000000000..648a070d9 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_snapshot.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_socks.tga b/indra/newview/skins/kliteat/textures/inv_item_socks.tga new file mode 100644 index 000000000..2d7bb7e24 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_socks.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_sound.tga b/indra/newview/skins/kliteat/textures/inv_item_sound.tga new file mode 100644 index 000000000..7ef90523b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_sound.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_texture.tga b/indra/newview/skins/kliteat/textures/inv_item_texture.tga new file mode 100644 index 000000000..6b4269d96 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_texture.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_underpants.tga b/indra/newview/skins/kliteat/textures/inv_item_underpants.tga new file mode 100644 index 000000000..f679e346d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_underpants.tga differ diff --git a/indra/newview/skins/kliteat/textures/inv_item_undershirt.tga b/indra/newview/skins/kliteat/textures/inv_item_undershirt.tga new file mode 100644 index 000000000..359e3d71e Binary files /dev/null and b/indra/newview/skins/kliteat/textures/inv_item_undershirt.tga differ diff --git a/indra/newview/skins/kliteat/textures/lightgray.tga b/indra/newview/skins/kliteat/textures/lightgray.tga new file mode 100644 index 000000000..e69be0893 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/lightgray.tga differ diff --git a/indra/newview/skins/kliteat/textures/locked_image.j2c b/indra/newview/skins/kliteat/textures/locked_image.j2c new file mode 100644 index 000000000..9e8998d67 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/locked_image.j2c differ diff --git a/indra/newview/skins/kliteat/textures/map_avatar_16.tga b/indra/newview/skins/kliteat/textures/map_avatar_16.tga new file mode 100644 index 000000000..f59e9e919 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_avatar_16.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_avatar_32.tga b/indra/newview/skins/kliteat/textures/map_avatar_32.tga new file mode 100644 index 000000000..aebeab409 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_avatar_32.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_avatar_8.tga b/indra/newview/skins/kliteat/textures/map_avatar_8.tga new file mode 100644 index 000000000..28552f223 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_avatar_8.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_avatar_above_32.tga b/indra/newview/skins/kliteat/textures/map_avatar_above_32.tga new file mode 100644 index 000000000..65bd0561a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_avatar_above_32.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_avatar_above_8.tga b/indra/newview/skins/kliteat/textures/map_avatar_above_8.tga new file mode 100644 index 000000000..193428e53 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_avatar_above_8.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_avatar_below_32.tga b/indra/newview/skins/kliteat/textures/map_avatar_below_32.tga new file mode 100644 index 000000000..496c44b36 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_avatar_below_32.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_avatar_below_8.tga b/indra/newview/skins/kliteat/textures/map_avatar_below_8.tga new file mode 100644 index 000000000..9e14bfab9 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_avatar_below_8.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_avatar_you_32.tga b/indra/newview/skins/kliteat/textures/map_avatar_you_32.tga new file mode 100644 index 000000000..782207efd Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_avatar_you_32.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_avatar_you_8.tga b/indra/newview/skins/kliteat/textures/map_avatar_you_8.tga new file mode 100644 index 000000000..8500eadeb Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_avatar_you_8.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_event.tga b/indra/newview/skins/kliteat/textures/map_event.tga new file mode 100644 index 000000000..2c06d08fd Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_event.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_event_mature.tga b/indra/newview/skins/kliteat/textures/map_event_mature.tga new file mode 100644 index 000000000..71067c0df Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_event_mature.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_home.tga b/indra/newview/skins/kliteat/textures/map_home.tga new file mode 100644 index 000000000..acaaa3db4 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_home.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_infohub.tga b/indra/newview/skins/kliteat/textures/map_infohub.tga new file mode 100644 index 000000000..545b8e532 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_infohub.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_telehub.tga b/indra/newview/skins/kliteat/textures/map_telehub.tga new file mode 100644 index 000000000..57aa72393 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_telehub.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_track_16.tga b/indra/newview/skins/kliteat/textures/map_track_16.tga new file mode 100644 index 000000000..451ce24cf Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_track_16.tga differ diff --git a/indra/newview/skins/kliteat/textures/map_track_8.tga b/indra/newview/skins/kliteat/textures/map_track_8.tga new file mode 100644 index 000000000..53425ff45 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/map_track_8.tga differ diff --git a/indra/newview/skins/kliteat/textures/media_icon.tga b/indra/newview/skins/kliteat/textures/media_icon.tga new file mode 100644 index 000000000..289520cde Binary files /dev/null and b/indra/newview/skins/kliteat/textures/media_icon.tga differ diff --git a/indra/newview/skins/kliteat/textures/menu_bar.png b/indra/newview/skins/kliteat/textures/menu_bar.png new file mode 100644 index 000000000..c0935be07 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/menu_bar.png differ diff --git a/indra/newview/skins/kliteat/textures/menu_bar.tga b/indra/newview/skins/kliteat/textures/menu_bar.tga new file mode 100644 index 000000000..4e8973e6f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/menu_bar.tga differ diff --git a/indra/newview/skins/kliteat/textures/menu_bar2.tga b/indra/newview/skins/kliteat/textures/menu_bar2.tga new file mode 100644 index 000000000..9444e8a0c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/menu_bar2.tga differ diff --git a/indra/newview/skins/kliteat/textures/minimize.tga b/indra/newview/skins/kliteat/textures/minimize.tga new file mode 100644 index 000000000..578bbdb67 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/minimize.tga differ diff --git a/indra/newview/skins/kliteat/textures/minimize_inactive.tga b/indra/newview/skins/kliteat/textures/minimize_inactive.tga new file mode 100644 index 000000000..191c5d3e8 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/minimize_inactive.tga differ diff --git a/indra/newview/skins/kliteat/textures/minimize_pressed.tga b/indra/newview/skins/kliteat/textures/minimize_pressed.tga new file mode 100644 index 000000000..70dff9699 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/minimize_pressed.tga differ diff --git a/indra/newview/skins/kliteat/textures/missing_asset.tga b/indra/newview/skins/kliteat/textures/missing_asset.tga new file mode 100644 index 000000000..9a43f4db5 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/missing_asset.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_backward_in.tga b/indra/newview/skins/kliteat/textures/move_backward_in.tga new file mode 100644 index 000000000..462e058b8 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_backward_out.tga b/indra/newview/skins/kliteat/textures/move_backward_out.tga new file mode 100644 index 000000000..a4aab5065 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_down_in.tga b/indra/newview/skins/kliteat/textures/move_down_in.tga new file mode 100644 index 000000000..1258dcef1 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_down_in.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_down_out.tga b/indra/newview/skins/kliteat/textures/move_down_out.tga new file mode 100644 index 000000000..7b6a1dfd4 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_down_out.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_forward_in.tga b/indra/newview/skins/kliteat/textures/move_forward_in.tga new file mode 100644 index 000000000..4d5e9a2f9 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_forward_out.tga b/indra/newview/skins/kliteat/textures/move_forward_out.tga new file mode 100644 index 000000000..9a348d764 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_left_in.tga b/indra/newview/skins/kliteat/textures/move_left_in.tga new file mode 100644 index 000000000..9eda0d9fa Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_left_in.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_left_out.tga b/indra/newview/skins/kliteat/textures/move_left_out.tga new file mode 100644 index 000000000..7be7fc8ae Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_left_out.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_right_in.tga b/indra/newview/skins/kliteat/textures/move_right_in.tga new file mode 100644 index 000000000..ddc715d00 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_right_in.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_right_out.tga b/indra/newview/skins/kliteat/textures/move_right_out.tga new file mode 100644 index 000000000..5e55f8737 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_right_out.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_turn_left_in.tga b/indra/newview/skins/kliteat/textures/move_turn_left_in.tga new file mode 100644 index 000000000..ece9a7f46 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_turn_left_out.tga b/indra/newview/skins/kliteat/textures/move_turn_left_out.tga new file mode 100644 index 000000000..badc1b0b1 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_turn_right_in.tga b/indra/newview/skins/kliteat/textures/move_turn_right_in.tga new file mode 100644 index 000000000..3e3906351 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_turn_right_out.tga b/indra/newview/skins/kliteat/textures/move_turn_right_out.tga new file mode 100644 index 000000000..b424b62ed Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_up_in.tga b/indra/newview/skins/kliteat/textures/move_up_in.tga new file mode 100644 index 000000000..42d4dd0f6 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_up_in.tga differ diff --git a/indra/newview/skins/kliteat/textures/move_up_out.tga b/indra/newview/skins/kliteat/textures/move_up_out.tga new file mode 100644 index 000000000..d31ec6f8d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/move_up_out.tga differ diff --git a/indra/newview/skins/kliteat/textures/music_icon.tga b/indra/newview/skins/kliteat/textures/music_icon.tga new file mode 100644 index 000000000..aeaff02e0 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/music_icon.tga differ diff --git a/indra/newview/skins/kliteat/textures/mute_icon.tga b/indra/newview/skins/kliteat/textures/mute_icon.tga new file mode 100644 index 000000000..879b9e618 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/mute_icon.tga differ diff --git a/indra/newview/skins/kliteat/textures/noentrylines.j2c b/indra/newview/skins/kliteat/textures/noentrylines.j2c new file mode 100644 index 000000000..93ec17659 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/noentrylines.j2c differ diff --git a/indra/newview/skins/kliteat/textures/noentrypasslines.j2c b/indra/newview/skins/kliteat/textures/noentrypasslines.j2c new file mode 100644 index 000000000..800c46696 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/noentrypasslines.j2c differ diff --git a/indra/newview/skins/kliteat/textures/notify_box_icon.tga b/indra/newview/skins/kliteat/textures/notify_box_icon.tga new file mode 100644 index 000000000..5342d4173 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/notify_box_icon.tga differ diff --git a/indra/newview/skins/kliteat/textures/notify_caution_icon.tga b/indra/newview/skins/kliteat/textures/notify_caution_icon.tga new file mode 100644 index 000000000..abc23d1d7 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/notify_caution_icon.tga differ diff --git a/indra/newview/skins/kliteat/textures/notify_next.png b/indra/newview/skins/kliteat/textures/notify_next.png new file mode 100644 index 000000000..b57c26e26 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/notify_next.png differ diff --git a/indra/newview/skins/kliteat/textures/notify_tip_icon.tga b/indra/newview/skins/kliteat/textures/notify_tip_icon.tga new file mode 100644 index 000000000..e7a858678 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/notify_tip_icon.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_cone.tga b/indra/newview/skins/kliteat/textures/object_cone.tga new file mode 100644 index 000000000..1bbca7594 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_cone.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_cone_active.tga b/indra/newview/skins/kliteat/textures/object_cone_active.tga new file mode 100644 index 000000000..7b8799d7e Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_cone_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_cube.tga b/indra/newview/skins/kliteat/textures/object_cube.tga new file mode 100644 index 000000000..c08f8742c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_cube.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_cube_active.tga b/indra/newview/skins/kliteat/textures/object_cube_active.tga new file mode 100644 index 000000000..fac474ee2 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_cube_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_cylinder.tga b/indra/newview/skins/kliteat/textures/object_cylinder.tga new file mode 100644 index 000000000..271c84178 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_cylinder.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_cylinder_active.tga b/indra/newview/skins/kliteat/textures/object_cylinder_active.tga new file mode 100644 index 000000000..5dc5c5e61 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_cylinder_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_grass.tga b/indra/newview/skins/kliteat/textures/object_grass.tga new file mode 100644 index 000000000..3e6b8f8dc Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_grass.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_grass_active.tga b/indra/newview/skins/kliteat/textures/object_grass_active.tga new file mode 100644 index 000000000..98f84e54d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_grass_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_hemi_cone.tga b/indra/newview/skins/kliteat/textures/object_hemi_cone.tga new file mode 100644 index 000000000..7b7cc63cd Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_hemi_cone.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_hemi_cone_active.tga b/indra/newview/skins/kliteat/textures/object_hemi_cone_active.tga new file mode 100644 index 000000000..eabec1556 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_hemi_cone_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_hemi_cylinder.tga b/indra/newview/skins/kliteat/textures/object_hemi_cylinder.tga new file mode 100644 index 000000000..dc1514076 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_hemi_cylinder.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_hemi_cylinder_active.tga b/indra/newview/skins/kliteat/textures/object_hemi_cylinder_active.tga new file mode 100644 index 000000000..8047d7f07 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_hemi_cylinder_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_hemi_sphere.tga b/indra/newview/skins/kliteat/textures/object_hemi_sphere.tga new file mode 100644 index 000000000..9f21f3aa6 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_hemi_sphere.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_hemi_sphere_active.tga b/indra/newview/skins/kliteat/textures/object_hemi_sphere_active.tga new file mode 100644 index 000000000..c6d20e02c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_hemi_sphere_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_prism.tga b/indra/newview/skins/kliteat/textures/object_prism.tga new file mode 100644 index 000000000..489fa35c9 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_prism.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_prism_active.tga b/indra/newview/skins/kliteat/textures/object_prism_active.tga new file mode 100644 index 000000000..b53b897d5 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_prism_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_pyramid.tga b/indra/newview/skins/kliteat/textures/object_pyramid.tga new file mode 100644 index 000000000..69a1d095f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_pyramid.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_pyramid_active.tga b/indra/newview/skins/kliteat/textures/object_pyramid_active.tga new file mode 100644 index 000000000..98aaadeea Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_pyramid_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_ring.tga b/indra/newview/skins/kliteat/textures/object_ring.tga new file mode 100644 index 000000000..4dd05e41a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_ring.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_ring_active.tga b/indra/newview/skins/kliteat/textures/object_ring_active.tga new file mode 100644 index 000000000..4e98b5907 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_ring_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_sphere.tga b/indra/newview/skins/kliteat/textures/object_sphere.tga new file mode 100644 index 000000000..e6a41d5df Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_sphere.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_sphere_active.tga b/indra/newview/skins/kliteat/textures/object_sphere_active.tga new file mode 100644 index 000000000..33c944a2f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_sphere_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_tetrahedron.tga b/indra/newview/skins/kliteat/textures/object_tetrahedron.tga new file mode 100644 index 000000000..01e02cd0a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_tetrahedron.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_tetrahedron_active.tga b/indra/newview/skins/kliteat/textures/object_tetrahedron_active.tga new file mode 100644 index 000000000..3e30a7ccb Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_tetrahedron_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_torus.tga b/indra/newview/skins/kliteat/textures/object_torus.tga new file mode 100644 index 000000000..8c9f665be Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_torus.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_torus_active.tga b/indra/newview/skins/kliteat/textures/object_torus_active.tga new file mode 100644 index 000000000..53d2da87f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_torus_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_tree.tga b/indra/newview/skins/kliteat/textures/object_tree.tga new file mode 100644 index 000000000..dc427e992 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_tree.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_tree_active.tga b/indra/newview/skins/kliteat/textures/object_tree_active.tga new file mode 100644 index 000000000..36509fda5 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_tree_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_tube.tga b/indra/newview/skins/kliteat/textures/object_tube.tga new file mode 100644 index 000000000..b53d1e9d4 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_tube.tga differ diff --git a/indra/newview/skins/kliteat/textures/object_tube_active.tga b/indra/newview/skins/kliteat/textures/object_tube_active.tga new file mode 100644 index 000000000..c990b0b3c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/object_tube_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/pixiesmall.j2c b/indra/newview/skins/kliteat/textures/pixiesmall.j2c new file mode 100644 index 000000000..a1ff64014 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/pixiesmall.j2c differ diff --git a/indra/newview/skins/kliteat/textures/preview.png b/indra/newview/skins/kliteat/textures/preview.png new file mode 100644 index 000000000..f4bd01356 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/preview.png differ diff --git a/indra/newview/skins/kliteat/textures/progressbar_fill.tga b/indra/newview/skins/kliteat/textures/progressbar_fill.tga new file mode 100644 index 000000000..875d2bba7 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/kliteat/textures/progressbar_track.tga b/indra/newview/skins/kliteat/textures/progressbar_track.tga new file mode 100644 index 000000000..d6004bc30 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/kliteat/textures/propertyline.tga b/indra/newview/skins/kliteat/textures/propertyline.tga new file mode 100644 index 000000000..0c504eea7 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/propertyline.tga differ diff --git a/indra/newview/skins/kliteat/textures/ptt_lock_off.tga b/indra/newview/skins/kliteat/textures/ptt_lock_off.tga new file mode 100644 index 000000000..cb6834469 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ptt_lock_off.tga differ diff --git a/indra/newview/skins/kliteat/textures/ptt_lock_on.tga b/indra/newview/skins/kliteat/textures/ptt_lock_on.tga new file mode 100644 index 000000000..5a7413bde Binary files /dev/null and b/indra/newview/skins/kliteat/textures/ptt_lock_on.tga differ diff --git a/indra/newview/skins/kliteat/textures/radio_active_false.tga b/indra/newview/skins/kliteat/textures/radio_active_false.tga new file mode 100644 index 000000000..96e7bb2bc Binary files /dev/null and b/indra/newview/skins/kliteat/textures/radio_active_false.tga differ diff --git a/indra/newview/skins/kliteat/textures/radio_active_true.tga b/indra/newview/skins/kliteat/textures/radio_active_true.tga new file mode 100644 index 000000000..c0abe80bb Binary files /dev/null and b/indra/newview/skins/kliteat/textures/radio_active_true.tga differ diff --git a/indra/newview/skins/kliteat/textures/radio_inactive_false.tga b/indra/newview/skins/kliteat/textures/radio_inactive_false.tga new file mode 100644 index 000000000..aefaf5dc9 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/radio_inactive_false.tga differ diff --git a/indra/newview/skins/kliteat/textures/radio_inactive_true.tga b/indra/newview/skins/kliteat/textures/radio_inactive_true.tga new file mode 100644 index 000000000..267392c4b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/radio_inactive_true.tga differ diff --git a/indra/newview/skins/kliteat/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/kliteat/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..b40ef7305 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/restore.tga b/indra/newview/skins/kliteat/textures/restore.tga new file mode 100644 index 000000000..754c6f7dd Binary files /dev/null and b/indra/newview/skins/kliteat/textures/restore.tga differ diff --git a/indra/newview/skins/kliteat/textures/restore_inactive.tga b/indra/newview/skins/kliteat/textures/restore_inactive.tga new file mode 100644 index 000000000..8f09acda9 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/restore_inactive.tga differ diff --git a/indra/newview/skins/kliteat/textures/restore_pressed.tga b/indra/newview/skins/kliteat/textures/restore_pressed.tga new file mode 100644 index 000000000..a30872055 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/restore_pressed.tga differ diff --git a/indra/newview/skins/kliteat/textures/rounded_square.j2c b/indra/newview/skins/kliteat/textures/rounded_square.j2c new file mode 100644 index 000000000..c8bb572fa Binary files /dev/null and b/indra/newview/skins/kliteat/textures/rounded_square.j2c differ diff --git a/indra/newview/skins/kliteat/textures/rounded_square.tga b/indra/newview/skins/kliteat/textures/rounded_square.tga new file mode 100644 index 000000000..c8fc7b799 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/rounded_square.tga differ diff --git a/indra/newview/skins/kliteat/textures/rounded_square_soft.j2c b/indra/newview/skins/kliteat/textures/rounded_square_soft.j2c new file mode 100644 index 000000000..56e56c1ec Binary files /dev/null and b/indra/newview/skins/kliteat/textures/rounded_square_soft.j2c differ diff --git a/indra/newview/skins/kliteat/textures/rounded_square_soft.tga b/indra/newview/skins/kliteat/textures/rounded_square_soft.tga new file mode 100644 index 000000000..0e5bc79ac Binary files /dev/null and b/indra/newview/skins/kliteat/textures/rounded_square_soft.tga differ diff --git a/indra/newview/skins/kliteat/textures/script_error.j2c b/indra/newview/skins/kliteat/textures/script_error.j2c new file mode 100644 index 000000000..893cb642e Binary files /dev/null and b/indra/newview/skins/kliteat/textures/script_error.j2c differ diff --git a/indra/newview/skins/kliteat/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/kliteat/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..65021b95b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/scrollbutton_down_out_blue.tga b/indra/newview/skins/kliteat/textures/scrollbutton_down_out_blue.tga new file mode 100644 index 000000000..5d069f558 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/scrollbutton_down_out_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/kliteat/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..dacc3a20a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/scrollbutton_left_out_blue.tga b/indra/newview/skins/kliteat/textures/scrollbutton_left_out_blue.tga new file mode 100644 index 000000000..d5bc56055 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/scrollbutton_left_out_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/kliteat/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..1bec6bac2 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/scrollbutton_right_out_blue.tga b/indra/newview/skins/kliteat/textures/scrollbutton_right_out_blue.tga new file mode 100644 index 000000000..f823b0093 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/scrollbutton_right_out_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/kliteat/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..51d844036 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/scrollbutton_up_out_blue.tga b/indra/newview/skins/kliteat/textures/scrollbutton_up_out_blue.tga new file mode 100644 index 000000000..b112585a3 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/scrollbutton_up_out_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/silhouette.j2c b/indra/newview/skins/kliteat/textures/silhouette.j2c new file mode 100644 index 000000000..3859d4cb3 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/silhouette.j2c differ diff --git a/indra/newview/skins/kliteat/textures/slim_icon_16_viewer.tga b/indra/newview/skins/kliteat/textures/slim_icon_16_viewer.tga new file mode 100644 index 000000000..552181d36 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/slim_icon_16_viewer.tga differ diff --git a/indra/newview/skins/kliteat/textures/sm_rounded_corners_simple.tga b/indra/newview/skins/kliteat/textures/sm_rounded_corners_simple.tga new file mode 100644 index 000000000..30bbbb45e Binary files /dev/null and b/indra/newview/skins/kliteat/textures/sm_rounded_corners_simple.tga differ diff --git a/indra/newview/skins/kliteat/textures/smicon_warn.tga b/indra/newview/skins/kliteat/textures/smicon_warn.tga new file mode 100644 index 000000000..90ccaa07e Binary files /dev/null and b/indra/newview/skins/kliteat/textures/smicon_warn.tga differ diff --git a/indra/newview/skins/kliteat/textures/spacer24.tga b/indra/newview/skins/kliteat/textures/spacer24.tga new file mode 100644 index 000000000..c7cab6b38 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/spacer24.tga differ diff --git a/indra/newview/skins/kliteat/textures/spin_down_in_blue.tga b/indra/newview/skins/kliteat/textures/spin_down_in_blue.tga new file mode 100644 index 000000000..e8bb98126 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/spin_down_in_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/spin_down_out_blue.tga b/indra/newview/skins/kliteat/textures/spin_down_out_blue.tga new file mode 100644 index 000000000..2b426156a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/spin_down_out_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/spin_up_in_blue.tga b/indra/newview/skins/kliteat/textures/spin_up_in_blue.tga new file mode 100644 index 000000000..c54648a0c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/spin_up_in_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/spin_up_out_blue.tga b/indra/newview/skins/kliteat/textures/spin_up_out_blue.tga new file mode 100644 index 000000000..e45c3621c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/spin_up_out_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/square_btn_32x128.tga b/indra/newview/skins/kliteat/textures/square_btn_32x128.tga new file mode 100644 index 000000000..ca288492a Binary files /dev/null and b/indra/newview/skins/kliteat/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/kliteat/textures/square_btn_selected_32x128.tga b/indra/newview/skins/kliteat/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..7350309e0 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/kliteat/textures/startup_logo.j2c b/indra/newview/skins/kliteat/textures/startup_logo.j2c new file mode 100644 index 000000000..e3332cb58 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/startup_logo.j2c differ diff --git a/indra/newview/skins/kliteat/textures/status_busy.tga b/indra/newview/skins/kliteat/textures/status_busy.tga new file mode 100644 index 000000000..7743d9c7b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_busy.tga differ diff --git a/indra/newview/skins/kliteat/textures/status_buy_currency.tga b/indra/newview/skins/kliteat/textures/status_buy_currency.tga new file mode 100644 index 000000000..89d4f6b3f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/kliteat/textures/status_buy_currency_pressed.tga b/indra/newview/skins/kliteat/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..1b7f8b30c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/kliteat/textures/status_buy_land.tga b/indra/newview/skins/kliteat/textures/status_buy_land.tga new file mode 100644 index 000000000..dded6971f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/kliteat/textures/status_buy_land_pressed.tga b/indra/newview/skins/kliteat/textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..f5c5fba9b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/kliteat/textures/status_health.tga b/indra/newview/skins/kliteat/textures/status_health.tga new file mode 100644 index 000000000..c29a96519 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_health.tga differ diff --git a/indra/newview/skins/kliteat/textures/status_money.tga b/indra/newview/skins/kliteat/textures/status_money.tga new file mode 100644 index 000000000..d5be31fc6 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_money.tga differ diff --git a/indra/newview/skins/kliteat/textures/status_no_build.tga b/indra/newview/skins/kliteat/textures/status_no_build.tga new file mode 100644 index 000000000..48a8daa4f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_no_build.tga differ diff --git a/indra/newview/skins/kliteat/textures/status_no_fly.tga b/indra/newview/skins/kliteat/textures/status_no_fly.tga new file mode 100644 index 000000000..9c207a04d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_no_fly.tga differ diff --git a/indra/newview/skins/kliteat/textures/status_no_push.tga b/indra/newview/skins/kliteat/textures/status_no_push.tga new file mode 100644 index 000000000..016c5f6b3 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_no_push.tga differ diff --git a/indra/newview/skins/kliteat/textures/status_no_scripts.tga b/indra/newview/skins/kliteat/textures/status_no_scripts.tga new file mode 100644 index 000000000..6b1ffa196 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_no_scripts.tga differ diff --git a/indra/newview/skins/kliteat/textures/status_no_voice.tga b/indra/newview/skins/kliteat/textures/status_no_voice.tga new file mode 100644 index 000000000..0e54952ee Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_no_voice.tga differ diff --git a/indra/newview/skins/kliteat/textures/status_script_debug.tga b/indra/newview/skins/kliteat/textures/status_script_debug.tga new file mode 100644 index 000000000..6fca61483 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_script_debug.tga differ diff --git a/indra/newview/skins/kliteat/textures/status_search.tga b/indra/newview/skins/kliteat/textures/status_search.tga new file mode 100644 index 000000000..12de04601 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_search.tga differ diff --git a/indra/newview/skins/kliteat/textures/status_search_btn.png b/indra/newview/skins/kliteat/textures/status_search_btn.png new file mode 100644 index 000000000..67f61332b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_search_btn.png differ diff --git a/indra/newview/skins/kliteat/textures/status_search_btn_pressed.png b/indra/newview/skins/kliteat/textures/status_search_btn_pressed.png new file mode 100644 index 000000000..1437273d3 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_search_btn_pressed.png differ diff --git a/indra/newview/skins/kliteat/textures/status_voice.tga b/indra/newview/skins/kliteat/textures/status_voice.tga new file mode 100644 index 000000000..9e348013b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/status_voice.tga differ diff --git a/indra/newview/skins/kliteat/textures/tab_background_darkpurple.tga b/indra/newview/skins/kliteat/textures/tab_background_darkpurple.tga new file mode 100644 index 000000000..8169f9869 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tab_background_darkpurple.tga differ diff --git a/indra/newview/skins/kliteat/textures/tab_background_lightgrey.tga b/indra/newview/skins/kliteat/textures/tab_background_lightgrey.tga new file mode 100644 index 000000000..c2f8818f7 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tab_background_lightgrey.tga differ diff --git a/indra/newview/skins/kliteat/textures/tab_background_purple.tga b/indra/newview/skins/kliteat/textures/tab_background_purple.tga new file mode 100644 index 000000000..aa01b3cb6 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tab_background_purple.tga differ diff --git a/indra/newview/skins/kliteat/textures/tab_bottom_blue.tga b/indra/newview/skins/kliteat/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..39bb12173 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/kliteat/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..880396e56 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/tab_left.tga b/indra/newview/skins/kliteat/textures/tab_left.tga new file mode 100644 index 000000000..a64aa4e3d Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tab_left.tga differ diff --git a/indra/newview/skins/kliteat/textures/tab_left_selected.tga b/indra/newview/skins/kliteat/textures/tab_left_selected.tga new file mode 100644 index 000000000..3b0f10d93 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/kliteat/textures/tab_top_blue.tga b/indra/newview/skins/kliteat/textures/tab_top_blue.tga new file mode 100644 index 000000000..6de51a762 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/tab_top_selected_blue.tga b/indra/newview/skins/kliteat/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..c670294fc Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/kliteat/textures/tabarea.tga b/indra/newview/skins/kliteat/textures/tabarea.tga new file mode 100644 index 000000000..5517aebfc Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tabarea.tga differ diff --git a/indra/newview/skins/kliteat/textures/tearoff_pressed.tga b/indra/newview/skins/kliteat/textures/tearoff_pressed.tga new file mode 100644 index 000000000..55897e630 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tearoff_pressed.tga differ diff --git a/indra/newview/skins/kliteat/textures/tearoffbox.tga b/indra/newview/skins/kliteat/textures/tearoffbox.tga new file mode 100644 index 000000000..11e243bd2 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tearoffbox.tga differ diff --git a/indra/newview/skins/kliteat/textures/textures.xml b/indra/newview/skins/kliteat/textures/textures.xml new file mode 100644 index 000000000..82e990837 --- /dev/null +++ b/indra/newview/skins/kliteat/textures/textures.xml @@ -0,0 +1,380 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/kliteat/textures/tool_dozer.tga b/indra/newview/skins/kliteat/textures/tool_dozer.tga new file mode 100644 index 000000000..bc1cc7ade Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/kliteat/textures/tool_dozer_active.tga b/indra/newview/skins/kliteat/textures/tool_dozer_active.tga new file mode 100644 index 000000000..b284c7ff5 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/tool_zoom.tga b/indra/newview/skins/kliteat/textures/tool_zoom.tga new file mode 100644 index 000000000..2f6a75e4b Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/kliteat/textures/tool_zoom_active.tga b/indra/newview/skins/kliteat/textures/tool_zoom_active.tga new file mode 100644 index 000000000..ce8fb6643 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/kliteat/textures/toolbar_bg.tga b/indra/newview/skins/kliteat/textures/toolbar_bg.tga new file mode 100644 index 000000000..6378f8b8c Binary files /dev/null and b/indra/newview/skins/kliteat/textures/toolbar_bg.tga differ diff --git a/indra/newview/skins/kliteat/textures/toolbar_btn_disabled.tga b/indra/newview/skins/kliteat/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..a923ba4ee Binary files /dev/null and b/indra/newview/skins/kliteat/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/kliteat/textures/toolbar_btn_enabled.tga b/indra/newview/skins/kliteat/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..67446fba1 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/kliteat/textures/toolbar_btn_selected.tga b/indra/newview/skins/kliteat/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..2a1f2d55f Binary files /dev/null and b/indra/newview/skins/kliteat/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/kliteat/textures/toolbar_tab.tga b/indra/newview/skins/kliteat/textures/toolbar_tab.tga new file mode 100644 index 000000000..730950b54 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/kliteat/textures/up_arrow.png b/indra/newview/skins/kliteat/textures/up_arrow.png new file mode 100644 index 000000000..31f1c38cb Binary files /dev/null and b/indra/newview/skins/kliteat/textures/up_arrow.png differ diff --git a/indra/newview/skins/kliteat/textures/up_arrow.tga b/indra/newview/skins/kliteat/textures/up_arrow.tga new file mode 100644 index 000000000..c2bd8cceb Binary files /dev/null and b/indra/newview/skins/kliteat/textures/up_arrow.tga differ diff --git a/indra/newview/skins/kliteat/textures/uv_test1.j2c b/indra/newview/skins/kliteat/textures/uv_test1.j2c new file mode 100644 index 000000000..3d5b54179 Binary files /dev/null and b/indra/newview/skins/kliteat/textures/uv_test1.j2c differ diff --git a/indra/newview/skins/kliteat/textures/uv_test2.tga b/indra/newview/skins/kliteat/textures/uv_test2.tga new file mode 100644 index 000000000..a16000d1e Binary files /dev/null and b/indra/newview/skins/kliteat/textures/uv_test2.tga differ diff --git a/indra/newview/skins/openlife/colors.xml b/indra/newview/skins/openlife/colors.xml new file mode 100644 index 000000000..2008d0804 --- /dev/null +++ b/indra/newview/skins/openlife/colors.xml @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/openlife/colors_base.xml b/indra/newview/skins/openlife/colors_base.xml new file mode 100644 index 000000000..3b85efa77 --- /dev/null +++ b/indra/newview/skins/openlife/colors_base.xml @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/openlife/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/openlife/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..0292960c7 Binary files /dev/null and b/indra/newview/skins/openlife/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/openlife/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga b/indra/newview/skins/openlife/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga new file mode 100644 index 000000000..193c3f762 Binary files /dev/null and b/indra/newview/skins/openlife/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga differ diff --git a/indra/newview/skins/openlife/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga b/indra/newview/skins/openlife/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga new file mode 100644 index 000000000..f7841968a Binary files /dev/null and b/indra/newview/skins/openlife/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga differ diff --git a/indra/newview/skins/openlife/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga b/indra/newview/skins/openlife/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga new file mode 100644 index 000000000..cfeb3c3f3 Binary files /dev/null and b/indra/newview/skins/openlife/textures/74ba3584-58ea-9984-5b76-62d37942ab77.tga differ diff --git a/indra/newview/skins/openlife/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/openlife/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..dd57c8027 Binary files /dev/null and b/indra/newview/skins/openlife/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/openlife/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4 2.tga b/indra/newview/skins/openlife/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4 2.tga new file mode 100644 index 000000000..432a49216 Binary files /dev/null and b/indra/newview/skins/openlife/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4 2.tga differ diff --git a/indra/newview/skins/openlife/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga b/indra/newview/skins/openlife/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga new file mode 100644 index 000000000..fdf218611 Binary files /dev/null and b/indra/newview/skins/openlife/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga differ diff --git a/indra/newview/skins/openlife/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga b/indra/newview/skins/openlife/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga new file mode 100644 index 000000000..ab33044ae Binary files /dev/null and b/indra/newview/skins/openlife/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga differ diff --git a/indra/newview/skins/openlife/textures/Fly_btn_active.png b/indra/newview/skins/openlife/textures/Fly_btn_active.png new file mode 100644 index 000000000..c0a4acd9f Binary files /dev/null and b/indra/newview/skins/openlife/textures/Fly_btn_active.png differ diff --git a/indra/newview/skins/openlife/textures/Fly_btn_disabled.png b/indra/newview/skins/openlife/textures/Fly_btn_disabled.png new file mode 100644 index 000000000..2ee652bd2 Binary files /dev/null and b/indra/newview/skins/openlife/textures/Fly_btn_disabled.png differ diff --git a/indra/newview/skins/openlife/textures/Fly_btn_stop.png b/indra/newview/skins/openlife/textures/Fly_btn_stop.png new file mode 100644 index 000000000..ca9b5a18d Binary files /dev/null and b/indra/newview/skins/openlife/textures/Fly_btn_stop.png differ diff --git a/indra/newview/skins/openlife/textures/Inventory_btn.png b/indra/newview/skins/openlife/textures/Inventory_btn.png new file mode 100644 index 000000000..668926ae5 Binary files /dev/null and b/indra/newview/skins/openlife/textures/Inventory_btn.png differ diff --git a/indra/newview/skins/openlife/textures/MapBg.tga b/indra/newview/skins/openlife/textures/MapBg.tga new file mode 100644 index 000000000..83ca9d68c Binary files /dev/null and b/indra/newview/skins/openlife/textures/MapBg.tga differ diff --git a/indra/newview/skins/openlife/textures/MapBg2.tga b/indra/newview/skins/openlife/textures/MapBg2.tga new file mode 100644 index 000000000..5700dc1d3 Binary files /dev/null and b/indra/newview/skins/openlife/textures/MapBg2.tga differ diff --git a/indra/newview/skins/openlife/textures/MapBg3.tga b/indra/newview/skins/openlife/textures/MapBg3.tga new file mode 100644 index 000000000..a0ebd1946 Binary files /dev/null and b/indra/newview/skins/openlife/textures/MapBg3.tga differ diff --git a/indra/newview/skins/openlife/textures/WLday.tga b/indra/newview/skins/openlife/textures/WLday.tga new file mode 100644 index 000000000..db9239c80 Binary files /dev/null and b/indra/newview/skins/openlife/textures/WLday.tga differ diff --git a/indra/newview/skins/openlife/textures/WLnight.tga b/indra/newview/skins/openlife/textures/WLnight.tga new file mode 100644 index 000000000..60f1acaac Binary files /dev/null and b/indra/newview/skins/openlife/textures/WLnight.tga differ diff --git a/indra/newview/skins/openlife/textures/WLsunrise.tga b/indra/newview/skins/openlife/textures/WLsunrise.tga new file mode 100644 index 000000000..77539c9d1 Binary files /dev/null and b/indra/newview/skins/openlife/textures/WLsunrise.tga differ diff --git a/indra/newview/skins/openlife/textures/WLsunset.tga b/indra/newview/skins/openlife/textures/WLsunset.tga new file mode 100644 index 000000000..6fe2eb5f2 Binary files /dev/null and b/indra/newview/skins/openlife/textures/WLsunset.tga differ diff --git a/indra/newview/skins/openlife/textures/active_speakers.tga b/indra/newview/skins/openlife/textures/active_speakers.tga new file mode 100644 index 000000000..37521d2dd Binary files /dev/null and b/indra/newview/skins/openlife/textures/active_speakers.tga differ diff --git a/indra/newview/skins/openlife/textures/active_voice_tab.tga b/indra/newview/skins/openlife/textures/active_voice_tab.tga new file mode 100644 index 000000000..1a68c98e3 Binary files /dev/null and b/indra/newview/skins/openlife/textures/active_voice_tab.tga differ diff --git a/indra/newview/skins/openlife/textures/alpha_gradient.tga b/indra/newview/skins/openlife/textures/alpha_gradient.tga new file mode 100644 index 000000000..6fdba25d4 Binary files /dev/null and b/indra/newview/skins/openlife/textures/alpha_gradient.tga differ diff --git a/indra/newview/skins/openlife/textures/arrow_down.tga b/indra/newview/skins/openlife/textures/arrow_down.tga new file mode 100644 index 000000000..e2fd0eb81 Binary files /dev/null and b/indra/newview/skins/openlife/textures/arrow_down.tga differ diff --git a/indra/newview/skins/openlife/textures/arrow_up.tga b/indra/newview/skins/openlife/textures/arrow_up.tga new file mode 100644 index 000000000..819801af9 Binary files /dev/null and b/indra/newview/skins/openlife/textures/arrow_up.tga differ diff --git a/indra/newview/skins/openlife/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga b/indra/newview/skins/openlife/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga new file mode 100644 index 000000000..4acfd6cf8 Binary files /dev/null and b/indra/newview/skins/openlife/textures/b2ef2d31-9714-a07b-6ca7-31638166364b.tga differ diff --git a/indra/newview/skins/openlife/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/openlife/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..66c9dc4e0 Binary files /dev/null and b/indra/newview/skins/openlife/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/openlife/textures/btn_chatbar.tga b/indra/newview/skins/openlife/textures/btn_chatbar.tga new file mode 100644 index 000000000..2570c855a Binary files /dev/null and b/indra/newview/skins/openlife/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/openlife/textures/btn_chatbar_selected.tga b/indra/newview/skins/openlife/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..530832f86 Binary files /dev/null and b/indra/newview/skins/openlife/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/openlife/textures/button_anim_pause.tga b/indra/newview/skins/openlife/textures/button_anim_pause.tga new file mode 100644 index 000000000..2d9f2b504 Binary files /dev/null and b/indra/newview/skins/openlife/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/openlife/textures/button_anim_pause_selected.tga b/indra/newview/skins/openlife/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..a67c21e96 Binary files /dev/null and b/indra/newview/skins/openlife/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/openlife/textures/button_anim_play.tga b/indra/newview/skins/openlife/textures/button_anim_play.tga new file mode 100644 index 000000000..37e9c7ec1 Binary files /dev/null and b/indra/newview/skins/openlife/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/openlife/textures/button_anim_play_selected.tga b/indra/newview/skins/openlife/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..bcf31a2aa Binary files /dev/null and b/indra/newview/skins/openlife/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/openlife/textures/button_anim_stop.tga b/indra/newview/skins/openlife/textures/button_anim_stop.tga new file mode 100644 index 000000000..088896955 Binary files /dev/null and b/indra/newview/skins/openlife/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/openlife/textures/button_anim_stop_selected.tga b/indra/newview/skins/openlife/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..1c83672ba Binary files /dev/null and b/indra/newview/skins/openlife/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/openlife/textures/button_disabled_32x128.tga b/indra/newview/skins/openlife/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..30321ed4f Binary files /dev/null and b/indra/newview/skins/openlife/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/openlife/textures/button_enabled_32x128.tga b/indra/newview/skins/openlife/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..ca288492a Binary files /dev/null and b/indra/newview/skins/openlife/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/openlife/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/openlife/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..7350309e0 Binary files /dev/null and b/indra/newview/skins/openlife/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/openlife/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/openlife/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..dfeeda92b Binary files /dev/null and b/indra/newview/skins/openlife/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/openlife/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/openlife/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..8b743416e Binary files /dev/null and b/indra/newview/skins/openlife/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/openlife/textures/cam_rotate_in.tga b/indra/newview/skins/openlife/textures/cam_rotate_in.tga new file mode 100644 index 000000000..d56623fcc Binary files /dev/null and b/indra/newview/skins/openlife/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/openlife/textures/cam_rotate_out.tga b/indra/newview/skins/openlife/textures/cam_rotate_out.tga new file mode 100644 index 000000000..81dba441a Binary files /dev/null and b/indra/newview/skins/openlife/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/openlife/textures/cam_tracking_in.tga b/indra/newview/skins/openlife/textures/cam_tracking_in.tga new file mode 100644 index 000000000..61204d559 Binary files /dev/null and b/indra/newview/skins/openlife/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/openlife/textures/cam_tracking_out.tga b/indra/newview/skins/openlife/textures/cam_tracking_out.tga new file mode 100644 index 000000000..cf50077f9 Binary files /dev/null and b/indra/newview/skins/openlife/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/openlife/textures/cam_zoom_minus_in.tga b/indra/newview/skins/openlife/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..206cb6cb6 Binary files /dev/null and b/indra/newview/skins/openlife/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/openlife/textures/cam_zoom_out.tga b/indra/newview/skins/openlife/textures/cam_zoom_out.tga new file mode 100644 index 000000000..0e6f1390c Binary files /dev/null and b/indra/newview/skins/openlife/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/openlife/textures/cam_zoom_plus_in.tga b/indra/newview/skins/openlife/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..40d5fdebc Binary files /dev/null and b/indra/newview/skins/openlife/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/openlife/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/openlife/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..046e69688 Binary files /dev/null and b/indra/newview/skins/openlife/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/openlife/textures/chat_btn.png b/indra/newview/skins/openlife/textures/chat_btn.png new file mode 100644 index 000000000..012932949 Binary files /dev/null and b/indra/newview/skins/openlife/textures/chat_btn.png differ diff --git a/indra/newview/skins/openlife/textures/chat_btn_active.png b/indra/newview/skins/openlife/textures/chat_btn_active.png new file mode 100644 index 000000000..8a90a8c1c Binary files /dev/null and b/indra/newview/skins/openlife/textures/chat_btn_active.png differ diff --git a/indra/newview/skins/openlife/textures/checkbox_disabled_false.tga b/indra/newview/skins/openlife/textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..59888a92b Binary files /dev/null and b/indra/newview/skins/openlife/textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/openlife/textures/checkbox_disabled_true.tga b/indra/newview/skins/openlife/textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..ec6ae644c Binary files /dev/null and b/indra/newview/skins/openlife/textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/openlife/textures/checkbox_enabled_false.tga b/indra/newview/skins/openlife/textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..47a95ecac Binary files /dev/null and b/indra/newview/skins/openlife/textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/openlife/textures/checkbox_enabled_true.tga b/indra/newview/skins/openlife/textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..fc51aacc3 Binary files /dev/null and b/indra/newview/skins/openlife/textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/openlife/textures/checkerboard_transparency_bg.png b/indra/newview/skins/openlife/textures/checkerboard_transparency_bg.png new file mode 100644 index 000000000..9a1693520 Binary files /dev/null and b/indra/newview/skins/openlife/textures/checkerboard_transparency_bg.png differ diff --git a/indra/newview/skins/openlife/textures/circle.tga b/indra/newview/skins/openlife/textures/circle.tga new file mode 100644 index 000000000..d7097e3a3 Binary files /dev/null and b/indra/newview/skins/openlife/textures/circle.tga differ diff --git a/indra/newview/skins/openlife/textures/close_inactive.tga b/indra/newview/skins/openlife/textures/close_inactive.tga new file mode 100644 index 000000000..30f6e7b5f Binary files /dev/null and b/indra/newview/skins/openlife/textures/close_inactive.tga differ diff --git a/indra/newview/skins/openlife/textures/close_inactive_blue.tga b/indra/newview/skins/openlife/textures/close_inactive_blue.tga new file mode 100644 index 000000000..30f6e7b5f Binary files /dev/null and b/indra/newview/skins/openlife/textures/close_inactive_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/closebox.png b/indra/newview/skins/openlife/textures/closebox.png new file mode 100644 index 000000000..e9b147995 Binary files /dev/null and b/indra/newview/skins/openlife/textures/closebox.png differ diff --git a/indra/newview/skins/openlife/textures/closebox_active.png b/indra/newview/skins/openlife/textures/closebox_active.png new file mode 100644 index 000000000..73536721c Binary files /dev/null and b/indra/newview/skins/openlife/textures/closebox_active.png differ diff --git a/indra/newview/skins/openlife/textures/cloud-particle.j2c b/indra/newview/skins/openlife/textures/cloud-particle.j2c new file mode 100644 index 000000000..6c03bf6d0 Binary files /dev/null and b/indra/newview/skins/openlife/textures/cloud-particle.j2c differ diff --git a/indra/newview/skins/openlife/textures/color_swatch_alpha.tga b/indra/newview/skins/openlife/textures/color_swatch_alpha.tga new file mode 100644 index 000000000..814a004e6 Binary files /dev/null and b/indra/newview/skins/openlife/textures/color_swatch_alpha.tga differ diff --git a/indra/newview/skins/openlife/textures/colors.xml b/indra/newview/skins/openlife/textures/colors.xml new file mode 100644 index 000000000..c7575e9dd --- /dev/null +++ b/indra/newview/skins/openlife/textures/colors.xml @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/indra/newview/skins/openlife/textures/colors_base.xml b/indra/newview/skins/openlife/textures/colors_base.xml new file mode 100644 index 000000000..3b85efa77 --- /dev/null +++ b/indra/newview/skins/openlife/textures/colors_base.xml @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/openlife/textures/combobox_arrow.tga b/indra/newview/skins/openlife/textures/combobox_arrow.tga new file mode 100644 index 000000000..42b30d8c6 Binary files /dev/null and b/indra/newview/skins/openlife/textures/combobox_arrow.tga differ diff --git a/indra/newview/skins/openlife/textures/communicate_btn_active.png b/indra/newview/skins/openlife/textures/communicate_btn_active.png new file mode 100644 index 000000000..1546c7135 Binary files /dev/null and b/indra/newview/skins/openlife/textures/communicate_btn_active.png differ diff --git a/indra/newview/skins/openlife/textures/communicate_btn_pressed.png b/indra/newview/skins/openlife/textures/communicate_btn_pressed.png new file mode 100644 index 000000000..fb3cd5895 Binary files /dev/null and b/indra/newview/skins/openlife/textures/communicate_btn_pressed.png differ diff --git a/indra/newview/skins/openlife/textures/create.png b/indra/newview/skins/openlife/textures/create.png new file mode 100644 index 000000000..545af5cbf Binary files /dev/null and b/indra/newview/skins/openlife/textures/create.png differ diff --git a/indra/newview/skins/openlife/textures/crosshairs.tga b/indra/newview/skins/openlife/textures/crosshairs.tga new file mode 100644 index 000000000..ac4d63dc5 Binary files /dev/null and b/indra/newview/skins/openlife/textures/crosshairs.tga differ diff --git a/indra/newview/skins/openlife/textures/d2a90afa-074a-8a37-7eef-c6621e63f852.tga b/indra/newview/skins/openlife/textures/d2a90afa-074a-8a37-7eef-c6621e63f852.tga new file mode 100644 index 000000000..66959d7d2 Binary files /dev/null and b/indra/newview/skins/openlife/textures/d2a90afa-074a-8a37-7eef-c6621e63f852.tga differ diff --git a/indra/newview/skins/openlife/textures/direction_arrow.tga b/indra/newview/skins/openlife/textures/direction_arrow.tga new file mode 100644 index 000000000..f3ef1068c Binary files /dev/null and b/indra/newview/skins/openlife/textures/direction_arrow.tga differ diff --git a/indra/newview/skins/openlife/textures/down_arrow.png b/indra/newview/skins/openlife/textures/down_arrow.png new file mode 100644 index 000000000..155f80c97 Binary files /dev/null and b/indra/newview/skins/openlife/textures/down_arrow.png differ diff --git a/indra/newview/skins/openlife/textures/down_arrow.tga b/indra/newview/skins/openlife/textures/down_arrow.tga new file mode 100644 index 000000000..8829d31e5 Binary files /dev/null and b/indra/newview/skins/openlife/textures/down_arrow.tga differ diff --git a/indra/newview/skins/openlife/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga b/indra/newview/skins/openlife/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga new file mode 100644 index 000000000..6fdba25d4 Binary files /dev/null and b/indra/newview/skins/openlife/textures/e97cf410-8e61-7005-ec06-629eba4cd1fb.tga differ diff --git a/indra/newview/skins/openlife/textures/eye_button_active.tga b/indra/newview/skins/openlife/textures/eye_button_active.tga new file mode 100644 index 000000000..40db9501b Binary files /dev/null and b/indra/newview/skins/openlife/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/openlife/textures/eye_button_inactive.tga b/indra/newview/skins/openlife/textures/eye_button_inactive.tga new file mode 100644 index 000000000..6ca8feec8 Binary files /dev/null and b/indra/newview/skins/openlife/textures/eye_button_inactive.tga differ diff --git a/indra/newview/skins/openlife/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/openlife/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..8b9d012a9 Binary files /dev/null and b/indra/newview/skins/openlife/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/openlife/textures/ff_edit_mine.tga b/indra/newview/skins/openlife/textures/ff_edit_mine.tga new file mode 100644 index 000000000..8f0c35b98 Binary files /dev/null and b/indra/newview/skins/openlife/textures/ff_edit_mine.tga differ diff --git a/indra/newview/skins/openlife/textures/ff_edit_mine_button.tga b/indra/newview/skins/openlife/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..01770a3c4 Binary files /dev/null and b/indra/newview/skins/openlife/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/openlife/textures/ff_edit_theirs.tga b/indra/newview/skins/openlife/textures/ff_edit_theirs.tga new file mode 100644 index 000000000..005ada2de Binary files /dev/null and b/indra/newview/skins/openlife/textures/ff_edit_theirs.tga differ diff --git a/indra/newview/skins/openlife/textures/ff_edit_theirs_button.tga b/indra/newview/skins/openlife/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..78a23b0b7 Binary files /dev/null and b/indra/newview/skins/openlife/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/openlife/textures/ff_online_status_button.tga b/indra/newview/skins/openlife/textures/ff_online_status_button.tga new file mode 100644 index 000000000..79f291829 Binary files /dev/null and b/indra/newview/skins/openlife/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/openlife/textures/ff_visible_map.tga b/indra/newview/skins/openlife/textures/ff_visible_map.tga new file mode 100644 index 000000000..a4dcc5c0f Binary files /dev/null and b/indra/newview/skins/openlife/textures/ff_visible_map.tga differ diff --git a/indra/newview/skins/openlife/textures/ff_visible_map_button.tga b/indra/newview/skins/openlife/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..bce9a8c61 Binary files /dev/null and b/indra/newview/skins/openlife/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/openlife/textures/ff_visible_online.tga b/indra/newview/skins/openlife/textures/ff_visible_online.tga new file mode 100644 index 000000000..f56ee594f Binary files /dev/null and b/indra/newview/skins/openlife/textures/ff_visible_online.tga differ diff --git a/indra/newview/skins/openlife/textures/ff_visible_online_button.tga b/indra/newview/skins/openlife/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..c888b08c7 Binary files /dev/null and b/indra/newview/skins/openlife/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/openlife/textures/flyout_btn_left.tga b/indra/newview/skins/openlife/textures/flyout_btn_left.tga new file mode 100644 index 000000000..8b0fd8a17 Binary files /dev/null and b/indra/newview/skins/openlife/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/openlife/textures/flyout_btn_left_2.tga b/indra/newview/skins/openlife/textures/flyout_btn_left_2.tga new file mode 100644 index 000000000..8b0fd8a17 Binary files /dev/null and b/indra/newview/skins/openlife/textures/flyout_btn_left_2.tga differ diff --git a/indra/newview/skins/openlife/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/openlife/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..4b3cd2a4f Binary files /dev/null and b/indra/newview/skins/openlife/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/openlife/textures/flyout_btn_left_selected.tga b/indra/newview/skins/openlife/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..8b0fd8a17 Binary files /dev/null and b/indra/newview/skins/openlife/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/openlife/textures/flyout_btn_right.tga b/indra/newview/skins/openlife/textures/flyout_btn_right.tga new file mode 100644 index 000000000..1ef461b3f Binary files /dev/null and b/indra/newview/skins/openlife/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/openlife/textures/flyout_btn_right_2.tga b/indra/newview/skins/openlife/textures/flyout_btn_right_2.tga new file mode 100644 index 000000000..61ddbf42d Binary files /dev/null and b/indra/newview/skins/openlife/textures/flyout_btn_right_2.tga differ diff --git a/indra/newview/skins/openlife/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/openlife/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..69bef96d9 Binary files /dev/null and b/indra/newview/skins/openlife/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/openlife/textures/flyout_btn_right_selected.tga b/indra/newview/skins/openlife/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..9e054106b Binary files /dev/null and b/indra/newview/skins/openlife/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/openlife/textures/folder_arrow.tga b/indra/newview/skins/openlife/textures/folder_arrow.tga new file mode 100644 index 000000000..77d470731 Binary files /dev/null and b/indra/newview/skins/openlife/textures/folder_arrow.tga differ diff --git a/indra/newview/skins/openlife/textures/foot_shadow.j2c b/indra/newview/skins/openlife/textures/foot_shadow.j2c new file mode 100644 index 000000000..f9ce9da7d Binary files /dev/null and b/indra/newview/skins/openlife/textures/foot_shadow.j2c differ diff --git a/indra/newview/skins/openlife/textures/icn_active-speakers-dot-lvl0.tga b/indra/newview/skins/openlife/textures/icn_active-speakers-dot-lvl0.tga new file mode 100644 index 000000000..35846cef3 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_active-speakers-dot-lvl0.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_active-speakers-dot-lvl1.tga b/indra/newview/skins/openlife/textures/icn_active-speakers-dot-lvl1.tga new file mode 100644 index 000000000..1f9f564fa Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_active-speakers-dot-lvl1.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_active-speakers-dot-lvl2.tga b/indra/newview/skins/openlife/textures/icn_active-speakers-dot-lvl2.tga new file mode 100644 index 000000000..b2e5609f1 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_active-speakers-dot-lvl2.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_active-speakers-typing1.tga b/indra/newview/skins/openlife/textures/icn_active-speakers-typing1.tga new file mode 100644 index 000000000..3706c96e0 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_active-speakers-typing1.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_active-speakers-typing2.tga b/indra/newview/skins/openlife/textures/icn_active-speakers-typing2.tga new file mode 100644 index 000000000..0d127f946 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_active-speakers-typing2.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_active-speakers-typing3.tga b/indra/newview/skins/openlife/textures/icn_active-speakers-typing3.tga new file mode 100644 index 000000000..031b3ad34 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_active-speakers-typing3.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_chatbar.tga b/indra/newview/skins/openlife/textures/icn_chatbar.tga new file mode 100644 index 000000000..8d133b197 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_chatbar.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_clear_lineeditor.tga b/indra/newview/skins/openlife/textures/icn_clear_lineeditor.tga new file mode 100644 index 000000000..8cd8310c6 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_clear_lineeditor.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_label_media.tga b/indra/newview/skins/openlife/textures/icn_label_media.tga new file mode 100644 index 000000000..29d1a66c9 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_label_media.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_label_music.tga b/indra/newview/skins/openlife/textures/icn_label_music.tga new file mode 100644 index 000000000..2bb435eb4 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_label_web.tga b/indra/newview/skins/openlife/textures/icn_label_web.tga new file mode 100644 index 000000000..426ed02f0 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_media-pause.tga b/indra/newview/skins/openlife/textures/icn_media-pause.tga new file mode 100644 index 000000000..a2f284295 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_media-play.tga b/indra/newview/skins/openlife/textures/icn_media-play.tga new file mode 100644 index 000000000..c810318bd Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_media-play.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_media.tga b/indra/newview/skins/openlife/textures/icn_media.tga new file mode 100644 index 000000000..2a035ba5d Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_media.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_media_movie.tga b/indra/newview/skins/openlife/textures/icn_media_movie.tga new file mode 100644 index 000000000..6b630e832 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_media_web.tga b/indra/newview/skins/openlife/textures/icn_media_web.tga new file mode 100644 index 000000000..29d1a66c9 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_music-pause.tga b/indra/newview/skins/openlife/textures/icn_music-pause.tga new file mode 100644 index 000000000..22952f53a Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_music-play.tga b/indra/newview/skins/openlife/textures/icn_music-play.tga new file mode 100644 index 000000000..e38f784d0 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_music.tga b/indra/newview/skins/openlife/textures/icn_music.tga new file mode 100644 index 000000000..81da5abcf Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_music.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_pause.tga b/indra/newview/skins/openlife/textures/icn_pause.tga new file mode 100644 index 000000000..4eb91e3c4 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_pause.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_play.tga b/indra/newview/skins/openlife/textures/icn_play.tga new file mode 100644 index 000000000..e2fca3c6c Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_play.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_rounded-text-field.tga b/indra/newview/skins/openlife/textures/icn_rounded-text-field.tga new file mode 100644 index 000000000..20953ad10 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_rounded-text-field.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_scrollbar.tga b/indra/newview/skins/openlife/textures/icn_scrollbar.tga new file mode 100644 index 000000000..a19a8a5d1 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_scrollbar.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_scrollbar_bg.tga b/indra/newview/skins/openlife/textures/icn_scrollbar_bg.tga new file mode 100644 index 000000000..cd484c61e Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_scrollbar_bg.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_scrollbar_thumb.tga b/indra/newview/skins/openlife/textures/icn_scrollbar_thumb.tga new file mode 100644 index 000000000..b11b1bdcd Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_scrollbar_thumb.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_slide-groove_dark.tga b/indra/newview/skins/openlife/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..176c4e047 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_slide-highlight.tga b/indra/newview/skins/openlife/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..f2df555e1 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/openlife/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..5fcc3b3bd Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/openlife/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..9b7b47b17 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_speaker_dark.tga b/indra/newview/skins/openlife/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..579ab1c29 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_stop.tga b/indra/newview/skins/openlife/textures/icn_stop.tga new file mode 100644 index 000000000..7f31fe97b Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_stop.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_textfield_enabled.tga b/indra/newview/skins/openlife/textures/icn_textfield_enabled.tga new file mode 100644 index 000000000..551e7618b Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_textfield_enabled.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_toolbar_build.tga b/indra/newview/skins/openlife/textures/icn_toolbar_build.tga new file mode 100644 index 000000000..d71c534fd Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_toolbar_build.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_toolbar_fly.tga b/indra/newview/skins/openlife/textures/icn_toolbar_fly.tga new file mode 100644 index 000000000..42157de1a Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_toolbar_fly.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_toolbar_inventory.tga b/indra/newview/skins/openlife/textures/icn_toolbar_inventory.tga new file mode 100644 index 000000000..59868ae2e Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_toolbar_inventory.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_toolbar_map.tga b/indra/newview/skins/openlife/textures/icn_toolbar_map.tga new file mode 100644 index 000000000..b686b2171 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_toolbar_map.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_toolbar_minimap.tga b/indra/newview/skins/openlife/textures/icn_toolbar_minimap.tga new file mode 100644 index 000000000..3874e35d4 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_toolbar_minimap.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_toolbar_search.tga b/indra/newview/skins/openlife/textures/icn_toolbar_search.tga new file mode 100644 index 000000000..3f2a716fd Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_toolbar_search.tga differ diff --git a/indra/newview/skins/openlife/textures/icn_toolbar_snapshot.tga b/indra/newview/skins/openlife/textures/icn_toolbar_snapshot.tga new file mode 100644 index 000000000..b1929ce1a Binary files /dev/null and b/indra/newview/skins/openlife/textures/icn_toolbar_snapshot.tga differ diff --git a/indra/newview/skins/openlife/textures/icon_for_sale.tga b/indra/newview/skins/openlife/textures/icon_for_sale.tga new file mode 100644 index 000000000..82cdac2be Binary files /dev/null and b/indra/newview/skins/openlife/textures/icon_for_sale.tga differ diff --git a/indra/newview/skins/openlife/textures/icon_for_sale_adult.tga b/indra/newview/skins/openlife/textures/icon_for_sale_adult.tga new file mode 100644 index 000000000..6a99188f8 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icon_for_sale_adult.tga differ diff --git a/indra/newview/skins/openlife/textures/icon_group.tga b/indra/newview/skins/openlife/textures/icon_group.tga new file mode 100644 index 000000000..faecb8111 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icon_group.tga differ diff --git a/indra/newview/skins/openlife/textures/icon_groupnotice.tga b/indra/newview/skins/openlife/textures/icon_groupnotice.tga new file mode 100644 index 000000000..115e4e267 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icon_groupnotice.tga differ diff --git a/indra/newview/skins/openlife/textures/icon_groupnoticeinventory.tga b/indra/newview/skins/openlife/textures/icon_groupnoticeinventory.tga new file mode 100644 index 000000000..f71302082 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icon_groupnoticeinventory.tga differ diff --git a/indra/newview/skins/openlife/textures/icon_lock.tga b/indra/newview/skins/openlife/textures/icon_lock.tga new file mode 100644 index 000000000..98d8a2d84 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icon_lock.tga differ diff --git a/indra/newview/skins/openlife/textures/icon_place.tga b/indra/newview/skins/openlife/textures/icon_place.tga new file mode 100644 index 000000000..2170c9849 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icon_place.tga differ diff --git a/indra/newview/skins/openlife/textures/icon_popular.tga b/indra/newview/skins/openlife/textures/icon_popular.tga new file mode 100644 index 000000000..5eb9c3809 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icon_popular.tga differ diff --git a/indra/newview/skins/openlife/textures/icon_top_pick.tga b/indra/newview/skins/openlife/textures/icon_top_pick.tga new file mode 100644 index 000000000..0b34882d2 Binary files /dev/null and b/indra/newview/skins/openlife/textures/icon_top_pick.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_animation.tga b/indra/newview/skins/openlife/textures/inv_folder_animation.tga new file mode 100644 index 000000000..ac10b69e3 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_animation.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_bodypart.tga b/indra/newview/skins/openlife/textures/inv_folder_bodypart.tga new file mode 100644 index 000000000..b2fb50d8c Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_bodypart.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_callingcard.tga b/indra/newview/skins/openlife/textures/inv_folder_callingcard.tga new file mode 100644 index 000000000..774f293bb Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_callingcard.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_clothing.tga b/indra/newview/skins/openlife/textures/inv_folder_clothing.tga new file mode 100644 index 000000000..14a4094b4 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_clothing.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_gesture.tga b/indra/newview/skins/openlife/textures/inv_folder_gesture.tga new file mode 100644 index 000000000..c464e9177 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_gesture.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_landmark.tga b/indra/newview/skins/openlife/textures/inv_folder_landmark.tga new file mode 100644 index 000000000..0e5be5149 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_landmark.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_lostandfound.tga b/indra/newview/skins/openlife/textures/inv_folder_lostandfound.tga new file mode 100644 index 000000000..31489c5aa Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_lostandfound.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_notecard.tga b/indra/newview/skins/openlife/textures/inv_folder_notecard.tga new file mode 100644 index 000000000..70dc09c6d Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_notecard.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_object.tga b/indra/newview/skins/openlife/textures/inv_folder_object.tga new file mode 100644 index 000000000..caef96283 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_object.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_plain_closed.tga b/indra/newview/skins/openlife/textures/inv_folder_plain_closed.tga new file mode 100644 index 000000000..ef33a6fc7 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_plain_closed.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_plain_open.tga b/indra/newview/skins/openlife/textures/inv_folder_plain_open.tga new file mode 100644 index 000000000..d949d2cfb Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_plain_open.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_script.tga b/indra/newview/skins/openlife/textures/inv_folder_script.tga new file mode 100644 index 000000000..2c9980a32 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_script.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_snapshot.tga b/indra/newview/skins/openlife/textures/inv_folder_snapshot.tga new file mode 100644 index 000000000..271e96348 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_snapshot.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_sound.tga b/indra/newview/skins/openlife/textures/inv_folder_sound.tga new file mode 100644 index 000000000..3c0616cd7 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_sound.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_texture.tga b/indra/newview/skins/openlife/textures/inv_folder_texture.tga new file mode 100644 index 000000000..78c6704f6 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_texture.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_folder_trash.tga b/indra/newview/skins/openlife/textures/inv_folder_trash.tga new file mode 100644 index 000000000..47995fb1f Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_folder_trash.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_animation.tga b/indra/newview/skins/openlife/textures/inv_item_animation.tga new file mode 100644 index 000000000..637033a2a Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_animation.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_attach.tga b/indra/newview/skins/openlife/textures/inv_item_attach.tga new file mode 100644 index 000000000..55469f6fd Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_attach.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_callingcard_offline.tga b/indra/newview/skins/openlife/textures/inv_item_callingcard_offline.tga new file mode 100644 index 000000000..ad8658cf7 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_callingcard_offline.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_callingcard_online.tga b/indra/newview/skins/openlife/textures/inv_item_callingcard_online.tga new file mode 100644 index 000000000..96606011c Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_callingcard_online.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_clothing.tga b/indra/newview/skins/openlife/textures/inv_item_clothing.tga new file mode 100644 index 000000000..b7864266a Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_clothing.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_eyes.tga b/indra/newview/skins/openlife/textures/inv_item_eyes.tga new file mode 100644 index 000000000..8702f7871 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_eyes.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_gesture.tga b/indra/newview/skins/openlife/textures/inv_item_gesture.tga new file mode 100644 index 000000000..a6fe629b2 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_gesture.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_gloves.tga b/indra/newview/skins/openlife/textures/inv_item_gloves.tga new file mode 100644 index 000000000..bcc6aee5a Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_gloves.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_hair.tga b/indra/newview/skins/openlife/textures/inv_item_hair.tga new file mode 100644 index 000000000..686214ed4 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_hair.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_jacket.tga b/indra/newview/skins/openlife/textures/inv_item_jacket.tga new file mode 100644 index 000000000..69c5f0702 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_jacket.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_landmark.tga b/indra/newview/skins/openlife/textures/inv_item_landmark.tga new file mode 100644 index 000000000..833d4e695 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_landmark.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_landmark_visited.tga b/indra/newview/skins/openlife/textures/inv_item_landmark_visited.tga new file mode 100644 index 000000000..283f0eced Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_landmark_visited.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_notecard.tga b/indra/newview/skins/openlife/textures/inv_item_notecard.tga new file mode 100644 index 000000000..9fb82fed2 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_notecard.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_object.tga b/indra/newview/skins/openlife/textures/inv_item_object.tga new file mode 100644 index 000000000..c749105c5 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_object.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_object_multi.tga b/indra/newview/skins/openlife/textures/inv_item_object_multi.tga new file mode 100644 index 000000000..4b3a590cf Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_object_multi.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_pants.tga b/indra/newview/skins/openlife/textures/inv_item_pants.tga new file mode 100644 index 000000000..38dbc57c4 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_pants.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_script.tga b/indra/newview/skins/openlife/textures/inv_item_script.tga new file mode 100644 index 000000000..f9983430b Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_script.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_script_dangerous.tga b/indra/newview/skins/openlife/textures/inv_item_script_dangerous.tga new file mode 100644 index 000000000..efa78acfd Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_script_dangerous.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_shape.tga b/indra/newview/skins/openlife/textures/inv_item_shape.tga new file mode 100644 index 000000000..2e8a5a721 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_shape.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_shirt.tga b/indra/newview/skins/openlife/textures/inv_item_shirt.tga new file mode 100644 index 000000000..8c6f5ebf2 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_shirt.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_shoes.tga b/indra/newview/skins/openlife/textures/inv_item_shoes.tga new file mode 100644 index 000000000..ac7a2b00d Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_shoes.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_skin.tga b/indra/newview/skins/openlife/textures/inv_item_skin.tga new file mode 100644 index 000000000..ab4169f4f Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_skin.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_skirt.tga b/indra/newview/skins/openlife/textures/inv_item_skirt.tga new file mode 100644 index 000000000..44760408b Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_skirt.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_snapshot.tga b/indra/newview/skins/openlife/textures/inv_item_snapshot.tga new file mode 100644 index 000000000..648a070d9 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_snapshot.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_socks.tga b/indra/newview/skins/openlife/textures/inv_item_socks.tga new file mode 100644 index 000000000..2d7bb7e24 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_socks.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_sound.tga b/indra/newview/skins/openlife/textures/inv_item_sound.tga new file mode 100644 index 000000000..7ef90523b Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_sound.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_texture.tga b/indra/newview/skins/openlife/textures/inv_item_texture.tga new file mode 100644 index 000000000..6b4269d96 Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_texture.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_underpants.tga b/indra/newview/skins/openlife/textures/inv_item_underpants.tga new file mode 100644 index 000000000..f679e346d Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_underpants.tga differ diff --git a/indra/newview/skins/openlife/textures/inv_item_undershirt.tga b/indra/newview/skins/openlife/textures/inv_item_undershirt.tga new file mode 100644 index 000000000..359e3d71e Binary files /dev/null and b/indra/newview/skins/openlife/textures/inv_item_undershirt.tga differ diff --git a/indra/newview/skins/openlife/textures/lag_status_critical.tga b/indra/newview/skins/openlife/textures/lag_status_critical.tga new file mode 100644 index 000000000..bbc71d9e7 Binary files /dev/null and b/indra/newview/skins/openlife/textures/lag_status_critical.tga differ diff --git a/indra/newview/skins/openlife/textures/lag_status_good.tga b/indra/newview/skins/openlife/textures/lag_status_good.tga new file mode 100644 index 000000000..680ba90f1 Binary files /dev/null and b/indra/newview/skins/openlife/textures/lag_status_good.tga differ diff --git a/indra/newview/skins/openlife/textures/lag_status_warning.tga b/indra/newview/skins/openlife/textures/lag_status_warning.tga new file mode 100644 index 000000000..13ce3cc39 Binary files /dev/null and b/indra/newview/skins/openlife/textures/lag_status_warning.tga differ diff --git a/indra/newview/skins/openlife/textures/land_flaotbg.png b/indra/newview/skins/openlife/textures/land_flaotbg.png new file mode 100644 index 000000000..2de1440f9 Binary files /dev/null and b/indra/newview/skins/openlife/textures/land_flaotbg.png differ diff --git a/indra/newview/skins/openlife/textures/land_floatbg.tga b/indra/newview/skins/openlife/textures/land_floatbg.tga new file mode 100644 index 000000000..00f74773e Binary files /dev/null and b/indra/newview/skins/openlife/textures/land_floatbg.tga differ diff --git a/indra/newview/skins/openlife/textures/legend.tga b/indra/newview/skins/openlife/textures/legend.tga new file mode 100644 index 000000000..0dbb8fda4 Binary files /dev/null and b/indra/newview/skins/openlife/textures/legend.tga differ diff --git a/indra/newview/skins/openlife/textures/lightgray.tga b/indra/newview/skins/openlife/textures/lightgray.tga new file mode 100644 index 000000000..e69be0893 Binary files /dev/null and b/indra/newview/skins/openlife/textures/lightgray.tga differ diff --git a/indra/newview/skins/openlife/textures/locked_image.j2c b/indra/newview/skins/openlife/textures/locked_image.j2c new file mode 100644 index 000000000..9e8998d67 Binary files /dev/null and b/indra/newview/skins/openlife/textures/locked_image.j2c differ diff --git a/indra/newview/skins/openlife/textures/loginpane.png b/indra/newview/skins/openlife/textures/loginpane.png new file mode 100644 index 000000000..ffd93b546 Binary files /dev/null and b/indra/newview/skins/openlife/textures/loginpane.png differ diff --git a/indra/newview/skins/openlife/textures/map_avatar_16.tga b/indra/newview/skins/openlife/textures/map_avatar_16.tga new file mode 100644 index 000000000..f59e9e919 Binary files /dev/null and b/indra/newview/skins/openlife/textures/map_avatar_16.tga differ diff --git a/indra/newview/skins/openlife/textures/map_avatar_8.tga b/indra/newview/skins/openlife/textures/map_avatar_8.tga new file mode 100644 index 000000000..28552f223 Binary files /dev/null and b/indra/newview/skins/openlife/textures/map_avatar_8.tga differ diff --git a/indra/newview/skins/openlife/textures/map_avatar_above_8.tga b/indra/newview/skins/openlife/textures/map_avatar_above_8.tga new file mode 100644 index 000000000..193428e53 Binary files /dev/null and b/indra/newview/skins/openlife/textures/map_avatar_above_8.tga differ diff --git a/indra/newview/skins/openlife/textures/map_avatar_below_8.tga b/indra/newview/skins/openlife/textures/map_avatar_below_8.tga new file mode 100644 index 000000000..9e14bfab9 Binary files /dev/null and b/indra/newview/skins/openlife/textures/map_avatar_below_8.tga differ diff --git a/indra/newview/skins/openlife/textures/map_avatar_you_8.tga b/indra/newview/skins/openlife/textures/map_avatar_you_8.tga new file mode 100644 index 000000000..8500eadeb Binary files /dev/null and b/indra/newview/skins/openlife/textures/map_avatar_you_8.tga differ diff --git a/indra/newview/skins/openlife/textures/map_event.tga b/indra/newview/skins/openlife/textures/map_event.tga new file mode 100644 index 000000000..2c06d08fd Binary files /dev/null and b/indra/newview/skins/openlife/textures/map_event.tga differ diff --git a/indra/newview/skins/openlife/textures/map_event_adult.tga b/indra/newview/skins/openlife/textures/map_event_adult.tga new file mode 100644 index 000000000..c344fb1e7 Binary files /dev/null and b/indra/newview/skins/openlife/textures/map_event_adult.tga differ diff --git a/indra/newview/skins/openlife/textures/map_event_mature.tga b/indra/newview/skins/openlife/textures/map_event_mature.tga new file mode 100644 index 000000000..71067c0df Binary files /dev/null and b/indra/newview/skins/openlife/textures/map_event_mature.tga differ diff --git a/indra/newview/skins/openlife/textures/map_home.tga b/indra/newview/skins/openlife/textures/map_home.tga new file mode 100644 index 000000000..acaaa3db4 Binary files /dev/null and b/indra/newview/skins/openlife/textures/map_home.tga differ diff --git a/indra/newview/skins/openlife/textures/map_infohub.tga b/indra/newview/skins/openlife/textures/map_infohub.tga new file mode 100644 index 000000000..545b8e532 Binary files /dev/null and b/indra/newview/skins/openlife/textures/map_infohub.tga differ diff --git a/indra/newview/skins/openlife/textures/map_telehub.tga b/indra/newview/skins/openlife/textures/map_telehub.tga new file mode 100644 index 000000000..57aa72393 Binary files /dev/null and b/indra/newview/skins/openlife/textures/map_telehub.tga differ diff --git a/indra/newview/skins/openlife/textures/map_track_16.tga b/indra/newview/skins/openlife/textures/map_track_16.tga new file mode 100644 index 000000000..451ce24cf Binary files /dev/null and b/indra/newview/skins/openlife/textures/map_track_16.tga differ diff --git a/indra/newview/skins/openlife/textures/map_track_8.tga b/indra/newview/skins/openlife/textures/map_track_8.tga new file mode 100644 index 000000000..53425ff45 Binary files /dev/null and b/indra/newview/skins/openlife/textures/map_track_8.tga differ diff --git a/indra/newview/skins/openlife/textures/media_icon.tga b/indra/newview/skins/openlife/textures/media_icon.tga new file mode 100644 index 000000000..289520cde Binary files /dev/null and b/indra/newview/skins/openlife/textures/media_icon.tga differ diff --git a/indra/newview/skins/openlife/textures/menu_bar.png b/indra/newview/skins/openlife/textures/menu_bar.png new file mode 100644 index 000000000..c0935be07 Binary files /dev/null and b/indra/newview/skins/openlife/textures/menu_bar.png differ diff --git a/indra/newview/skins/openlife/textures/menu_bar.tga b/indra/newview/skins/openlife/textures/menu_bar.tga new file mode 100644 index 000000000..4e8973e6f Binary files /dev/null and b/indra/newview/skins/openlife/textures/menu_bar.tga differ diff --git a/indra/newview/skins/openlife/textures/menu_bar2.tga b/indra/newview/skins/openlife/textures/menu_bar2.tga new file mode 100644 index 000000000..56e86b1a3 Binary files /dev/null and b/indra/newview/skins/openlife/textures/menu_bar2.tga differ diff --git a/indra/newview/skins/openlife/textures/minimap.png b/indra/newview/skins/openlife/textures/minimap.png new file mode 100644 index 000000000..72e8c41c2 Binary files /dev/null and b/indra/newview/skins/openlife/textures/minimap.png differ diff --git a/indra/newview/skins/openlife/textures/minimize.tga b/indra/newview/skins/openlife/textures/minimize.tga new file mode 100644 index 000000000..578bbdb67 Binary files /dev/null and b/indra/newview/skins/openlife/textures/minimize.tga differ diff --git a/indra/newview/skins/openlife/textures/minimize_inactive.tga b/indra/newview/skins/openlife/textures/minimize_inactive.tga new file mode 100644 index 000000000..8f09acda9 Binary files /dev/null and b/indra/newview/skins/openlife/textures/minimize_inactive.tga differ diff --git a/indra/newview/skins/openlife/textures/minimize_pressed.tga b/indra/newview/skins/openlife/textures/minimize_pressed.tga new file mode 100644 index 000000000..70dff9699 Binary files /dev/null and b/indra/newview/skins/openlife/textures/minimize_pressed.tga differ diff --git a/indra/newview/skins/openlife/textures/move_backward_in.tga b/indra/newview/skins/openlife/textures/move_backward_in.tga new file mode 100644 index 000000000..e3e229e17 Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/openlife/textures/move_backward_out.tga b/indra/newview/skins/openlife/textures/move_backward_out.tga new file mode 100644 index 000000000..641f5506e Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/openlife/textures/move_down_in.tga b/indra/newview/skins/openlife/textures/move_down_in.tga new file mode 100644 index 000000000..c7a714f6b Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_down_in.tga differ diff --git a/indra/newview/skins/openlife/textures/move_down_out.tga b/indra/newview/skins/openlife/textures/move_down_out.tga new file mode 100644 index 000000000..76c1b26ee Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_down_out.tga differ diff --git a/indra/newview/skins/openlife/textures/move_forward_in.tga b/indra/newview/skins/openlife/textures/move_forward_in.tga new file mode 100644 index 000000000..e5641957d Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/openlife/textures/move_forward_out.tga b/indra/newview/skins/openlife/textures/move_forward_out.tga new file mode 100644 index 000000000..40d6f1532 Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/openlife/textures/move_left_in.tga b/indra/newview/skins/openlife/textures/move_left_in.tga new file mode 100644 index 000000000..7802dcde7 Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_left_in.tga differ diff --git a/indra/newview/skins/openlife/textures/move_left_out.tga b/indra/newview/skins/openlife/textures/move_left_out.tga new file mode 100644 index 000000000..410efcc16 Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_left_out.tga differ diff --git a/indra/newview/skins/openlife/textures/move_right_in.tga b/indra/newview/skins/openlife/textures/move_right_in.tga new file mode 100644 index 000000000..14d39c864 Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_right_in.tga differ diff --git a/indra/newview/skins/openlife/textures/move_right_out.tga b/indra/newview/skins/openlife/textures/move_right_out.tga new file mode 100644 index 000000000..6ead8dc70 Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_right_out.tga differ diff --git a/indra/newview/skins/openlife/textures/move_turn_left_in.tga b/indra/newview/skins/openlife/textures/move_turn_left_in.tga new file mode 100644 index 000000000..a0c35495b Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/openlife/textures/move_turn_left_out.tga b/indra/newview/skins/openlife/textures/move_turn_left_out.tga new file mode 100644 index 000000000..1bcffa025 Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/openlife/textures/move_turn_right_in.tga b/indra/newview/skins/openlife/textures/move_turn_right_in.tga new file mode 100644 index 000000000..1920611d4 Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/openlife/textures/move_turn_right_out.tga b/indra/newview/skins/openlife/textures/move_turn_right_out.tga new file mode 100644 index 000000000..a27428356 Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/openlife/textures/move_up_in.tga b/indra/newview/skins/openlife/textures/move_up_in.tga new file mode 100644 index 000000000..f4bd5071a Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_up_in.tga differ diff --git a/indra/newview/skins/openlife/textures/move_up_out.tga b/indra/newview/skins/openlife/textures/move_up_out.tga new file mode 100644 index 000000000..f9a884305 Binary files /dev/null and b/indra/newview/skins/openlife/textures/move_up_out.tga differ diff --git a/indra/newview/skins/openlife/textures/music_icon.tga b/indra/newview/skins/openlife/textures/music_icon.tga new file mode 100644 index 000000000..aeaff02e0 Binary files /dev/null and b/indra/newview/skins/openlife/textures/music_icon.tga differ diff --git a/indra/newview/skins/openlife/textures/mute_icon.tga b/indra/newview/skins/openlife/textures/mute_icon.tga new file mode 100644 index 000000000..879b9e618 Binary files /dev/null and b/indra/newview/skins/openlife/textures/mute_icon.tga differ diff --git a/indra/newview/skins/openlife/textures/noentrylines.j2c b/indra/newview/skins/openlife/textures/noentrylines.j2c new file mode 100644 index 000000000..93ec17659 Binary files /dev/null and b/indra/newview/skins/openlife/textures/noentrylines.j2c differ diff --git a/indra/newview/skins/openlife/textures/noentrypasslines.j2c b/indra/newview/skins/openlife/textures/noentrypasslines.j2c new file mode 100644 index 000000000..800c46696 Binary files /dev/null and b/indra/newview/skins/openlife/textures/noentrypasslines.j2c differ diff --git a/indra/newview/skins/openlife/textures/notify_box_icon.tga b/indra/newview/skins/openlife/textures/notify_box_icon.tga new file mode 100644 index 000000000..5342d4173 Binary files /dev/null and b/indra/newview/skins/openlife/textures/notify_box_icon.tga differ diff --git a/indra/newview/skins/openlife/textures/notify_caution_icon.tga b/indra/newview/skins/openlife/textures/notify_caution_icon.tga new file mode 100644 index 000000000..abc23d1d7 Binary files /dev/null and b/indra/newview/skins/openlife/textures/notify_caution_icon.tga differ diff --git a/indra/newview/skins/openlife/textures/notify_next.png b/indra/newview/skins/openlife/textures/notify_next.png new file mode 100644 index 000000000..b57c26e26 Binary files /dev/null and b/indra/newview/skins/openlife/textures/notify_next.png differ diff --git a/indra/newview/skins/openlife/textures/notify_tip_icon.tga b/indra/newview/skins/openlife/textures/notify_tip_icon.tga new file mode 100644 index 000000000..e7a858678 Binary files /dev/null and b/indra/newview/skins/openlife/textures/notify_tip_icon.tga differ diff --git a/indra/newview/skins/openlife/textures/object_cone.tga b/indra/newview/skins/openlife/textures/object_cone.tga new file mode 100644 index 000000000..1bbca7594 Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_cone.tga differ diff --git a/indra/newview/skins/openlife/textures/object_cone_active.tga b/indra/newview/skins/openlife/textures/object_cone_active.tga new file mode 100644 index 000000000..7b8799d7e Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_cone_active.tga differ diff --git a/indra/newview/skins/openlife/textures/object_cube.tga b/indra/newview/skins/openlife/textures/object_cube.tga new file mode 100644 index 000000000..c08f8742c Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_cube.tga differ diff --git a/indra/newview/skins/openlife/textures/object_cube_active.tga b/indra/newview/skins/openlife/textures/object_cube_active.tga new file mode 100644 index 000000000..fac474ee2 Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_cube_active.tga differ diff --git a/indra/newview/skins/openlife/textures/object_cylinder.tga b/indra/newview/skins/openlife/textures/object_cylinder.tga new file mode 100644 index 000000000..271c84178 Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_cylinder.tga differ diff --git a/indra/newview/skins/openlife/textures/object_cylinder_active.tga b/indra/newview/skins/openlife/textures/object_cylinder_active.tga new file mode 100644 index 000000000..5dc5c5e61 Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_cylinder_active.tga differ diff --git a/indra/newview/skins/openlife/textures/object_grass.tga b/indra/newview/skins/openlife/textures/object_grass.tga new file mode 100644 index 000000000..3e6b8f8dc Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_grass.tga differ diff --git a/indra/newview/skins/openlife/textures/object_grass_active.tga b/indra/newview/skins/openlife/textures/object_grass_active.tga new file mode 100644 index 000000000..98f84e54d Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_grass_active.tga differ diff --git a/indra/newview/skins/openlife/textures/object_hemi_cone.tga b/indra/newview/skins/openlife/textures/object_hemi_cone.tga new file mode 100644 index 000000000..7b7cc63cd Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_hemi_cone.tga differ diff --git a/indra/newview/skins/openlife/textures/object_hemi_cone_active.tga b/indra/newview/skins/openlife/textures/object_hemi_cone_active.tga new file mode 100644 index 000000000..eabec1556 Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_hemi_cone_active.tga differ diff --git a/indra/newview/skins/openlife/textures/object_hemi_cylinder.tga b/indra/newview/skins/openlife/textures/object_hemi_cylinder.tga new file mode 100644 index 000000000..dc1514076 Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_hemi_cylinder.tga differ diff --git a/indra/newview/skins/openlife/textures/object_hemi_cylinder_active.tga b/indra/newview/skins/openlife/textures/object_hemi_cylinder_active.tga new file mode 100644 index 000000000..8047d7f07 Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_hemi_cylinder_active.tga differ diff --git a/indra/newview/skins/openlife/textures/object_hemi_sphere.tga b/indra/newview/skins/openlife/textures/object_hemi_sphere.tga new file mode 100644 index 000000000..9f21f3aa6 Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_hemi_sphere.tga differ diff --git a/indra/newview/skins/openlife/textures/object_hemi_sphere_active.tga b/indra/newview/skins/openlife/textures/object_hemi_sphere_active.tga new file mode 100644 index 000000000..c6d20e02c Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_hemi_sphere_active.tga differ diff --git a/indra/newview/skins/openlife/textures/object_prism.tga b/indra/newview/skins/openlife/textures/object_prism.tga new file mode 100644 index 000000000..489fa35c9 Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_prism.tga differ diff --git a/indra/newview/skins/openlife/textures/object_prism_active.tga b/indra/newview/skins/openlife/textures/object_prism_active.tga new file mode 100644 index 000000000..b53b897d5 Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_prism_active.tga differ diff --git a/indra/newview/skins/openlife/textures/object_pyramid.tga b/indra/newview/skins/openlife/textures/object_pyramid.tga new file mode 100644 index 000000000..69a1d095f Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_pyramid.tga differ diff --git a/indra/newview/skins/openlife/textures/object_pyramid_active.tga b/indra/newview/skins/openlife/textures/object_pyramid_active.tga new file mode 100644 index 000000000..98aaadeea Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_pyramid_active.tga differ diff --git a/indra/newview/skins/openlife/textures/object_ring.tga b/indra/newview/skins/openlife/textures/object_ring.tga new file mode 100644 index 000000000..4dd05e41a Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_ring.tga differ diff --git a/indra/newview/skins/openlife/textures/object_ring_active.tga b/indra/newview/skins/openlife/textures/object_ring_active.tga new file mode 100644 index 000000000..4e98b5907 Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_ring_active.tga differ diff --git a/indra/newview/skins/openlife/textures/object_sphere.tga b/indra/newview/skins/openlife/textures/object_sphere.tga new file mode 100644 index 000000000..e6a41d5df Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_sphere.tga differ diff --git a/indra/newview/skins/openlife/textures/object_sphere_active.tga b/indra/newview/skins/openlife/textures/object_sphere_active.tga new file mode 100644 index 000000000..33c944a2f Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_sphere_active.tga differ diff --git a/indra/newview/skins/openlife/textures/object_tetrahedron.tga b/indra/newview/skins/openlife/textures/object_tetrahedron.tga new file mode 100644 index 000000000..01e02cd0a Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_tetrahedron.tga differ diff --git a/indra/newview/skins/openlife/textures/object_tetrahedron_active.tga b/indra/newview/skins/openlife/textures/object_tetrahedron_active.tga new file mode 100644 index 000000000..3e30a7ccb Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_tetrahedron_active.tga differ diff --git a/indra/newview/skins/openlife/textures/object_torus.tga b/indra/newview/skins/openlife/textures/object_torus.tga new file mode 100644 index 000000000..8c9f665be Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_torus.tga differ diff --git a/indra/newview/skins/openlife/textures/object_torus_active.tga b/indra/newview/skins/openlife/textures/object_torus_active.tga new file mode 100644 index 000000000..53d2da87f Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_torus_active.tga differ diff --git a/indra/newview/skins/openlife/textures/object_tree.tga b/indra/newview/skins/openlife/textures/object_tree.tga new file mode 100644 index 000000000..dc427e992 Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_tree.tga differ diff --git a/indra/newview/skins/openlife/textures/object_tree_active.tga b/indra/newview/skins/openlife/textures/object_tree_active.tga new file mode 100644 index 000000000..36509fda5 Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_tree_active.tga differ diff --git a/indra/newview/skins/openlife/textures/object_tube.tga b/indra/newview/skins/openlife/textures/object_tube.tga new file mode 100644 index 000000000..b53d1e9d4 Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_tube.tga differ diff --git a/indra/newview/skins/openlife/textures/object_tube_active.tga b/indra/newview/skins/openlife/textures/object_tube_active.tga new file mode 100644 index 000000000..c990b0b3c Binary files /dev/null and b/indra/newview/skins/openlife/textures/object_tube_active.tga differ diff --git a/indra/newview/skins/openlife/textures/openlifegridbetalogo.png b/indra/newview/skins/openlife/textures/openlifegridbetalogo.png new file mode 100644 index 000000000..b3d3e32eb Binary files /dev/null and b/indra/newview/skins/openlife/textures/openlifegridbetalogo.png differ diff --git a/indra/newview/skins/openlife/textures/panel_avatar.png b/indra/newview/skins/openlife/textures/panel_avatar.png new file mode 100644 index 000000000..1ec751a5b Binary files /dev/null and b/indra/newview/skins/openlife/textures/panel_avatar.png differ diff --git a/indra/newview/skins/openlife/textures/panel_avatarbio1.png b/indra/newview/skins/openlife/textures/panel_avatarbio1.png new file mode 100644 index 000000000..fcb9c8d27 Binary files /dev/null and b/indra/newview/skins/openlife/textures/panel_avatarbio1.png differ diff --git a/indra/newview/skins/openlife/textures/panel_mylatest.png b/indra/newview/skins/openlife/textures/panel_mylatest.png new file mode 100644 index 000000000..61a05ef2f Binary files /dev/null and b/indra/newview/skins/openlife/textures/panel_mylatest.png differ diff --git a/indra/newview/skins/openlife/textures/panel_notes.png b/indra/newview/skins/openlife/textures/panel_notes.png new file mode 100644 index 000000000..2f0c25457 Binary files /dev/null and b/indra/newview/skins/openlife/textures/panel_notes.png differ diff --git a/indra/newview/skins/openlife/textures/panel_picks.png b/indra/newview/skins/openlife/textures/panel_picks.png new file mode 100644 index 000000000..9d7df3f93 Binary files /dev/null and b/indra/newview/skins/openlife/textures/panel_picks.png differ diff --git a/indra/newview/skins/openlife/textures/panel_web.png b/indra/newview/skins/openlife/textures/panel_web.png new file mode 100644 index 000000000..e969e8255 Binary files /dev/null and b/indra/newview/skins/openlife/textures/panel_web.png differ diff --git a/indra/newview/skins/openlife/textures/pixiesmall.j2c b/indra/newview/skins/openlife/textures/pixiesmall.j2c new file mode 100644 index 000000000..a1ff64014 Binary files /dev/null and b/indra/newview/skins/openlife/textures/pixiesmall.j2c differ diff --git a/indra/newview/skins/openlife/textures/preview.png b/indra/newview/skins/openlife/textures/preview.png new file mode 100644 index 000000000..fb784d556 Binary files /dev/null and b/indra/newview/skins/openlife/textures/preview.png differ diff --git a/indra/newview/skins/openlife/textures/progress_fill.tga b/indra/newview/skins/openlife/textures/progress_fill.tga new file mode 100644 index 000000000..082c69c34 Binary files /dev/null and b/indra/newview/skins/openlife/textures/progress_fill.tga differ diff --git a/indra/newview/skins/openlife/textures/progressbar_fill.tga b/indra/newview/skins/openlife/textures/progressbar_fill.tga new file mode 100644 index 000000000..c1d2a090a Binary files /dev/null and b/indra/newview/skins/openlife/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/openlife/textures/progressbar_track.tga b/indra/newview/skins/openlife/textures/progressbar_track.tga new file mode 100644 index 000000000..d6004bc30 Binary files /dev/null and b/indra/newview/skins/openlife/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/openlife/textures/propertyline.tga b/indra/newview/skins/openlife/textures/propertyline.tga new file mode 100644 index 000000000..0c504eea7 Binary files /dev/null and b/indra/newview/skins/openlife/textures/propertyline.tga differ diff --git a/indra/newview/skins/openlife/textures/ptt_lock_off.tga b/indra/newview/skins/openlife/textures/ptt_lock_off.tga new file mode 100644 index 000000000..cb6834469 Binary files /dev/null and b/indra/newview/skins/openlife/textures/ptt_lock_off.tga differ diff --git a/indra/newview/skins/openlife/textures/radar.png b/indra/newview/skins/openlife/textures/radar.png new file mode 100644 index 000000000..72e8c41c2 Binary files /dev/null and b/indra/newview/skins/openlife/textures/radar.png differ diff --git a/indra/newview/skins/openlife/textures/radio_active_false.tga b/indra/newview/skins/openlife/textures/radio_active_false.tga new file mode 100644 index 000000000..96e7bb2bc Binary files /dev/null and b/indra/newview/skins/openlife/textures/radio_active_false.tga differ diff --git a/indra/newview/skins/openlife/textures/radio_active_true.tga b/indra/newview/skins/openlife/textures/radio_active_true.tga new file mode 100644 index 000000000..5c281b325 Binary files /dev/null and b/indra/newview/skins/openlife/textures/radio_active_true.tga differ diff --git a/indra/newview/skins/openlife/textures/radio_inactive_false.tga b/indra/newview/skins/openlife/textures/radio_inactive_false.tga new file mode 100644 index 000000000..aefaf5dc9 Binary files /dev/null and b/indra/newview/skins/openlife/textures/radio_inactive_false.tga differ diff --git a/indra/newview/skins/openlife/textures/radio_inactive_true.tga b/indra/newview/skins/openlife/textures/radio_inactive_true.tga new file mode 100644 index 000000000..6aab6c421 Binary files /dev/null and b/indra/newview/skins/openlife/textures/radio_inactive_true.tga differ diff --git a/indra/newview/skins/openlife/textures/restore.tga b/indra/newview/skins/openlife/textures/restore.tga new file mode 100644 index 000000000..754c6f7dd Binary files /dev/null and b/indra/newview/skins/openlife/textures/restore.tga differ diff --git a/indra/newview/skins/openlife/textures/restore_inactive.tga b/indra/newview/skins/openlife/textures/restore_inactive.tga new file mode 100644 index 000000000..8f09acda9 Binary files /dev/null and b/indra/newview/skins/openlife/textures/restore_inactive.tga differ diff --git a/indra/newview/skins/openlife/textures/restore_pressed.tga b/indra/newview/skins/openlife/textures/restore_pressed.tga new file mode 100644 index 000000000..a30872055 Binary files /dev/null and b/indra/newview/skins/openlife/textures/restore_pressed.tga differ diff --git a/indra/newview/skins/openlife/textures/rounded_square.tga b/indra/newview/skins/openlife/textures/rounded_square.tga new file mode 100644 index 000000000..c8fc7b799 Binary files /dev/null and b/indra/newview/skins/openlife/textures/rounded_square.tga differ diff --git a/indra/newview/skins/openlife/textures/rounded_square_soft.tga b/indra/newview/skins/openlife/textures/rounded_square_soft.tga new file mode 100644 index 000000000..0e5bc79ac Binary files /dev/null and b/indra/newview/skins/openlife/textures/rounded_square_soft.tga differ diff --git a/indra/newview/skins/openlife/textures/screenshot_disabled.png b/indra/newview/skins/openlife/textures/screenshot_disabled.png new file mode 100644 index 000000000..3e3cfec4e Binary files /dev/null and b/indra/newview/skins/openlife/textures/screenshot_disabled.png differ diff --git a/indra/newview/skins/openlife/textures/screenshot_pressed.png b/indra/newview/skins/openlife/textures/screenshot_pressed.png new file mode 100644 index 000000000..3e3cfec4e Binary files /dev/null and b/indra/newview/skins/openlife/textures/screenshot_pressed.png differ diff --git a/indra/newview/skins/openlife/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/openlife/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..65021b95b Binary files /dev/null and b/indra/newview/skins/openlife/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/scrollbutton_down_out_blue.tga b/indra/newview/skins/openlife/textures/scrollbutton_down_out_blue.tga new file mode 100644 index 000000000..5d069f558 Binary files /dev/null and b/indra/newview/skins/openlife/textures/scrollbutton_down_out_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/openlife/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..dacc3a20a Binary files /dev/null and b/indra/newview/skins/openlife/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/scrollbutton_left_out_blue.tga b/indra/newview/skins/openlife/textures/scrollbutton_left_out_blue.tga new file mode 100644 index 000000000..d5bc56055 Binary files /dev/null and b/indra/newview/skins/openlife/textures/scrollbutton_left_out_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/openlife/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..1bec6bac2 Binary files /dev/null and b/indra/newview/skins/openlife/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/scrollbutton_right_out_blue.tga b/indra/newview/skins/openlife/textures/scrollbutton_right_out_blue.tga new file mode 100644 index 000000000..f823b0093 Binary files /dev/null and b/indra/newview/skins/openlife/textures/scrollbutton_right_out_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/openlife/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..51d844036 Binary files /dev/null and b/indra/newview/skins/openlife/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/scrollbutton_up_out_blue.tga b/indra/newview/skins/openlife/textures/scrollbutton_up_out_blue.tga new file mode 100644 index 000000000..b112585a3 Binary files /dev/null and b/indra/newview/skins/openlife/textures/scrollbutton_up_out_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/search_btn.png b/indra/newview/skins/openlife/textures/search_btn.png new file mode 100644 index 000000000..424407ef4 Binary files /dev/null and b/indra/newview/skins/openlife/textures/search_btn.png differ diff --git a/indra/newview/skins/openlife/textures/slim_icon_16_viewer.tga b/indra/newview/skins/openlife/textures/slim_icon_16_viewer.tga new file mode 100644 index 000000000..552181d36 Binary files /dev/null and b/indra/newview/skins/openlife/textures/slim_icon_16_viewer.tga differ diff --git a/indra/newview/skins/openlife/textures/sm_rounded_corners_simple.tga b/indra/newview/skins/openlife/textures/sm_rounded_corners_simple.tga new file mode 100644 index 000000000..30bbbb45e Binary files /dev/null and b/indra/newview/skins/openlife/textures/sm_rounded_corners_simple.tga differ diff --git a/indra/newview/skins/openlife/textures/smicon_warn.tga b/indra/newview/skins/openlife/textures/smicon_warn.tga new file mode 100644 index 000000000..90ccaa07e Binary files /dev/null and b/indra/newview/skins/openlife/textures/smicon_warn.tga differ diff --git a/indra/newview/skins/openlife/textures/spacer24.tga b/indra/newview/skins/openlife/textures/spacer24.tga new file mode 100644 index 000000000..c7cab6b38 Binary files /dev/null and b/indra/newview/skins/openlife/textures/spacer24.tga differ diff --git a/indra/newview/skins/openlife/textures/spacer35.tga b/indra/newview/skins/openlife/textures/spacer35.tga new file mode 100644 index 000000000..b88bc6680 Binary files /dev/null and b/indra/newview/skins/openlife/textures/spacer35.tga differ diff --git a/indra/newview/skins/openlife/textures/spin_down_in_blue.tga b/indra/newview/skins/openlife/textures/spin_down_in_blue.tga new file mode 100644 index 000000000..e8bb98126 Binary files /dev/null and b/indra/newview/skins/openlife/textures/spin_down_in_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/spin_down_out_blue.tga b/indra/newview/skins/openlife/textures/spin_down_out_blue.tga new file mode 100644 index 000000000..2b426156a Binary files /dev/null and b/indra/newview/skins/openlife/textures/spin_down_out_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/spin_up_in_blue.tga b/indra/newview/skins/openlife/textures/spin_up_in_blue.tga new file mode 100644 index 000000000..c54648a0c Binary files /dev/null and b/indra/newview/skins/openlife/textures/spin_up_in_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/spin_up_out_blue.tga b/indra/newview/skins/openlife/textures/spin_up_out_blue.tga new file mode 100644 index 000000000..e45c3621c Binary files /dev/null and b/indra/newview/skins/openlife/textures/spin_up_out_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/square_btn_32x128.tga b/indra/newview/skins/openlife/textures/square_btn_32x128.tga new file mode 100644 index 000000000..ca288492a Binary files /dev/null and b/indra/newview/skins/openlife/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/openlife/textures/square_btn_selected_32x128.tga b/indra/newview/skins/openlife/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..7350309e0 Binary files /dev/null and b/indra/newview/skins/openlife/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/openlife/textures/tab_background_darkpurple.tga b/indra/newview/skins/openlife/textures/tab_background_darkpurple.tga new file mode 100644 index 000000000..8169f9869 Binary files /dev/null and b/indra/newview/skins/openlife/textures/tab_background_darkpurple.tga differ diff --git a/indra/newview/skins/openlife/textures/tab_background_lightgrey.tga b/indra/newview/skins/openlife/textures/tab_background_lightgrey.tga new file mode 100644 index 000000000..c2f8818f7 Binary files /dev/null and b/indra/newview/skins/openlife/textures/tab_background_lightgrey.tga differ diff --git a/indra/newview/skins/openlife/textures/tab_background_purple.tga b/indra/newview/skins/openlife/textures/tab_background_purple.tga new file mode 100644 index 000000000..aa01b3cb6 Binary files /dev/null and b/indra/newview/skins/openlife/textures/tab_background_purple.tga differ diff --git a/indra/newview/skins/openlife/textures/tab_bottom_blue.tga b/indra/newview/skins/openlife/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..39bb12173 Binary files /dev/null and b/indra/newview/skins/openlife/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/openlife/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..880396e56 Binary files /dev/null and b/indra/newview/skins/openlife/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/tab_left.tga b/indra/newview/skins/openlife/textures/tab_left.tga new file mode 100644 index 000000000..a64aa4e3d Binary files /dev/null and b/indra/newview/skins/openlife/textures/tab_left.tga differ diff --git a/indra/newview/skins/openlife/textures/tab_left_selected.tga b/indra/newview/skins/openlife/textures/tab_left_selected.tga new file mode 100644 index 000000000..7bde19c68 Binary files /dev/null and b/indra/newview/skins/openlife/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/openlife/textures/tab_top_blue.tga b/indra/newview/skins/openlife/textures/tab_top_blue.tga new file mode 100644 index 000000000..6de51a762 Binary files /dev/null and b/indra/newview/skins/openlife/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/tab_top_selected_blue.tga b/indra/newview/skins/openlife/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..c670294fc Binary files /dev/null and b/indra/newview/skins/openlife/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/openlife/textures/tabarea.tga b/indra/newview/skins/openlife/textures/tabarea.tga new file mode 100644 index 000000000..5517aebfc Binary files /dev/null and b/indra/newview/skins/openlife/textures/tabarea.tga differ diff --git a/indra/newview/skins/openlife/textures/tearoff_pressed.tga b/indra/newview/skins/openlife/textures/tearoff_pressed.tga new file mode 100644 index 000000000..55897e630 Binary files /dev/null and b/indra/newview/skins/openlife/textures/tearoff_pressed.tga differ diff --git a/indra/newview/skins/openlife/textures/tearoffbox.tga b/indra/newview/skins/openlife/textures/tearoffbox.tga new file mode 100644 index 000000000..11e243bd2 Binary files /dev/null and b/indra/newview/skins/openlife/textures/tearoffbox.tga differ diff --git a/indra/newview/skins/openlife/textures/textures.xml b/indra/newview/skins/openlife/textures/textures.xml new file mode 100644 index 000000000..7adbcd402 --- /dev/null +++ b/indra/newview/skins/openlife/textures/textures.xml @@ -0,0 +1,401 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/openlife/textures/tool_dozer.tga b/indra/newview/skins/openlife/textures/tool_dozer.tga new file mode 100644 index 000000000..bc1cc7ade Binary files /dev/null and b/indra/newview/skins/openlife/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/openlife/textures/tool_dozer_active.tga b/indra/newview/skins/openlife/textures/tool_dozer_active.tga new file mode 100644 index 000000000..b284c7ff5 Binary files /dev/null and b/indra/newview/skins/openlife/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/openlife/textures/tool_zoom.tga b/indra/newview/skins/openlife/textures/tool_zoom.tga new file mode 100644 index 000000000..2f6a75e4b Binary files /dev/null and b/indra/newview/skins/openlife/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/openlife/textures/tool_zoom_active.tga b/indra/newview/skins/openlife/textures/tool_zoom_active.tga new file mode 100644 index 000000000..ce8fb6643 Binary files /dev/null and b/indra/newview/skins/openlife/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/openlife/textures/toolbar_bg.tga b/indra/newview/skins/openlife/textures/toolbar_bg.tga new file mode 100644 index 000000000..b3e52eb2a Binary files /dev/null and b/indra/newview/skins/openlife/textures/toolbar_bg.tga differ diff --git a/indra/newview/skins/openlife/textures/toolbar_btn_disabled.tga b/indra/newview/skins/openlife/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..a923ba4ee Binary files /dev/null and b/indra/newview/skins/openlife/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/openlife/textures/toolbar_btn_enabled.tga b/indra/newview/skins/openlife/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..67446fba1 Binary files /dev/null and b/indra/newview/skins/openlife/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/openlife/textures/toolbar_btn_selected.tga b/indra/newview/skins/openlife/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..2a1f2d55f Binary files /dev/null and b/indra/newview/skins/openlife/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/openlife/textures/toolbar_tab.tga b/indra/newview/skins/openlife/textures/toolbar_tab.tga new file mode 100644 index 000000000..730950b54 Binary files /dev/null and b/indra/newview/skins/openlife/textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/openlife/textures/tools_floatbg.png b/indra/newview/skins/openlife/textures/tools_floatbg.png new file mode 100644 index 000000000..9f1305ef8 Binary files /dev/null and b/indra/newview/skins/openlife/textures/tools_floatbg.png differ diff --git a/indra/newview/skins/openlife/textures/up_arrow.png b/indra/newview/skins/openlife/textures/up_arrow.png new file mode 100644 index 000000000..fe68ad49d Binary files /dev/null and b/indra/newview/skins/openlife/textures/up_arrow.png differ diff --git a/indra/newview/skins/openlife/textures/worldmap.png b/indra/newview/skins/openlife/textures/worldmap.png new file mode 100644 index 000000000..6baa04df0 Binary files /dev/null and b/indra/newview/skins/openlife/textures/worldmap.png differ diff --git a/indra/newview/skins/pslgreen.xml b/indra/newview/skins/pslgreen.xml new file mode 100644 index 000000000..9db987487 --- /dev/null +++ b/indra/newview/skins/pslgreen.xml @@ -0,0 +1,14 @@ + + + skin_name + PSL Green + author_name + Chalice Yao + additional_author_names + JB Kraft, Linden Lab + skin_info + This skin was origonaly found in purple second life. + folder_name + pslgreen + + diff --git a/indra/newview/skins/pslgreen/License and Credit.txt b/indra/newview/skins/pslgreen/License and Credit.txt new file mode 100644 index 000000000..8e57c5ba0 --- /dev/null +++ b/indra/newview/skins/pslgreen/License and Credit.txt @@ -0,0 +1,4 @@ +This skin was modified by JB Kraft from the default linden skin provided. +This skin was modified by Chalice Yao from the default linden skin and JB Kraft's skin. + +All Images and modifications done are provided free to use, modify, and distribute, so long as this infomation is distributed with it. diff --git a/indra/newview/skins/pslgreen/colors_base.xml b/indra/newview/skins/pslgreen/colors_base.xml new file mode 100644 index 000000000..3708d8d0b --- /dev/null +++ b/indra/newview/skins/pslgreen/colors_base.xml @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/pslgreen/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/pslgreen/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..22ee3e23f Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/pslgreen/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga b/indra/newview/skins/pslgreen/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga new file mode 100644 index 000000000..ac99adf84 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga differ diff --git a/indra/newview/skins/pslgreen/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga b/indra/newview/skins/pslgreen/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga new file mode 100644 index 000000000..55e379309 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga differ diff --git a/indra/newview/skins/pslgreen/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/pslgreen/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..6a6314043 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/pslgreen/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga b/indra/newview/skins/pslgreen/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga new file mode 100644 index 000000000..132b192ef Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga differ diff --git a/indra/newview/skins/pslgreen/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga b/indra/newview/skins/pslgreen/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga new file mode 100644 index 000000000..6cc9ea194 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga differ diff --git a/indra/newview/skins/pslgreen/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga b/indra/newview/skins/pslgreen/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga new file mode 100644 index 000000000..ceaaabab8 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga differ diff --git a/indra/newview/skins/pslgreen/textures/active_speakers.tga b/indra/newview/skins/pslgreen/textures/active_speakers.tga new file mode 100644 index 000000000..37521d2dd Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/active_speakers.tga differ diff --git a/indra/newview/skins/pslgreen/textures/active_voice_tab.tga b/indra/newview/skins/pslgreen/textures/active_voice_tab.tga new file mode 100644 index 000000000..a14b5c5a5 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/active_voice_tab.tga differ diff --git a/indra/newview/skins/pslgreen/textures/alpha_gradient.tga b/indra/newview/skins/pslgreen/textures/alpha_gradient.tga new file mode 100644 index 000000000..cc0a17c65 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/alpha_gradient.tga differ diff --git a/indra/newview/skins/pslgreen/textures/arrow_down.tga b/indra/newview/skins/pslgreen/textures/arrow_down.tga new file mode 100644 index 000000000..5b05df1c2 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/arrow_down.tga differ diff --git a/indra/newview/skins/pslgreen/textures/arrow_up.tga b/indra/newview/skins/pslgreen/textures/arrow_up.tga new file mode 100644 index 000000000..fde081cdb Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/arrow_up.tga differ diff --git a/indra/newview/skins/pslgreen/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/pslgreen/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..cc547f741 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/pslgreen/textures/black.tga b/indra/newview/skins/pslgreen/textures/black.tga new file mode 100644 index 000000000..e368ea496 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/black.tga differ diff --git a/indra/newview/skins/pslgreen/textures/btn_chatbar.tga b/indra/newview/skins/pslgreen/textures/btn_chatbar.tga new file mode 100644 index 000000000..fd881c298 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/pslgreen/textures/btn_chatbar_selected.tga b/indra/newview/skins/pslgreen/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..34f8bcf31 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/pslgreen/textures/button_anim_pause.tga b/indra/newview/skins/pslgreen/textures/button_anim_pause.tga new file mode 100644 index 000000000..eca6c69dd Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/pslgreen/textures/button_anim_pause_selected.tga b/indra/newview/skins/pslgreen/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..ecefd4d46 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/pslgreen/textures/button_anim_play.tga b/indra/newview/skins/pslgreen/textures/button_anim_play.tga new file mode 100644 index 000000000..615b0525f Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/pslgreen/textures/button_anim_play_selected.tga b/indra/newview/skins/pslgreen/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..d2cb0a3aa Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/pslgreen/textures/button_anim_stop.tga b/indra/newview/skins/pslgreen/textures/button_anim_stop.tga new file mode 100644 index 000000000..3919396cb Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/pslgreen/textures/button_anim_stop_selected.tga b/indra/newview/skins/pslgreen/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..d99a3d93f Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/pslgreen/textures/button_disabled_32x128.tga b/indra/newview/skins/pslgreen/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..585e29310 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/pslgreen/textures/button_enabled_32x128.tga b/indra/newview/skins/pslgreen/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..6a504f0d7 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/pslgreen/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/pslgreen/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..257957123 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/pslgreen/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/pslgreen/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..c07b96200 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/pslgreen/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/pslgreen/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..02a727430 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/pslgreen/textures/cam_rotate_in.tga b/indra/newview/skins/pslgreen/textures/cam_rotate_in.tga new file mode 100644 index 000000000..d08f98059 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/pslgreen/textures/cam_rotate_out.tga b/indra/newview/skins/pslgreen/textures/cam_rotate_out.tga new file mode 100644 index 000000000..f8f64f1df Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/pslgreen/textures/cam_tracking_in.tga b/indra/newview/skins/pslgreen/textures/cam_tracking_in.tga new file mode 100644 index 000000000..562c951be Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/pslgreen/textures/cam_tracking_out.tga b/indra/newview/skins/pslgreen/textures/cam_tracking_out.tga new file mode 100644 index 000000000..7835704d1 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/pslgreen/textures/cam_zoom_minus_in.tga b/indra/newview/skins/pslgreen/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..a1da27bf8 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/pslgreen/textures/cam_zoom_out.tga b/indra/newview/skins/pslgreen/textures/cam_zoom_out.tga new file mode 100644 index 000000000..2e9519d72 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/pslgreen/textures/cam_zoom_plus_in.tga b/indra/newview/skins/pslgreen/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..c17d60792 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/pslgreen/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/pslgreen/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..e3ea7510f Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/pslgreen/textures/checkbox_disabled_false.tga b/indra/newview/skins/pslgreen/textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..0f94a93ca Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/pslgreen/textures/checkbox_disabled_true.tga b/indra/newview/skins/pslgreen/textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..b43adf47d Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/pslgreen/textures/checkbox_enabled_false.tga b/indra/newview/skins/pslgreen/textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..da487c2c3 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/pslgreen/textures/checkbox_enabled_true.tga b/indra/newview/skins/pslgreen/textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..6b97ff1a3 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/pslgreen/textures/circle.tga b/indra/newview/skins/pslgreen/textures/circle.tga new file mode 100644 index 000000000..d7097e3a3 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/circle.tga differ diff --git a/indra/newview/skins/pslgreen/textures/close_in_blue.tga b/indra/newview/skins/pslgreen/textures/close_in_blue.tga new file mode 100644 index 000000000..479883632 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/close_in_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/close_inactive.tga b/indra/newview/skins/pslgreen/textures/close_inactive.tga new file mode 100644 index 000000000..8a2f91661 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/close_inactive.tga differ diff --git a/indra/newview/skins/pslgreen/textures/close_inactive_blue.tga b/indra/newview/skins/pslgreen/textures/close_inactive_blue.tga new file mode 100644 index 000000000..8a2f91661 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/close_inactive_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/closebox.tga b/indra/newview/skins/pslgreen/textures/closebox.tga new file mode 100644 index 000000000..66822238f Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/closebox.tga differ diff --git a/indra/newview/skins/pslgreen/textures/combobox_arrow.tga b/indra/newview/skins/pslgreen/textures/combobox_arrow.tga new file mode 100644 index 000000000..d769d3105 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/combobox_arrow.tga differ diff --git a/indra/newview/skins/pslgreen/textures/darkgray.tga b/indra/newview/skins/pslgreen/textures/darkgray.tga new file mode 100644 index 000000000..1e1ac0c09 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/darkgray.tga differ diff --git a/indra/newview/skins/pslgreen/textures/eye_button_active.tga b/indra/newview/skins/pslgreen/textures/eye_button_active.tga new file mode 100644 index 000000000..e49753555 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/pslgreen/textures/eye_button_inactive.tga b/indra/newview/skins/pslgreen/textures/eye_button_inactive.tga new file mode 100644 index 000000000..de9609dc8 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/eye_button_inactive.tga differ diff --git a/indra/newview/skins/pslgreen/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/pslgreen/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..4b216c33c Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/pslgreen/textures/ff_edit_mine_button.tga b/indra/newview/skins/pslgreen/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..a4b711695 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/pslgreen/textures/ff_edit_theirs_button.tga b/indra/newview/skins/pslgreen/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..d62904ebc Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/pslgreen/textures/ff_online_status_button.tga b/indra/newview/skins/pslgreen/textures/ff_online_status_button.tga new file mode 100644 index 000000000..4fb379566 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/pslgreen/textures/ff_visible_map.tga b/indra/newview/skins/pslgreen/textures/ff_visible_map.tga new file mode 100644 index 000000000..121cec21a Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/ff_visible_map.tga differ diff --git a/indra/newview/skins/pslgreen/textures/ff_visible_map_button.tga b/indra/newview/skins/pslgreen/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..4be1059a2 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/pslgreen/textures/ff_visible_online.tga b/indra/newview/skins/pslgreen/textures/ff_visible_online.tga new file mode 100644 index 000000000..8614c4233 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/ff_visible_online.tga differ diff --git a/indra/newview/skins/pslgreen/textures/ff_visible_online_button.tga b/indra/newview/skins/pslgreen/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..592982163 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/pslgreen/textures/flyout_btn_left.tga b/indra/newview/skins/pslgreen/textures/flyout_btn_left.tga new file mode 100644 index 000000000..bde502789 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/pslgreen/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/pslgreen/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..a3124693d Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/pslgreen/textures/flyout_btn_left_selected.tga b/indra/newview/skins/pslgreen/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..00ef911d1 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/pslgreen/textures/flyout_btn_right.tga b/indra/newview/skins/pslgreen/textures/flyout_btn_right.tga new file mode 100644 index 000000000..81eedb69e Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/pslgreen/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/pslgreen/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..bfaf6ef0f Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/pslgreen/textures/flyout_btn_right_selected.tga b/indra/newview/skins/pslgreen/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..fcc3a957d Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/pslgreen/textures/folder_arrow.tga b/indra/newview/skins/pslgreen/textures/folder_arrow.tga new file mode 100644 index 000000000..77d470731 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/folder_arrow.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_active-speakers-dot-lvl0.tga b/indra/newview/skins/pslgreen/textures/icn_active-speakers-dot-lvl0.tga new file mode 100644 index 000000000..35846cef3 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_active-speakers-dot-lvl0.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_active-speakers-dot-lvl1.tga b/indra/newview/skins/pslgreen/textures/icn_active-speakers-dot-lvl1.tga new file mode 100644 index 000000000..1f9f564fa Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_active-speakers-dot-lvl1.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_active-speakers-dot-lvl2.tga b/indra/newview/skins/pslgreen/textures/icn_active-speakers-dot-lvl2.tga new file mode 100644 index 000000000..b2e5609f1 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_active-speakers-dot-lvl2.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_active-speakers-typing1.tga b/indra/newview/skins/pslgreen/textures/icn_active-speakers-typing1.tga new file mode 100644 index 000000000..3706c96e0 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_active-speakers-typing1.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_active-speakers-typing2.tga b/indra/newview/skins/pslgreen/textures/icn_active-speakers-typing2.tga new file mode 100644 index 000000000..0d127f946 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_active-speakers-typing2.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_active-speakers-typing3.tga b/indra/newview/skins/pslgreen/textures/icn_active-speakers-typing3.tga new file mode 100644 index 000000000..031b3ad34 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_active-speakers-typing3.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_chatbar.tga b/indra/newview/skins/pslgreen/textures/icn_chatbar.tga new file mode 100644 index 000000000..94fd6dc89 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_chatbar.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_clear_lineeditor.tga b/indra/newview/skins/pslgreen/textures/icn_clear_lineeditor.tga new file mode 100644 index 000000000..8cd8310c6 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_clear_lineeditor.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_label_media.tga b/indra/newview/skins/pslgreen/textures/icn_label_media.tga new file mode 100644 index 000000000..21dc19f9e Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_label_media.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_label_music.tga b/indra/newview/skins/pslgreen/textures/icn_label_music.tga new file mode 100644 index 000000000..7aa0ff676 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_label_web.tga b/indra/newview/skins/pslgreen/textures/icn_label_web.tga new file mode 100644 index 000000000..4754e04f9 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_media-pause_active.tga b/indra/newview/skins/pslgreen/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..2dcb97417 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_media-pause_disabled.tga b/indra/newview/skins/pslgreen/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..bbdabd77a Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_media-pause_enabled.tga b/indra/newview/skins/pslgreen/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..a99fa2c02 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_media-play_active.tga b/indra/newview/skins/pslgreen/textures/icn_media-play_active.tga new file mode 100644 index 000000000..fefe8b151 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_media-play_active.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_media-play_disabled.tga b/indra/newview/skins/pslgreen/textures/icn_media-play_disabled.tga new file mode 100644 index 000000000..7d81d065f Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_media-play_disabled.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_media-play_enabled.tga b/indra/newview/skins/pslgreen/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..a7eb3a51b Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_media-stop_active.tga b/indra/newview/skins/pslgreen/textures/icn_media-stop_active.tga new file mode 100644 index 000000000..e8d53cf1f Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_media-stop_active.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_media-stop_disabled.tga b/indra/newview/skins/pslgreen/textures/icn_media-stop_disabled.tga new file mode 100644 index 000000000..c53285e95 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_media-stop_disabled.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_media-stop_enabled.tga b/indra/newview/skins/pslgreen/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..935037782 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_media.tga b/indra/newview/skins/pslgreen/textures/icn_media.tga new file mode 100644 index 000000000..f51c45d19 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_media.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_media_movie.tga b/indra/newview/skins/pslgreen/textures/icn_media_movie.tga new file mode 100644 index 000000000..7be967a04 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_media_web.tga b/indra/newview/skins/pslgreen/textures/icn_media_web.tga new file mode 100644 index 000000000..86661178a Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_music-play.tga b/indra/newview/skins/pslgreen/textures/icn_music-play.tga new file mode 100644 index 000000000..ec9c711db Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_music.tga b/indra/newview/skins/pslgreen/textures/icn_music.tga new file mode 100644 index 000000000..d4af27fc3 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_music.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_play.tga b/indra/newview/skins/pslgreen/textures/icn_play.tga new file mode 100644 index 000000000..e14091666 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_play.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_rounded-text-field.tga b/indra/newview/skins/pslgreen/textures/icn_rounded-text-field.tga new file mode 100644 index 000000000..39b77a86d Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_rounded-text-field.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_scrollbar.tga b/indra/newview/skins/pslgreen/textures/icn_scrollbar.tga new file mode 100644 index 000000000..bdf6ff4cd Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_scrollbar.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_scrollbar_bg.tga b/indra/newview/skins/pslgreen/textures/icn_scrollbar_bg.tga new file mode 100644 index 000000000..0fc138862 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_scrollbar_bg.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_scrollbar_thumb.tga b/indra/newview/skins/pslgreen/textures/icn_scrollbar_thumb.tga new file mode 100644 index 000000000..447465474 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_scrollbar_thumb.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_slide-groove_dark.tga b/indra/newview/skins/pslgreen/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..19361436e Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_slide-highlight.tga b/indra/newview/skins/pslgreen/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..0747e3ceb Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/pslgreen/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..7605b2c43 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/pslgreen/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..04cc37c3e Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_speaker_dark.tga b/indra/newview/skins/pslgreen/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..1a8a177f7 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_toolbar_build.tga b/indra/newview/skins/pslgreen/textures/icn_toolbar_build.tga new file mode 100644 index 000000000..46e84efbc Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_toolbar_build.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_toolbar_fly.tga b/indra/newview/skins/pslgreen/textures/icn_toolbar_fly.tga new file mode 100644 index 000000000..8bd422ac5 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_toolbar_fly.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_toolbar_inventory.tga b/indra/newview/skins/pslgreen/textures/icn_toolbar_inventory.tga new file mode 100644 index 000000000..b832ebce9 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_toolbar_inventory.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_toolbar_map.tga b/indra/newview/skins/pslgreen/textures/icn_toolbar_map.tga new file mode 100644 index 000000000..a100f5784 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_toolbar_map.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_toolbar_minimap.tga b/indra/newview/skins/pslgreen/textures/icn_toolbar_minimap.tga new file mode 100644 index 000000000..21149f326 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_toolbar_minimap.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_toolbar_search.tga b/indra/newview/skins/pslgreen/textures/icn_toolbar_search.tga new file mode 100644 index 000000000..2da9704f1 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_toolbar_search.tga differ diff --git a/indra/newview/skins/pslgreen/textures/icn_toolbar_snapshot.tga b/indra/newview/skins/pslgreen/textures/icn_toolbar_snapshot.tga new file mode 100644 index 000000000..23b97c0eb Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/icn_toolbar_snapshot.tga differ diff --git a/indra/newview/skins/pslgreen/textures/inv_item_script_dangerous.tga b/indra/newview/skins/pslgreen/textures/inv_item_script_dangerous.tga new file mode 100644 index 000000000..1ee742a8b Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/inv_item_script_dangerous.tga differ diff --git a/indra/newview/skins/pslgreen/textures/lag_status_critical.tga b/indra/newview/skins/pslgreen/textures/lag_status_critical.tga new file mode 100644 index 000000000..85af54c69 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/lag_status_critical.tga differ diff --git a/indra/newview/skins/pslgreen/textures/lightgray.tga b/indra/newview/skins/pslgreen/textures/lightgray.tga new file mode 100644 index 000000000..1e1ac0c09 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/lightgray.tga differ diff --git a/indra/newview/skins/pslgreen/textures/media_icon.tga b/indra/newview/skins/pslgreen/textures/media_icon.tga new file mode 100644 index 000000000..10694a2f3 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/media_icon.tga differ diff --git a/indra/newview/skins/pslgreen/textures/minimize.tga b/indra/newview/skins/pslgreen/textures/minimize.tga new file mode 100644 index 000000000..d38e13ab4 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/minimize.tga differ diff --git a/indra/newview/skins/pslgreen/textures/minimize_inactive.tga b/indra/newview/skins/pslgreen/textures/minimize_inactive.tga new file mode 100644 index 000000000..8b0c6ecef Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/minimize_inactive.tga differ diff --git a/indra/newview/skins/pslgreen/textures/minimize_pressed.tga b/indra/newview/skins/pslgreen/textures/minimize_pressed.tga new file mode 100644 index 000000000..37fb99bef Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/minimize_pressed.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_backward_in.tga b/indra/newview/skins/pslgreen/textures/move_backward_in.tga new file mode 100644 index 000000000..b64204eb2 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_backward_out.tga b/indra/newview/skins/pslgreen/textures/move_backward_out.tga new file mode 100644 index 000000000..1acce4b7b Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_down_in.tga b/indra/newview/skins/pslgreen/textures/move_down_in.tga new file mode 100644 index 000000000..904e9a8c8 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_down_in.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_down_out.tga b/indra/newview/skins/pslgreen/textures/move_down_out.tga new file mode 100644 index 000000000..39bcda4c3 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_down_out.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_forward_in.tga b/indra/newview/skins/pslgreen/textures/move_forward_in.tga new file mode 100644 index 000000000..d41a1e1ed Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_forward_out.tga b/indra/newview/skins/pslgreen/textures/move_forward_out.tga new file mode 100644 index 000000000..643c26066 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_left_in.tga b/indra/newview/skins/pslgreen/textures/move_left_in.tga new file mode 100644 index 000000000..f63ff2d4a Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_left_in.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_left_out.tga b/indra/newview/skins/pslgreen/textures/move_left_out.tga new file mode 100644 index 000000000..775bc151b Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_left_out.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_right_in.tga b/indra/newview/skins/pslgreen/textures/move_right_in.tga new file mode 100644 index 000000000..c85c4c335 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_right_in.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_right_out.tga b/indra/newview/skins/pslgreen/textures/move_right_out.tga new file mode 100644 index 000000000..729331d99 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_right_out.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_turn_left_in.tga b/indra/newview/skins/pslgreen/textures/move_turn_left_in.tga new file mode 100644 index 000000000..970b7f2ec Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_turn_left_out.tga b/indra/newview/skins/pslgreen/textures/move_turn_left_out.tga new file mode 100644 index 000000000..8c1677574 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_turn_right_in.tga b/indra/newview/skins/pslgreen/textures/move_turn_right_in.tga new file mode 100644 index 000000000..367deaeb9 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_turn_right_out.tga b/indra/newview/skins/pslgreen/textures/move_turn_right_out.tga new file mode 100644 index 000000000..3105adb7b Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_up_in.tga b/indra/newview/skins/pslgreen/textures/move_up_in.tga new file mode 100644 index 000000000..f62727d90 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_up_in.tga differ diff --git a/indra/newview/skins/pslgreen/textures/move_up_out.tga b/indra/newview/skins/pslgreen/textures/move_up_out.tga new file mode 100644 index 000000000..777b221f8 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/move_up_out.tga differ diff --git a/indra/newview/skins/pslgreen/textures/mute_icon.tga b/indra/newview/skins/pslgreen/textures/mute_icon.tga new file mode 100644 index 000000000..879b9e618 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/mute_icon.tga differ diff --git a/indra/newview/skins/pslgreen/textures/notify_next.png b/indra/newview/skins/pslgreen/textures/notify_next.png new file mode 100644 index 000000000..55b30e952 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/notify_next.png differ diff --git a/indra/newview/skins/pslgreen/textures/preview.png b/indra/newview/skins/pslgreen/textures/preview.png new file mode 100644 index 000000000..73e117e9f Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/preview.png differ diff --git a/indra/newview/skins/pslgreen/textures/progress_fill.tga b/indra/newview/skins/pslgreen/textures/progress_fill.tga new file mode 100644 index 000000000..44d34480b Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/progress_fill.tga differ diff --git a/indra/newview/skins/pslgreen/textures/progressbar_fill.tga b/indra/newview/skins/pslgreen/textures/progressbar_fill.tga new file mode 100644 index 000000000..e15956638 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/pslgreen/textures/progressbar_track.tga b/indra/newview/skins/pslgreen/textures/progressbar_track.tga new file mode 100644 index 000000000..771775bc6 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/pslgreen/textures/ptt_lock_off.tga b/indra/newview/skins/pslgreen/textures/ptt_lock_off.tga new file mode 100644 index 000000000..96782ffc5 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/ptt_lock_off.tga differ diff --git a/indra/newview/skins/pslgreen/textures/ptt_lock_on.tga b/indra/newview/skins/pslgreen/textures/ptt_lock_on.tga new file mode 100644 index 000000000..5a7413bde Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/ptt_lock_on.tga differ diff --git a/indra/newview/skins/pslgreen/textures/radio_active_false.tga b/indra/newview/skins/pslgreen/textures/radio_active_false.tga new file mode 100644 index 000000000..15d5e5927 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/radio_active_false.tga differ diff --git a/indra/newview/skins/pslgreen/textures/radio_active_true.tga b/indra/newview/skins/pslgreen/textures/radio_active_true.tga new file mode 100644 index 000000000..cbef88913 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/radio_active_true.tga differ diff --git a/indra/newview/skins/pslgreen/textures/radio_inactive_false.tga b/indra/newview/skins/pslgreen/textures/radio_inactive_false.tga new file mode 100644 index 000000000..48a934221 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/radio_inactive_false.tga differ diff --git a/indra/newview/skins/pslgreen/textures/radio_inactive_true.tga b/indra/newview/skins/pslgreen/textures/radio_inactive_true.tga new file mode 100644 index 000000000..785b3fa6d Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/radio_inactive_true.tga differ diff --git a/indra/newview/skins/pslgreen/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/pslgreen/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..497c2e1ee Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/restore.tga b/indra/newview/skins/pslgreen/textures/restore.tga new file mode 100644 index 000000000..b96b0299f Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/restore.tga differ diff --git a/indra/newview/skins/pslgreen/textures/restore_inactive.tga b/indra/newview/skins/pslgreen/textures/restore_inactive.tga new file mode 100644 index 000000000..8b0c6ecef Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/restore_inactive.tga differ diff --git a/indra/newview/skins/pslgreen/textures/restore_pressed.tga b/indra/newview/skins/pslgreen/textures/restore_pressed.tga new file mode 100644 index 000000000..bf6515840 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/restore_pressed.tga differ diff --git a/indra/newview/skins/pslgreen/textures/rounded_square.tga b/indra/newview/skins/pslgreen/textures/rounded_square.tga new file mode 100644 index 000000000..c8fc7b799 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/rounded_square.tga differ diff --git a/indra/newview/skins/pslgreen/textures/rounded_square_soft.tga b/indra/newview/skins/pslgreen/textures/rounded_square_soft.tga new file mode 100644 index 000000000..0e5bc79ac Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/rounded_square_soft.tga differ diff --git a/indra/newview/skins/pslgreen/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/pslgreen/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..aa9397883 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/scrollbutton_down_out_blue.tga b/indra/newview/skins/pslgreen/textures/scrollbutton_down_out_blue.tga new file mode 100644 index 000000000..be1f23cab Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/scrollbutton_down_out_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/pslgreen/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..b52c26920 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/scrollbutton_left_out_blue.tga b/indra/newview/skins/pslgreen/textures/scrollbutton_left_out_blue.tga new file mode 100644 index 000000000..f9644eb05 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/scrollbutton_left_out_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/pslgreen/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..600189130 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/scrollbutton_right_out_blue.tga b/indra/newview/skins/pslgreen/textures/scrollbutton_right_out_blue.tga new file mode 100644 index 000000000..075a0b0e1 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/scrollbutton_right_out_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/pslgreen/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..3648ea499 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/scrollbutton_up_out_blue.tga b/indra/newview/skins/pslgreen/textures/scrollbutton_up_out_blue.tga new file mode 100644 index 000000000..686928586 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/scrollbutton_up_out_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/sm_rounded_corners_simple.tga b/indra/newview/skins/pslgreen/textures/sm_rounded_corners_simple.tga new file mode 100644 index 000000000..30bbbb45e Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/sm_rounded_corners_simple.tga differ diff --git a/indra/newview/skins/pslgreen/textures/smicon_warn.tga b/indra/newview/skins/pslgreen/textures/smicon_warn.tga new file mode 100644 index 000000000..cef890ac3 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/smicon_warn.tga differ diff --git a/indra/newview/skins/pslgreen/textures/spacer24.tga b/indra/newview/skins/pslgreen/textures/spacer24.tga new file mode 100644 index 000000000..c7cab6b38 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/spacer24.tga differ diff --git a/indra/newview/skins/pslgreen/textures/spacer35.tga b/indra/newview/skins/pslgreen/textures/spacer35.tga new file mode 100644 index 000000000..b88bc6680 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/spacer35.tga differ diff --git a/indra/newview/skins/pslgreen/textures/spin_down_in_blue.tga b/indra/newview/skins/pslgreen/textures/spin_down_in_blue.tga new file mode 100644 index 000000000..8109397d0 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/spin_down_in_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/spin_down_out_blue.tga b/indra/newview/skins/pslgreen/textures/spin_down_out_blue.tga new file mode 100644 index 000000000..5bc56207d Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/spin_down_out_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/spin_up_in_blue.tga b/indra/newview/skins/pslgreen/textures/spin_up_in_blue.tga new file mode 100644 index 000000000..dd1406d96 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/spin_up_in_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/spin_up_out_blue.tga b/indra/newview/skins/pslgreen/textures/spin_up_out_blue.tga new file mode 100644 index 000000000..19d1511f3 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/spin_up_out_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/square_btn_32x128.tga b/indra/newview/skins/pslgreen/textures/square_btn_32x128.tga new file mode 100644 index 000000000..4bd50f376 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/pslgreen/textures/square_btn_selected_32x128.tga b/indra/newview/skins/pslgreen/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..51c36bc72 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/pslgreen/textures/status_buy_currency.tga b/indra/newview/skins/pslgreen/textures/status_buy_currency.tga new file mode 100644 index 000000000..f6d08c64a Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/pslgreen/textures/status_buy_currency_pressed.tga b/indra/newview/skins/pslgreen/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..4799f1a6f Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/pslgreen/textures/status_buy_land.tga b/indra/newview/skins/pslgreen/textures/status_buy_land.tga new file mode 100644 index 000000000..439a10426 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/pslgreen/textures/status_buy_land_pressed.tga b/indra/newview/skins/pslgreen/textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..f5102e8c3 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/pslgreen/textures/status_money.tga b/indra/newview/skins/pslgreen/textures/status_money.tga new file mode 100644 index 000000000..d5be31fc6 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/status_money.tga differ diff --git a/indra/newview/skins/pslgreen/textures/tab_bottom_blue.tga b/indra/newview/skins/pslgreen/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..d46ea87fb Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/pslgreen/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..8c3900f19 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/tab_left.tga b/indra/newview/skins/pslgreen/textures/tab_left.tga new file mode 100644 index 000000000..07e2eb63e Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/tab_left.tga differ diff --git a/indra/newview/skins/pslgreen/textures/tab_left_selected.tga b/indra/newview/skins/pslgreen/textures/tab_left_selected.tga new file mode 100644 index 000000000..8cb3dad15 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/pslgreen/textures/tab_top_blue.tga b/indra/newview/skins/pslgreen/textures/tab_top_blue.tga new file mode 100644 index 000000000..2fbd7ceed Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/tab_top_selected_blue.tga b/indra/newview/skins/pslgreen/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..038a271a5 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/pslgreen/textures/tabarea.tga b/indra/newview/skins/pslgreen/textures/tabarea.tga new file mode 100644 index 000000000..5517aebfc Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/tabarea.tga differ diff --git a/indra/newview/skins/pslgreen/textures/tearoff_pressed.tga b/indra/newview/skins/pslgreen/textures/tearoff_pressed.tga new file mode 100644 index 000000000..ce94a97f0 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/tearoff_pressed.tga differ diff --git a/indra/newview/skins/pslgreen/textures/tearoffbox.tga b/indra/newview/skins/pslgreen/textures/tearoffbox.tga new file mode 100644 index 000000000..b39b43654 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/tearoffbox.tga differ diff --git a/indra/newview/skins/pslgreen/textures/textures.xml b/indra/newview/skins/pslgreen/textures/textures.xml new file mode 100644 index 000000000..4dbbdf01b --- /dev/null +++ b/indra/newview/skins/pslgreen/textures/textures.xml @@ -0,0 +1,386 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/pslgreen/textures/tool_dozer.tga b/indra/newview/skins/pslgreen/textures/tool_dozer.tga new file mode 100644 index 000000000..535cdf38c Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/pslgreen/textures/tool_dozer_active.tga b/indra/newview/skins/pslgreen/textures/tool_dozer_active.tga new file mode 100644 index 000000000..f9ae5aa94 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/pslgreen/textures/tool_zoom.tga b/indra/newview/skins/pslgreen/textures/tool_zoom.tga new file mode 100644 index 000000000..142ef0d40 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/pslgreen/textures/tool_zoom_active.tga b/indra/newview/skins/pslgreen/textures/tool_zoom_active.tga new file mode 100644 index 000000000..08d975d88 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/pslgreen/textures/toolbar_btn_disabled.tga b/indra/newview/skins/pslgreen/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..6f79c1f1c Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/pslgreen/textures/toolbar_btn_enabled.tga b/indra/newview/skins/pslgreen/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..1a541a909 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/pslgreen/textures/toolbar_btn_selected.tga b/indra/newview/skins/pslgreen/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..928f07cdf Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/pslgreen/textures/toolbar_tab.tga b/indra/newview/skins/pslgreen/textures/toolbar_tab.tga new file mode 100644 index 000000000..82ca2bd10 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/pslgreen/textures/up_arrow.tga b/indra/newview/skins/pslgreen/textures/up_arrow.tga new file mode 100644 index 000000000..1afa51d29 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/up_arrow.tga differ diff --git a/indra/newview/skins/pslgreen/textures/uv_test2.tga b/indra/newview/skins/pslgreen/textures/uv_test2.tga new file mode 100644 index 000000000..a16000d1e Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/uv_test2.tga differ diff --git a/indra/newview/skins/pslgreen/textures/white.tga b/indra/newview/skins/pslgreen/textures/white.tga new file mode 100644 index 000000000..55e379309 Binary files /dev/null and b/indra/newview/skins/pslgreen/textures/white.tga differ diff --git a/indra/newview/skins/pslpurple.xml b/indra/newview/skins/pslpurple.xml new file mode 100644 index 000000000..93ce2e170 --- /dev/null +++ b/indra/newview/skins/pslpurple.xml @@ -0,0 +1,14 @@ + + + skin_name + PSL Purple + author_name + Chalice Yao + additional_author_names + JB Kraft, Linden Lab + skin_info + This skin was origonaly found in purple second life. + folder_name + pslpurple + + diff --git a/indra/newview/skins/pslpurple/License and Credit.txt b/indra/newview/skins/pslpurple/License and Credit.txt new file mode 100644 index 000000000..8e57c5ba0 --- /dev/null +++ b/indra/newview/skins/pslpurple/License and Credit.txt @@ -0,0 +1,4 @@ +This skin was modified by JB Kraft from the default linden skin provided. +This skin was modified by Chalice Yao from the default linden skin and JB Kraft's skin. + +All Images and modifications done are provided free to use, modify, and distribute, so long as this infomation is distributed with it. diff --git a/indra/newview/skins/pslpurple/colors_base.xml b/indra/newview/skins/pslpurple/colors_base.xml new file mode 100644 index 000000000..3708d8d0b --- /dev/null +++ b/indra/newview/skins/pslpurple/colors_base.xml @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/pslpurple/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/pslpurple/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..dba13ade8 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/pslpurple/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga b/indra/newview/skins/pslpurple/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga new file mode 100644 index 000000000..01146ad7b Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga differ diff --git a/indra/newview/skins/pslpurple/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga b/indra/newview/skins/pslpurple/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga new file mode 100644 index 000000000..55e379309 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/5748decc-f629-461c-9a36-a35a221fe21f.tga differ diff --git a/indra/newview/skins/pslpurple/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga b/indra/newview/skins/pslpurple/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga new file mode 100644 index 000000000..fc720c826 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga differ diff --git a/indra/newview/skins/pslpurple/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/pslpurple/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..561371509 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/pslpurple/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga b/indra/newview/skins/pslpurple/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga new file mode 100644 index 000000000..132b192ef Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga differ diff --git a/indra/newview/skins/pslpurple/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga b/indra/newview/skins/pslpurple/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga new file mode 100644 index 000000000..6cc9ea194 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga differ diff --git a/indra/newview/skins/pslpurple/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga b/indra/newview/skins/pslpurple/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga new file mode 100644 index 000000000..ceaaabab8 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga differ diff --git a/indra/newview/skins/pslpurple/textures/active_speakers.tga b/indra/newview/skins/pslpurple/textures/active_speakers.tga new file mode 100644 index 000000000..37521d2dd Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/active_speakers.tga differ diff --git a/indra/newview/skins/pslpurple/textures/active_voice_tab.tga b/indra/newview/skins/pslpurple/textures/active_voice_tab.tga new file mode 100644 index 000000000..b7c817b6a Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/active_voice_tab.tga differ diff --git a/indra/newview/skins/pslpurple/textures/alpha_gradient.tga b/indra/newview/skins/pslpurple/textures/alpha_gradient.tga new file mode 100644 index 000000000..c7efa26fe Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/alpha_gradient.tga differ diff --git a/indra/newview/skins/pslpurple/textures/arrow_down.tga b/indra/newview/skins/pslpurple/textures/arrow_down.tga new file mode 100644 index 000000000..5b05df1c2 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/arrow_down.tga differ diff --git a/indra/newview/skins/pslpurple/textures/arrow_up.tga b/indra/newview/skins/pslpurple/textures/arrow_up.tga new file mode 100644 index 000000000..d9b71ac51 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/arrow_up.tga differ diff --git a/indra/newview/skins/pslpurple/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/pslpurple/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..fef00c877 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/pslpurple/textures/black.tga b/indra/newview/skins/pslpurple/textures/black.tga new file mode 100644 index 000000000..e368ea496 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/black.tga differ diff --git a/indra/newview/skins/pslpurple/textures/btn_chatbar.tga b/indra/newview/skins/pslpurple/textures/btn_chatbar.tga new file mode 100644 index 000000000..e5de8243c Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/pslpurple/textures/btn_chatbar_selected.tga b/indra/newview/skins/pslpurple/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..ef3e5d60c Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/pslpurple/textures/button_anim_pause.tga b/indra/newview/skins/pslpurple/textures/button_anim_pause.tga new file mode 100644 index 000000000..fbc81a5f2 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/pslpurple/textures/button_anim_pause_selected.tga b/indra/newview/skins/pslpurple/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..defa66f6f Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/pslpurple/textures/button_anim_play.tga b/indra/newview/skins/pslpurple/textures/button_anim_play.tga new file mode 100644 index 000000000..92145f6ec Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/pslpurple/textures/button_anim_play_selected.tga b/indra/newview/skins/pslpurple/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..bee232617 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/pslpurple/textures/button_anim_stop.tga b/indra/newview/skins/pslpurple/textures/button_anim_stop.tga new file mode 100644 index 000000000..d0fdaaaea Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/pslpurple/textures/button_anim_stop_selected.tga b/indra/newview/skins/pslpurple/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..ebab0a7a0 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/pslpurple/textures/button_disabled_32x128.tga b/indra/newview/skins/pslpurple/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..f49054f36 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/pslpurple/textures/button_enabled_32x128.tga b/indra/newview/skins/pslpurple/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..8e2f33d04 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/pslpurple/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/pslpurple/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..644a5e818 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/pslpurple/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/pslpurple/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..bd8cbd719 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/pslpurple/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/pslpurple/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..94525f39a Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/pslpurple/textures/cam_rotate_in.tga b/indra/newview/skins/pslpurple/textures/cam_rotate_in.tga new file mode 100644 index 000000000..d08f98059 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/pslpurple/textures/cam_rotate_out.tga b/indra/newview/skins/pslpurple/textures/cam_rotate_out.tga new file mode 100644 index 000000000..f8f64f1df Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/pslpurple/textures/cam_tracking_in.tga b/indra/newview/skins/pslpurple/textures/cam_tracking_in.tga new file mode 100644 index 000000000..562c951be Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/pslpurple/textures/cam_tracking_out.tga b/indra/newview/skins/pslpurple/textures/cam_tracking_out.tga new file mode 100644 index 000000000..7835704d1 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/pslpurple/textures/cam_zoom_minus_in.tga b/indra/newview/skins/pslpurple/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..a1da27bf8 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/pslpurple/textures/cam_zoom_out.tga b/indra/newview/skins/pslpurple/textures/cam_zoom_out.tga new file mode 100644 index 000000000..2e9519d72 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/pslpurple/textures/cam_zoom_plus_in.tga b/indra/newview/skins/pslpurple/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..c17d60792 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/pslpurple/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/pslpurple/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..eeec2fdf3 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/pslpurple/textures/checkbox_disabled_false.tga b/indra/newview/skins/pslpurple/textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..9fd3670fc Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/pslpurple/textures/checkbox_disabled_true.tga b/indra/newview/skins/pslpurple/textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..4e5f70b52 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/pslpurple/textures/checkbox_enabled_false.tga b/indra/newview/skins/pslpurple/textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..25c48bc8b Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/pslpurple/textures/checkbox_enabled_true.tga b/indra/newview/skins/pslpurple/textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..71b6515ba Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/pslpurple/textures/circle.tga b/indra/newview/skins/pslpurple/textures/circle.tga new file mode 100644 index 000000000..d7097e3a3 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/circle.tga differ diff --git a/indra/newview/skins/pslpurple/textures/close_in_blue.tga b/indra/newview/skins/pslpurple/textures/close_in_blue.tga new file mode 100644 index 000000000..68a20b404 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/close_in_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/close_inactive.tga b/indra/newview/skins/pslpurple/textures/close_inactive.tga new file mode 100644 index 000000000..cd32eaa69 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/close_inactive.tga differ diff --git a/indra/newview/skins/pslpurple/textures/close_inactive_blue.tga b/indra/newview/skins/pslpurple/textures/close_inactive_blue.tga new file mode 100644 index 000000000..cd32eaa69 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/close_inactive_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/closebox.tga b/indra/newview/skins/pslpurple/textures/closebox.tga new file mode 100644 index 000000000..fea0f7752 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/closebox.tga differ diff --git a/indra/newview/skins/pslpurple/textures/combobox_arrow.tga b/indra/newview/skins/pslpurple/textures/combobox_arrow.tga new file mode 100644 index 000000000..d769d3105 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/combobox_arrow.tga differ diff --git a/indra/newview/skins/pslpurple/textures/darkgray.tga b/indra/newview/skins/pslpurple/textures/darkgray.tga new file mode 100644 index 000000000..1ac39a0fa Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/darkgray.tga differ diff --git a/indra/newview/skins/pslpurple/textures/eye_button_active.tga b/indra/newview/skins/pslpurple/textures/eye_button_active.tga new file mode 100644 index 000000000..eb021d7fd Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/pslpurple/textures/eye_button_inactive.tga b/indra/newview/skins/pslpurple/textures/eye_button_inactive.tga new file mode 100644 index 000000000..848d896eb Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/eye_button_inactive.tga differ diff --git a/indra/newview/skins/pslpurple/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/pslpurple/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..cb183cb2a Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/pslpurple/textures/ff_edit_mine_button.tga b/indra/newview/skins/pslpurple/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..4bf64c45f Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/pslpurple/textures/ff_edit_theirs_button.tga b/indra/newview/skins/pslpurple/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..dac53ddf1 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/pslpurple/textures/ff_online_status_button.tga b/indra/newview/skins/pslpurple/textures/ff_online_status_button.tga new file mode 100644 index 000000000..44f5e09cc Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/pslpurple/textures/ff_visible_map.tga b/indra/newview/skins/pslpurple/textures/ff_visible_map.tga new file mode 100644 index 000000000..d8ed32336 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/ff_visible_map.tga differ diff --git a/indra/newview/skins/pslpurple/textures/ff_visible_map_button.tga b/indra/newview/skins/pslpurple/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..081f2423f Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/pslpurple/textures/ff_visible_online.tga b/indra/newview/skins/pslpurple/textures/ff_visible_online.tga new file mode 100644 index 000000000..2b76d72ec Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/ff_visible_online.tga differ diff --git a/indra/newview/skins/pslpurple/textures/ff_visible_online_button.tga b/indra/newview/skins/pslpurple/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..001933d71 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/pslpurple/textures/flyout_btn_left.tga b/indra/newview/skins/pslpurple/textures/flyout_btn_left.tga new file mode 100644 index 000000000..1c977a910 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/pslpurple/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/pslpurple/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..a07310394 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/pslpurple/textures/flyout_btn_left_selected.tga b/indra/newview/skins/pslpurple/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..d1ad93986 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/pslpurple/textures/flyout_btn_right.tga b/indra/newview/skins/pslpurple/textures/flyout_btn_right.tga new file mode 100644 index 000000000..870bf3b21 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/pslpurple/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/pslpurple/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..23731d33b Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/pslpurple/textures/flyout_btn_right_selected.tga b/indra/newview/skins/pslpurple/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..6934156b3 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/pslpurple/textures/folder_arrow.tga b/indra/newview/skins/pslpurple/textures/folder_arrow.tga new file mode 100644 index 000000000..77d470731 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/folder_arrow.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_active-speakers-dot-lvl0.tga b/indra/newview/skins/pslpurple/textures/icn_active-speakers-dot-lvl0.tga new file mode 100644 index 000000000..35846cef3 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_active-speakers-dot-lvl0.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_active-speakers-dot-lvl1.tga b/indra/newview/skins/pslpurple/textures/icn_active-speakers-dot-lvl1.tga new file mode 100644 index 000000000..1f9f564fa Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_active-speakers-dot-lvl1.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_active-speakers-dot-lvl2.tga b/indra/newview/skins/pslpurple/textures/icn_active-speakers-dot-lvl2.tga new file mode 100644 index 000000000..b2e5609f1 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_active-speakers-dot-lvl2.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_active-speakers-typing1.tga b/indra/newview/skins/pslpurple/textures/icn_active-speakers-typing1.tga new file mode 100644 index 000000000..3706c96e0 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_active-speakers-typing1.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_active-speakers-typing2.tga b/indra/newview/skins/pslpurple/textures/icn_active-speakers-typing2.tga new file mode 100644 index 000000000..0d127f946 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_active-speakers-typing2.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_active-speakers-typing3.tga b/indra/newview/skins/pslpurple/textures/icn_active-speakers-typing3.tga new file mode 100644 index 000000000..031b3ad34 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_active-speakers-typing3.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_chatbar.tga b/indra/newview/skins/pslpurple/textures/icn_chatbar.tga new file mode 100644 index 000000000..94fd6dc89 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_chatbar.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_clear_lineeditor.tga b/indra/newview/skins/pslpurple/textures/icn_clear_lineeditor.tga new file mode 100644 index 000000000..8cd8310c6 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_clear_lineeditor.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_label_media.tga b/indra/newview/skins/pslpurple/textures/icn_label_media.tga new file mode 100644 index 000000000..b30b879ea Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_label_media.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_label_music.tga b/indra/newview/skins/pslpurple/textures/icn_label_music.tga new file mode 100644 index 000000000..e42eb9b28 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_label_web.tga b/indra/newview/skins/pslpurple/textures/icn_label_web.tga new file mode 100644 index 000000000..b12ef305a Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_media-pause_active.tga b/indra/newview/skins/pslpurple/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..4d10aff70 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_media-pause_disabled.tga b/indra/newview/skins/pslpurple/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..7689cb709 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_media-pause_enabled.tga b/indra/newview/skins/pslpurple/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..6ea800a30 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_media-play_active.tga b/indra/newview/skins/pslpurple/textures/icn_media-play_active.tga new file mode 100644 index 000000000..fb7d843a3 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_media-play_active.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_media-play_disabled.tga b/indra/newview/skins/pslpurple/textures/icn_media-play_disabled.tga new file mode 100644 index 000000000..0306e94c6 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_media-play_disabled.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_media-play_enabled.tga b/indra/newview/skins/pslpurple/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..51b6807ae Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_media-stop_active.tga b/indra/newview/skins/pslpurple/textures/icn_media-stop_active.tga new file mode 100644 index 000000000..de0644867 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_media-stop_active.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_media-stop_disabled.tga b/indra/newview/skins/pslpurple/textures/icn_media-stop_disabled.tga new file mode 100644 index 000000000..6c18bbeda Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_media-stop_disabled.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_media-stop_enabled.tga b/indra/newview/skins/pslpurple/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..8738cdc9e Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_media.tga b/indra/newview/skins/pslpurple/textures/icn_media.tga new file mode 100644 index 000000000..9743d4708 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_media.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_media_movie.tga b/indra/newview/skins/pslpurple/textures/icn_media_movie.tga new file mode 100644 index 000000000..36cba54d2 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_media_web.tga b/indra/newview/skins/pslpurple/textures/icn_media_web.tga new file mode 100644 index 000000000..0d73d8864 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_music-play.tga b/indra/newview/skins/pslpurple/textures/icn_music-play.tga new file mode 100644 index 000000000..4249627ca Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_music.tga b/indra/newview/skins/pslpurple/textures/icn_music.tga new file mode 100644 index 000000000..a7c2845dc Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_music.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_play.tga b/indra/newview/skins/pslpurple/textures/icn_play.tga new file mode 100644 index 000000000..6b9bfb0e1 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_play.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_rounded-text-field.tga b/indra/newview/skins/pslpurple/textures/icn_rounded-text-field.tga new file mode 100644 index 000000000..3ec9a33cf Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_rounded-text-field.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_scrollbar.tga b/indra/newview/skins/pslpurple/textures/icn_scrollbar.tga new file mode 100644 index 000000000..68c2321fe Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_scrollbar.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_scrollbar_bg.tga b/indra/newview/skins/pslpurple/textures/icn_scrollbar_bg.tga new file mode 100644 index 000000000..76ac928ca Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_scrollbar_bg.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_scrollbar_thumb.tga b/indra/newview/skins/pslpurple/textures/icn_scrollbar_thumb.tga new file mode 100644 index 000000000..f0448d675 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_scrollbar_thumb.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_slide-groove_dark.tga b/indra/newview/skins/pslpurple/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..19361436e Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_slide-highlight.tga b/indra/newview/skins/pslpurple/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..0747e3ceb Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/pslpurple/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..7605b2c43 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/pslpurple/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..7e725abd0 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_speaker_dark.tga b/indra/newview/skins/pslpurple/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..99e552470 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_toolbar_build.tga b/indra/newview/skins/pslpurple/textures/icn_toolbar_build.tga new file mode 100644 index 000000000..46e84efbc Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_toolbar_build.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_toolbar_fly.tga b/indra/newview/skins/pslpurple/textures/icn_toolbar_fly.tga new file mode 100644 index 000000000..8bd422ac5 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_toolbar_fly.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_toolbar_inventory.tga b/indra/newview/skins/pslpurple/textures/icn_toolbar_inventory.tga new file mode 100644 index 000000000..b832ebce9 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_toolbar_inventory.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_toolbar_map.tga b/indra/newview/skins/pslpurple/textures/icn_toolbar_map.tga new file mode 100644 index 000000000..a100f5784 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_toolbar_map.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_toolbar_minimap.tga b/indra/newview/skins/pslpurple/textures/icn_toolbar_minimap.tga new file mode 100644 index 000000000..21149f326 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_toolbar_minimap.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_toolbar_search.tga b/indra/newview/skins/pslpurple/textures/icn_toolbar_search.tga new file mode 100644 index 000000000..2da9704f1 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_toolbar_search.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icn_toolbar_snapshot.tga b/indra/newview/skins/pslpurple/textures/icn_toolbar_snapshot.tga new file mode 100644 index 000000000..23b97c0eb Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icn_toolbar_snapshot.tga differ diff --git a/indra/newview/skins/pslpurple/textures/icon_diurnal.tga b/indra/newview/skins/pslpurple/textures/icon_diurnal.tga new file mode 100644 index 000000000..fc720c826 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/icon_diurnal.tga differ diff --git a/indra/newview/skins/pslpurple/textures/lightgray.tga b/indra/newview/skins/pslpurple/textures/lightgray.tga new file mode 100644 index 000000000..1ac39a0fa Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/lightgray.tga differ diff --git a/indra/newview/skins/pslpurple/textures/media_icon.tga b/indra/newview/skins/pslpurple/textures/media_icon.tga new file mode 100644 index 000000000..868da3734 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/media_icon.tga differ diff --git a/indra/newview/skins/pslpurple/textures/minimize.tga b/indra/newview/skins/pslpurple/textures/minimize.tga new file mode 100644 index 000000000..616eede93 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/minimize.tga differ diff --git a/indra/newview/skins/pslpurple/textures/minimize_inactive.tga b/indra/newview/skins/pslpurple/textures/minimize_inactive.tga new file mode 100644 index 000000000..ecddd2431 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/minimize_inactive.tga differ diff --git a/indra/newview/skins/pslpurple/textures/minimize_pressed.tga b/indra/newview/skins/pslpurple/textures/minimize_pressed.tga new file mode 100644 index 000000000..8a261a1ea Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/minimize_pressed.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_backward_in.tga b/indra/newview/skins/pslpurple/textures/move_backward_in.tga new file mode 100644 index 000000000..b64204eb2 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_backward_out.tga b/indra/newview/skins/pslpurple/textures/move_backward_out.tga new file mode 100644 index 000000000..1acce4b7b Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_down_in.tga b/indra/newview/skins/pslpurple/textures/move_down_in.tga new file mode 100644 index 000000000..904e9a8c8 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_down_in.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_down_out.tga b/indra/newview/skins/pslpurple/textures/move_down_out.tga new file mode 100644 index 000000000..39bcda4c3 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_down_out.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_forward_in.tga b/indra/newview/skins/pslpurple/textures/move_forward_in.tga new file mode 100644 index 000000000..d41a1e1ed Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_forward_out.tga b/indra/newview/skins/pslpurple/textures/move_forward_out.tga new file mode 100644 index 000000000..643c26066 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_left_in.tga b/indra/newview/skins/pslpurple/textures/move_left_in.tga new file mode 100644 index 000000000..f63ff2d4a Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_left_in.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_left_out.tga b/indra/newview/skins/pslpurple/textures/move_left_out.tga new file mode 100644 index 000000000..775bc151b Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_left_out.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_right_in.tga b/indra/newview/skins/pslpurple/textures/move_right_in.tga new file mode 100644 index 000000000..c85c4c335 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_right_in.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_right_out.tga b/indra/newview/skins/pslpurple/textures/move_right_out.tga new file mode 100644 index 000000000..729331d99 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_right_out.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_turn_left_in.tga b/indra/newview/skins/pslpurple/textures/move_turn_left_in.tga new file mode 100644 index 000000000..970b7f2ec Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_turn_left_out.tga b/indra/newview/skins/pslpurple/textures/move_turn_left_out.tga new file mode 100644 index 000000000..8c1677574 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_turn_right_in.tga b/indra/newview/skins/pslpurple/textures/move_turn_right_in.tga new file mode 100644 index 000000000..367deaeb9 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_turn_right_out.tga b/indra/newview/skins/pslpurple/textures/move_turn_right_out.tga new file mode 100644 index 000000000..3105adb7b Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_up_in.tga b/indra/newview/skins/pslpurple/textures/move_up_in.tga new file mode 100644 index 000000000..f62727d90 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_up_in.tga differ diff --git a/indra/newview/skins/pslpurple/textures/move_up_out.tga b/indra/newview/skins/pslpurple/textures/move_up_out.tga new file mode 100644 index 000000000..777b221f8 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/move_up_out.tga differ diff --git a/indra/newview/skins/pslpurple/textures/mute_icon.tga b/indra/newview/skins/pslpurple/textures/mute_icon.tga new file mode 100644 index 000000000..879b9e618 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/mute_icon.tga differ diff --git a/indra/newview/skins/pslpurple/textures/notify_next.png b/indra/newview/skins/pslpurple/textures/notify_next.png new file mode 100644 index 000000000..20166e3f7 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/notify_next.png differ diff --git a/indra/newview/skins/pslpurple/textures/preview.png b/indra/newview/skins/pslpurple/textures/preview.png new file mode 100644 index 000000000..902ad82b1 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/preview.png differ diff --git a/indra/newview/skins/pslpurple/textures/progress_fill.tga b/indra/newview/skins/pslpurple/textures/progress_fill.tga new file mode 100644 index 000000000..a5363463a Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/progress_fill.tga differ diff --git a/indra/newview/skins/pslpurple/textures/progressbar_fill.tga b/indra/newview/skins/pslpurple/textures/progressbar_fill.tga new file mode 100644 index 000000000..95bc24ebc Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/pslpurple/textures/progressbar_track.tga b/indra/newview/skins/pslpurple/textures/progressbar_track.tga new file mode 100644 index 000000000..9423e8d13 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/pslpurple/textures/ptt_lock_off.tga b/indra/newview/skins/pslpurple/textures/ptt_lock_off.tga new file mode 100644 index 000000000..7a179eeb0 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/ptt_lock_off.tga differ diff --git a/indra/newview/skins/pslpurple/textures/ptt_lock_on.tga b/indra/newview/skins/pslpurple/textures/ptt_lock_on.tga new file mode 100644 index 000000000..5a7413bde Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/ptt_lock_on.tga differ diff --git a/indra/newview/skins/pslpurple/textures/radio_active_false.tga b/indra/newview/skins/pslpurple/textures/radio_active_false.tga new file mode 100644 index 000000000..15d5e5927 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/radio_active_false.tga differ diff --git a/indra/newview/skins/pslpurple/textures/radio_active_true.tga b/indra/newview/skins/pslpurple/textures/radio_active_true.tga new file mode 100644 index 000000000..cbef88913 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/radio_active_true.tga differ diff --git a/indra/newview/skins/pslpurple/textures/radio_inactive_false.tga b/indra/newview/skins/pslpurple/textures/radio_inactive_false.tga new file mode 100644 index 000000000..48a934221 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/radio_inactive_false.tga differ diff --git a/indra/newview/skins/pslpurple/textures/radio_inactive_true.tga b/indra/newview/skins/pslpurple/textures/radio_inactive_true.tga new file mode 100644 index 000000000..785b3fa6d Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/radio_inactive_true.tga differ diff --git a/indra/newview/skins/pslpurple/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/pslpurple/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..4d3ee6cf9 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/restore.tga b/indra/newview/skins/pslpurple/textures/restore.tga new file mode 100644 index 000000000..a65c9497e Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/restore.tga differ diff --git a/indra/newview/skins/pslpurple/textures/restore_inactive.tga b/indra/newview/skins/pslpurple/textures/restore_inactive.tga new file mode 100644 index 000000000..ecddd2431 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/restore_inactive.tga differ diff --git a/indra/newview/skins/pslpurple/textures/restore_pressed.tga b/indra/newview/skins/pslpurple/textures/restore_pressed.tga new file mode 100644 index 000000000..7d80447b6 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/restore_pressed.tga differ diff --git a/indra/newview/skins/pslpurple/textures/rounded_square.tga b/indra/newview/skins/pslpurple/textures/rounded_square.tga new file mode 100644 index 000000000..c8fc7b799 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/rounded_square.tga differ diff --git a/indra/newview/skins/pslpurple/textures/rounded_square_soft.tga b/indra/newview/skins/pslpurple/textures/rounded_square_soft.tga new file mode 100644 index 000000000..0e5bc79ac Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/rounded_square_soft.tga differ diff --git a/indra/newview/skins/pslpurple/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/pslpurple/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..5b24a9ebb Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/scrollbutton_down_out_blue.tga b/indra/newview/skins/pslpurple/textures/scrollbutton_down_out_blue.tga new file mode 100644 index 000000000..2fdbfdb44 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/scrollbutton_down_out_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/pslpurple/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..e845a44e2 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/scrollbutton_left_out_blue.tga b/indra/newview/skins/pslpurple/textures/scrollbutton_left_out_blue.tga new file mode 100644 index 000000000..a4e8ef8da Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/scrollbutton_left_out_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/pslpurple/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..a13d1a54b Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/scrollbutton_right_out_blue.tga b/indra/newview/skins/pslpurple/textures/scrollbutton_right_out_blue.tga new file mode 100644 index 000000000..650d08ee0 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/scrollbutton_right_out_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/pslpurple/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..a5f00dfc9 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/scrollbutton_up_out_blue.tga b/indra/newview/skins/pslpurple/textures/scrollbutton_up_out_blue.tga new file mode 100644 index 000000000..48a03d554 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/scrollbutton_up_out_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/sm_rounded_corners_simple.tga b/indra/newview/skins/pslpurple/textures/sm_rounded_corners_simple.tga new file mode 100644 index 000000000..30bbbb45e Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/sm_rounded_corners_simple.tga differ diff --git a/indra/newview/skins/pslpurple/textures/smicon_warn.tga b/indra/newview/skins/pslpurple/textures/smicon_warn.tga new file mode 100644 index 000000000..de8cce2a7 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/smicon_warn.tga differ diff --git a/indra/newview/skins/pslpurple/textures/spacer24.tga b/indra/newview/skins/pslpurple/textures/spacer24.tga new file mode 100644 index 000000000..c7cab6b38 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/spacer24.tga differ diff --git a/indra/newview/skins/pslpurple/textures/spacer35.tga b/indra/newview/skins/pslpurple/textures/spacer35.tga new file mode 100644 index 000000000..b88bc6680 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/spacer35.tga differ diff --git a/indra/newview/skins/pslpurple/textures/spin_down_in_blue.tga b/indra/newview/skins/pslpurple/textures/spin_down_in_blue.tga new file mode 100644 index 000000000..50a604232 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/spin_down_in_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/spin_down_out_blue.tga b/indra/newview/skins/pslpurple/textures/spin_down_out_blue.tga new file mode 100644 index 000000000..bb4d8216f Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/spin_down_out_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/spin_up_in_blue.tga b/indra/newview/skins/pslpurple/textures/spin_up_in_blue.tga new file mode 100644 index 000000000..a0c364ada Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/spin_up_in_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/spin_up_out_blue.tga b/indra/newview/skins/pslpurple/textures/spin_up_out_blue.tga new file mode 100644 index 000000000..5c9328c4f Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/spin_up_out_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/square_btn_32x128.tga b/indra/newview/skins/pslpurple/textures/square_btn_32x128.tga new file mode 100644 index 000000000..4c8f78816 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/pslpurple/textures/square_btn_selected_32x128.tga b/indra/newview/skins/pslpurple/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..d0f81ef2e Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/pslpurple/textures/status_buy_currency.tga b/indra/newview/skins/pslpurple/textures/status_buy_currency.tga new file mode 100644 index 000000000..82644ef05 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/pslpurple/textures/status_buy_currency_pressed.tga b/indra/newview/skins/pslpurple/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..e1d229662 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/pslpurple/textures/status_buy_land.tga b/indra/newview/skins/pslpurple/textures/status_buy_land.tga new file mode 100644 index 000000000..cb27cdd9c Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/pslpurple/textures/status_buy_land_pressed.tga b/indra/newview/skins/pslpurple/textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..b957fcc44 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/pslpurple/textures/tab_bottom_blue.tga b/indra/newview/skins/pslpurple/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..26a72f9e5 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/pslpurple/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..5c41ae15b Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/tab_left.tga b/indra/newview/skins/pslpurple/textures/tab_left.tga new file mode 100644 index 000000000..b8f006a10 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/tab_left.tga differ diff --git a/indra/newview/skins/pslpurple/textures/tab_left_selected.tga b/indra/newview/skins/pslpurple/textures/tab_left_selected.tga new file mode 100644 index 000000000..881a49ef2 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/pslpurple/textures/tab_top_blue.tga b/indra/newview/skins/pslpurple/textures/tab_top_blue.tga new file mode 100644 index 000000000..19ad53c25 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/tab_top_selected_blue.tga b/indra/newview/skins/pslpurple/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..0d9c00dc4 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/pslpurple/textures/tabarea.tga b/indra/newview/skins/pslpurple/textures/tabarea.tga new file mode 100644 index 000000000..5517aebfc Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/tabarea.tga differ diff --git a/indra/newview/skins/pslpurple/textures/tearoff_pressed.tga b/indra/newview/skins/pslpurple/textures/tearoff_pressed.tga new file mode 100644 index 000000000..c9005fb31 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/tearoff_pressed.tga differ diff --git a/indra/newview/skins/pslpurple/textures/tearoffbox.tga b/indra/newview/skins/pslpurple/textures/tearoffbox.tga new file mode 100644 index 000000000..f7735ab93 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/tearoffbox.tga differ diff --git a/indra/newview/skins/pslpurple/textures/textures.xml b/indra/newview/skins/pslpurple/textures/textures.xml new file mode 100644 index 000000000..4dbbdf01b --- /dev/null +++ b/indra/newview/skins/pslpurple/textures/textures.xml @@ -0,0 +1,386 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/pslpurple/textures/tool_dozer.tga b/indra/newview/skins/pslpurple/textures/tool_dozer.tga new file mode 100644 index 000000000..359fe75b4 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/pslpurple/textures/tool_dozer_active.tga b/indra/newview/skins/pslpurple/textures/tool_dozer_active.tga new file mode 100644 index 000000000..6ca3e2551 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/pslpurple/textures/tool_zoom.tga b/indra/newview/skins/pslpurple/textures/tool_zoom.tga new file mode 100644 index 000000000..96777122f Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/pslpurple/textures/tool_zoom_active.tga b/indra/newview/skins/pslpurple/textures/tool_zoom_active.tga new file mode 100644 index 000000000..e72725445 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/pslpurple/textures/toolbar_btn_disabled.tga b/indra/newview/skins/pslpurple/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..c56e15198 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/pslpurple/textures/toolbar_btn_enabled.tga b/indra/newview/skins/pslpurple/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..98790c447 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/pslpurple/textures/toolbar_btn_selected.tga b/indra/newview/skins/pslpurple/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..992bfd62b Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/pslpurple/textures/toolbar_tab.tga b/indra/newview/skins/pslpurple/textures/toolbar_tab.tga new file mode 100644 index 000000000..fcab9dd4c Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/pslpurple/textures/up_arrow.tga b/indra/newview/skins/pslpurple/textures/up_arrow.tga new file mode 100644 index 000000000..4dcb587ca Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/up_arrow.tga differ diff --git a/indra/newview/skins/pslpurple/textures/white.tga b/indra/newview/skins/pslpurple/textures/white.tga new file mode 100644 index 000000000..55e379309 Binary files /dev/null and b/indra/newview/skins/pslpurple/textures/white.tga differ diff --git a/indra/newview/skins/ruby/License and Credit.txt b/indra/newview/skins/ruby/License and Credit.txt new file mode 100644 index 000000000..913ce054f --- /dev/null +++ b/indra/newview/skins/ruby/License and Credit.txt @@ -0,0 +1,3 @@ +This skin was modified by Ikaru Aichi from the default linden skin provided. +This skin was modified by ciganito111 from the default linden skin and ikaru's skin. +All Images and modifications done are provided free to use, modify, and distribute, so long as this infomation is distributed with it. \ No newline at end of file diff --git a/indra/newview/skins/ruby/colors_base.xml b/indra/newview/skins/ruby/colors_base.xml new file mode 100644 index 000000000..1817e9ea6 --- /dev/null +++ b/indra/newview/skins/ruby/colors_base.xml @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/ruby/textures/arrow_down.tga b/indra/newview/skins/ruby/textures/arrow_down.tga new file mode 100644 index 000000000..f47688ed8 Binary files /dev/null and b/indra/newview/skins/ruby/textures/arrow_down.tga differ diff --git a/indra/newview/skins/ruby/textures/arrow_up.tga b/indra/newview/skins/ruby/textures/arrow_up.tga new file mode 100644 index 000000000..55604d9b0 Binary files /dev/null and b/indra/newview/skins/ruby/textures/arrow_up.tga differ diff --git a/indra/newview/skins/ruby/textures/btn_chatbar.tga b/indra/newview/skins/ruby/textures/btn_chatbar.tga new file mode 100644 index 000000000..a96880fa5 Binary files /dev/null and b/indra/newview/skins/ruby/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/ruby/textures/btn_chatbar_selected.tga b/indra/newview/skins/ruby/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..68eb9fa33 Binary files /dev/null and b/indra/newview/skins/ruby/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/ruby/textures/button_anim_pause.tga b/indra/newview/skins/ruby/textures/button_anim_pause.tga new file mode 100644 index 000000000..438cd6ec5 Binary files /dev/null and b/indra/newview/skins/ruby/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/ruby/textures/button_anim_pause_disabled.tga b/indra/newview/skins/ruby/textures/button_anim_pause_disabled.tga new file mode 100644 index 000000000..04f1e353b Binary files /dev/null and b/indra/newview/skins/ruby/textures/button_anim_pause_disabled.tga differ diff --git a/indra/newview/skins/ruby/textures/button_anim_pause_selected.tga b/indra/newview/skins/ruby/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..f3928d9ad Binary files /dev/null and b/indra/newview/skins/ruby/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/ruby/textures/button_anim_play.tga b/indra/newview/skins/ruby/textures/button_anim_play.tga new file mode 100644 index 000000000..1bdca7e50 Binary files /dev/null and b/indra/newview/skins/ruby/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/ruby/textures/button_anim_play_disabled.tga b/indra/newview/skins/ruby/textures/button_anim_play_disabled.tga new file mode 100644 index 000000000..a1b25ae21 Binary files /dev/null and b/indra/newview/skins/ruby/textures/button_anim_play_disabled.tga differ diff --git a/indra/newview/skins/ruby/textures/button_anim_play_selected.tga b/indra/newview/skins/ruby/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..e4dbaa9df Binary files /dev/null and b/indra/newview/skins/ruby/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/ruby/textures/button_anim_stop.tga b/indra/newview/skins/ruby/textures/button_anim_stop.tga new file mode 100644 index 000000000..ba1ff32e7 Binary files /dev/null and b/indra/newview/skins/ruby/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/ruby/textures/button_anim_stop_disabled.tga b/indra/newview/skins/ruby/textures/button_anim_stop_disabled.tga new file mode 100644 index 000000000..4e7380265 Binary files /dev/null and b/indra/newview/skins/ruby/textures/button_anim_stop_disabled.tga differ diff --git a/indra/newview/skins/ruby/textures/button_anim_stop_selected.tga b/indra/newview/skins/ruby/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..0f3d42523 Binary files /dev/null and b/indra/newview/skins/ruby/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/ruby/textures/button_disabled_32x128.tga b/indra/newview/skins/ruby/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..51cb1fc9a Binary files /dev/null and b/indra/newview/skins/ruby/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/ruby/textures/button_enabled_32x128.tga b/indra/newview/skins/ruby/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..816e09196 Binary files /dev/null and b/indra/newview/skins/ruby/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/ruby/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/ruby/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..db8add0bf Binary files /dev/null and b/indra/newview/skins/ruby/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/ruby/textures/checkbox_disabled_false.tga b/indra/newview/skins/ruby/textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..16c239227 Binary files /dev/null and b/indra/newview/skins/ruby/textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/ruby/textures/checkbox_disabled_true.tga b/indra/newview/skins/ruby/textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..04a8d516f Binary files /dev/null and b/indra/newview/skins/ruby/textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/ruby/textures/checkbox_enabled_false.tga b/indra/newview/skins/ruby/textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..ff03b4d3e Binary files /dev/null and b/indra/newview/skins/ruby/textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/ruby/textures/checkbox_enabled_true.tga b/indra/newview/skins/ruby/textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..cd57294bd Binary files /dev/null and b/indra/newview/skins/ruby/textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/ruby/textures/crosshairs.tga b/indra/newview/skins/ruby/textures/crosshairs.tga new file mode 100644 index 000000000..ddd51f5a0 Binary files /dev/null and b/indra/newview/skins/ruby/textures/crosshairs.tga differ diff --git a/indra/newview/skins/ruby/textures/direction_arrow.tga b/indra/newview/skins/ruby/textures/direction_arrow.tga new file mode 100644 index 000000000..aaa72c391 Binary files /dev/null and b/indra/newview/skins/ruby/textures/direction_arrow.tga differ diff --git a/indra/newview/skins/ruby/textures/eye_button_active.tga b/indra/newview/skins/ruby/textures/eye_button_active.tga new file mode 100644 index 000000000..c04ff6430 Binary files /dev/null and b/indra/newview/skins/ruby/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/ruby/textures/ff_online_status_button.tga b/indra/newview/skins/ruby/textures/ff_online_status_button.tga new file mode 100644 index 000000000..3af18815b Binary files /dev/null and b/indra/newview/skins/ruby/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/ruby/textures/flyout_btn_left.tga b/indra/newview/skins/ruby/textures/flyout_btn_left.tga new file mode 100644 index 000000000..95c98ad1d Binary files /dev/null and b/indra/newview/skins/ruby/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/ruby/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/ruby/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..ede4386bd Binary files /dev/null and b/indra/newview/skins/ruby/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/ruby/textures/flyout_btn_left_selected.tga b/indra/newview/skins/ruby/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..efd1bfc83 Binary files /dev/null and b/indra/newview/skins/ruby/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/ruby/textures/flyout_btn_right.tga b/indra/newview/skins/ruby/textures/flyout_btn_right.tga new file mode 100644 index 000000000..eb310687e Binary files /dev/null and b/indra/newview/skins/ruby/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/ruby/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/ruby/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..62cec20f7 Binary files /dev/null and b/indra/newview/skins/ruby/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/ruby/textures/flyout_btn_right_selected.tga b/indra/newview/skins/ruby/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..92ad9069f Binary files /dev/null and b/indra/newview/skins/ruby/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_label_music.tga b/indra/newview/skins/ruby/textures/icn_label_music.tga new file mode 100644 index 000000000..f84b71736 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_label_web.tga b/indra/newview/skins/ruby/textures/icn_label_web.tga new file mode 100644 index 000000000..25ae9a220 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_media-pause.tga b/indra/newview/skins/ruby/textures/icn_media-pause.tga new file mode 100644 index 000000000..e741829b7 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_media-pause_active.tga b/indra/newview/skins/ruby/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..bb2a65846 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_media-pause_disabled.tga b/indra/newview/skins/ruby/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..5e67dca36 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_media-pause_enabled.tga b/indra/newview/skins/ruby/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..13a2a87d1 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_media-play.tga b/indra/newview/skins/ruby/textures/icn_media-play.tga new file mode 100644 index 000000000..b7c87432a Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_media-play.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_media-play_active.tga b/indra/newview/skins/ruby/textures/icn_media-play_active.tga new file mode 100644 index 000000000..b41e7fe08 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_media-play_active.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_media-play_disabled.tga b/indra/newview/skins/ruby/textures/icn_media-play_disabled.tga new file mode 100644 index 000000000..eafac3b58 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_media-play_disabled.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_media-play_enabled.tga b/indra/newview/skins/ruby/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..98b8dc684 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_media-stop_active.tga b/indra/newview/skins/ruby/textures/icn_media-stop_active.tga new file mode 100644 index 000000000..3a5ad5a21 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_media-stop_active.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_media-stop_disabled.tga b/indra/newview/skins/ruby/textures/icn_media-stop_disabled.tga new file mode 100644 index 000000000..07e491aa0 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_media-stop_disabled.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_media-stop_enabled.tga b/indra/newview/skins/ruby/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..611c1774d Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_media.tga b/indra/newview/skins/ruby/textures/icn_media.tga new file mode 100644 index 000000000..f105c1f4c Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_media.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_media_movie.tga b/indra/newview/skins/ruby/textures/icn_media_movie.tga new file mode 100644 index 000000000..f105c1f4c Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_media_web.tga b/indra/newview/skins/ruby/textures/icn_media_web.tga new file mode 100644 index 000000000..25ae9a220 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_music-pause.tga b/indra/newview/skins/ruby/textures/icn_music-pause.tga new file mode 100644 index 000000000..3f25aad5e Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_music-play.tga b/indra/newview/skins/ruby/textures/icn_music-play.tga new file mode 100644 index 000000000..32cd62c2e Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_music.tga b/indra/newview/skins/ruby/textures/icn_music.tga new file mode 100644 index 000000000..460969314 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_music.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_pause.tga b/indra/newview/skins/ruby/textures/icn_pause.tga new file mode 100644 index 000000000..07bc3e19a Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_pause.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_play.tga b/indra/newview/skins/ruby/textures/icn_play.tga new file mode 100644 index 000000000..c48901cbe Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_play.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_slide-groove_dark.tga b/indra/newview/skins/ruby/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..3542b39c8 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_slide-highlight.tga b/indra/newview/skins/ruby/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..2793268ba Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/ruby/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..4c4717bfb Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/ruby/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..0a25b7933 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/ruby/textures/icn_speaker_dark.tga b/indra/newview/skins/ruby/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..9cf115a8f Binary files /dev/null and b/indra/newview/skins/ruby/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/ruby/textures/icon_avatar_online.tga b/indra/newview/skins/ruby/textures/icon_avatar_online.tga new file mode 100644 index 000000000..890b94350 Binary files /dev/null and b/indra/newview/skins/ruby/textures/icon_avatar_online.tga differ diff --git a/indra/newview/skins/ruby/textures/icon_top_pick.tga b/indra/newview/skins/ruby/textures/icon_top_pick.tga new file mode 100644 index 000000000..3f4a8615e Binary files /dev/null and b/indra/newview/skins/ruby/textures/icon_top_pick.tga differ diff --git a/indra/newview/skins/ruby/textures/inv_item_script_dangerous.tga b/indra/newview/skins/ruby/textures/inv_item_script_dangerous.tga new file mode 100644 index 000000000..1ee742a8b Binary files /dev/null and b/indra/newview/skins/ruby/textures/inv_item_script_dangerous.tga differ diff --git a/indra/newview/skins/ruby/textures/map_home.tga b/indra/newview/skins/ruby/textures/map_home.tga new file mode 100644 index 000000000..48307948d Binary files /dev/null and b/indra/newview/skins/ruby/textures/map_home.tga differ diff --git a/indra/newview/skins/ruby/textures/media_icon.tga b/indra/newview/skins/ruby/textures/media_icon.tga new file mode 100644 index 000000000..2d728de64 Binary files /dev/null and b/indra/newview/skins/ruby/textures/media_icon.tga differ diff --git a/indra/newview/skins/ruby/textures/music_icon.tga b/indra/newview/skins/ruby/textures/music_icon.tga new file mode 100644 index 000000000..cde71e324 Binary files /dev/null and b/indra/newview/skins/ruby/textures/music_icon.tga differ diff --git a/indra/newview/skins/ruby/textures/notify_box_icon.tga b/indra/newview/skins/ruby/textures/notify_box_icon.tga new file mode 100644 index 000000000..b73ef7b5b Binary files /dev/null and b/indra/newview/skins/ruby/textures/notify_box_icon.tga differ diff --git a/indra/newview/skins/ruby/textures/notify_tip_icon.tga b/indra/newview/skins/ruby/textures/notify_tip_icon.tga new file mode 100644 index 000000000..6da513245 Binary files /dev/null and b/indra/newview/skins/ruby/textures/notify_tip_icon.tga differ diff --git a/indra/newview/skins/ruby/textures/preview.png b/indra/newview/skins/ruby/textures/preview.png new file mode 100644 index 000000000..d45e75ad0 Binary files /dev/null and b/indra/newview/skins/ruby/textures/preview.png differ diff --git a/indra/newview/skins/ruby/textures/progress_fill.tga b/indra/newview/skins/ruby/textures/progress_fill.tga new file mode 100644 index 000000000..6932d4f7b Binary files /dev/null and b/indra/newview/skins/ruby/textures/progress_fill.tga differ diff --git a/indra/newview/skins/ruby/textures/progressbar_fill.tga b/indra/newview/skins/ruby/textures/progressbar_fill.tga new file mode 100644 index 000000000..3b400c8fd Binary files /dev/null and b/indra/newview/skins/ruby/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/ruby/textures/progressbar_track.tga b/indra/newview/skins/ruby/textures/progressbar_track.tga new file mode 100644 index 000000000..4898aa474 Binary files /dev/null and b/indra/newview/skins/ruby/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/ruby/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/ruby/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..c9230433d Binary files /dev/null and b/indra/newview/skins/ruby/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/ruby/textures/startup_logo.j2c b/indra/newview/skins/ruby/textures/startup_logo.j2c new file mode 100644 index 000000000..9b32dd127 Binary files /dev/null and b/indra/newview/skins/ruby/textures/startup_logo.j2c differ diff --git a/indra/newview/skins/ruby/textures/status_busy.tga b/indra/newview/skins/ruby/textures/status_busy.tga new file mode 100644 index 000000000..7743d9c7b Binary files /dev/null and b/indra/newview/skins/ruby/textures/status_busy.tga differ diff --git a/indra/newview/skins/ruby/textures/status_buy_currency.tga b/indra/newview/skins/ruby/textures/status_buy_currency.tga new file mode 100644 index 000000000..e01234f0c Binary files /dev/null and b/indra/newview/skins/ruby/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/ruby/textures/status_buy_currency_pressed.tga b/indra/newview/skins/ruby/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..438531d64 Binary files /dev/null and b/indra/newview/skins/ruby/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/ruby/textures/status_buy_land.tga b/indra/newview/skins/ruby/textures/status_buy_land.tga new file mode 100644 index 000000000..c33594ec7 Binary files /dev/null and b/indra/newview/skins/ruby/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/ruby/textures/status_buy_land_pressed.tga b/indra/newview/skins/ruby/textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..bafd80caf Binary files /dev/null and b/indra/newview/skins/ruby/textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/ruby/textures/status_money.tga b/indra/newview/skins/ruby/textures/status_money.tga new file mode 100644 index 000000000..9e0ba480c Binary files /dev/null and b/indra/newview/skins/ruby/textures/status_money.tga differ diff --git a/indra/newview/skins/ruby/textures/tab_bottom_blue.tga b/indra/newview/skins/ruby/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..1f045277d Binary files /dev/null and b/indra/newview/skins/ruby/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/ruby/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/ruby/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..249d149f4 Binary files /dev/null and b/indra/newview/skins/ruby/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/ruby/textures/tab_left.tga b/indra/newview/skins/ruby/textures/tab_left.tga new file mode 100644 index 000000000..b104901c7 Binary files /dev/null and b/indra/newview/skins/ruby/textures/tab_left.tga differ diff --git a/indra/newview/skins/ruby/textures/tab_left_selected.tga b/indra/newview/skins/ruby/textures/tab_left_selected.tga new file mode 100644 index 000000000..0cc106176 Binary files /dev/null and b/indra/newview/skins/ruby/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/ruby/textures/tab_top_blue.tga b/indra/newview/skins/ruby/textures/tab_top_blue.tga new file mode 100644 index 000000000..27c5e3fd5 Binary files /dev/null and b/indra/newview/skins/ruby/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/ruby/textures/tab_top_selected_blue.tga b/indra/newview/skins/ruby/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..91a907231 Binary files /dev/null and b/indra/newview/skins/ruby/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/ruby/textures/toolbar_btn_disabled.tga b/indra/newview/skins/ruby/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..1773460f0 Binary files /dev/null and b/indra/newview/skins/ruby/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/ruby/textures/toolbar_btn_enabled.tga b/indra/newview/skins/ruby/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..7ab1dcb29 Binary files /dev/null and b/indra/newview/skins/ruby/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/ruby/textures/toolbar_btn_selected.tga b/indra/newview/skins/ruby/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..d8d4a33b8 Binary files /dev/null and b/indra/newview/skins/ruby/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/sapphire.xml b/indra/newview/skins/sapphire.xml new file mode 100644 index 000000000..c5f50b706 --- /dev/null +++ b/indra/newview/skins/sapphire.xml @@ -0,0 +1,14 @@ + + + skin_name + Sapphire Gems + author_name + ciganito111 + additional_author_names + Ikaru Aichi, Linden Lab + skin_info + + folder_name + sapphire + + diff --git a/indra/newview/skins/sapphire/colors_base.xml b/indra/newview/skins/sapphire/colors_base.xml new file mode 100644 index 000000000..42f4435a3 --- /dev/null +++ b/indra/newview/skins/sapphire/colors_base.xml @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/sapphire/textures/arrow_down.tga b/indra/newview/skins/sapphire/textures/arrow_down.tga new file mode 100644 index 000000000..05d073efa Binary files /dev/null and b/indra/newview/skins/sapphire/textures/arrow_down.tga differ diff --git a/indra/newview/skins/sapphire/textures/arrow_up.tga b/indra/newview/skins/sapphire/textures/arrow_up.tga new file mode 100644 index 000000000..4c8c25ae4 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/arrow_up.tga differ diff --git a/indra/newview/skins/sapphire/textures/btn_chatbar.tga b/indra/newview/skins/sapphire/textures/btn_chatbar.tga new file mode 100644 index 000000000..71153b3d0 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/sapphire/textures/btn_chatbar_selected.tga b/indra/newview/skins/sapphire/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..8a4ad49c2 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/sapphire/textures/button_anim_pause.tga b/indra/newview/skins/sapphire/textures/button_anim_pause.tga new file mode 100644 index 000000000..7b98edecf Binary files /dev/null and b/indra/newview/skins/sapphire/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/sapphire/textures/button_anim_pause_disabled.tga b/indra/newview/skins/sapphire/textures/button_anim_pause_disabled.tga new file mode 100644 index 000000000..6fd56f1dd Binary files /dev/null and b/indra/newview/skins/sapphire/textures/button_anim_pause_disabled.tga differ diff --git a/indra/newview/skins/sapphire/textures/button_anim_pause_selected.tga b/indra/newview/skins/sapphire/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..fe88e4cd4 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/sapphire/textures/button_anim_play.tga b/indra/newview/skins/sapphire/textures/button_anim_play.tga new file mode 100644 index 000000000..b7497e6ad Binary files /dev/null and b/indra/newview/skins/sapphire/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/sapphire/textures/button_anim_play_disabled.tga b/indra/newview/skins/sapphire/textures/button_anim_play_disabled.tga new file mode 100644 index 000000000..8afbc80f8 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/button_anim_play_disabled.tga differ diff --git a/indra/newview/skins/sapphire/textures/button_anim_play_selected.tga b/indra/newview/skins/sapphire/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..e3a37842f Binary files /dev/null and b/indra/newview/skins/sapphire/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/sapphire/textures/button_anim_stop.tga b/indra/newview/skins/sapphire/textures/button_anim_stop.tga new file mode 100644 index 000000000..2e0a0f521 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/sapphire/textures/button_anim_stop_disabled.tga b/indra/newview/skins/sapphire/textures/button_anim_stop_disabled.tga new file mode 100644 index 000000000..2d36ecc00 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/button_anim_stop_disabled.tga differ diff --git a/indra/newview/skins/sapphire/textures/button_anim_stop_selected.tga b/indra/newview/skins/sapphire/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..7ef08a6ed Binary files /dev/null and b/indra/newview/skins/sapphire/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/sapphire/textures/button_disabled_32x128.tga b/indra/newview/skins/sapphire/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..aa58c3588 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/sapphire/textures/button_enabled_32x128.tga b/indra/newview/skins/sapphire/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..dc7266f30 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/sapphire/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/sapphire/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..0acddb04a Binary files /dev/null and b/indra/newview/skins/sapphire/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/sapphire/textures/checkbox_disabled_false.tga b/indra/newview/skins/sapphire/textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..16c239227 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/sapphire/textures/checkbox_disabled_true.tga b/indra/newview/skins/sapphire/textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..04a8d516f Binary files /dev/null and b/indra/newview/skins/sapphire/textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/sapphire/textures/checkbox_enabled_false.tga b/indra/newview/skins/sapphire/textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..b8bdd1393 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/sapphire/textures/checkbox_enabled_true.tga b/indra/newview/skins/sapphire/textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..75c49c395 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/sapphire/textures/crosshairs.tga b/indra/newview/skins/sapphire/textures/crosshairs.tga new file mode 100644 index 000000000..691f1124a Binary files /dev/null and b/indra/newview/skins/sapphire/textures/crosshairs.tga differ diff --git a/indra/newview/skins/sapphire/textures/direction_arrow.tga b/indra/newview/skins/sapphire/textures/direction_arrow.tga new file mode 100644 index 000000000..13a9e3f6a Binary files /dev/null and b/indra/newview/skins/sapphire/textures/direction_arrow.tga differ diff --git a/indra/newview/skins/sapphire/textures/eye_button_active.tga b/indra/newview/skins/sapphire/textures/eye_button_active.tga new file mode 100644 index 000000000..4f1090f95 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/eye_button_active.tga differ diff --git a/indra/newview/skins/sapphire/textures/ff_online_status_button.tga b/indra/newview/skins/sapphire/textures/ff_online_status_button.tga new file mode 100644 index 000000000..2383e76b7 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/sapphire/textures/flyout_btn_left.tga b/indra/newview/skins/sapphire/textures/flyout_btn_left.tga new file mode 100644 index 000000000..228bb6094 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/sapphire/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/sapphire/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..cbcdc48ad Binary files /dev/null and b/indra/newview/skins/sapphire/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/sapphire/textures/flyout_btn_left_selected.tga b/indra/newview/skins/sapphire/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..e98c64f53 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/sapphire/textures/flyout_btn_right.tga b/indra/newview/skins/sapphire/textures/flyout_btn_right.tga new file mode 100644 index 000000000..31eb838b5 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/sapphire/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/sapphire/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..5109367f6 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/sapphire/textures/flyout_btn_right_selected.tga b/indra/newview/skins/sapphire/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..2ee42ef67 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_label_music.tga b/indra/newview/skins/sapphire/textures/icn_label_music.tga new file mode 100644 index 000000000..6207b35b9 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_label_web.tga b/indra/newview/skins/sapphire/textures/icn_label_web.tga new file mode 100644 index 000000000..2607e6aaf Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_media-pause.tga b/indra/newview/skins/sapphire/textures/icn_media-pause.tga new file mode 100644 index 000000000..ee30ffb8c Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_media-pause_active.tga b/indra/newview/skins/sapphire/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..22f45c715 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_media-pause_disabled.tga b/indra/newview/skins/sapphire/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..4fe7c5872 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_media-pause_enabled.tga b/indra/newview/skins/sapphire/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..9a89f0a39 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_media-play.tga b/indra/newview/skins/sapphire/textures/icn_media-play.tga new file mode 100644 index 000000000..758ee420f Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_media-play.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_media-play_active.tga b/indra/newview/skins/sapphire/textures/icn_media-play_active.tga new file mode 100644 index 000000000..4d8d9bf1a Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_media-play_active.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_media-play_disabled.tga b/indra/newview/skins/sapphire/textures/icn_media-play_disabled.tga new file mode 100644 index 000000000..1723e7c5b Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_media-play_disabled.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_media-play_enabled.tga b/indra/newview/skins/sapphire/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..a2a1f70c3 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_media-stop_active.tga b/indra/newview/skins/sapphire/textures/icn_media-stop_active.tga new file mode 100644 index 000000000..b84bbbfe8 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_media-stop_active.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_media-stop_disabled.tga b/indra/newview/skins/sapphire/textures/icn_media-stop_disabled.tga new file mode 100644 index 000000000..7ca2cc047 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_media-stop_disabled.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_media-stop_enabled.tga b/indra/newview/skins/sapphire/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..8e34eac96 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_media.tga b/indra/newview/skins/sapphire/textures/icn_media.tga new file mode 100644 index 000000000..554f24338 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_media.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_media_movie.tga b/indra/newview/skins/sapphire/textures/icn_media_movie.tga new file mode 100644 index 000000000..554f24338 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_media_web.tga b/indra/newview/skins/sapphire/textures/icn_media_web.tga new file mode 100644 index 000000000..2607e6aaf Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_music-pause.tga b/indra/newview/skins/sapphire/textures/icn_music-pause.tga new file mode 100644 index 000000000..5ef3428aa Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_music-play.tga b/indra/newview/skins/sapphire/textures/icn_music-play.tga new file mode 100644 index 000000000..f867ed5db Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_music.tga b/indra/newview/skins/sapphire/textures/icn_music.tga new file mode 100644 index 000000000..4e96bb221 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_music.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_pause.tga b/indra/newview/skins/sapphire/textures/icn_pause.tga new file mode 100644 index 000000000..c54d5dd9e Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_pause.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_play.tga b/indra/newview/skins/sapphire/textures/icn_play.tga new file mode 100644 index 000000000..349e15abc Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_play.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_slide-groove_dark.tga b/indra/newview/skins/sapphire/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..f37abce01 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_slide-highlight.tga b/indra/newview/skins/sapphire/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..74ef8710d Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/sapphire/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..e62205b49 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/sapphire/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..a60a4fa40 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/sapphire/textures/icn_speaker_dark.tga b/indra/newview/skins/sapphire/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..580b55f03 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/sapphire/textures/icon_avatar_online.tga b/indra/newview/skins/sapphire/textures/icon_avatar_online.tga new file mode 100644 index 000000000..647fb4036 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icon_avatar_online.tga differ diff --git a/indra/newview/skins/sapphire/textures/icon_top_pick.tga b/indra/newview/skins/sapphire/textures/icon_top_pick.tga new file mode 100644 index 000000000..2dc6b0c57 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/icon_top_pick.tga differ diff --git a/indra/newview/skins/sapphire/textures/map_home.tga b/indra/newview/skins/sapphire/textures/map_home.tga new file mode 100644 index 000000000..be045be62 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/map_home.tga differ diff --git a/indra/newview/skins/sapphire/textures/media_icon.tga b/indra/newview/skins/sapphire/textures/media_icon.tga new file mode 100644 index 000000000..9ca25cb16 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/media_icon.tga differ diff --git a/indra/newview/skins/sapphire/textures/music_icon.tga b/indra/newview/skins/sapphire/textures/music_icon.tga new file mode 100644 index 000000000..8f4785367 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/music_icon.tga differ diff --git a/indra/newview/skins/sapphire/textures/notify_box_icon.tga b/indra/newview/skins/sapphire/textures/notify_box_icon.tga new file mode 100644 index 000000000..553213339 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/notify_box_icon.tga differ diff --git a/indra/newview/skins/sapphire/textures/notify_tip_icon.tga b/indra/newview/skins/sapphire/textures/notify_tip_icon.tga new file mode 100644 index 000000000..eb10980d0 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/notify_tip_icon.tga differ diff --git a/indra/newview/skins/sapphire/textures/preview.png b/indra/newview/skins/sapphire/textures/preview.png new file mode 100644 index 000000000..7ec8e1991 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/preview.png differ diff --git a/indra/newview/skins/sapphire/textures/progress_fill.tga b/indra/newview/skins/sapphire/textures/progress_fill.tga new file mode 100644 index 000000000..74ec325f3 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/progress_fill.tga differ diff --git a/indra/newview/skins/sapphire/textures/progressbar_fill.tga b/indra/newview/skins/sapphire/textures/progressbar_fill.tga new file mode 100644 index 000000000..86e20da36 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/sapphire/textures/progressbar_track.tga b/indra/newview/skins/sapphire/textures/progressbar_track.tga new file mode 100644 index 000000000..625728687 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/sapphire/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/sapphire/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..5e1fe8e78 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/sapphire/textures/status_busy.tga b/indra/newview/skins/sapphire/textures/status_busy.tga new file mode 100644 index 000000000..421587f3c Binary files /dev/null and b/indra/newview/skins/sapphire/textures/status_busy.tga differ diff --git a/indra/newview/skins/sapphire/textures/status_buy_currency.tga b/indra/newview/skins/sapphire/textures/status_buy_currency.tga new file mode 100644 index 000000000..6302fba9d Binary files /dev/null and b/indra/newview/skins/sapphire/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/sapphire/textures/status_buy_currency_pressed.tga b/indra/newview/skins/sapphire/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..7c10c1de2 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/sapphire/textures/status_buy_land.tga b/indra/newview/skins/sapphire/textures/status_buy_land.tga new file mode 100644 index 000000000..48cac5c1c Binary files /dev/null and b/indra/newview/skins/sapphire/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/sapphire/textures/status_buy_land_pressed.tga b/indra/newview/skins/sapphire/textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..a3b1b4edd Binary files /dev/null and b/indra/newview/skins/sapphire/textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/sapphire/textures/status_money.tga b/indra/newview/skins/sapphire/textures/status_money.tga new file mode 100644 index 000000000..451038a6d Binary files /dev/null and b/indra/newview/skins/sapphire/textures/status_money.tga differ diff --git a/indra/newview/skins/sapphire/textures/tab_bottom_blue.tga b/indra/newview/skins/sapphire/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..757eb58d1 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/sapphire/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/sapphire/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..a4ae44984 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/sapphire/textures/tab_left.tga b/indra/newview/skins/sapphire/textures/tab_left.tga new file mode 100644 index 000000000..32eb23ad7 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/tab_left.tga differ diff --git a/indra/newview/skins/sapphire/textures/tab_left_selected.tga b/indra/newview/skins/sapphire/textures/tab_left_selected.tga new file mode 100644 index 000000000..9a59a40ab Binary files /dev/null and b/indra/newview/skins/sapphire/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/sapphire/textures/tab_top_blue.tga b/indra/newview/skins/sapphire/textures/tab_top_blue.tga new file mode 100644 index 000000000..249e57894 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/sapphire/textures/tab_top_selected_blue.tga b/indra/newview/skins/sapphire/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..c55e95ec3 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/sapphire/textures/toolbar_btn_disabled.tga b/indra/newview/skins/sapphire/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..dfd7cfd40 Binary files /dev/null and b/indra/newview/skins/sapphire/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/sapphire/textures/toolbar_btn_enabled.tga b/indra/newview/skins/sapphire/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..ca4f5f79e Binary files /dev/null and b/indra/newview/skins/sapphire/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/sapphire/textures/toolbar_btn_selected.tga b/indra/newview/skins/sapphire/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..bdc3c9e2d Binary files /dev/null and b/indra/newview/skins/sapphire/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/white_emerald/License and Credit.txt b/indra/newview/skins/white_emerald/License and Credit.txt new file mode 100644 index 000000000..ead485041 --- /dev/null +++ b/indra/newview/skins/white_emerald/License and Credit.txt @@ -0,0 +1,2 @@ +This skin was modified by James Random from the default linden skin provided, for the GreenLife Emerald Viewer. +All Images and modifications done are provided free to use, modify, and distribute, so long as this infomation is distributed with it. \ No newline at end of file diff --git a/indra/newview/skins/white_emerald/Textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/white_emerald/Textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..cbefafb82 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga b/indra/newview/skins/white_emerald/Textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga new file mode 100644 index 000000000..78cb24ee2 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/white_emerald/Textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..d1673550c Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga b/indra/newview/skins/white_emerald/Textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga new file mode 100644 index 000000000..4ec56a69a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga b/indra/newview/skins/white_emerald/Textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga new file mode 100644 index 000000000..b18fab63c Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/Untitled-2.psd b/indra/newview/skins/white_emerald/Textures/Untitled-2.psd new file mode 100644 index 000000000..a18b66c73 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/Untitled-2.psd differ diff --git a/indra/newview/skins/white_emerald/Textures/active_speakers.tga b/indra/newview/skins/white_emerald/Textures/active_speakers.tga new file mode 100644 index 000000000..45ab76a7c Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/active_speakers.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/active_voice_tab.tga b/indra/newview/skins/white_emerald/Textures/active_voice_tab.tga new file mode 100644 index 000000000..1a68c98e3 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/active_voice_tab.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/arrow_down.tga b/indra/newview/skins/white_emerald/Textures/arrow_down.tga new file mode 100644 index 000000000..1a03d87e3 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/arrow_down.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/arrow_up.tga b/indra/newview/skins/white_emerald/Textures/arrow_up.tga new file mode 100644 index 000000000..82a7d9e59 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/arrow_up.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/white_emerald/Textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..966fad47c Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/black.tga b/indra/newview/skins/white_emerald/Textures/black.tga new file mode 100644 index 000000000..e368ea496 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/black.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/btn_chatbar.tga b/indra/newview/skins/white_emerald/Textures/btn_chatbar.tga new file mode 100644 index 000000000..9c44fa26d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/btn_chatbar_selected.tga b/indra/newview/skins/white_emerald/Textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..db4561578 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/button_anim_pause.tga b/indra/newview/skins/white_emerald/Textures/button_anim_pause.tga new file mode 100644 index 000000000..2a7c69f04 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/button_anim_pause_selected.tga b/indra/newview/skins/white_emerald/Textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..8412f5625 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/button_anim_play.tga b/indra/newview/skins/white_emerald/Textures/button_anim_play.tga new file mode 100644 index 000000000..1d64c0bcc Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/button_anim_play.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/button_anim_play_selected.tga b/indra/newview/skins/white_emerald/Textures/button_anim_play_selected.tga new file mode 100644 index 000000000..67ce32cd5 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/button_anim_stop.tga b/indra/newview/skins/white_emerald/Textures/button_anim_stop.tga new file mode 100644 index 000000000..972965495 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/button_anim_stop_selected.tga b/indra/newview/skins/white_emerald/Textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..8744c4e53 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/button_disabled_32x128.tga b/indra/newview/skins/white_emerald/Textures/button_disabled_32x128.tga new file mode 100644 index 000000000..0e130defe Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/button_enabled_32x128.tga b/indra/newview/skins/white_emerald/Textures/button_enabled_32x128.tga new file mode 100644 index 000000000..df98cba86 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/button_enabled_selected_32x128.tga b/indra/newview/skins/white_emerald/Textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..796b856db Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/button_play_anim_selected.tga b/indra/newview/skins/white_emerald/Textures/button_play_anim_selected.tga new file mode 100644 index 000000000..cb8a2b674 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/button_play_anim_selected.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/white_emerald/Textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..e635cfea9 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/white_emerald/Textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..690776e32 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/cam_rotate_in.tga b/indra/newview/skins/white_emerald/Textures/cam_rotate_in.tga new file mode 100644 index 000000000..528be8f53 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/cam_rotate_out.tga b/indra/newview/skins/white_emerald/Textures/cam_rotate_out.tga new file mode 100644 index 000000000..72bef53d2 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/cam_tracking_in.tga b/indra/newview/skins/white_emerald/Textures/cam_tracking_in.tga new file mode 100644 index 000000000..01664a305 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/cam_tracking_out.tga b/indra/newview/skins/white_emerald/Textures/cam_tracking_out.tga new file mode 100644 index 000000000..b5503ee81 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/cam_zoom_minus_in.tga b/indra/newview/skins/white_emerald/Textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..09594ed3f Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/cam_zoom_out.tga b/indra/newview/skins/white_emerald/Textures/cam_zoom_out.tga new file mode 100644 index 000000000..590a3bedb Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/cam_zoom_plus_in.tga b/indra/newview/skins/white_emerald/Textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..de2da56d0 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/white_emerald/Textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..b63dfabc4 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/checkbox_disabled_false.tga b/indra/newview/skins/white_emerald/Textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..0e738f203 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/checkbox_disabled_true.tga b/indra/newview/skins/white_emerald/Textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..1a1c5fb0a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/checkbox_disassbled_false.tga b/indra/newview/skins/white_emerald/Textures/checkbox_disassbled_false.tga new file mode 100644 index 000000000..6d006ee6a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/checkbox_disassbled_false.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/checkbox_enabled_false.tga b/indra/newview/skins/white_emerald/Textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..ced520985 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/checkbox_enabled_true.tga b/indra/newview/skins/white_emerald/Textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..79b13f60c Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/close_in_blue.tga b/indra/newview/skins/white_emerald/Textures/close_in_blue.tga new file mode 100644 index 000000000..32b89f9c1 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/close_in_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/close_inactive_blue.tga b/indra/newview/skins/white_emerald/Textures/close_inactive_blue.tga new file mode 100644 index 000000000..190f2e8a7 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/close_inactive_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/closebox.tga b/indra/newview/skins/white_emerald/Textures/closebox.tga new file mode 100644 index 000000000..3fccdc7d3 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/closebox.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/combobox_arrow.tga b/indra/newview/skins/white_emerald/Textures/combobox_arrow.tga new file mode 100644 index 000000000..3d56517a3 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/combobox_arrow.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/cross.psd b/indra/newview/skins/white_emerald/Textures/cross.psd new file mode 100644 index 000000000..437e9444b Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/cross.psd differ diff --git a/indra/newview/skins/white_emerald/Textures/darkgray.tga b/indra/newview/skins/white_emerald/Textures/darkgray.tga new file mode 100644 index 000000000..e69be0893 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/darkgray.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/down_arrow.png b/indra/newview/skins/white_emerald/Textures/down_arrow.png new file mode 100644 index 000000000..b7b68974b Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/down_arrow.png differ diff --git a/indra/newview/skins/white_emerald/Textures/eye_button_active.tga b/indra/newview/skins/white_emerald/Textures/eye_button_active.tga new file mode 100644 index 000000000..ea1dd5d24 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/eye_button_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/eye_button_inactive.tga b/indra/newview/skins/white_emerald/Textures/eye_button_inactive.tga new file mode 100644 index 000000000..f1aa36ec9 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/eye_button_inactive.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/white_emerald/Textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..ecb91e28d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/ff_edit_mine_button.tga b/indra/newview/skins/white_emerald/Textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..ba217f03f Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/ff_edit_theirs_button.tga b/indra/newview/skins/white_emerald/Textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..313b79bbc Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/ff_online_status_button.tga b/indra/newview/skins/white_emerald/Textures/ff_online_status_button.tga new file mode 100644 index 000000000..bd535db69 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/ff_visible_map_button.tga b/indra/newview/skins/white_emerald/Textures/ff_visible_map_button.tga new file mode 100644 index 000000000..e3cb00440 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/ff_visible_online_button.tga b/indra/newview/skins/white_emerald/Textures/ff_visible_online_button.tga new file mode 100644 index 000000000..83c4e6faa Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/flyout_btn_left.tga b/indra/newview/skins/white_emerald/Textures/flyout_btn_left.tga new file mode 100644 index 000000000..dd8c0039f Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/flyout_btn_left_disabled.tga b/indra/newview/skins/white_emerald/Textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..28387b825 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/flyout_btn_left_selected.tga b/indra/newview/skins/white_emerald/Textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..fc844f8fa Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/flyout_btn_right.tga b/indra/newview/skins/white_emerald/Textures/flyout_btn_right.tga new file mode 100644 index 000000000..b3b9fa833 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/flyout_btn_right_disabled.tga b/indra/newview/skins/white_emerald/Textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..7a10b3b02 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/flyout_btn_right_selected.tga b/indra/newview/skins/white_emerald/Textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..a2234b5c8 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/flyout_btnleft_disabled.tga b/indra/newview/skins/white_emerald/Textures/flyout_btnleft_disabled.tga new file mode 100644 index 000000000..28387b825 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/flyout_btnleft_disabled.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_chatbar.tga b/indra/newview/skins/white_emerald/Textures/icn_chatbar.tga new file mode 100644 index 000000000..79e1e0cac Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_chatbar.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_label_media.tga b/indra/newview/skins/white_emerald/Textures/icn_label_media.tga new file mode 100644 index 000000000..581e895c3 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_label_media.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_label_music.tga b/indra/newview/skins/white_emerald/Textures/icn_label_music.tga new file mode 100644 index 000000000..2371128a1 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_label_music.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_label_web.tga b/indra/newview/skins/white_emerald/Textures/icn_label_web.tga new file mode 100644 index 000000000..5b97e0786 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_label_web.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_media-pause.tga b/indra/newview/skins/white_emerald/Textures/icn_media-pause.tga new file mode 100644 index 000000000..ac22fd0f1 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_media-play.tga b/indra/newview/skins/white_emerald/Textures/icn_media-play.tga new file mode 100644 index 000000000..16bac8eb8 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_media-play.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_media_movie.tga b/indra/newview/skins/white_emerald/Textures/icn_media_movie.tga new file mode 100644 index 000000000..581e895c3 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_media_web.tga b/indra/newview/skins/white_emerald/Textures/icn_media_web.tga new file mode 100644 index 000000000..80671c457 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_media_web.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_music-pause.tga b/indra/newview/skins/white_emerald/Textures/icn_music-pause.tga new file mode 100644 index 000000000..8adfb181d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_music-play.tga b/indra/newview/skins/white_emerald/Textures/icn_music-play.tga new file mode 100644 index 000000000..43aacfc16 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_music-play.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_pause.tga b/indra/newview/skins/white_emerald/Textures/icn_pause.tga new file mode 100644 index 000000000..526582fbb Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_pause.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_play.tga b/indra/newview/skins/white_emerald/Textures/icn_play.tga new file mode 100644 index 000000000..f91fe6fe9 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_play.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_rounded-text-field.tga b/indra/newview/skins/white_emerald/Textures/icn_rounded-text-field.tga new file mode 100644 index 000000000..2aad14f07 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_rounded-text-field.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_slide-groove_dark.tga b/indra/newview/skins/white_emerald/Textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..5483896ba Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_slide-highlight.tga b/indra/newview/skins/white_emerald/Textures/icn_slide-highlight.tga new file mode 100644 index 000000000..f8520db7a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_slide-thumb_dark.tga b/indra/newview/skins/white_emerald/Textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..d54d784a8 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_speaker-muted_dark.tga b/indra/newview/skins/white_emerald/Textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..968eb8697 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_speaker_dark.tga b/indra/newview/skins/white_emerald/Textures/icn_speaker_dark.tga new file mode 100644 index 000000000..68e49ffed Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_stop.tga b/indra/newview/skins/white_emerald/Textures/icn_stop.tga new file mode 100644 index 000000000..ba8f19598 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_stop.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_toolbar_build.tga b/indra/newview/skins/white_emerald/Textures/icn_toolbar_build.tga new file mode 100644 index 000000000..b86d1d59f Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_toolbar_build.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_toolbar_fly.tga b/indra/newview/skins/white_emerald/Textures/icn_toolbar_fly.tga new file mode 100644 index 000000000..c31abc27e Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_toolbar_fly.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_toolbar_inventory.tga b/indra/newview/skins/white_emerald/Textures/icn_toolbar_inventory.tga new file mode 100644 index 000000000..468d25dc8 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_toolbar_inventory.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_toolbar_map.tga b/indra/newview/skins/white_emerald/Textures/icn_toolbar_map.tga new file mode 100644 index 000000000..4cab68d52 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_toolbar_map.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_toolbar_minimap.tga b/indra/newview/skins/white_emerald/Textures/icn_toolbar_minimap.tga new file mode 100644 index 000000000..6e2262330 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_toolbar_minimap.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_toolbar_radar.tga b/indra/newview/skins/white_emerald/Textures/icn_toolbar_radar.tga new file mode 100644 index 000000000..d1a55ed74 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_toolbar_radar.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_toolbar_search.tga b/indra/newview/skins/white_emerald/Textures/icn_toolbar_search.tga new file mode 100644 index 000000000..a809ba56e Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_toolbar_search.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_toolbar_snapshot.tga b/indra/newview/skins/white_emerald/Textures/icn_toolbar_snapshot.tga new file mode 100644 index 000000000..15177fff6 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_toolbar_snapshot.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_voice-call-end.tga b/indra/newview/skins/white_emerald/Textures/icn_voice-call-end.tga new file mode 100644 index 000000000..7792bc1f5 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_voice-call-end.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_voice-call-start.tga b/indra/newview/skins/white_emerald/Textures/icn_voice-call-start.tga new file mode 100644 index 000000000..062820b08 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_voice-call-start.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_voice-groupfocus.tga b/indra/newview/skins/white_emerald/Textures/icn_voice-groupfocus.tga new file mode 100644 index 000000000..6d49ede9f Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_voice-groupfocus.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_voice-localchat.tga b/indra/newview/skins/white_emerald/Textures/icn_voice-localchat.tga new file mode 100644 index 000000000..8a377c1f2 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_voice-localchat.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_voice-pvtfocus.tga b/indra/newview/skins/white_emerald/Textures/icn_voice-pvtfocus.tga new file mode 100644 index 000000000..d85824564 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_voice-pvtfocus.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-off.tga b/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-off.tga new file mode 100644 index 000000000..f44beacb2 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-off.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-on-lvl1.tga b/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-on-lvl1.tga new file mode 100644 index 000000000..2b0a2aed2 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-on-lvl1.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-on-lvl2.tga b/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-on-lvl2.tga new file mode 100644 index 000000000..7cd933e93 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-on-lvl2.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-on-lvl3.tga b/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-on-lvl3.tga new file mode 100644 index 000000000..dc02f373b Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-on-lvl3.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-on.tga b/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-on.tga new file mode 100644 index 000000000..e128ee893 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icn_voice_ptt-on.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icon_auction.tga b/indra/newview/skins/white_emerald/Textures/icon_auction.tga new file mode 100644 index 000000000..76d122733 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icon_auction.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icon_avatar_offline.tga b/indra/newview/skins/white_emerald/Textures/icon_avatar_offline.tga new file mode 100644 index 000000000..d5d57cdd9 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icon_avatar_offline.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icon_avatar_online.tga b/indra/newview/skins/white_emerald/Textures/icon_avatar_online.tga new file mode 100644 index 000000000..13f8da8a0 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icon_avatar_online.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icon_day_cycle.tga b/indra/newview/skins/white_emerald/Textures/icon_day_cycle.tga new file mode 100644 index 000000000..98927fc5a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icon_day_cycle.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icon_event.tga b/indra/newview/skins/white_emerald/Textures/icon_event.tga new file mode 100644 index 000000000..2c06d08fd Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icon_event.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icon_event_mature.tga b/indra/newview/skins/white_emerald/Textures/icon_event_mature.tga new file mode 100644 index 000000000..71067c0df Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icon_event_mature.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icon_for_sale.tga b/indra/newview/skins/white_emerald/Textures/icon_for_sale.tga new file mode 100644 index 000000000..cb7f3131b Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icon_for_sale.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icon_group.tga b/indra/newview/skins/white_emerald/Textures/icon_group.tga new file mode 100644 index 000000000..faecb8111 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icon_group.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icon_groupnotice.tga b/indra/newview/skins/white_emerald/Textures/icon_groupnotice.tga new file mode 100644 index 000000000..115e4e267 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icon_groupnotice.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icon_groupnoticeinventory.tga b/indra/newview/skins/white_emerald/Textures/icon_groupnoticeinventory.tga new file mode 100644 index 000000000..f71302082 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icon_groupnoticeinventory.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icon_lock.tga b/indra/newview/skins/white_emerald/Textures/icon_lock.tga new file mode 100644 index 000000000..98d8a2d84 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icon_lock.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/icon_top_pick.tga b/indra/newview/skins/white_emerald/Textures/icon_top_pick.tga new file mode 100644 index 000000000..0b34882d2 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/icon_top_pick.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_animation.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_animation.tga new file mode 100644 index 000000000..74668251d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_animation.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_bodypart.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_bodypart.tga new file mode 100644 index 000000000..32626055c Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_bodypart.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_callingcard.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_callingcard.tga new file mode 100644 index 000000000..d7e0ab7d9 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_callingcard.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_clothing.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_clothing.tga new file mode 100644 index 000000000..bce4a6536 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_clothing.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_gesture.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_gesture.tga new file mode 100644 index 000000000..939225650 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_gesture.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_landmark.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_landmark.tga new file mode 100644 index 000000000..0f57ccf6a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_landmark.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_lostandfound.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_lostandfound.tga new file mode 100644 index 000000000..1285c2571 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_lostandfound.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_notecard.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_notecard.tga new file mode 100644 index 000000000..daebd142a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_notecard.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_object.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_object.tga new file mode 100644 index 000000000..f3e9ea016 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_object.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_plain_closed.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_plain_closed.tga new file mode 100644 index 000000000..84d116ad3 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_plain_closed.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_plain_open.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_plain_open.tga new file mode 100644 index 000000000..d53644867 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_plain_open.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_script.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_script.tga new file mode 100644 index 000000000..b8a04e4ba Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_script.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_snapshot.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_snapshot.tga new file mode 100644 index 000000000..468ec2c42 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_snapshot.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_sound.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_sound.tga new file mode 100644 index 000000000..c58300b46 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_sound.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_texture.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_texture.tga new file mode 100644 index 000000000..6a321cfe7 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_texture.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_folder_trash.tga b/indra/newview/skins/white_emerald/Textures/inv_folder_trash.tga new file mode 100644 index 000000000..7aa6b93d8 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_folder_trash.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_animation.tga b/indra/newview/skins/white_emerald/Textures/inv_item_animation.tga new file mode 100644 index 000000000..637033a2a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_animation.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_attach.tga b/indra/newview/skins/white_emerald/Textures/inv_item_attach.tga new file mode 100644 index 000000000..55469f6fd Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_attach.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_callingcard_offline.tga b/indra/newview/skins/white_emerald/Textures/inv_item_callingcard_offline.tga new file mode 100644 index 000000000..ad8658cf7 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_callingcard_offline.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_callingcard_online.tga b/indra/newview/skins/white_emerald/Textures/inv_item_callingcard_online.tga new file mode 100644 index 000000000..96606011c Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_callingcard_online.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_clothing.tga b/indra/newview/skins/white_emerald/Textures/inv_item_clothing.tga new file mode 100644 index 000000000..b7864266a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_clothing.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_eyes.tga b/indra/newview/skins/white_emerald/Textures/inv_item_eyes.tga new file mode 100644 index 000000000..18e83683a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_eyes.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_gesture.tga b/indra/newview/skins/white_emerald/Textures/inv_item_gesture.tga new file mode 100644 index 000000000..a6fe629b2 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_gesture.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_gloves.tga b/indra/newview/skins/white_emerald/Textures/inv_item_gloves.tga new file mode 100644 index 000000000..bcc6aee5a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_gloves.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_hair.tga b/indra/newview/skins/white_emerald/Textures/inv_item_hair.tga new file mode 100644 index 000000000..686214ed4 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_hair.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_jacket.tga b/indra/newview/skins/white_emerald/Textures/inv_item_jacket.tga new file mode 100644 index 000000000..69c5f0702 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_jacket.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_landmark.tga b/indra/newview/skins/white_emerald/Textures/inv_item_landmark.tga new file mode 100644 index 000000000..833d4e695 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_landmark.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_landmark_visited.tga b/indra/newview/skins/white_emerald/Textures/inv_item_landmark_visited.tga new file mode 100644 index 000000000..283f0eced Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_landmark_visited.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_notecard.tga b/indra/newview/skins/white_emerald/Textures/inv_item_notecard.tga new file mode 100644 index 000000000..0ad68d0a1 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_notecard.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_object.tga b/indra/newview/skins/white_emerald/Textures/inv_item_object.tga new file mode 100644 index 000000000..c749105c5 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_object.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_object_multi.tga b/indra/newview/skins/white_emerald/Textures/inv_item_object_multi.tga new file mode 100644 index 000000000..4b3a590cf Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_object_multi.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_pants.tga b/indra/newview/skins/white_emerald/Textures/inv_item_pants.tga new file mode 100644 index 000000000..38dbc57c4 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_pants.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_script.tga b/indra/newview/skins/white_emerald/Textures/inv_item_script.tga new file mode 100644 index 000000000..1203e8aa1 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_script.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_shape.tga b/indra/newview/skins/white_emerald/Textures/inv_item_shape.tga new file mode 100644 index 000000000..2e8a5a721 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_shape.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_shirt.tga b/indra/newview/skins/white_emerald/Textures/inv_item_shirt.tga new file mode 100644 index 000000000..8c6f5ebf2 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_shirt.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_shoes.tga b/indra/newview/skins/white_emerald/Textures/inv_item_shoes.tga new file mode 100644 index 000000000..ac7a2b00d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_shoes.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_skin.tga b/indra/newview/skins/white_emerald/Textures/inv_item_skin.tga new file mode 100644 index 000000000..ab4169f4f Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_skin.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_skirt.tga b/indra/newview/skins/white_emerald/Textures/inv_item_skirt.tga new file mode 100644 index 000000000..44760408b Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_skirt.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_snapshot.tga b/indra/newview/skins/white_emerald/Textures/inv_item_snapshot.tga new file mode 100644 index 000000000..3adf4e5f9 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_snapshot.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_socks.tga b/indra/newview/skins/white_emerald/Textures/inv_item_socks.tga new file mode 100644 index 000000000..2d7bb7e24 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_socks.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_sound.tga b/indra/newview/skins/white_emerald/Textures/inv_item_sound.tga new file mode 100644 index 000000000..7ef90523b Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_sound.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_texture.tga b/indra/newview/skins/white_emerald/Textures/inv_item_texture.tga new file mode 100644 index 000000000..6b4269d96 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_texture.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_underpants.tga b/indra/newview/skins/white_emerald/Textures/inv_item_underpants.tga new file mode 100644 index 000000000..f679e346d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_underpants.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/inv_item_undershirt.tga b/indra/newview/skins/white_emerald/Textures/inv_item_undershirt.tga new file mode 100644 index 000000000..359e3d71e Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/inv_item_undershirt.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/lightgray.tga b/indra/newview/skins/white_emerald/Textures/lightgray.tga new file mode 100644 index 000000000..e69be0893 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/lightgray.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/map_avatar_16.tga b/indra/newview/skins/white_emerald/Textures/map_avatar_16.tga new file mode 100644 index 000000000..f59e9e919 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/map_avatar_16.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/map_avatar_you_8.tga b/indra/newview/skins/white_emerald/Textures/map_avatar_you_8.tga new file mode 100644 index 000000000..8500eadeb Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/map_avatar_you_8.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/map_event.tga b/indra/newview/skins/white_emerald/Textures/map_event.tga new file mode 100644 index 000000000..2c06d08fd Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/map_event.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/map_event_mature.tga b/indra/newview/skins/white_emerald/Textures/map_event_mature.tga new file mode 100644 index 000000000..71067c0df Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/map_event_mature.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/map_home.tga b/indra/newview/skins/white_emerald/Textures/map_home.tga new file mode 100644 index 000000000..acaaa3db4 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/map_home.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/map_infohub.tga b/indra/newview/skins/white_emerald/Textures/map_infohub.tga new file mode 100644 index 000000000..545b8e532 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/map_infohub.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/map_telehub.tga b/indra/newview/skins/white_emerald/Textures/map_telehub.tga new file mode 100644 index 000000000..57aa72393 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/map_telehub.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/minimize.tga b/indra/newview/skins/white_emerald/Textures/minimize.tga new file mode 100644 index 000000000..bc62796fb Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/minimize.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/minimize_inactive.tga b/indra/newview/skins/white_emerald/Textures/minimize_inactive.tga new file mode 100644 index 000000000..da49d34eb Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/minimize_inactive.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/minimize_pressed.tga b/indra/newview/skins/white_emerald/Textures/minimize_pressed.tga new file mode 100644 index 000000000..4aa83021e Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/minimize_pressed.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_backward_in.tga b/indra/newview/skins/white_emerald/Textures/move_backward_in.tga new file mode 100644 index 000000000..c7333d550 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_backward_in.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_backward_out.tga b/indra/newview/skins/white_emerald/Textures/move_backward_out.tga new file mode 100644 index 000000000..7ae7d2394 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_backward_out.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_down_in.tga b/indra/newview/skins/white_emerald/Textures/move_down_in.tga new file mode 100644 index 000000000..debec7a8d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_down_in.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_down_out.tga b/indra/newview/skins/white_emerald/Textures/move_down_out.tga new file mode 100644 index 000000000..07fed5fbb Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_down_out.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_forward_in.tga b/indra/newview/skins/white_emerald/Textures/move_forward_in.tga new file mode 100644 index 000000000..01443165b Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_forward_in.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_forward_out.tga b/indra/newview/skins/white_emerald/Textures/move_forward_out.tga new file mode 100644 index 000000000..79ec301f3 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_forward_out.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_left_in.tga b/indra/newview/skins/white_emerald/Textures/move_left_in.tga new file mode 100644 index 000000000..6b2d4332d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_left_in.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_left_out.tga b/indra/newview/skins/white_emerald/Textures/move_left_out.tga new file mode 100644 index 000000000..45c05d84b Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_left_out.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_right_in.tga b/indra/newview/skins/white_emerald/Textures/move_right_in.tga new file mode 100644 index 000000000..62d3c6bf7 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_right_in.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_right_out.tga b/indra/newview/skins/white_emerald/Textures/move_right_out.tga new file mode 100644 index 000000000..2d2f61879 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_right_out.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_turn_left_in.tga b/indra/newview/skins/white_emerald/Textures/move_turn_left_in.tga new file mode 100644 index 000000000..c9877c62d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_turn_left_out.tga b/indra/newview/skins/white_emerald/Textures/move_turn_left_out.tga new file mode 100644 index 000000000..573b5e6cb Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_turn_right_in.tga b/indra/newview/skins/white_emerald/Textures/move_turn_right_in.tga new file mode 100644 index 000000000..64b7bc982 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_turn_right_out.tga b/indra/newview/skins/white_emerald/Textures/move_turn_right_out.tga new file mode 100644 index 000000000..ebbc6550c Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_up_in.tga b/indra/newview/skins/white_emerald/Textures/move_up_in.tga new file mode 100644 index 000000000..35f66ce73 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_up_in.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/move_up_out.tga b/indra/newview/skins/white_emerald/Textures/move_up_out.tga new file mode 100644 index 000000000..6da39e8d9 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/move_up_out.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/notify_box_icon.tga b/indra/newview/skins/white_emerald/Textures/notify_box_icon.tga new file mode 100644 index 000000000..57d856c9d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/notify_box_icon.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/notify_caution_icon.tga b/indra/newview/skins/white_emerald/Textures/notify_caution_icon.tga new file mode 100644 index 000000000..d3a3c9193 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/notify_caution_icon.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/notify_next.png b/indra/newview/skins/white_emerald/Textures/notify_next.png new file mode 100644 index 000000000..c0c3f35f2 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/notify_next.png differ diff --git a/indra/newview/skins/white_emerald/Textures/notify_tip_icon.tga b/indra/newview/skins/white_emerald/Textures/notify_tip_icon.tga new file mode 100644 index 000000000..7c4fc35dd Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/notify_tip_icon.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_cone.tga b/indra/newview/skins/white_emerald/Textures/object_cone.tga new file mode 100644 index 000000000..6ffea4fa6 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_cone.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_cone_active.tga b/indra/newview/skins/white_emerald/Textures/object_cone_active.tga new file mode 100644 index 000000000..5935548ad Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_cone_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_cube.tga b/indra/newview/skins/white_emerald/Textures/object_cube.tga new file mode 100644 index 000000000..f4563ea37 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_cube.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_cube_active.tga b/indra/newview/skins/white_emerald/Textures/object_cube_active.tga new file mode 100644 index 000000000..7d2530a0e Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_cube_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_cylinder.tga b/indra/newview/skins/white_emerald/Textures/object_cylinder.tga new file mode 100644 index 000000000..e50e44d20 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_cylinder.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_cylinder_active.tga b/indra/newview/skins/white_emerald/Textures/object_cylinder_active.tga new file mode 100644 index 000000000..64c90526c Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_cylinder_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_grass.tga b/indra/newview/skins/white_emerald/Textures/object_grass.tga new file mode 100644 index 000000000..9326619d5 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_grass.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_grass_active.tga b/indra/newview/skins/white_emerald/Textures/object_grass_active.tga new file mode 100644 index 000000000..98f84e54d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_grass_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_hemi_cone.tga b/indra/newview/skins/white_emerald/Textures/object_hemi_cone.tga new file mode 100644 index 000000000..d1c87ab51 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_hemi_cone.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_hemi_cone_active.tga b/indra/newview/skins/white_emerald/Textures/object_hemi_cone_active.tga new file mode 100644 index 000000000..42b94b0c6 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_hemi_cone_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_hemi_cylinder.tga b/indra/newview/skins/white_emerald/Textures/object_hemi_cylinder.tga new file mode 100644 index 000000000..1b885c7c0 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_hemi_cylinder.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_hemi_cylinder_active.tga b/indra/newview/skins/white_emerald/Textures/object_hemi_cylinder_active.tga new file mode 100644 index 000000000..113804611 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_hemi_cylinder_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_hemi_sphere.tga b/indra/newview/skins/white_emerald/Textures/object_hemi_sphere.tga new file mode 100644 index 000000000..72d3e3e81 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_hemi_sphere.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_hemi_sphere_active.tga b/indra/newview/skins/white_emerald/Textures/object_hemi_sphere_active.tga new file mode 100644 index 000000000..33db17a7a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_hemi_sphere_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_prism.tga b/indra/newview/skins/white_emerald/Textures/object_prism.tga new file mode 100644 index 000000000..cf81d92f6 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_prism.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_prism_active.tga b/indra/newview/skins/white_emerald/Textures/object_prism_active.tga new file mode 100644 index 000000000..9c812efdd Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_prism_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_pyramid.tga b/indra/newview/skins/white_emerald/Textures/object_pyramid.tga new file mode 100644 index 000000000..42a48b5f3 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_pyramid.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_pyramid_active.tga b/indra/newview/skins/white_emerald/Textures/object_pyramid_active.tga new file mode 100644 index 000000000..a1ada160d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_pyramid_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_ring.tga b/indra/newview/skins/white_emerald/Textures/object_ring.tga new file mode 100644 index 000000000..f8d46671b Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_ring.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_ring_active.tga b/indra/newview/skins/white_emerald/Textures/object_ring_active.tga new file mode 100644 index 000000000..9b9609afc Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_ring_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_sphere.tga b/indra/newview/skins/white_emerald/Textures/object_sphere.tga new file mode 100644 index 000000000..40dbe90e9 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_sphere.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_sphere_active.tga b/indra/newview/skins/white_emerald/Textures/object_sphere_active.tga new file mode 100644 index 000000000..2136712f3 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_sphere_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_tetrahedron.tga b/indra/newview/skins/white_emerald/Textures/object_tetrahedron.tga new file mode 100644 index 000000000..4e66237c8 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_tetrahedron.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_tetrahedron_active.tga b/indra/newview/skins/white_emerald/Textures/object_tetrahedron_active.tga new file mode 100644 index 000000000..47a361317 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_tetrahedron_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_torus.tga b/indra/newview/skins/white_emerald/Textures/object_torus.tga new file mode 100644 index 000000000..75783eefe Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_torus.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_torus_active.tga b/indra/newview/skins/white_emerald/Textures/object_torus_active.tga new file mode 100644 index 000000000..3d7dc1073 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_torus_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_tree.tga b/indra/newview/skins/white_emerald/Textures/object_tree.tga new file mode 100644 index 000000000..4c46ca65d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_tree.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_tree_active.tga b/indra/newview/skins/white_emerald/Textures/object_tree_active.tga new file mode 100644 index 000000000..36509fda5 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_tree_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_tube.tga b/indra/newview/skins/white_emerald/Textures/object_tube.tga new file mode 100644 index 000000000..e2ccdecb0 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_tube.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/object_tube_active.tga b/indra/newview/skins/white_emerald/Textures/object_tube_active.tga new file mode 100644 index 000000000..3b7118fe9 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/object_tube_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/preview.png b/indra/newview/skins/white_emerald/Textures/preview.png new file mode 100644 index 000000000..e93ea4c6a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/preview.png differ diff --git a/indra/newview/skins/white_emerald/Textures/progressbar_fill.tga b/indra/newview/skins/white_emerald/Textures/progressbar_fill.tga new file mode 100644 index 000000000..b335a64cb Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/progressbar_track.tga b/indra/newview/skins/white_emerald/Textures/progressbar_track.tga new file mode 100644 index 000000000..49276ad16 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/progressbar_track.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/ptt_lock_off.tga b/indra/newview/skins/white_emerald/Textures/ptt_lock_off.tga new file mode 100644 index 000000000..bafac4bd8 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/ptt_lock_off.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/ptt_lock_on.tga b/indra/newview/skins/white_emerald/Textures/ptt_lock_on.tga new file mode 100644 index 000000000..488ab7e6a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/ptt_lock_on.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/radio_active_false.tga b/indra/newview/skins/white_emerald/Textures/radio_active_false.tga new file mode 100644 index 000000000..32589ebbf Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/radio_active_false.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/radio_active_true.tga b/indra/newview/skins/white_emerald/Textures/radio_active_true.tga new file mode 100644 index 000000000..61e0ee6e6 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/radio_active_true.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/radio_inactive_false.tga b/indra/newview/skins/white_emerald/Textures/radio_inactive_false.tga new file mode 100644 index 000000000..0e738f203 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/radio_inactive_false.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/radio_inactive_true.tga b/indra/newview/skins/white_emerald/Textures/radio_inactive_true.tga new file mode 100644 index 000000000..7927041d7 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/radio_inactive_true.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/white_emerald/Textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..8be069306 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/restore.tga b/indra/newview/skins/white_emerald/Textures/restore.tga new file mode 100644 index 000000000..f468f6123 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/restore.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/restore_inactive.tga b/indra/newview/skins/white_emerald/Textures/restore_inactive.tga new file mode 100644 index 000000000..190f2e8a7 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/restore_inactive.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/restore_pressed.tga b/indra/newview/skins/white_emerald/Textures/restore_pressed.tga new file mode 100644 index 000000000..136526901 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/restore_pressed.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/rounded_square.tga b/indra/newview/skins/white_emerald/Textures/rounded_square.tga new file mode 100644 index 000000000..ca3fe535c Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/rounded_square.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/rounded_square_soft.tga b/indra/newview/skins/white_emerald/Textures/rounded_square_soft.tga new file mode 100644 index 000000000..5b8bfdf05 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/rounded_square_soft.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/white_emerald/Textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..6e04c0f24 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/scrollbutton_down_out_blue.tga b/indra/newview/skins/white_emerald/Textures/scrollbutton_down_out_blue.tga new file mode 100644 index 000000000..290736c80 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/scrollbutton_down_out_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/white_emerald/Textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..be6e405c8 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/scrollbutton_left_out_blue.tga b/indra/newview/skins/white_emerald/Textures/scrollbutton_left_out_blue.tga new file mode 100644 index 000000000..3790d4b3d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/scrollbutton_left_out_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/white_emerald/Textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..b6d9af5bb Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/scrollbutton_right_out_blue.tga b/indra/newview/skins/white_emerald/Textures/scrollbutton_right_out_blue.tga new file mode 100644 index 000000000..1ad42caa5 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/scrollbutton_right_out_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/white_emerald/Textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..7d2bd75b7 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/scrollbutton_up_out_blue.tga b/indra/newview/skins/white_emerald/Textures/scrollbutton_up_out_blue.tga new file mode 100644 index 000000000..beb432c44 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/scrollbutton_up_out_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/sm_rounded_corners_simple.tga b/indra/newview/skins/white_emerald/Textures/sm_rounded_corners_simple.tga new file mode 100644 index 000000000..937b97929 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/sm_rounded_corners_simple.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/spin_down_in_blue.tga b/indra/newview/skins/white_emerald/Textures/spin_down_in_blue.tga new file mode 100644 index 000000000..6b14dcaa7 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/spin_down_in_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/spin_down_out_blue.tga b/indra/newview/skins/white_emerald/Textures/spin_down_out_blue.tga new file mode 100644 index 000000000..9cefd2552 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/spin_down_out_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/spin_up_in_blue.tga b/indra/newview/skins/white_emerald/Textures/spin_up_in_blue.tga new file mode 100644 index 000000000..7637247f0 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/spin_up_in_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/spin_up_out_blue.tga b/indra/newview/skins/white_emerald/Textures/spin_up_out_blue.tga new file mode 100644 index 000000000..95951e73a Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/spin_up_out_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/square_btn_32x128.tga b/indra/newview/skins/white_emerald/Textures/square_btn_32x128.tga new file mode 100644 index 000000000..3f32dba7b Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/square_btn_selected_32x128.tga b/indra/newview/skins/white_emerald/Textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..3bcff5605 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/startup_logo.j2c b/indra/newview/skins/white_emerald/Textures/startup_logo.j2c new file mode 100644 index 000000000..523f6b7c7 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/startup_logo.j2c differ diff --git a/indra/newview/skins/white_emerald/Textures/status_buy_currency.tga b/indra/newview/skins/white_emerald/Textures/status_buy_currency.tga new file mode 100644 index 000000000..0b193a246 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/status_buy_currency_pressed.tga b/indra/newview/skins/white_emerald/Textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..a5f0e258c Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/status_buy_land.tga b/indra/newview/skins/white_emerald/Textures/status_buy_land.tga new file mode 100644 index 000000000..b9b53e70c Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/status_buy_land.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/status_buy_land_pressed.tga b/indra/newview/skins/white_emerald/Textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..cbde01b77 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/status_health.tga b/indra/newview/skins/white_emerald/Textures/status_health.tga new file mode 100644 index 000000000..c29a96519 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/status_health.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/status_no_build.tga b/indra/newview/skins/white_emerald/Textures/status_no_build.tga new file mode 100644 index 000000000..4204c68b5 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/status_no_build.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/status_no_fly.tga b/indra/newview/skins/white_emerald/Textures/status_no_fly.tga new file mode 100644 index 000000000..32e3d252f Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/status_no_fly.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/status_no_push.tga b/indra/newview/skins/white_emerald/Textures/status_no_push.tga new file mode 100644 index 000000000..d3693cf2d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/status_no_push.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/status_no_scripts.tga b/indra/newview/skins/white_emerald/Textures/status_no_scripts.tga new file mode 100644 index 000000000..2e562074f Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/status_no_scripts.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/status_no_voice.tga b/indra/newview/skins/white_emerald/Textures/status_no_voice.tga new file mode 100644 index 000000000..c9cab73a7 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/status_no_voice.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/status_search.tga b/indra/newview/skins/white_emerald/Textures/status_search.tga new file mode 100644 index 000000000..12de04601 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/status_search.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/tab_bottom_blue.tga b/indra/newview/skins/white_emerald/Textures/tab_bottom_blue.tga new file mode 100644 index 000000000..452280719 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/tab_bottom_selected_blue.tga b/indra/newview/skins/white_emerald/Textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..cf5b18c71 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/tab_left.tga b/indra/newview/skins/white_emerald/Textures/tab_left.tga new file mode 100644 index 000000000..2237b1e80 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/tab_left.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/tab_left_selected.tga b/indra/newview/skins/white_emerald/Textures/tab_left_selected.tga new file mode 100644 index 000000000..52ad31ffd Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/tab_top_blue.tga b/indra/newview/skins/white_emerald/Textures/tab_top_blue.tga new file mode 100644 index 000000000..02b22af90 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/tab_top_selected_blue.tga b/indra/newview/skins/white_emerald/Textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..7aa1dd051 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/tearoff_pressed.tga b/indra/newview/skins/white_emerald/Textures/tearoff_pressed.tga new file mode 100644 index 000000000..bf04b0bc6 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/tearoff_pressed.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/tearoffbox.tga b/indra/newview/skins/white_emerald/Textures/tearoffbox.tga new file mode 100644 index 000000000..3667971eb Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/tearoffbox.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/textures.xml b/indra/newview/skins/white_emerald/Textures/textures.xml new file mode 100644 index 000000000..ca27d9e44 --- /dev/null +++ b/indra/newview/skins/white_emerald/Textures/textures.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/white_emerald/Textures/tool_dozer.tga b/indra/newview/skins/white_emerald/Textures/tool_dozer.tga new file mode 100644 index 000000000..eb51d59ad Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/tool_dozer.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/tool_dozer_active.tga b/indra/newview/skins/white_emerald/Textures/tool_dozer_active.tga new file mode 100644 index 000000000..560d8452d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/tool_zoom.tga b/indra/newview/skins/white_emerald/Textures/tool_zoom.tga new file mode 100644 index 000000000..ef111d637 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/tool_zoom.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/tool_zoom_active.tga b/indra/newview/skins/white_emerald/Textures/tool_zoom_active.tga new file mode 100644 index 000000000..9e044fa83 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/toolbar_bg.tga b/indra/newview/skins/white_emerald/Textures/toolbar_bg.tga new file mode 100644 index 000000000..115df9f78 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/toolbar_bg.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/toolbar_btn_disabled.tga b/indra/newview/skins/white_emerald/Textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..29cbe3980 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/toolbar_btn_enabled.psd b/indra/newview/skins/white_emerald/Textures/toolbar_btn_enabled.psd new file mode 100644 index 000000000..82ca7299d Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/toolbar_btn_enabled.psd differ diff --git a/indra/newview/skins/white_emerald/Textures/toolbar_btn_enabled.tga b/indra/newview/skins/white_emerald/Textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..3ac63d596 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/toolbar_btn_selected.tga b/indra/newview/skins/white_emerald/Textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..dfcfc20f7 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/toolbar_tab.tga b/indra/newview/skins/white_emerald/Textures/toolbar_tab.tga new file mode 100644 index 000000000..4641d22bb Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/toolbar_tab.tga differ diff --git a/indra/newview/skins/white_emerald/Textures/up_arrow.png b/indra/newview/skins/white_emerald/Textures/up_arrow.png new file mode 100644 index 000000000..80b87a5d1 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/up_arrow.png differ diff --git a/indra/newview/skins/white_emerald/Textures/white.tga b/indra/newview/skins/white_emerald/Textures/white.tga new file mode 100644 index 000000000..55e379309 Binary files /dev/null and b/indra/newview/skins/white_emerald/Textures/white.tga differ diff --git a/indra/newview/skins/white_emerald/colors.xml b/indra/newview/skins/white_emerald/colors.xml new file mode 100644 index 000000000..cf9466fad --- /dev/null +++ b/indra/newview/skins/white_emerald/colors.xml @@ -0,0 +1,3 @@ + + + diff --git a/indra/newview/skins/white_emerald/colors_base.xml b/indra/newview/skins/white_emerald/colors_base.xml new file mode 100644 index 000000000..514782ebb --- /dev/null +++ b/indra/newview/skins/white_emerald/colors_base.xml @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/wisdom.xml b/indra/newview/skins/wisdom.xml new file mode 100644 index 000000000..40a5aaea4 --- /dev/null +++ b/indra/newview/skins/wisdom.xml @@ -0,0 +1,14 @@ + + + skin_name + Glass Wisdom + author_name + Wisdom + additional_author_names + Linden Lab + skin_info + + folder_name + wisdom + + diff --git a/indra/newview/skins/wisdom/colors_base.xml b/indra/newview/skins/wisdom/colors_base.xml new file mode 100644 index 000000000..0174b95b8 --- /dev/null +++ b/indra/newview/skins/wisdom/colors_base.xml @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/wisdom/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga b/indra/newview/skins/wisdom/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga new file mode 100644 index 000000000..53656d586 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/0098b015-3daf-4cfe-a72f-915369ea97c2.tga differ diff --git a/indra/newview/skins/wisdom/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga b/indra/newview/skins/wisdom/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga new file mode 100644 index 000000000..ccfd73cf5 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/07d0ea4c-af0c-aad1-dbbf-c24020ff2b80.tga differ diff --git a/indra/newview/skins/wisdom/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga b/indra/newview/skins/wisdom/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga new file mode 100644 index 000000000..5427985e1 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/3c18c87e-5f50-14e2-e744-f44734aa365f.tga differ diff --git a/indra/newview/skins/wisdom/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga b/indra/newview/skins/wisdom/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga new file mode 100644 index 000000000..61ae898e6 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/43f0a590-f3d3-48b5-b460-f5b3e6e03626.tga differ diff --git a/indra/newview/skins/wisdom/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga b/indra/newview/skins/wisdom/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga new file mode 100644 index 000000000..fbdb36dca Binary files /dev/null and b/indra/newview/skins/wisdom/textures/6002a571-549c-472c-9443-9ab35b1a55ed.tga differ diff --git a/indra/newview/skins/wisdom/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga b/indra/newview/skins/wisdom/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga new file mode 100644 index 000000000..49d62f1c1 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/7a0b1bdb-b5d9-4df5-bac2-ba230da93b5b.tga differ diff --git a/indra/newview/skins/wisdom/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga b/indra/newview/skins/wisdom/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga new file mode 100644 index 000000000..f28702576 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/7dabc040-ec13-2309-ddf7-4f161f6de2f4.tga differ diff --git a/indra/newview/skins/wisdom/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga b/indra/newview/skins/wisdom/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga new file mode 100644 index 000000000..18431cc03 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/89e9fc7c-0b16-457d-be4f-136270759c4d.tga differ diff --git a/indra/newview/skins/wisdom/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga b/indra/newview/skins/wisdom/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga new file mode 100644 index 000000000..341069eb2 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/9beb8cdd-3dce-53c2-b28e-e1f3bc2ec0a4.tga differ diff --git a/indra/newview/skins/wisdom/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga b/indra/newview/skins/wisdom/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga new file mode 100644 index 000000000..dbebf15a9 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/9cad3e6d-2d6d-107d-f8ab-5ba272b5bfe1.tga differ diff --git a/indra/newview/skins/wisdom/textures/account_id_green.tga b/indra/newview/skins/wisdom/textures/account_id_green.tga new file mode 100644 index 000000000..ad6dc496e Binary files /dev/null and b/indra/newview/skins/wisdom/textures/account_id_green.tga differ diff --git a/indra/newview/skins/wisdom/textures/account_id_orange.tga b/indra/newview/skins/wisdom/textures/account_id_orange.tga new file mode 100644 index 000000000..d2c2249b6 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/account_id_orange.tga differ diff --git a/indra/newview/skins/wisdom/textures/active_speakers.tga b/indra/newview/skins/wisdom/textures/active_speakers.tga new file mode 100644 index 000000000..7cae12c3a Binary files /dev/null and b/indra/newview/skins/wisdom/textures/active_speakers.tga differ diff --git a/indra/newview/skins/wisdom/textures/active_voice_tab.tga b/indra/newview/skins/wisdom/textures/active_voice_tab.tga new file mode 100644 index 000000000..59a7a43cf Binary files /dev/null and b/indra/newview/skins/wisdom/textures/active_voice_tab.tga differ diff --git a/indra/newview/skins/wisdom/textures/arrow_down.tga b/indra/newview/skins/wisdom/textures/arrow_down.tga new file mode 100644 index 000000000..384644b13 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/arrow_down.tga differ diff --git a/indra/newview/skins/wisdom/textures/arrow_up.tga b/indra/newview/skins/wisdom/textures/arrow_up.tga new file mode 100644 index 000000000..16539ee6c Binary files /dev/null and b/indra/newview/skins/wisdom/textures/arrow_up.tga differ diff --git a/indra/newview/skins/wisdom/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga b/indra/newview/skins/wisdom/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga new file mode 100644 index 000000000..6216b61de Binary files /dev/null and b/indra/newview/skins/wisdom/textures/b4870163-6208-42a9-9801-93133bf9a6cd.tga differ diff --git a/indra/newview/skins/wisdom/textures/btn_chatbar.tga b/indra/newview/skins/wisdom/textures/btn_chatbar.tga new file mode 100644 index 000000000..ee6826e9d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/btn_chatbar.tga differ diff --git a/indra/newview/skins/wisdom/textures/btn_chatbar_selected.tga b/indra/newview/skins/wisdom/textures/btn_chatbar_selected.tga new file mode 100644 index 000000000..139ecf50a Binary files /dev/null and b/indra/newview/skins/wisdom/textures/btn_chatbar_selected.tga differ diff --git a/indra/newview/skins/wisdom/textures/button_anim_pause.tga b/indra/newview/skins/wisdom/textures/button_anim_pause.tga new file mode 100644 index 000000000..1d8582220 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/button_anim_pause.tga differ diff --git a/indra/newview/skins/wisdom/textures/button_anim_pause_disabled.tga b/indra/newview/skins/wisdom/textures/button_anim_pause_disabled.tga new file mode 100644 index 000000000..1d8582220 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/button_anim_pause_disabled.tga differ diff --git a/indra/newview/skins/wisdom/textures/button_anim_pause_selected.tga b/indra/newview/skins/wisdom/textures/button_anim_pause_selected.tga new file mode 100644 index 000000000..1d8582220 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/button_anim_pause_selected.tga differ diff --git a/indra/newview/skins/wisdom/textures/button_anim_play.tga b/indra/newview/skins/wisdom/textures/button_anim_play.tga new file mode 100644 index 000000000..92ff96715 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/button_anim_play.tga differ diff --git a/indra/newview/skins/wisdom/textures/button_anim_play_disabled.tga b/indra/newview/skins/wisdom/textures/button_anim_play_disabled.tga new file mode 100644 index 000000000..92ff96715 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/button_anim_play_disabled.tga differ diff --git a/indra/newview/skins/wisdom/textures/button_anim_play_selected.tga b/indra/newview/skins/wisdom/textures/button_anim_play_selected.tga new file mode 100644 index 000000000..92ff96715 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/button_anim_play_selected.tga differ diff --git a/indra/newview/skins/wisdom/textures/button_anim_stop.tga b/indra/newview/skins/wisdom/textures/button_anim_stop.tga new file mode 100644 index 000000000..797c74e8d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/button_anim_stop.tga differ diff --git a/indra/newview/skins/wisdom/textures/button_anim_stop_disabled.tga b/indra/newview/skins/wisdom/textures/button_anim_stop_disabled.tga new file mode 100644 index 000000000..797c74e8d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/button_anim_stop_disabled.tga differ diff --git a/indra/newview/skins/wisdom/textures/button_anim_stop_selected.tga b/indra/newview/skins/wisdom/textures/button_anim_stop_selected.tga new file mode 100644 index 000000000..797c74e8d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/button_anim_stop_selected.tga differ diff --git a/indra/newview/skins/wisdom/textures/button_disabled_32x128.tga b/indra/newview/skins/wisdom/textures/button_disabled_32x128.tga new file mode 100644 index 000000000..bf3a172e6 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/button_disabled_32x128.tga differ diff --git a/indra/newview/skins/wisdom/textures/button_enabled_32x128.tga b/indra/newview/skins/wisdom/textures/button_enabled_32x128.tga new file mode 100644 index 000000000..0c36351d2 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/button_enabled_32x128.tga differ diff --git a/indra/newview/skins/wisdom/textures/button_enabled_selected_32x128.tga b/indra/newview/skins/wisdom/textures/button_enabled_selected_32x128.tga new file mode 100644 index 000000000..77f33b8c9 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/button_enabled_selected_32x128.tga differ diff --git a/indra/newview/skins/wisdom/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga b/indra/newview/skins/wisdom/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga new file mode 100644 index 000000000..93c3f9e1b Binary files /dev/null and b/indra/newview/skins/wisdom/textures/c1e21504-f136-451d-b8e9-929037812f1d.tga differ diff --git a/indra/newview/skins/wisdom/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga b/indra/newview/skins/wisdom/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga new file mode 100644 index 000000000..c3b8f0af1 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/c63f124c-6340-4fbf-b59e-0869a44adb64.tga differ diff --git a/indra/newview/skins/wisdom/textures/cam_rotate_in.tga b/indra/newview/skins/wisdom/textures/cam_rotate_in.tga new file mode 100644 index 000000000..788f94eea Binary files /dev/null and b/indra/newview/skins/wisdom/textures/cam_rotate_in.tga differ diff --git a/indra/newview/skins/wisdom/textures/cam_rotate_out.tga b/indra/newview/skins/wisdom/textures/cam_rotate_out.tga new file mode 100644 index 000000000..cff2050d4 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/cam_rotate_out.tga differ diff --git a/indra/newview/skins/wisdom/textures/cam_tracking_in.tga b/indra/newview/skins/wisdom/textures/cam_tracking_in.tga new file mode 100644 index 000000000..0047cbb11 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/cam_tracking_in.tga differ diff --git a/indra/newview/skins/wisdom/textures/cam_tracking_out.tga b/indra/newview/skins/wisdom/textures/cam_tracking_out.tga new file mode 100644 index 000000000..63d2b06d9 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/cam_tracking_out.tga differ diff --git a/indra/newview/skins/wisdom/textures/cam_zoom_minus_in.tga b/indra/newview/skins/wisdom/textures/cam_zoom_minus_in.tga new file mode 100644 index 000000000..045e32d9e Binary files /dev/null and b/indra/newview/skins/wisdom/textures/cam_zoom_minus_in.tga differ diff --git a/indra/newview/skins/wisdom/textures/cam_zoom_out.tga b/indra/newview/skins/wisdom/textures/cam_zoom_out.tga new file mode 100644 index 000000000..eaaf452aa Binary files /dev/null and b/indra/newview/skins/wisdom/textures/cam_zoom_out.tga differ diff --git a/indra/newview/skins/wisdom/textures/cam_zoom_plus_in.tga b/indra/newview/skins/wisdom/textures/cam_zoom_plus_in.tga new file mode 100644 index 000000000..3cd374c72 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/cam_zoom_plus_in.tga differ diff --git a/indra/newview/skins/wisdom/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga b/indra/newview/skins/wisdom/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga new file mode 100644 index 000000000..4b89a8dd2 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/ce15fd63-b0b6-463c-a37d-ea6393208b3e.tga differ diff --git a/indra/newview/skins/wisdom/textures/checkbox_disabled_false.tga b/indra/newview/skins/wisdom/textures/checkbox_disabled_false.tga new file mode 100644 index 000000000..72561ab47 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/checkbox_disabled_false.tga differ diff --git a/indra/newview/skins/wisdom/textures/checkbox_disabled_true.tga b/indra/newview/skins/wisdom/textures/checkbox_disabled_true.tga new file mode 100644 index 000000000..6b1fba9dd Binary files /dev/null and b/indra/newview/skins/wisdom/textures/checkbox_disabled_true.tga differ diff --git a/indra/newview/skins/wisdom/textures/checkbox_enabled_false.tga b/indra/newview/skins/wisdom/textures/checkbox_enabled_false.tga new file mode 100644 index 000000000..6578e0cb8 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/checkbox_enabled_false.tga differ diff --git a/indra/newview/skins/wisdom/textures/checkbox_enabled_true.tga b/indra/newview/skins/wisdom/textures/checkbox_enabled_true.tga new file mode 100644 index 000000000..3d0bf0504 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/checkbox_enabled_true.tga differ diff --git a/indra/newview/skins/wisdom/textures/checkerboard_transparency_bg.png b/indra/newview/skins/wisdom/textures/checkerboard_transparency_bg.png new file mode 100644 index 000000000..98004522c Binary files /dev/null and b/indra/newview/skins/wisdom/textures/checkerboard_transparency_bg.png differ diff --git a/indra/newview/skins/wisdom/textures/close_in_blue.tga b/indra/newview/skins/wisdom/textures/close_in_blue.tga new file mode 100644 index 000000000..a0c7ed9df Binary files /dev/null and b/indra/newview/skins/wisdom/textures/close_in_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/close_inactive_blue.tga b/indra/newview/skins/wisdom/textures/close_inactive_blue.tga new file mode 100644 index 000000000..eff6ee1ce Binary files /dev/null and b/indra/newview/skins/wisdom/textures/close_inactive_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/closebox.tga b/indra/newview/skins/wisdom/textures/closebox.tga new file mode 100644 index 000000000..46dd27d5c Binary files /dev/null and b/indra/newview/skins/wisdom/textures/closebox.tga differ diff --git a/indra/newview/skins/wisdom/textures/combobox_arrow.tga b/indra/newview/skins/wisdom/textures/combobox_arrow.tga new file mode 100644 index 000000000..ff3bf7e88 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/combobox_arrow.tga differ diff --git a/indra/newview/skins/wisdom/textures/crosshairs.tga b/indra/newview/skins/wisdom/textures/crosshairs.tga new file mode 100644 index 000000000..559ab2402 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/crosshairs.tga differ diff --git a/indra/newview/skins/wisdom/textures/direction_arrow.tga b/indra/newview/skins/wisdom/textures/direction_arrow.tga new file mode 100644 index 000000000..72a09b75c Binary files /dev/null and b/indra/newview/skins/wisdom/textures/direction_arrow.tga differ diff --git a/indra/newview/skins/wisdom/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga b/indra/newview/skins/wisdom/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga new file mode 100644 index 000000000..e3e5fff65 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/ff9a71eb-7414-4cf8-866e-a701deb7c3cf.tga differ diff --git a/indra/newview/skins/wisdom/textures/ff_edit_mine.tga b/indra/newview/skins/wisdom/textures/ff_edit_mine.tga new file mode 100644 index 000000000..27ef4dfdf Binary files /dev/null and b/indra/newview/skins/wisdom/textures/ff_edit_mine.tga differ diff --git a/indra/newview/skins/wisdom/textures/ff_edit_mine_button.tga b/indra/newview/skins/wisdom/textures/ff_edit_mine_button.tga new file mode 100644 index 000000000..da8998f16 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/ff_edit_mine_button.tga differ diff --git a/indra/newview/skins/wisdom/textures/ff_edit_theirs.tga b/indra/newview/skins/wisdom/textures/ff_edit_theirs.tga new file mode 100644 index 000000000..fc11bbf96 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/ff_edit_theirs.tga differ diff --git a/indra/newview/skins/wisdom/textures/ff_edit_theirs_button.tga b/indra/newview/skins/wisdom/textures/ff_edit_theirs_button.tga new file mode 100644 index 000000000..81a0a30e0 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/ff_edit_theirs_button.tga differ diff --git a/indra/newview/skins/wisdom/textures/ff_online_status_button.tga b/indra/newview/skins/wisdom/textures/ff_online_status_button.tga new file mode 100644 index 000000000..7a8f2c6a9 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/ff_online_status_button.tga differ diff --git a/indra/newview/skins/wisdom/textures/ff_visible_map.tga b/indra/newview/skins/wisdom/textures/ff_visible_map.tga new file mode 100644 index 000000000..eb79107e2 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/ff_visible_map.tga differ diff --git a/indra/newview/skins/wisdom/textures/ff_visible_map_button.tga b/indra/newview/skins/wisdom/textures/ff_visible_map_button.tga new file mode 100644 index 000000000..34600c23b Binary files /dev/null and b/indra/newview/skins/wisdom/textures/ff_visible_map_button.tga differ diff --git a/indra/newview/skins/wisdom/textures/ff_visible_online.tga b/indra/newview/skins/wisdom/textures/ff_visible_online.tga new file mode 100644 index 000000000..5a82062e7 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/ff_visible_online.tga differ diff --git a/indra/newview/skins/wisdom/textures/ff_visible_online_button.tga b/indra/newview/skins/wisdom/textures/ff_visible_online_button.tga new file mode 100644 index 000000000..273a8f503 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/ff_visible_online_button.tga differ diff --git a/indra/newview/skins/wisdom/textures/flyout_btn_left.tga b/indra/newview/skins/wisdom/textures/flyout_btn_left.tga new file mode 100644 index 000000000..ff99fde33 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/flyout_btn_left.tga differ diff --git a/indra/newview/skins/wisdom/textures/flyout_btn_left_disabled.tga b/indra/newview/skins/wisdom/textures/flyout_btn_left_disabled.tga new file mode 100644 index 000000000..a851b3d45 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/flyout_btn_left_disabled.tga differ diff --git a/indra/newview/skins/wisdom/textures/flyout_btn_left_selected.tga b/indra/newview/skins/wisdom/textures/flyout_btn_left_selected.tga new file mode 100644 index 000000000..b97f7b877 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/flyout_btn_left_selected.tga differ diff --git a/indra/newview/skins/wisdom/textures/flyout_btn_right.tga b/indra/newview/skins/wisdom/textures/flyout_btn_right.tga new file mode 100644 index 000000000..e6a0e3f47 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/flyout_btn_right.tga differ diff --git a/indra/newview/skins/wisdom/textures/flyout_btn_right_disabled.tga b/indra/newview/skins/wisdom/textures/flyout_btn_right_disabled.tga new file mode 100644 index 000000000..e6a0e3f47 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/flyout_btn_right_disabled.tga differ diff --git a/indra/newview/skins/wisdom/textures/flyout_btn_right_selected.tga b/indra/newview/skins/wisdom/textures/flyout_btn_right_selected.tga new file mode 100644 index 000000000..201c35964 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/flyout_btn_right_selected.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_chatbar.tga b/indra/newview/skins/wisdom/textures/icn_chatbar.tga new file mode 100644 index 000000000..601efdf53 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_chatbar.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_label_media.tga b/indra/newview/skins/wisdom/textures/icn_label_media.tga new file mode 100644 index 000000000..e676e625d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_label_media.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_label_music.tga b/indra/newview/skins/wisdom/textures/icn_label_music.tga new file mode 100644 index 000000000..4770a9c0b Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_label_music.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_label_web.tga b/indra/newview/skins/wisdom/textures/icn_label_web.tga new file mode 100644 index 000000000..226bdb707 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_label_web.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_media-pause.tga b/indra/newview/skins/wisdom/textures/icn_media-pause.tga new file mode 100644 index 000000000..ce423700b Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_media-pause.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_media-pause_active.tga b/indra/newview/skins/wisdom/textures/icn_media-pause_active.tga new file mode 100644 index 000000000..1d8582220 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_media-pause_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_media-pause_disabled.tga b/indra/newview/skins/wisdom/textures/icn_media-pause_disabled.tga new file mode 100644 index 000000000..1d8582220 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_media-pause_disabled.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_media-pause_enabled.tga b/indra/newview/skins/wisdom/textures/icn_media-pause_enabled.tga new file mode 100644 index 000000000..1d8582220 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_media-pause_enabled.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_media-play.tga b/indra/newview/skins/wisdom/textures/icn_media-play.tga new file mode 100644 index 000000000..7a248bdb5 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_media-play.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_media-play_active.tga b/indra/newview/skins/wisdom/textures/icn_media-play_active.tga new file mode 100644 index 000000000..92ff96715 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_media-play_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_media-play_disabled.tga b/indra/newview/skins/wisdom/textures/icn_media-play_disabled.tga new file mode 100644 index 000000000..92ff96715 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_media-play_disabled.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_media-play_enabled.tga b/indra/newview/skins/wisdom/textures/icn_media-play_enabled.tga new file mode 100644 index 000000000..92ff96715 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_media-play_enabled.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_media-stop_active.tga b/indra/newview/skins/wisdom/textures/icn_media-stop_active.tga new file mode 100644 index 000000000..797c74e8d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_media-stop_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_media-stop_disabled.tga b/indra/newview/skins/wisdom/textures/icn_media-stop_disabled.tga new file mode 100644 index 000000000..797c74e8d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_media-stop_disabled.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_media-stop_enabled.tga b/indra/newview/skins/wisdom/textures/icn_media-stop_enabled.tga new file mode 100644 index 000000000..797c74e8d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_media-stop_enabled.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_media.tga b/indra/newview/skins/wisdom/textures/icn_media.tga new file mode 100644 index 000000000..e676e625d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_media.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_media_movie.tga b/indra/newview/skins/wisdom/textures/icn_media_movie.tga new file mode 100644 index 000000000..e676e625d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_media_movie.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_media_web.tga b/indra/newview/skins/wisdom/textures/icn_media_web.tga new file mode 100644 index 000000000..226bdb707 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_media_web.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_music-pause.tga b/indra/newview/skins/wisdom/textures/icn_music-pause.tga new file mode 100644 index 000000000..5f18272f2 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_music-pause.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_music-play.tga b/indra/newview/skins/wisdom/textures/icn_music-play.tga new file mode 100644 index 000000000..3bffb0514 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_music-play.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_music.tga b/indra/newview/skins/wisdom/textures/icn_music.tga new file mode 100644 index 000000000..4770a9c0b Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_music.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_pause.tga b/indra/newview/skins/wisdom/textures/icn_pause.tga new file mode 100644 index 000000000..b205f95d8 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_pause.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_play.tga b/indra/newview/skins/wisdom/textures/icn_play.tga new file mode 100644 index 000000000..e84a0b4cd Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_play.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_rounded-text-field.tga b/indra/newview/skins/wisdom/textures/icn_rounded-text-field.tga new file mode 100644 index 000000000..5cdd722a0 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_rounded-text-field.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_slide-groove_dark.tga b/indra/newview/skins/wisdom/textures/icn_slide-groove_dark.tga new file mode 100644 index 000000000..652dae672 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_slide-groove_dark.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_slide-highlight.tga b/indra/newview/skins/wisdom/textures/icn_slide-highlight.tga new file mode 100644 index 000000000..50e0dbbf5 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_slide-highlight.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_slide-thumb_dark.tga b/indra/newview/skins/wisdom/textures/icn_slide-thumb_dark.tga new file mode 100644 index 000000000..5228ec6d1 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_slide-thumb_dark.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_speaker-muted_dark.tga b/indra/newview/skins/wisdom/textures/icn_speaker-muted_dark.tga new file mode 100644 index 000000000..090540671 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_speaker-muted_dark.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_speaker_dark.tga b/indra/newview/skins/wisdom/textures/icn_speaker_dark.tga new file mode 100644 index 000000000..730f057a9 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_speaker_dark.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_stop.tga b/indra/newview/skins/wisdom/textures/icn_stop.tga new file mode 100644 index 000000000..c7f12f2df Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_stop.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_voice_ptt-on-lvl1.tga b/indra/newview/skins/wisdom/textures/icn_voice_ptt-on-lvl1.tga new file mode 100644 index 000000000..07b4c0789 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_voice_ptt-on-lvl1.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_voice_ptt-on-lvl2.tga b/indra/newview/skins/wisdom/textures/icn_voice_ptt-on-lvl2.tga new file mode 100644 index 000000000..4ea6ba6f0 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_voice_ptt-on-lvl2.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_voice_ptt-on-lvl3.tga b/indra/newview/skins/wisdom/textures/icn_voice_ptt-on-lvl3.tga new file mode 100644 index 000000000..507e709fa Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_voice_ptt-on-lvl3.tga differ diff --git a/indra/newview/skins/wisdom/textures/icn_voice_ptt-on.tga b/indra/newview/skins/wisdom/textures/icn_voice_ptt-on.tga new file mode 100644 index 000000000..2eadf95ac Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icn_voice_ptt-on.tga differ diff --git a/indra/newview/skins/wisdom/textures/icon_auction.tga b/indra/newview/skins/wisdom/textures/icon_auction.tga new file mode 100644 index 000000000..a62a195c1 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icon_auction.tga differ diff --git a/indra/newview/skins/wisdom/textures/icon_avatar_offline.tga b/indra/newview/skins/wisdom/textures/icon_avatar_offline.tga new file mode 100644 index 000000000..adf3da743 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icon_avatar_offline.tga differ diff --git a/indra/newview/skins/wisdom/textures/icon_avatar_online.tga b/indra/newview/skins/wisdom/textures/icon_avatar_online.tga new file mode 100644 index 000000000..26846f922 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icon_avatar_online.tga differ diff --git a/indra/newview/skins/wisdom/textures/icon_diurnal.tga b/indra/newview/skins/wisdom/textures/icon_diurnal.tga new file mode 100644 index 000000000..663f71f28 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icon_diurnal.tga differ diff --git a/indra/newview/skins/wisdom/textures/icon_event.tga b/indra/newview/skins/wisdom/textures/icon_event.tga new file mode 100644 index 000000000..8e02b3f6c Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icon_event.tga differ diff --git a/indra/newview/skins/wisdom/textures/icon_event_adult.tga b/indra/newview/skins/wisdom/textures/icon_event_adult.tga new file mode 100644 index 000000000..847b551d6 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icon_event_adult.tga differ diff --git a/indra/newview/skins/wisdom/textures/icon_event_mature.tga b/indra/newview/skins/wisdom/textures/icon_event_mature.tga new file mode 100644 index 000000000..89f4e0978 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icon_event_mature.tga differ diff --git a/indra/newview/skins/wisdom/textures/icon_for_sale.tga b/indra/newview/skins/wisdom/textures/icon_for_sale.tga new file mode 100644 index 000000000..68118c888 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icon_for_sale.tga differ diff --git a/indra/newview/skins/wisdom/textures/icon_for_sale_adult.tga b/indra/newview/skins/wisdom/textures/icon_for_sale_adult.tga new file mode 100644 index 000000000..e70ebd5f4 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icon_for_sale_adult.tga differ diff --git a/indra/newview/skins/wisdom/textures/icon_group.tga b/indra/newview/skins/wisdom/textures/icon_group.tga new file mode 100644 index 000000000..ce0da8b50 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icon_group.tga differ diff --git a/indra/newview/skins/wisdom/textures/icon_lock.tga b/indra/newview/skins/wisdom/textures/icon_lock.tga new file mode 100644 index 000000000..f65a9a73e Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icon_lock.tga differ diff --git a/indra/newview/skins/wisdom/textures/icon_place.tga b/indra/newview/skins/wisdom/textures/icon_place.tga new file mode 100644 index 000000000..a918811f4 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icon_place.tga differ diff --git a/indra/newview/skins/wisdom/textures/icon_popular.tga b/indra/newview/skins/wisdom/textures/icon_popular.tga new file mode 100644 index 000000000..f12ad8657 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icon_popular.tga differ diff --git a/indra/newview/skins/wisdom/textures/icon_top_pick.tga b/indra/newview/skins/wisdom/textures/icon_top_pick.tga new file mode 100644 index 000000000..763179460 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/icon_top_pick.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_animation.tga b/indra/newview/skins/wisdom/textures/inv_folder_animation.tga new file mode 100644 index 000000000..c1af57061 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_animation.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_bodypart.tga b/indra/newview/skins/wisdom/textures/inv_folder_bodypart.tga new file mode 100644 index 000000000..9609a9116 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_bodypart.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_callingcard.tga b/indra/newview/skins/wisdom/textures/inv_folder_callingcard.tga new file mode 100644 index 000000000..2f2da1e41 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_callingcard.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_clothing.tga b/indra/newview/skins/wisdom/textures/inv_folder_clothing.tga new file mode 100644 index 000000000..048807b78 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_clothing.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_gesture.tga b/indra/newview/skins/wisdom/textures/inv_folder_gesture.tga new file mode 100644 index 000000000..6ea106dce Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_gesture.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_landmark.tga b/indra/newview/skins/wisdom/textures/inv_folder_landmark.tga new file mode 100644 index 000000000..8d426133f Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_landmark.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_lostandfound.tga b/indra/newview/skins/wisdom/textures/inv_folder_lostandfound.tga new file mode 100644 index 000000000..d4ca0b901 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_lostandfound.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_notecard.tga b/indra/newview/skins/wisdom/textures/inv_folder_notecard.tga new file mode 100644 index 000000000..52a3530ad Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_notecard.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_object.tga b/indra/newview/skins/wisdom/textures/inv_folder_object.tga new file mode 100644 index 000000000..c9200d9ae Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_object.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_plain_closed.tga b/indra/newview/skins/wisdom/textures/inv_folder_plain_closed.tga new file mode 100644 index 000000000..dd5da0fb1 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_plain_closed.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_plain_open.tga b/indra/newview/skins/wisdom/textures/inv_folder_plain_open.tga new file mode 100644 index 000000000..348d8930a Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_plain_open.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_script.tga b/indra/newview/skins/wisdom/textures/inv_folder_script.tga new file mode 100644 index 000000000..e7d0e11a4 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_script.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_snapshot.tga b/indra/newview/skins/wisdom/textures/inv_folder_snapshot.tga new file mode 100644 index 000000000..349d7468a Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_snapshot.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_sound.tga b/indra/newview/skins/wisdom/textures/inv_folder_sound.tga new file mode 100644 index 000000000..979513452 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_sound.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_texture.tga b/indra/newview/skins/wisdom/textures/inv_folder_texture.tga new file mode 100644 index 000000000..6d08c1e7d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_texture.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_folder_trash.tga b/indra/newview/skins/wisdom/textures/inv_folder_trash.tga new file mode 100644 index 000000000..7aa6b93d8 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_folder_trash.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_animation.tga b/indra/newview/skins/wisdom/textures/inv_item_animation.tga new file mode 100644 index 000000000..bc91b85dd Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_animation.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_attach.tga b/indra/newview/skins/wisdom/textures/inv_item_attach.tga new file mode 100644 index 000000000..99429b193 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_attach.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_callingcard_offline.tga b/indra/newview/skins/wisdom/textures/inv_item_callingcard_offline.tga new file mode 100644 index 000000000..d936061f9 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_callingcard_offline.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_callingcard_online.tga b/indra/newview/skins/wisdom/textures/inv_item_callingcard_online.tga new file mode 100644 index 000000000..f8cd74376 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_callingcard_online.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_clothing.tga b/indra/newview/skins/wisdom/textures/inv_item_clothing.tga new file mode 100644 index 000000000..b7864266a Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_clothing.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_eyes.tga b/indra/newview/skins/wisdom/textures/inv_item_eyes.tga new file mode 100644 index 000000000..18e83683a Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_eyes.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_gesture.tga b/indra/newview/skins/wisdom/textures/inv_item_gesture.tga new file mode 100644 index 000000000..a6fe629b2 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_gesture.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_gloves.tga b/indra/newview/skins/wisdom/textures/inv_item_gloves.tga new file mode 100644 index 000000000..bcc6aee5a Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_gloves.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_hair.tga b/indra/newview/skins/wisdom/textures/inv_item_hair.tga new file mode 100644 index 000000000..686214ed4 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_hair.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_jacket.tga b/indra/newview/skins/wisdom/textures/inv_item_jacket.tga new file mode 100644 index 000000000..69c5f0702 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_jacket.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_landmark.tga b/indra/newview/skins/wisdom/textures/inv_item_landmark.tga new file mode 100644 index 000000000..3e14de9b6 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_landmark.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_landmark_visited.tga b/indra/newview/skins/wisdom/textures/inv_item_landmark_visited.tga new file mode 100644 index 000000000..f76c9ebcd Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_landmark_visited.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_notecard.tga b/indra/newview/skins/wisdom/textures/inv_item_notecard.tga new file mode 100644 index 000000000..f6cebd1d0 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_notecard.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_object.tga b/indra/newview/skins/wisdom/textures/inv_item_object.tga new file mode 100644 index 000000000..6e27b1423 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_object.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_object_multi.tga b/indra/newview/skins/wisdom/textures/inv_item_object_multi.tga new file mode 100644 index 000000000..592c67cdc Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_object_multi.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_pants.tga b/indra/newview/skins/wisdom/textures/inv_item_pants.tga new file mode 100644 index 000000000..38dbc57c4 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_pants.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_script.tga b/indra/newview/skins/wisdom/textures/inv_item_script.tga new file mode 100644 index 000000000..1c14f5f41 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_script.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_script_dangerous.tga b/indra/newview/skins/wisdom/textures/inv_item_script_dangerous.tga new file mode 100644 index 000000000..d2b131939 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_script_dangerous.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_shape.tga b/indra/newview/skins/wisdom/textures/inv_item_shape.tga new file mode 100644 index 000000000..2e8a5a721 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_shape.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_shirt.tga b/indra/newview/skins/wisdom/textures/inv_item_shirt.tga new file mode 100644 index 000000000..8c6f5ebf2 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_shirt.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_shoes.tga b/indra/newview/skins/wisdom/textures/inv_item_shoes.tga new file mode 100644 index 000000000..ac7a2b00d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_shoes.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_skin.tga b/indra/newview/skins/wisdom/textures/inv_item_skin.tga new file mode 100644 index 000000000..ab4169f4f Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_skin.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_skirt.tga b/indra/newview/skins/wisdom/textures/inv_item_skirt.tga new file mode 100644 index 000000000..44760408b Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_skirt.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_snapshot.tga b/indra/newview/skins/wisdom/textures/inv_item_snapshot.tga new file mode 100644 index 000000000..3eb1761b5 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_snapshot.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_socks.tga b/indra/newview/skins/wisdom/textures/inv_item_socks.tga new file mode 100644 index 000000000..2d7bb7e24 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_socks.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_sound.tga b/indra/newview/skins/wisdom/textures/inv_item_sound.tga new file mode 100644 index 000000000..c7cd1a761 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_sound.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_texture.tga b/indra/newview/skins/wisdom/textures/inv_item_texture.tga new file mode 100644 index 000000000..ca96a914e Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_texture.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_underpants.tga b/indra/newview/skins/wisdom/textures/inv_item_underpants.tga new file mode 100644 index 000000000..0f29248c0 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_underpants.tga differ diff --git a/indra/newview/skins/wisdom/textures/inv_item_undershirt.tga b/indra/newview/skins/wisdom/textures/inv_item_undershirt.tga new file mode 100644 index 000000000..359e3d71e Binary files /dev/null and b/indra/newview/skins/wisdom/textures/inv_item_undershirt.tga differ diff --git a/indra/newview/skins/wisdom/textures/lag_status_good.tga b/indra/newview/skins/wisdom/textures/lag_status_good.tga new file mode 100644 index 000000000..1f622a926 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/lag_status_good.tga differ diff --git a/indra/newview/skins/wisdom/textures/lag_status_warning.tga b/indra/newview/skins/wisdom/textures/lag_status_warning.tga new file mode 100644 index 000000000..598692980 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/lag_status_warning.tga differ diff --git a/indra/newview/skins/wisdom/textures/map_avatar_16.tga b/indra/newview/skins/wisdom/textures/map_avatar_16.tga new file mode 100644 index 000000000..2d799bb7e Binary files /dev/null and b/indra/newview/skins/wisdom/textures/map_avatar_16.tga differ diff --git a/indra/newview/skins/wisdom/textures/map_avatar_8.tga b/indra/newview/skins/wisdom/textures/map_avatar_8.tga new file mode 100644 index 000000000..731ce4036 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/map_avatar_8.tga differ diff --git a/indra/newview/skins/wisdom/textures/map_avatar_above_8.tga b/indra/newview/skins/wisdom/textures/map_avatar_above_8.tga new file mode 100644 index 000000000..4bf1729ee Binary files /dev/null and b/indra/newview/skins/wisdom/textures/map_avatar_above_8.tga differ diff --git a/indra/newview/skins/wisdom/textures/map_avatar_below_8.tga b/indra/newview/skins/wisdom/textures/map_avatar_below_8.tga new file mode 100644 index 000000000..0ea682a1f Binary files /dev/null and b/indra/newview/skins/wisdom/textures/map_avatar_below_8.tga differ diff --git a/indra/newview/skins/wisdom/textures/map_avatar_you_8.tga b/indra/newview/skins/wisdom/textures/map_avatar_you_8.tga new file mode 100644 index 000000000..8224d3f85 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/map_avatar_you_8.tga differ diff --git a/indra/newview/skins/wisdom/textures/map_event.tga b/indra/newview/skins/wisdom/textures/map_event.tga new file mode 100644 index 000000000..d1dc982c7 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/map_event.tga differ diff --git a/indra/newview/skins/wisdom/textures/map_event_adult.tga b/indra/newview/skins/wisdom/textures/map_event_adult.tga new file mode 100644 index 000000000..847b551d6 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/map_event_adult.tga differ diff --git a/indra/newview/skins/wisdom/textures/map_event_mature.tga b/indra/newview/skins/wisdom/textures/map_event_mature.tga new file mode 100644 index 000000000..89f4e0978 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/map_event_mature.tga differ diff --git a/indra/newview/skins/wisdom/textures/map_home.tga b/indra/newview/skins/wisdom/textures/map_home.tga new file mode 100644 index 000000000..abdf2702d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/map_home.tga differ diff --git a/indra/newview/skins/wisdom/textures/map_infohub.tga b/indra/newview/skins/wisdom/textures/map_infohub.tga new file mode 100644 index 000000000..b55540489 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/map_infohub.tga differ diff --git a/indra/newview/skins/wisdom/textures/map_telehub.tga b/indra/newview/skins/wisdom/textures/map_telehub.tga new file mode 100644 index 000000000..4545f3ebc Binary files /dev/null and b/indra/newview/skins/wisdom/textures/map_telehub.tga differ diff --git a/indra/newview/skins/wisdom/textures/media_icon.tga b/indra/newview/skins/wisdom/textures/media_icon.tga new file mode 100644 index 000000000..201d5b619 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/media_icon.tga differ diff --git a/indra/newview/skins/wisdom/textures/minimize.tga b/indra/newview/skins/wisdom/textures/minimize.tga new file mode 100644 index 000000000..bc453a1ad Binary files /dev/null and b/indra/newview/skins/wisdom/textures/minimize.tga differ diff --git a/indra/newview/skins/wisdom/textures/minimize_inactive.tga b/indra/newview/skins/wisdom/textures/minimize_inactive.tga new file mode 100644 index 000000000..21a32f652 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/minimize_inactive.tga differ diff --git a/indra/newview/skins/wisdom/textures/minimize_pressed.tga b/indra/newview/skins/wisdom/textures/minimize_pressed.tga new file mode 100644 index 000000000..167769f54 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/minimize_pressed.tga differ diff --git a/indra/newview/skins/wisdom/textures/missing_asset.tga b/indra/newview/skins/wisdom/textures/missing_asset.tga new file mode 100644 index 000000000..d3ece28d2 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/missing_asset.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_backward_in.tga b/indra/newview/skins/wisdom/textures/move_backward_in.tga new file mode 100644 index 000000000..29b3a5ea8 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_backward_in.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_backward_out.tga b/indra/newview/skins/wisdom/textures/move_backward_out.tga new file mode 100644 index 000000000..28357132d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_backward_out.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_down_in.tga b/indra/newview/skins/wisdom/textures/move_down_in.tga new file mode 100644 index 000000000..01decba70 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_down_in.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_down_out.tga b/indra/newview/skins/wisdom/textures/move_down_out.tga new file mode 100644 index 000000000..cec24f7f9 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_down_out.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_forward_in.tga b/indra/newview/skins/wisdom/textures/move_forward_in.tga new file mode 100644 index 000000000..9cba40d06 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_forward_in.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_forward_out.tga b/indra/newview/skins/wisdom/textures/move_forward_out.tga new file mode 100644 index 000000000..2bc1bee98 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_forward_out.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_left_in.tga b/indra/newview/skins/wisdom/textures/move_left_in.tga new file mode 100644 index 000000000..ae41305cc Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_left_in.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_left_out.tga b/indra/newview/skins/wisdom/textures/move_left_out.tga new file mode 100644 index 000000000..9bfe0de27 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_left_out.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_right_in.tga b/indra/newview/skins/wisdom/textures/move_right_in.tga new file mode 100644 index 000000000..8516bad31 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_right_in.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_right_out.tga b/indra/newview/skins/wisdom/textures/move_right_out.tga new file mode 100644 index 000000000..8e2ae867b Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_right_out.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_turn_left_in.tga b/indra/newview/skins/wisdom/textures/move_turn_left_in.tga new file mode 100644 index 000000000..4d932057c Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_turn_left_in.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_turn_left_out.tga b/indra/newview/skins/wisdom/textures/move_turn_left_out.tga new file mode 100644 index 000000000..7b7b35fe9 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_turn_left_out.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_turn_right_in.tga b/indra/newview/skins/wisdom/textures/move_turn_right_in.tga new file mode 100644 index 000000000..9a0682708 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_turn_right_in.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_turn_right_out.tga b/indra/newview/skins/wisdom/textures/move_turn_right_out.tga new file mode 100644 index 000000000..a11781ac4 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_turn_right_out.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_up_in.tga b/indra/newview/skins/wisdom/textures/move_up_in.tga new file mode 100644 index 000000000..713148b1e Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_up_in.tga differ diff --git a/indra/newview/skins/wisdom/textures/move_up_out.tga b/indra/newview/skins/wisdom/textures/move_up_out.tga new file mode 100644 index 000000000..bd9244e99 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/move_up_out.tga differ diff --git a/indra/newview/skins/wisdom/textures/music_icon.tga b/indra/newview/skins/wisdom/textures/music_icon.tga new file mode 100644 index 000000000..8ef5141dc Binary files /dev/null and b/indra/newview/skins/wisdom/textures/music_icon.tga differ diff --git a/indra/newview/skins/wisdom/textures/notify_box_icon.tga b/indra/newview/skins/wisdom/textures/notify_box_icon.tga new file mode 100644 index 000000000..61840ba67 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/notify_box_icon.tga differ diff --git a/indra/newview/skins/wisdom/textures/notify_next.png b/indra/newview/skins/wisdom/textures/notify_next.png new file mode 100644 index 000000000..264b02de8 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/notify_next.png differ diff --git a/indra/newview/skins/wisdom/textures/notify_tip_icon.tga b/indra/newview/skins/wisdom/textures/notify_tip_icon.tga new file mode 100644 index 000000000..2e1919477 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/notify_tip_icon.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_cone.tga b/indra/newview/skins/wisdom/textures/object_cone.tga new file mode 100644 index 000000000..942179d35 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_cone.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_cone_active.tga b/indra/newview/skins/wisdom/textures/object_cone_active.tga new file mode 100644 index 000000000..534929028 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_cone_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_cube.tga b/indra/newview/skins/wisdom/textures/object_cube.tga new file mode 100644 index 000000000..155d033ab Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_cube.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_cube_active.tga b/indra/newview/skins/wisdom/textures/object_cube_active.tga new file mode 100644 index 000000000..45f479df5 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_cube_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_cylinder.tga b/indra/newview/skins/wisdom/textures/object_cylinder.tga new file mode 100644 index 000000000..8d320071f Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_cylinder.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_cylinder_active.tga b/indra/newview/skins/wisdom/textures/object_cylinder_active.tga new file mode 100644 index 000000000..4819a7153 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_cylinder_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_grass.tga b/indra/newview/skins/wisdom/textures/object_grass.tga new file mode 100644 index 000000000..877fd1836 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_grass.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_grass_active.tga b/indra/newview/skins/wisdom/textures/object_grass_active.tga new file mode 100644 index 000000000..1ce52ee81 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_grass_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_hemi_cone.tga b/indra/newview/skins/wisdom/textures/object_hemi_cone.tga new file mode 100644 index 000000000..d1e52925d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_hemi_cone.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_hemi_cone_active.tga b/indra/newview/skins/wisdom/textures/object_hemi_cone_active.tga new file mode 100644 index 000000000..6f46e73fe Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_hemi_cone_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_hemi_cylinder.tga b/indra/newview/skins/wisdom/textures/object_hemi_cylinder.tga new file mode 100644 index 000000000..c519c6ed5 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_hemi_cylinder.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_hemi_cylinder_active.tga b/indra/newview/skins/wisdom/textures/object_hemi_cylinder_active.tga new file mode 100644 index 000000000..6e310952d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_hemi_cylinder_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_hemi_sphere.tga b/indra/newview/skins/wisdom/textures/object_hemi_sphere.tga new file mode 100644 index 000000000..3888c4657 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_hemi_sphere.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_hemi_sphere_active.tga b/indra/newview/skins/wisdom/textures/object_hemi_sphere_active.tga new file mode 100644 index 000000000..0d30d777b Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_hemi_sphere_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_prism.tga b/indra/newview/skins/wisdom/textures/object_prism.tga new file mode 100644 index 000000000..80f3cc823 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_prism.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_prism_active.tga b/indra/newview/skins/wisdom/textures/object_prism_active.tga new file mode 100644 index 000000000..35103ef75 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_prism_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_pyramid.tga b/indra/newview/skins/wisdom/textures/object_pyramid.tga new file mode 100644 index 000000000..2b4ec55b7 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_pyramid.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_pyramid_active.tga b/indra/newview/skins/wisdom/textures/object_pyramid_active.tga new file mode 100644 index 000000000..0b64b18b3 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_pyramid_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_ring.tga b/indra/newview/skins/wisdom/textures/object_ring.tga new file mode 100644 index 000000000..c229c1bf4 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_ring.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_ring_active.tga b/indra/newview/skins/wisdom/textures/object_ring_active.tga new file mode 100644 index 000000000..070a659b5 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_ring_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_sphere.tga b/indra/newview/skins/wisdom/textures/object_sphere.tga new file mode 100644 index 000000000..c8400ca74 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_sphere.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_sphere_active.tga b/indra/newview/skins/wisdom/textures/object_sphere_active.tga new file mode 100644 index 000000000..587719fbc Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_sphere_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_tetrahedron.tga b/indra/newview/skins/wisdom/textures/object_tetrahedron.tga new file mode 100644 index 000000000..f0778b707 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_tetrahedron.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_tetrahedron_active.tga b/indra/newview/skins/wisdom/textures/object_tetrahedron_active.tga new file mode 100644 index 000000000..8f12ee031 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_tetrahedron_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_torus.tga b/indra/newview/skins/wisdom/textures/object_torus.tga new file mode 100644 index 000000000..2f5d48143 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_torus.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_torus_active.tga b/indra/newview/skins/wisdom/textures/object_torus_active.tga new file mode 100644 index 000000000..b4a85f7f2 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_torus_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_tree.tga b/indra/newview/skins/wisdom/textures/object_tree.tga new file mode 100644 index 000000000..1d4499727 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_tree.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_tree_active.tga b/indra/newview/skins/wisdom/textures/object_tree_active.tga new file mode 100644 index 000000000..ba68c782e Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_tree_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_tube.tga b/indra/newview/skins/wisdom/textures/object_tube.tga new file mode 100644 index 000000000..ed72a483c Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_tube.tga differ diff --git a/indra/newview/skins/wisdom/textures/object_tube_active.tga b/indra/newview/skins/wisdom/textures/object_tube_active.tga new file mode 100644 index 000000000..56d2f85f4 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/object_tube_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/preview.png b/indra/newview/skins/wisdom/textures/preview.png new file mode 100644 index 000000000..098a35110 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/preview.png differ diff --git a/indra/newview/skins/wisdom/textures/progress_fill.tga b/indra/newview/skins/wisdom/textures/progress_fill.tga new file mode 100644 index 000000000..cbd6cc790 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/progress_fill.tga differ diff --git a/indra/newview/skins/wisdom/textures/progressbar_fill.tga b/indra/newview/skins/wisdom/textures/progressbar_fill.tga new file mode 100644 index 000000000..2ed1a111c Binary files /dev/null and b/indra/newview/skins/wisdom/textures/progressbar_fill.tga differ diff --git a/indra/newview/skins/wisdom/textures/progressbar_track.tga b/indra/newview/skins/wisdom/textures/progressbar_track.tga new file mode 100644 index 000000000..e4e23a456 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/progressbar_track.tga differ diff --git a/indra/newview/skins/wisdom/textures/ptt_lock_off.tga b/indra/newview/skins/wisdom/textures/ptt_lock_off.tga new file mode 100644 index 000000000..f5abdd1db Binary files /dev/null and b/indra/newview/skins/wisdom/textures/ptt_lock_off.tga differ diff --git a/indra/newview/skins/wisdom/textures/ptt_lock_on.tga b/indra/newview/skins/wisdom/textures/ptt_lock_on.tga new file mode 100644 index 000000000..83abd91fd Binary files /dev/null and b/indra/newview/skins/wisdom/textures/ptt_lock_on.tga differ diff --git a/indra/newview/skins/wisdom/textures/radio_active_false.tga b/indra/newview/skins/wisdom/textures/radio_active_false.tga new file mode 100644 index 000000000..8787e36ec Binary files /dev/null and b/indra/newview/skins/wisdom/textures/radio_active_false.tga differ diff --git a/indra/newview/skins/wisdom/textures/radio_active_true.tga b/indra/newview/skins/wisdom/textures/radio_active_true.tga new file mode 100644 index 000000000..045228a1b Binary files /dev/null and b/indra/newview/skins/wisdom/textures/radio_active_true.tga differ diff --git a/indra/newview/skins/wisdom/textures/radio_inactive_false.tga b/indra/newview/skins/wisdom/textures/radio_inactive_false.tga new file mode 100644 index 000000000..7145df247 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/radio_inactive_false.tga differ diff --git a/indra/newview/skins/wisdom/textures/radio_inactive_true.tga b/indra/newview/skins/wisdom/textures/radio_inactive_true.tga new file mode 100644 index 000000000..895471a62 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/radio_inactive_true.tga differ diff --git a/indra/newview/skins/wisdom/textures/resize_handle_bottom_right_blue.tga b/indra/newview/skins/wisdom/textures/resize_handle_bottom_right_blue.tga new file mode 100644 index 000000000..9e69e0060 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/resize_handle_bottom_right_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/restore.tga b/indra/newview/skins/wisdom/textures/restore.tga new file mode 100644 index 000000000..a49bef785 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/restore.tga differ diff --git a/indra/newview/skins/wisdom/textures/restore_inactive.tga b/indra/newview/skins/wisdom/textures/restore_inactive.tga new file mode 100644 index 000000000..21a32f652 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/restore_inactive.tga differ diff --git a/indra/newview/skins/wisdom/textures/restore_pressed.tga b/indra/newview/skins/wisdom/textures/restore_pressed.tga new file mode 100644 index 000000000..100df0371 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/restore_pressed.tga differ diff --git a/indra/newview/skins/wisdom/textures/scrollbutton_down_in_blue.tga b/indra/newview/skins/wisdom/textures/scrollbutton_down_in_blue.tga new file mode 100644 index 000000000..c93e5a91f Binary files /dev/null and b/indra/newview/skins/wisdom/textures/scrollbutton_down_in_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/scrollbutton_down_out_blue.tga b/indra/newview/skins/wisdom/textures/scrollbutton_down_out_blue.tga new file mode 100644 index 000000000..57e9ec908 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/scrollbutton_down_out_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/scrollbutton_left_in_blue.tga b/indra/newview/skins/wisdom/textures/scrollbutton_left_in_blue.tga new file mode 100644 index 000000000..a2a928402 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/scrollbutton_left_in_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/scrollbutton_left_out_blue.tga b/indra/newview/skins/wisdom/textures/scrollbutton_left_out_blue.tga new file mode 100644 index 000000000..e1c882bd9 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/scrollbutton_left_out_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/scrollbutton_right_in_blue.tga b/indra/newview/skins/wisdom/textures/scrollbutton_right_in_blue.tga new file mode 100644 index 000000000..4a0976a2d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/scrollbutton_right_in_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/scrollbutton_right_out_blue.tga b/indra/newview/skins/wisdom/textures/scrollbutton_right_out_blue.tga new file mode 100644 index 000000000..37f0f7282 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/scrollbutton_right_out_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/scrollbutton_up_in_blue.tga b/indra/newview/skins/wisdom/textures/scrollbutton_up_in_blue.tga new file mode 100644 index 000000000..66f5d7115 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/scrollbutton_up_in_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/scrollbutton_up_out_blue.tga b/indra/newview/skins/wisdom/textures/scrollbutton_up_out_blue.tga new file mode 100644 index 000000000..428dca117 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/scrollbutton_up_out_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/sm_rounded_corners_simple Copy.tga b/indra/newview/skins/wisdom/textures/sm_rounded_corners_simple Copy.tga new file mode 100644 index 000000000..30bbbb45e Binary files /dev/null and b/indra/newview/skins/wisdom/textures/sm_rounded_corners_simple Copy.tga differ diff --git a/indra/newview/skins/wisdom/textures/spin_down_in_blue.tga b/indra/newview/skins/wisdom/textures/spin_down_in_blue.tga new file mode 100644 index 000000000..9095840ce Binary files /dev/null and b/indra/newview/skins/wisdom/textures/spin_down_in_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/spin_down_out_blue.tga b/indra/newview/skins/wisdom/textures/spin_down_out_blue.tga new file mode 100644 index 000000000..d1e04f15e Binary files /dev/null and b/indra/newview/skins/wisdom/textures/spin_down_out_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/spin_up_in_blue.tga b/indra/newview/skins/wisdom/textures/spin_up_in_blue.tga new file mode 100644 index 000000000..6d7712fba Binary files /dev/null and b/indra/newview/skins/wisdom/textures/spin_up_in_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/spin_up_out_blue.tga b/indra/newview/skins/wisdom/textures/spin_up_out_blue.tga new file mode 100644 index 000000000..ee2c144e3 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/spin_up_out_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/square_btn_32x128.tga b/indra/newview/skins/wisdom/textures/square_btn_32x128.tga new file mode 100644 index 000000000..0c36351d2 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/square_btn_32x128.tga differ diff --git a/indra/newview/skins/wisdom/textures/square_btn_selected_32x128.tga b/indra/newview/skins/wisdom/textures/square_btn_selected_32x128.tga new file mode 100644 index 000000000..ebf0b0a19 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/square_btn_selected_32x128.tga differ diff --git a/indra/newview/skins/wisdom/textures/startup_logo.bmp b/indra/newview/skins/wisdom/textures/startup_logo.bmp new file mode 100644 index 000000000..91294040d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/startup_logo.bmp differ diff --git a/indra/newview/skins/wisdom/textures/status_buy_currency.tga b/indra/newview/skins/wisdom/textures/status_buy_currency.tga new file mode 100644 index 000000000..569e0fb76 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/status_buy_currency.tga differ diff --git a/indra/newview/skins/wisdom/textures/status_buy_currency_pressed.tga b/indra/newview/skins/wisdom/textures/status_buy_currency_pressed.tga new file mode 100644 index 000000000..9a326639a Binary files /dev/null and b/indra/newview/skins/wisdom/textures/status_buy_currency_pressed.tga differ diff --git a/indra/newview/skins/wisdom/textures/status_buy_land.tga b/indra/newview/skins/wisdom/textures/status_buy_land.tga new file mode 100644 index 000000000..74bc8938f Binary files /dev/null and b/indra/newview/skins/wisdom/textures/status_buy_land.tga differ diff --git a/indra/newview/skins/wisdom/textures/status_buy_land_pressed.tga b/indra/newview/skins/wisdom/textures/status_buy_land_pressed.tga new file mode 100644 index 000000000..a042bcfd4 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/status_buy_land_pressed.tga differ diff --git a/indra/newview/skins/wisdom/textures/status_health.tga b/indra/newview/skins/wisdom/textures/status_health.tga new file mode 100644 index 000000000..9dd574fe5 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/status_health.tga differ diff --git a/indra/newview/skins/wisdom/textures/status_no_push.tga b/indra/newview/skins/wisdom/textures/status_no_push.tga new file mode 100644 index 000000000..343b8a53e Binary files /dev/null and b/indra/newview/skins/wisdom/textures/status_no_push.tga differ diff --git a/indra/newview/skins/wisdom/textures/status_no_scripts.tga b/indra/newview/skins/wisdom/textures/status_no_scripts.tga new file mode 100644 index 000000000..62d377f3c Binary files /dev/null and b/indra/newview/skins/wisdom/textures/status_no_scripts.tga differ diff --git a/indra/newview/skins/wisdom/textures/status_script_debug.tga b/indra/newview/skins/wisdom/textures/status_script_debug.tga new file mode 100644 index 000000000..5ed5b7168 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/status_script_debug.tga differ diff --git a/indra/newview/skins/wisdom/textures/status_search.tga b/indra/newview/skins/wisdom/textures/status_search.tga new file mode 100644 index 000000000..81dab904b Binary files /dev/null and b/indra/newview/skins/wisdom/textures/status_search.tga differ diff --git a/indra/newview/skins/wisdom/textures/status_search_btn.png b/indra/newview/skins/wisdom/textures/status_search_btn.png new file mode 100644 index 000000000..a954ccf0d Binary files /dev/null and b/indra/newview/skins/wisdom/textures/status_search_btn.png differ diff --git a/indra/newview/skins/wisdom/textures/status_search_btn_pressed.png b/indra/newview/skins/wisdom/textures/status_search_btn_pressed.png new file mode 100644 index 000000000..df174bcd9 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/status_search_btn_pressed.png differ diff --git a/indra/newview/skins/wisdom/textures/status_voice.tga b/indra/newview/skins/wisdom/textures/status_voice.tga new file mode 100644 index 000000000..4ab4498cb Binary files /dev/null and b/indra/newview/skins/wisdom/textures/status_voice.tga differ diff --git a/indra/newview/skins/wisdom/textures/tab_bottom_blue.tga b/indra/newview/skins/wisdom/textures/tab_bottom_blue.tga new file mode 100644 index 000000000..0158c7981 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/tab_bottom_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/tab_bottom_selected_blue.tga b/indra/newview/skins/wisdom/textures/tab_bottom_selected_blue.tga new file mode 100644 index 000000000..62148f8ea Binary files /dev/null and b/indra/newview/skins/wisdom/textures/tab_bottom_selected_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/tab_left.tga b/indra/newview/skins/wisdom/textures/tab_left.tga new file mode 100644 index 000000000..b678e8a8a Binary files /dev/null and b/indra/newview/skins/wisdom/textures/tab_left.tga differ diff --git a/indra/newview/skins/wisdom/textures/tab_left_selected.tga b/indra/newview/skins/wisdom/textures/tab_left_selected.tga new file mode 100644 index 000000000..b678e8a8a Binary files /dev/null and b/indra/newview/skins/wisdom/textures/tab_left_selected.tga differ diff --git a/indra/newview/skins/wisdom/textures/tab_top_blue.tga b/indra/newview/skins/wisdom/textures/tab_top_blue.tga new file mode 100644 index 000000000..cd1f436aa Binary files /dev/null and b/indra/newview/skins/wisdom/textures/tab_top_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/tab_top_selected_blue.tga b/indra/newview/skins/wisdom/textures/tab_top_selected_blue.tga new file mode 100644 index 000000000..fb949bc8e Binary files /dev/null and b/indra/newview/skins/wisdom/textures/tab_top_selected_blue.tga differ diff --git a/indra/newview/skins/wisdom/textures/textures.xml b/indra/newview/skins/wisdom/textures/textures.xml new file mode 100644 index 000000000..34c9dea7e --- /dev/null +++ b/indra/newview/skins/wisdom/textures/textures.xml @@ -0,0 +1,376 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/wisdom/textures/tool_dozer.tga b/indra/newview/skins/wisdom/textures/tool_dozer.tga new file mode 100644 index 000000000..4665a888c Binary files /dev/null and b/indra/newview/skins/wisdom/textures/tool_dozer.tga differ diff --git a/indra/newview/skins/wisdom/textures/tool_dozer_active.tga b/indra/newview/skins/wisdom/textures/tool_dozer_active.tga new file mode 100644 index 000000000..336408710 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/tool_dozer_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/tool_zoom.tga b/indra/newview/skins/wisdom/textures/tool_zoom.tga new file mode 100644 index 000000000..497538e34 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/tool_zoom.tga differ diff --git a/indra/newview/skins/wisdom/textures/tool_zoom_active.tga b/indra/newview/skins/wisdom/textures/tool_zoom_active.tga new file mode 100644 index 000000000..6236ebb6b Binary files /dev/null and b/indra/newview/skins/wisdom/textures/tool_zoom_active.tga differ diff --git a/indra/newview/skins/wisdom/textures/toolbar_bg.tga b/indra/newview/skins/wisdom/textures/toolbar_bg.tga new file mode 100644 index 000000000..bb4615861 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/toolbar_bg.tga differ diff --git a/indra/newview/skins/wisdom/textures/toolbar_btn_disabled.tga b/indra/newview/skins/wisdom/textures/toolbar_btn_disabled.tga new file mode 100644 index 000000000..46ed53ff9 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/toolbar_btn_disabled.tga differ diff --git a/indra/newview/skins/wisdom/textures/toolbar_btn_enabled.tga b/indra/newview/skins/wisdom/textures/toolbar_btn_enabled.tga new file mode 100644 index 000000000..6668ac068 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/toolbar_btn_enabled.tga differ diff --git a/indra/newview/skins/wisdom/textures/toolbar_btn_selected.tga b/indra/newview/skins/wisdom/textures/toolbar_btn_selected.tga new file mode 100644 index 000000000..70fe5c383 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/toolbar_btn_selected.tga differ diff --git a/indra/newview/skins/wisdom/textures/toolbar_tab.tga b/indra/newview/skins/wisdom/textures/toolbar_tab.tga new file mode 100644 index 000000000..6a0876493 Binary files /dev/null and b/indra/newview/skins/wisdom/textures/toolbar_tab.tga differ