From 1231acac77f2811a94f9bc83e38abb8ed85468b3 Mon Sep 17 00:00:00 2001 From: Kevin Smith Date: Sun, 28 Jun 2009 10:41:38 +0100 Subject: Moving resources into Swift/ and starting on Sound. diff --git a/Swift/Controllers/EventController.cpp b/Swift/Controllers/EventController.cpp index 9b143dd..5141cc1 100644 --- a/Swift/Controllers/EventController.cpp +++ b/Swift/Controllers/EventController.cpp @@ -10,6 +10,7 @@ void EventController::handleIncomingEvent(boost::shared_ptr event) events_.push_back(event); event->onRead.connect(boost::bind(&EventController::handleEventRead, this, event)); onEventQueueLengthChange(events_.size()); + onEventQueueEventAdded(event); } } diff --git a/Swift/Controllers/EventController.h b/Swift/Controllers/EventController.h index ab161af..c5c924b 100644 --- a/Swift/Controllers/EventController.h +++ b/Swift/Controllers/EventController.h @@ -13,6 +13,7 @@ namespace Swift { public: void handleIncomingEvent(boost::shared_ptr event); boost::signal onEventQueueLengthChange; + boost::signal)> onEventQueueEventAdded; private: void handleEventRead(boost::shared_ptr event); diff --git a/Swift/Controllers/MainController.cpp b/Swift/Controllers/MainController.cpp index 63b55af..1af689c 100644 --- a/Swift/Controllers/MainController.cpp +++ b/Swift/Controllers/MainController.cpp @@ -17,6 +17,8 @@ #include "Swift/Controllers/MUCController.h" #include "Swift/Controllers/NickResolver.h" #include "Swift/Controllers/RosterController.h" +#include "Swift/Controllers/SoundEventController.h" +#include "Swift/Controllers/SoundPlayer.h" #include "Swift/Controllers/SystemTray.h" #include "Swift/Controllers/SystemTrayController.h" #include "Swift/Controllers/XMPPRosterController.h" @@ -57,7 +59,7 @@ static const String CLIENT_NODE = "http://swift.im"; typedef std::pair JIDChatControllerPair; typedef std::pair JIDMUCControllerPair; -MainController::MainController(ChatWindowFactory* chatWindowFactory, MainWindowFactory *mainWindowFactory, LoginWindowFactory *loginWindowFactory, TreeWidgetFactory *treeWidgetFactory, SettingsProvider *settings, Application* application, SystemTray* systemTray) +MainController::MainController(ChatWindowFactory* chatWindowFactory, MainWindowFactory *mainWindowFactory, LoginWindowFactory *loginWindowFactory, TreeWidgetFactory *treeWidgetFactory, SettingsProvider *settings, Application* application, SystemTray* systemTray, SoundPlayer* soundPlayer) : client_(NULL), chatWindowFactory_(chatWindowFactory), mainWindowFactory_(mainWindowFactory), loginWindowFactory_(loginWindowFactory), treeWidgetFactory_(treeWidgetFactory), settings_(settings), xmppRosterController_(NULL), rosterController_(NULL), loginWindow_(NULL), clientVersionResponder_(NULL), nickResolver_(NULL), discoResponder_(NULL), serverDiscoInfo_(new DiscoInfo()), presenceOracle_(NULL), avatarManager_(NULL) { @@ -68,6 +70,7 @@ MainController::MainController(ChatWindowFactory* chatWindowFactory, MainWindowF eventController_ = new EventController(); eventController_->onEventQueueLengthChange.connect(boost::bind(&MainController::handleEventQueueLengthChange, this, _1)); systemTrayController_ = new SystemTrayController(eventController_, systemTray); + soundEventController_ = new SoundEventController(eventController_, soundPlayer); loginWindow_ = loginWindowFactory_->createLoginWindow(settings->getStringSetting("jid"), settings->getStringSetting("pass"), settings->getStringSetting("certificate")); loginWindow_->onLoginRequest.connect(boost::bind(&MainController::handleLoginRequest, this, _1, _2, _3, _4)); } @@ -88,6 +91,7 @@ MainController::~MainController() { delete nickResolver_; delete client_; delete systemTrayController_; + delete soundEventController_; delete avatarStorage_; } diff --git a/Swift/Controllers/MainController.h b/Swift/Controllers/MainController.h index 2b7c8b0..1fd7c4c 100644 --- a/Swift/Controllers/MainController.h +++ b/Swift/Controllers/MainController.h @@ -40,10 +40,12 @@ namespace Swift { class PresenceOracle; class SystemTray; class SystemTrayController; + class SoundEventController; + class SoundPlayer; class MainController : public MUCRegistry { public: - MainController(ChatWindowFactory* chatWindowFactory, MainWindowFactory *mainWindowFactory, LoginWindowFactory *loginWindowFactory, TreeWidgetFactory* treeWidgetFactory, SettingsProvider *settings, Application* application, SystemTray* systemTray); + MainController(ChatWindowFactory* chatWindowFactory, MainWindowFactory *mainWindowFactory, LoginWindowFactory *loginWindowFactory, TreeWidgetFactory* treeWidgetFactory, SettingsProvider *settings, Application* application, SystemTray* systemTray, SoundPlayer* soundPlayer); ~MainController(); @@ -90,6 +92,7 @@ namespace Swift { JID jid_; PresenceOracle* presenceOracle_; SystemTrayController* systemTrayController_; + SoundEventController* soundEventController_; AvatarManager* avatarManager_; boost::shared_ptr lastSentPresence_; String vCardPhotoHash_; diff --git a/Swift/Controllers/Makefile.inc b/Swift/Controllers/Makefile.inc index 5e30a63..4c69e34 100644 --- a/Swift/Controllers/Makefile.inc +++ b/Swift/Controllers/Makefile.inc @@ -7,6 +7,7 @@ SWIFT_CONTROLLERS_SOURCES += \ Swift/Controllers/XMPPRosterController.cpp \ Swift/Controllers/MUCController.cpp \ Swift/Controllers/EventController.cpp \ + Swift/Controllers/SoundEventController.cpp \ Swift/Controllers/SystemTrayController.cpp include Swift/Controllers/UnitTest/Makefile.inc diff --git a/Swift/Controllers/SoundEventController.cpp b/Swift/Controllers/SoundEventController.cpp new file mode 100644 index 0000000..46d6ddb --- /dev/null +++ b/Swift/Controllers/SoundEventController.cpp @@ -0,0 +1,21 @@ +#include "Swift/Controllers/SoundEventController.h" + +#include + +#include "Swift/Controllers/EventController.h" +#include "Swift/Controllers/SoundPlayer.h" + +namespace Swift { + +SoundEventController::SoundEventController(EventController* eventController, SoundPlayer* soundPlayer) { + eventController_ = eventController; + soundPlayer_ = soundPlayer; + eventController_->onEventQueueEventAdded.connect(boost::bind(&SoundEventController::handleEventQueueEventAdded, this, _1)); +} + +void SoundEventController::handleEventQueueEventAdded(boost::shared_ptr event) { + soundPlayer_->playSound(SoundPlayer::MessageReceived); +} + + +} diff --git a/Swift/Controllers/SoundEventController.h b/Swift/Controllers/SoundEventController.h new file mode 100644 index 0000000..8da057d --- /dev/null +++ b/Swift/Controllers/SoundEventController.h @@ -0,0 +1,18 @@ +#pragma once + +#include + +#include "Swiften/Events/MessageEvent.h" + +namespace Swift { + class EventController; + class SoundPlayer; + class SoundEventController { + public: + SoundEventController(EventController* eventController, SoundPlayer* soundPlayer); + private: + void handleEventQueueEventAdded(boost::shared_ptr event); + EventController* eventController_; + SoundPlayer* soundPlayer_; + }; +} diff --git a/Swift/Controllers/SoundPlayer.h b/Swift/Controllers/SoundPlayer.h new file mode 100644 index 0000000..b411f24 --- /dev/null +++ b/Swift/Controllers/SoundPlayer.h @@ -0,0 +1,10 @@ +#pragma once + +namespace Swift { + class SoundPlayer { + public: + virtual ~SoundPlayer() {}; + enum SoundEffect{MessageReceived}; + virtual void playSound(SoundEffect sound) = 0; + }; +} diff --git a/Swift/QtUI/Makefile.inc b/Swift/QtUI/Makefile.inc index 8b0ab30..3ec32d7 100644 --- a/Swift/QtUI/Makefile.inc +++ b/Swift/QtUI/Makefile.inc @@ -25,4 +25,4 @@ Swift/QtUI/Swiften.pri: cd Swift/QtUI && ./qmakeish.py ../../Makefile > Swiften.pri Swift/QtUI/DefaultTheme.qrc: - cd Swift/QtUI && ../../tools/ThemeQRC.py ../../resources/themes/Default > DefaultTheme.qrc + cd Swift/QtUI && ../../tools/ThemeQRC.py ../resources/themes/Default > DefaultTheme.qrc diff --git a/Swift/QtUI/QtSoundPlayer.cpp b/Swift/QtUI/QtSoundPlayer.cpp new file mode 100644 index 0000000..937d077 --- /dev/null +++ b/Swift/QtUI/QtSoundPlayer.cpp @@ -0,0 +1,29 @@ +#include "QtSoundPlayer.h" + +#include +#include + +namespace Swift{ + +QtSoundPlayer::QtSoundPlayer() { + audioOutput_ = new Phonon::AudioOutput(Phonon::NotificationCategory); + + messageReceived_ = new Phonon::MediaObject(); + messageReceived_->setCurrentSource(Phonon::MediaSource(":/sounds/messageReceived.wav")); + Phonon::Path path = Phonon::createPath(messageReceived_, audioOutput_); +} + +QtSoundPlayer::~QtSoundPlayer() { + delete messageReceived_; + delete audioOutput_; +} + +void QtSoundPlayer::playSound(SoundEffect sound) { + switch (sound) { + case MessageReceived: + messageReceived_->play(); + break; + } +} + +} \ No newline at end of file diff --git a/Swift/QtUI/QtSoundPlayer.h b/Swift/QtUI/QtSoundPlayer.h new file mode 100644 index 0000000..e0ccf18 --- /dev/null +++ b/Swift/QtUI/QtSoundPlayer.h @@ -0,0 +1,21 @@ +#pragma once + +#include "Swift/Controllers/SoundPlayer.h" + + +namespace Phonon { + class AudioOutput; + class MediaObject; +} + +namespace Swift { + class QtSoundPlayer : public SoundPlayer{ + public: + QtSoundPlayer(); + ~QtSoundPlayer(); + void playSound(SoundEffect sound); + private: + Phonon::AudioOutput* audioOutput_; + Phonon::MediaObject* messageReceived_; + }; +} diff --git a/Swift/QtUI/QtSwift.cpp b/Swift/QtUI/QtSwift.cpp index caa3624..e1fac9c 100644 --- a/Swift/QtUI/QtSwift.cpp +++ b/Swift/QtUI/QtSwift.cpp @@ -5,6 +5,7 @@ #include "QtMainWindowFactory.h" #include "QtTreeWidgetFactory.h" #include "QtSystemTray.h" +#include "QtSoundPlayer.h" #include #include @@ -30,6 +31,7 @@ QtSwift::QtSwift(bool netbookMode) { rosterWindowFactory_ = new QtMainWindowFactory(treeWidgetFactory_); chatWindowFactory_ = new QtChatWindowFactory(treeWidgetFactory_, splitter_); systemTray_ = new QtSystemTray(); + soundPlayer_ = new QtSoundPlayer(); QCoreApplication::setApplicationName("Swift"); QCoreApplication::setOrganizationName("Swift"); QCoreApplication::setOrganizationDomain("swift.im"); @@ -38,7 +40,7 @@ QtSwift::QtSwift(bool netbookMode) { if (splitter_) { splitter_->show(); } - mainController_ = new MainController(chatWindowFactory_, rosterWindowFactory_, loginWindowFactory_, treeWidgetFactory_, settings_, application_, systemTray_); + mainController_ = new MainController(chatWindowFactory_, rosterWindowFactory_, loginWindowFactory_, treeWidgetFactory_, settings_, application_, systemTray_, soundPlayer_); } QtSwift::~QtSwift() { @@ -51,6 +53,7 @@ QtSwift::~QtSwift() { delete application_; delete systemTray_; delete splitter_; + delete soundPlayer_; } } diff --git a/Swift/QtUI/QtSwift.h b/Swift/QtUI/QtSwift.h index a9b8efb..223316e 100644 --- a/Swift/QtUI/QtSwift.h +++ b/Swift/QtUI/QtSwift.h @@ -18,6 +18,7 @@ namespace Swift { class QtLoginWindowFactory; class QtTreeWidgetFactory; class QtSystemTray; + class QtSoundPlayer; class QtSwift : public QObject { Q_OBJECT @@ -34,6 +35,7 @@ namespace Swift { QtSettingsProvider *settings_; QtSystemTray* systemTray_; QSplitter* splitter_; + QtSoundPlayer* soundPlayer_; Application* application_; }; } diff --git a/Swift/QtUI/Swift.pro b/Swift/QtUI/Swift.pro index e9579d6..5b9ea72 100644 --- a/Swift/QtUI/Swift.pro +++ b/Swift/QtUI/Swift.pro @@ -1,5 +1,5 @@ TEMPLATE = app -QT += webkit +QT += webkit phonon CONFIG += debug unix:!mac { TARGET = swift @@ -34,10 +34,10 @@ win32 { # Resources win32 { - RC_FILE = ../../resources/Windows/Swift.rc + RC_FILE = ../resources/Windows/Swift.rc } mac { - ICON = ../../resources/MacOSX/Swift.icns + ICON = ../resources/MacOSX/Swift.icns } DEFINES += BOOST_SIGNALS_NAMESPACE=bsignals BOOST_ALL_NO_LIB @@ -59,6 +59,7 @@ HEADERS += \ QtTreeWidgetItem.h \ QtChatView.h \ QtChatTabs.h \ + QtSoundPlayer.h \ QtSystemTray.h \ QtTabbable.h \ ChatSnippet.h \ @@ -80,6 +81,7 @@ SOURCES += \ QtTreeWidget.cpp \ QtChatView.cpp \ QtChatTabs.cpp \ + QtSoundPlayer.cpp \ QtSystemTray.cpp \ ChatSnippet.cpp \ MessageSnippet.cpp \ @@ -91,6 +93,6 @@ RESOURCES += Swift.qrc DefaultTheme.qrc win32 { DefaultThemeQRC.target = DefaultTheme.qrc - DefaultThemeQRC.commands = ..\..\tools\ThemeQRC.py ../../resources/themes/Default > DefaultTheme.qrc + DefaultThemeQRC.commands = ..\..\tools\ThemeQRC.py ../resources/themes/Default > DefaultTheme.qrc QMAKE_EXTRA_TARGETS = DefaultThemeQRC } diff --git a/Swift/QtUI/Swift.qrc b/Swift/QtUI/Swift.qrc index 4e3b9df..11794af 100644 --- a/Swift/QtUI/Swift.qrc +++ b/Swift/QtUI/Swift.qrc @@ -1,11 +1,12 @@ - ../../resources/logo/logo-shaded-text.256.png - ../../resources/icons/certificate.png - ../../resources/icons/error.png - ../../resources/icons/avatar.png - ../../resources/icons/tray-standard.png - ../../resources/icons/new-chat.png + ../resources/logo/logo-shaded-text.256.png + ../resources/icons/certificate.png + ../resources/icons/error.png + ../resources/icons/avatar.png + ../resources/icons/tray-standard.png + ../resources/icons/new-chat.png + ../resources/sounds/message-received.wav diff --git a/Swift/resources/MacOSX/Swift.icns b/Swift/resources/MacOSX/Swift.icns new file mode 100644 index 0000000..09227d0 Binary files /dev/null and b/Swift/resources/MacOSX/Swift.icns differ diff --git a/Swift/resources/Windows/Swift.ico b/Swift/resources/Windows/Swift.ico new file mode 100644 index 0000000..7b41da9 Binary files /dev/null and b/Swift/resources/Windows/Swift.ico differ diff --git a/Swift/resources/Windows/Swift.rc b/Swift/resources/Windows/Swift.rc new file mode 100644 index 0000000..9e96951 --- /dev/null +++ b/Swift/resources/Windows/Swift.rc @@ -0,0 +1 @@ +IDI_ICON1 ICON DISCARDABLE "Swift.ico" diff --git a/Swift/resources/icons/avatar.png b/Swift/resources/icons/avatar.png new file mode 100644 index 0000000..00374a6 Binary files /dev/null and b/Swift/resources/icons/avatar.png differ diff --git a/Swift/resources/icons/certificate.png b/Swift/resources/icons/certificate.png new file mode 100644 index 0000000..6111b8e Binary files /dev/null and b/Swift/resources/icons/certificate.png differ diff --git a/Swift/resources/icons/error.png b/Swift/resources/icons/error.png new file mode 100755 index 0000000..3d9eca3 Binary files /dev/null and b/Swift/resources/icons/error.png differ diff --git a/Swift/resources/icons/new-chat.png b/Swift/resources/icons/new-chat.png new file mode 100644 index 0000000..ca79895 Binary files /dev/null and b/Swift/resources/icons/new-chat.png differ diff --git a/Swift/resources/icons/tray-standard.png b/Swift/resources/icons/tray-standard.png new file mode 100644 index 0000000..00374a6 Binary files /dev/null and b/Swift/resources/icons/tray-standard.png differ diff --git a/Swift/resources/logo/coming-soon.svg b/Swift/resources/logo/coming-soon.svg new file mode 100644 index 0000000..ce242d3 --- /dev/null +++ b/Swift/resources/logo/coming-soon.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + Swift + Coming soon ... + + diff --git a/Swift/resources/logo/logo-icon-128.png b/Swift/resources/logo/logo-icon-128.png new file mode 100644 index 0000000..c6ac4d2 Binary files /dev/null and b/Swift/resources/logo/logo-icon-128.png differ diff --git a/Swift/resources/logo/logo-icon-512.png b/Swift/resources/logo/logo-icon-512.png new file mode 100644 index 0000000..b0ccb25 Binary files /dev/null and b/Swift/resources/logo/logo-icon-512.png differ diff --git a/Swift/resources/logo/logo-icon-64.png b/Swift/resources/logo/logo-icon-64.png new file mode 100644 index 0000000..4180575 Binary files /dev/null and b/Swift/resources/logo/logo-icon-64.png differ diff --git a/Swift/resources/logo/logo-icon.svg b/Swift/resources/logo/logo-icon.svg new file mode 100644 index 0000000..63f1035 --- /dev/null +++ b/Swift/resources/logo/logo-icon.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/Swift/resources/logo/logo-original.svg b/Swift/resources/logo/logo-original.svg new file mode 100644 index 0000000..75472a8 --- /dev/null +++ b/Swift/resources/logo/logo-original.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/Swift/resources/logo/logo-shaded-text.256.png b/Swift/resources/logo/logo-shaded-text.256.png new file mode 100644 index 0000000..5605ad0 Binary files /dev/null and b/Swift/resources/logo/logo-shaded-text.256.png differ diff --git a/Swift/resources/logo/logo-shaded-text.svg b/Swift/resources/logo/logo-shaded-text.svg new file mode 100644 index 0000000..68192e9 --- /dev/null +++ b/Swift/resources/logo/logo-shaded-text.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + Swift + + diff --git a/Swift/resources/logo/logo.svg b/Swift/resources/logo/logo.svg new file mode 100644 index 0000000..c0576e6 --- /dev/null +++ b/Swift/resources/logo/logo.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/Swift/resources/sounds/message-received.wav b/Swift/resources/sounds/message-received.wav new file mode 100644 index 0000000..7877ba1 Binary files /dev/null and b/Swift/resources/sounds/message-received.wav differ diff --git a/Swift/resources/themes/Default/Demo.html b/Swift/resources/themes/Default/Demo.html new file mode 100755 index 0000000..6078ad1 --- /dev/null +++ b/Swift/resources/themes/Default/Demo.html @@ -0,0 +1,91 @@ + + + + + + + + + + + +
+
+ + + + +
+ %sender% +
+
+ + + + + + + + + + + + + +
+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. +
Torrey @ 4:55 am
+
+
+ testing 1 +
%sender% @ %time%
+
+
+
+ testing 123 +
%sender% @ %time%
+
+
+
+ testing 123testing 123testing 123testing 123 + testing 123testing 123 +
%sender% @ %time%
+
+
+
+
+
+ +
+ + + + +
+ %sender% +
+
+ + + + + + + + + + + + + +
+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas aliquam sapien. Aliquam sed erat eu leo bibendum egestas. Praesent mauris. Quisque eget eros et neque scelerisque convallis. Phasellus orci. Pellentesque interdum tellus a erat. venenatis tristique. +
Torrey @ 4:55 am
+
+
+
+
+ +
+ + \ No newline at end of file diff --git a/Swift/resources/themes/Default/Header.html b/Swift/resources/themes/Default/Header.html new file mode 100755 index 0000000..b97bbb3 --- /dev/null +++ b/Swift/resources/themes/Default/Header.html @@ -0,0 +1,5 @@ +
+
+
%chatName%
+
Conversation began %timeOpened%
+
\ No newline at end of file diff --git a/Swift/resources/themes/Default/Incoming/Content.html b/Swift/resources/themes/Default/Incoming/Content.html new file mode 100755 index 0000000..2946716 --- /dev/null +++ b/Swift/resources/themes/Default/Incoming/Content.html @@ -0,0 +1,30 @@ +
+ + + + +
+ +
+
+ + + + + + + + + + + + + +
+ %message% +
%sender% @ %time%
+ +
+
+
+
diff --git a/Swift/resources/themes/Default/Incoming/Context.html b/Swift/resources/themes/Default/Incoming/Context.html new file mode 100755 index 0000000..b1aca27 --- /dev/null +++ b/Swift/resources/themes/Default/Incoming/Context.html @@ -0,0 +1,30 @@ +
+ + + + +
+ +
+
+ + + + + + + + + + + + + +
+ %message% +
%sender% @ %time%
+ +
+
+
+
diff --git a/Swift/resources/themes/Default/Incoming/NextContent.html b/Swift/resources/themes/Default/Incoming/NextContent.html new file mode 100755 index 0000000..4aec8ab --- /dev/null +++ b/Swift/resources/themes/Default/Incoming/NextContent.html @@ -0,0 +1,10 @@ +
+
+
+ + %message% +
%time%
+
+ +
+ diff --git a/Swift/resources/themes/Default/Incoming/NextContext.html b/Swift/resources/themes/Default/Incoming/NextContext.html new file mode 100755 index 0000000..18b8dc4 --- /dev/null +++ b/Swift/resources/themes/Default/Incoming/NextContext.html @@ -0,0 +1,7 @@ +
+
+ + %message% +
%time%
+
+ diff --git a/Swift/resources/themes/Default/Incoming/buddy_icon.png b/Swift/resources/themes/Default/Incoming/buddy_icon.png new file mode 100644 index 0000000..1d9f5f3 Binary files /dev/null and b/Swift/resources/themes/Default/Incoming/buddy_icon.png differ diff --git a/Swift/resources/themes/Default/LICENSE.txt b/Swift/resources/themes/Default/LICENSE.txt new file mode 100644 index 0000000..2eee1ee --- /dev/null +++ b/Swift/resources/themes/Default/LICENSE.txt @@ -0,0 +1,15 @@ +The images, css and html is dual licensed under the BSD and AFL license. +The source files for the bubbles can be found at http://www.itorrey.com/adiumx/ + +The fading javascript is not covered in this license. The code is fadomatic and is covered under its own license as set by its author. + +BSD LICENSE +Copyright (c) 2007, Torrey Rice/Renkoo℠ All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the Torrey Rice and Renkoo nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Renkoo is a service mark of Renkoo, Inc. + +http://www.opensource.org/licenses/bsd-license.php + + + +# Larry Rosen has ceased to use or recommend any version # of the Academic Free License below version 2.1 The Academic Free License v. 2.1 This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: Licensed under the Academic Free License version 2.1 1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following: a) to reproduce the Original Work in copies; b) to prepare derivative works ("Derivative Works") based upon the Original Work; c) to distribute copies of the Original Work and Derivative Works to the public; d) to perform the Original Work publicly; and e) to display the Original Work publicly. 2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works. 3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work. 4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license. 5) This section intentionally omitted. 6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. 7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer. 8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. 9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. 10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. 11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. Å0á0°Ï 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License. 12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. 13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. 14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. 15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner. \ No newline at end of file diff --git a/Swift/resources/themes/Default/Outgoing/Content.html b/Swift/resources/themes/Default/Outgoing/Content.html new file mode 100755 index 0000000..beb57f0 --- /dev/null +++ b/Swift/resources/themes/Default/Outgoing/Content.html @@ -0,0 +1,30 @@ +
+ + + + +
+ +
+
+ + + + + + + + + + + + + +
+ %message% +
%sender% @ %time%
+ +
+
+
+
diff --git a/Swift/resources/themes/Default/Outgoing/Context.html b/Swift/resources/themes/Default/Outgoing/Context.html new file mode 100755 index 0000000..7822cac --- /dev/null +++ b/Swift/resources/themes/Default/Outgoing/Context.html @@ -0,0 +1,31 @@ +
+ + + + +
+ +
+
+ + + + + + + + + + + + + +
+ + %message% +
%sender% @ %time%
+ +
+
+
+
diff --git a/Swift/resources/themes/Default/Outgoing/NextContent.html b/Swift/resources/themes/Default/Outgoing/NextContent.html new file mode 100755 index 0000000..4367197 --- /dev/null +++ b/Swift/resources/themes/Default/Outgoing/NextContent.html @@ -0,0 +1,9 @@ +
+
+
+ %message% +
%time%
+
+ +
+ diff --git a/Swift/resources/themes/Default/Outgoing/NextContext.html b/Swift/resources/themes/Default/Outgoing/NextContext.html new file mode 100755 index 0000000..1f84771 --- /dev/null +++ b/Swift/resources/themes/Default/Outgoing/NextContext.html @@ -0,0 +1,6 @@ +
+
+ %message% +
%time%
+
+ diff --git a/Swift/resources/themes/Default/Outgoing/buddy_icon.png b/Swift/resources/themes/Default/Outgoing/buddy_icon.png new file mode 100644 index 0000000..1d9f5f3 Binary files /dev/null and b/Swift/resources/themes/Default/Outgoing/buddy_icon.png differ diff --git a/Swift/resources/themes/Default/Status.html b/Swift/resources/themes/Default/Status.html new file mode 100755 index 0000000..b8168e8 --- /dev/null +++ b/Swift/resources/themes/Default/Status.html @@ -0,0 +1,27 @@ +
+ + + + +
+
+ + + + + + + + + + + + + +
+ %message% +
%time%
+
+
+
+
diff --git a/Swift/resources/themes/Default/Template.html b/Swift/resources/themes/Default/Template.html new file mode 100755 index 0000000..15f208c --- /dev/null +++ b/Swift/resources/themes/Default/Template.html @@ -0,0 +1,366 @@ + + + + + + + + + + + + + +%@ +
+
+%@ +
+ + diff --git a/Swift/resources/themes/Default/Variants/Blue on Green Alternating.css b/Swift/resources/themes/Default/Variants/Blue on Green Alternating.css new file mode 100644 index 0000000..5b910eb --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Green Alternating.css @@ -0,0 +1,7 @@ +@import url("Blue on Green.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/blueIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Blue on Green No Names Alt.css b/Swift/resources/themes/Default/Variants/Blue on Green No Names Alt.css new file mode 100644 index 0000000..ebad314 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Green No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Blue on Green Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Blue on Green No Names.css b/Swift/resources/themes/Default/Variants/Blue on Green No Names.css new file mode 100644 index 0000000..2a0902c --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Green No Names.css @@ -0,0 +1,2 @@ +@import url("Blue on Green.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Blue on Green.css b/Swift/resources/themes/Default/Variants/Blue on Green.css new file mode 100644 index 0000000..361c8c6 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Green.css @@ -0,0 +1,90 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#7fc5f8; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/blueIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/blueCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/blueCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/blueCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/blueBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/blueBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/blueCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/blueCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#ddf0fe; + border-bottom:1px solid #fff; +} + +/*incoming */ + +.incomingItem .myBubble .indicator { + background:url("../images/greenIndicator.png") no-repeat top left; +} + +.incomingItem .timeStamp { + color:#9ecf35; +} + +.incomingItem .tableBubble .tl { + background:url("../images/greenCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/greenCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/greenCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/greenBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/greenBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/greenCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/greenCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#e2efc4; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Blue on Red Alternating.css b/Swift/resources/themes/Default/Variants/Blue on Red Alternating.css new file mode 100644 index 0000000..5481c10 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Red Alternating.css @@ -0,0 +1,7 @@ +@import url("Blue on Red.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/blueIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Blue on Red No Names Alt.css b/Swift/resources/themes/Default/Variants/Blue on Red No Names Alt.css new file mode 100644 index 0000000..9818a6c --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Red No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Blue on Red Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Blue on Red No Names.css b/Swift/resources/themes/Default/Variants/Blue on Red No Names.css new file mode 100644 index 0000000..3ac8c9a --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Red No Names.css @@ -0,0 +1,2 @@ +@import url("Blue on Red.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Blue on Red.css b/Swift/resources/themes/Default/Variants/Blue on Red.css new file mode 100644 index 0000000..0717920 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Red.css @@ -0,0 +1,89 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#7fc5f8; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/blueIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/blueCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/blueCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/blueCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/blueBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/blueBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/blueCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/blueCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#ddf0fe; + border-bottom:1px solid #fff; +} + + +/*incoming */ + +.incomingItem .timeStamp { + color:#f88f8f; +} + +.incomingItem .myBubble .indicator { + background:url("../images/redIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/redCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/redCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/redCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/redBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/redBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/redCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/redCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#ffdada; + border-bottom:1px solid #fff; +} diff --git a/Swift/resources/themes/Default/Variants/Blue on Steel Alternating.css b/Swift/resources/themes/Default/Variants/Blue on Steel Alternating.css new file mode 100644 index 0000000..8473d1f --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Steel Alternating.css @@ -0,0 +1,7 @@ +@import url("Blue on Steel.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/blueIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Blue on Steel No Names Alt.css b/Swift/resources/themes/Default/Variants/Blue on Steel No Names Alt.css new file mode 100644 index 0000000..1925d5c --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Steel No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Blue on Steel Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Blue on Steel No Names.css b/Swift/resources/themes/Default/Variants/Blue on Steel No Names.css new file mode 100644 index 0000000..573aa58 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Steel No Names.css @@ -0,0 +1,2 @@ +@import url("Blue on Steel.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Blue on Steel.css b/Swift/resources/themes/Default/Variants/Blue on Steel.css new file mode 100644 index 0000000..48ab03d --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Steel.css @@ -0,0 +1,91 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#7fc5f8; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/blueIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/blueCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/blueCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/blueCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/blueBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/blueBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/blueCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/blueCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#ddf0fe; + border-bottom:1px solid #fff; +} + + +/*incoming */ + +.incomingItem .timeStamp { + color:#a9a9a9; +} + +.incomingItem .myBubble .indicator { + background:url("../images/steelIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/steelCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/steelCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/steelCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/steelBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/steelBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/steelCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/steelCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#ececec; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Blue on Yellow Alternating.css b/Swift/resources/themes/Default/Variants/Blue on Yellow Alternating.css new file mode 100644 index 0000000..d7927fc --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Yellow Alternating.css @@ -0,0 +1,7 @@ +@import url("Blue on Yellow.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/blueIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Blue on Yellow No Names Alt.css b/Swift/resources/themes/Default/Variants/Blue on Yellow No Names Alt.css new file mode 100644 index 0000000..38d374d --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Yellow No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Blue on Yellow Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Blue on Yellow No Names.css b/Swift/resources/themes/Default/Variants/Blue on Yellow No Names.css new file mode 100644 index 0000000..3fdc8cd --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Yellow No Names.css @@ -0,0 +1,2 @@ +@import url("Blue on Yellow.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Blue on Yellow.css b/Swift/resources/themes/Default/Variants/Blue on Yellow.css new file mode 100644 index 0000000..b019b0b --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Blue on Yellow.css @@ -0,0 +1,91 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#7fc5f8; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/blueIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/blueCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/blueCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/blueCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/blueBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/blueBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/blueCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/blueCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#ddf0fe; + border-bottom:1px solid #fff; +} + + +/*incoming */ + +.incomingItem .timeStamp { + color:#bdb410; +} + +.incomingItem .myBubble .indicator { + background:url("../images/yellowIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/yellowCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/yellowCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/yellowCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/yellowBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/yellowBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/yellowCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/yellowCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#f4f0a7; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Green on Blue Alternating.css b/Swift/resources/themes/Default/Variants/Green on Blue Alternating.css new file mode 100644 index 0000000..272c0d0 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Blue Alternating.css @@ -0,0 +1,7 @@ +@import url("Green on Blue.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/greenIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Green on Blue No Names Alt.css b/Swift/resources/themes/Default/Variants/Green on Blue No Names Alt.css new file mode 100644 index 0000000..973f91a --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Blue No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Green on Blue Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Green on Blue No Names.css b/Swift/resources/themes/Default/Variants/Green on Blue No Names.css new file mode 100644 index 0000000..0d92eb0 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Blue No Names.css @@ -0,0 +1,2 @@ +@import url("Green on Blue.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Green on Blue.css b/Swift/resources/themes/Default/Variants/Green on Blue.css new file mode 100644 index 0000000..7185f4f --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Blue.css @@ -0,0 +1,91 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#9ecf35; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/greenIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/greenCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/greenCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/greenCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/greenBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/greenBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/greenCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/greenCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#e2efc4; + border-bottom:1px solid #fff; +} + + +/*incoming */ + +.incomingItem .timeStamp { + color:#7fc5f8; +} + +.incomingItem .myBubble .indicator { + background:url("../images/blueIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/blueCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/blueCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/blueCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/blueBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/blueBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/blueCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/blueCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#ddf0fe; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Green on Red Alternating.css b/Swift/resources/themes/Default/Variants/Green on Red Alternating.css new file mode 100644 index 0000000..e656dc0 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Red Alternating.css @@ -0,0 +1,7 @@ +@import url("Green on Red.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/greenIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Green on Red No Names Alt.css b/Swift/resources/themes/Default/Variants/Green on Red No Names Alt.css new file mode 100644 index 0000000..5fd2482 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Red No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Green on Red Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Green on Red No Names.css b/Swift/resources/themes/Default/Variants/Green on Red No Names.css new file mode 100644 index 0000000..23dae81 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Red No Names.css @@ -0,0 +1,2 @@ +@import url("Green on Red.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Green on Red.css b/Swift/resources/themes/Default/Variants/Green on Red.css new file mode 100644 index 0000000..cdf38b3 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Red.css @@ -0,0 +1,91 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#9ecf35; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/greenIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/greenCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/greenCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/greenCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/greenBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/greenBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/greenCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/greenCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#e2efc4; + border-bottom:1px solid #fff; +} + + +/*incoming */ + +.incomingItem .timeStamp { + color:#f88f8f; +} + +.incomingItem .myBubble .indicator { + background:url("../images/redIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/redCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/redCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/redCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/redBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/redBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/redCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/redCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#ffdada; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Green on Steel Alternating.css b/Swift/resources/themes/Default/Variants/Green on Steel Alternating.css new file mode 100644 index 0000000..3c14f7f --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Steel Alternating.css @@ -0,0 +1,7 @@ +@import url("Green on Steel.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/greenIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Green on Steel No Names Alt.css b/Swift/resources/themes/Default/Variants/Green on Steel No Names Alt.css new file mode 100644 index 0000000..cfd6bb9 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Steel No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Green on Steel Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Green on Steel No Names.css b/Swift/resources/themes/Default/Variants/Green on Steel No Names.css new file mode 100644 index 0000000..41bc9de --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Steel No Names.css @@ -0,0 +1,2 @@ +@import url("Green on Steel.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Green on Steel.css b/Swift/resources/themes/Default/Variants/Green on Steel.css new file mode 100644 index 0000000..30a78a0 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Steel.css @@ -0,0 +1,91 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#9ecf35; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/greenIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/greenCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/greenCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/greenCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/greenBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/greenBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/greenCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/greenCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#e2efc4; + border-bottom:1px solid #fff; +} + + +/*incoming */ + +.incomingItem .timeStamp { + color:#a9a9a9; +} + +.incomingItem .myBubble .indicator { + background:url("../images/steelIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/steelCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/steelCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/steelCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/steelBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/steelBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/steelCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/steelCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#ececec; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Green on Yellow Alternating.css b/Swift/resources/themes/Default/Variants/Green on Yellow Alternating.css new file mode 100644 index 0000000..d0553e8 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Yellow Alternating.css @@ -0,0 +1,7 @@ +@import url("Green on Yellow.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/greenIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Green on Yellow No Names Alt.css b/Swift/resources/themes/Default/Variants/Green on Yellow No Names Alt.css new file mode 100644 index 0000000..27adc33 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Yellow No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Green on Yellow Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Green on Yellow No Names.css b/Swift/resources/themes/Default/Variants/Green on Yellow No Names.css new file mode 100644 index 0000000..8c8cb28 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Yellow No Names.css @@ -0,0 +1,2 @@ +@import url("Green on Yellow.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Green on Yellow.css b/Swift/resources/themes/Default/Variants/Green on Yellow.css new file mode 100644 index 0000000..d7f64d3 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Green on Yellow.css @@ -0,0 +1,91 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#9ecf35; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/greenIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/greenCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/greenCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/greenCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/greenBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/greenBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/greenCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/greenCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#e2efc4; + border-bottom:1px solid #fff; +} + + +/*incoming */ + +.incomingItem .timeStamp { + color:#bdb410; +} + +.incomingItem .myBubble .indicator { + background:url("../images/yellowIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/yellowCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/yellowCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/yellowCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/yellowBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/yellowBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/yellowCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/yellowCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#f4f0a7; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Red on Blue Alternating.css b/Swift/resources/themes/Default/Variants/Red on Blue Alternating.css new file mode 100644 index 0000000..5d241fb --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Blue Alternating.css @@ -0,0 +1,7 @@ +@import url("Red on Blue.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/redIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Red on Blue No Names Alt.css b/Swift/resources/themes/Default/Variants/Red on Blue No Names Alt.css new file mode 100644 index 0000000..2e80935 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Blue No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Red on Blue Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Red on Blue No Names.css b/Swift/resources/themes/Default/Variants/Red on Blue No Names.css new file mode 100644 index 0000000..da98b5c --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Blue No Names.css @@ -0,0 +1,2 @@ +@import url("Red on Blue.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Red on Blue.css b/Swift/resources/themes/Default/Variants/Red on Blue.css new file mode 100644 index 0000000..f6e646c --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Blue.css @@ -0,0 +1,90 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#f88f8f; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/redIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/redCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/redCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/redCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/redBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/redBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/redCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/redCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#ffdada; + border-bottom:1px solid #fff; +} + + + +/*incoming */ + +.incomingItem .timeStamp { + color:#7fc5f8; +} + +.incomingItem .myBubble .indicator { + background:url("../images/blueIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/blueCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/blueCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/blueCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/blueBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/blueBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/blueCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/blueCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#ddf0fe; + border-bottom:1px solid #fff; +} diff --git a/Swift/resources/themes/Default/Variants/Red on Green Alternating.css b/Swift/resources/themes/Default/Variants/Red on Green Alternating.css new file mode 100644 index 0000000..db8effa --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Green Alternating.css @@ -0,0 +1,7 @@ +@import url("Red on Green.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/redIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Red on Green No Names Alt.css b/Swift/resources/themes/Default/Variants/Red on Green No Names Alt.css new file mode 100644 index 0000000..9a230f2 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Green No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Red on Green Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Red on Green No Names.css b/Swift/resources/themes/Default/Variants/Red on Green No Names.css new file mode 100644 index 0000000..1bbc2a5 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Green No Names.css @@ -0,0 +1,2 @@ +@import url("Red on Green.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Red on Green.css b/Swift/resources/themes/Default/Variants/Red on Green.css new file mode 100644 index 0000000..0e7c12b --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Green.css @@ -0,0 +1,95 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#f88f8f; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/redIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/redCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/redCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/redCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/redBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/redBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/redCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/redCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#ffdada; + border-bottom:1px solid #fff; +} + +/*incoming */ + +.incomingItem .timeStamp { + color:#9ecf35; +} + + +.incomingItem .myBubble .indicator { + background:url("../images/greenIndicator.png") no-repeat top left; +} + +.incomingItem .timeStamp { + color:#9ecf35; +} + +.incomingItem .tableBubble .tl { + background:url("../images/greenCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/greenCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/greenCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/greenBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/greenBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/greenCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/greenCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#e2efc4; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Red on Steel Alternating.css b/Swift/resources/themes/Default/Variants/Red on Steel Alternating.css new file mode 100644 index 0000000..ad7eb15 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Steel Alternating.css @@ -0,0 +1,7 @@ +@import url("Red on Steel.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/redIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Red on Steel No Names Alt.css b/Swift/resources/themes/Default/Variants/Red on Steel No Names Alt.css new file mode 100644 index 0000000..9c6ab55 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Steel No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Red on Steel Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Red on Steel No Names.css b/Swift/resources/themes/Default/Variants/Red on Steel No Names.css new file mode 100644 index 0000000..aa2b60a --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Steel No Names.css @@ -0,0 +1,2 @@ +@import url("Red on Steel.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Red on Steel.css b/Swift/resources/themes/Default/Variants/Red on Steel.css new file mode 100644 index 0000000..8a39df2 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Steel.css @@ -0,0 +1,93 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#f88f8f; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/redIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/redCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/redCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/redCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/redBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/redBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/redCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/redCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#ffdada; + border-bottom:1px solid #fff; +} + + + + +/*incoming */ + +.incomingItem .timeStamp { + color:#a9a9a9; +} + +.incomingItem .myBubble .indicator { + background:url("../images/steelIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/steelCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/steelCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/steelCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/steelBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/steelBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/steelCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/steelCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#ececec; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Red on Yellow Alternating.css b/Swift/resources/themes/Default/Variants/Red on Yellow Alternating.css new file mode 100644 index 0000000..b264d7d --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Yellow Alternating.css @@ -0,0 +1,7 @@ +@import url("Red on Yellow.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/redIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Red on Yellow No Names Alt.css b/Swift/resources/themes/Default/Variants/Red on Yellow No Names Alt.css new file mode 100644 index 0000000..dc4394e --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Yellow No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Red on Yellow Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Red on Yellow No Names.css b/Swift/resources/themes/Default/Variants/Red on Yellow No Names.css new file mode 100644 index 0000000..9ca44ec --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Yellow No Names.css @@ -0,0 +1,2 @@ +@import url("Red on Yellow.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Red on Yellow.css b/Swift/resources/themes/Default/Variants/Red on Yellow.css new file mode 100644 index 0000000..f2dc5a0 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Red on Yellow.css @@ -0,0 +1,91 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#f88f8f; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/redIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/redCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/redCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/redCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/redBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/redBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/redCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/redCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#ffdada; + border-bottom:1px solid #fff; +} + + + + +/*incoming */ + +.incomingItem .timeStamp { + color:#bdb410; +} + +.incomingItem .myBubble .indicator { + background:url("../images/yellowIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/yellowCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/yellowCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/yellowCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/yellowBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/yellowBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/yellowCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/yellowCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#f4f0a7; + border-bottom:1px solid #fff; +} diff --git a/Swift/resources/themes/Default/Variants/Steel on Blue Alternating.css b/Swift/resources/themes/Default/Variants/Steel on Blue Alternating.css new file mode 100644 index 0000000..8c15ec2 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Blue Alternating.css @@ -0,0 +1,7 @@ +@import url("Steel on Blue.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/steelIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Steel on Blue No Names Alt.css b/Swift/resources/themes/Default/Variants/Steel on Blue No Names Alt.css new file mode 100644 index 0000000..7edfcb1 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Blue No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Steel on Blue Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Steel on Blue No Names.css b/Swift/resources/themes/Default/Variants/Steel on Blue No Names.css new file mode 100644 index 0000000..f7058b9 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Blue No Names.css @@ -0,0 +1,2 @@ +@import url("Steel on Blue.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Steel on Blue.css b/Swift/resources/themes/Default/Variants/Steel on Blue.css new file mode 100644 index 0000000..6203dc2 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Blue.css @@ -0,0 +1,92 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#a9a9a9; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/steelIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/steelCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/steelCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/steelCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/steelBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/steelBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/steelCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/steelCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#ececec; + border-bottom:1px solid #fff; +} + + + +/*incoming */ + +.incomingItem .timeStamp { + color:#7fc5f8; +} + +.incomingItem .myBubble .indicator { + background:url("../images/blueIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/blueCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/blueCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/blueCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/blueBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/blueBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/blueCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/blueCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#ddf0fe; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Steel on Green Alternating.css b/Swift/resources/themes/Default/Variants/Steel on Green Alternating.css new file mode 100644 index 0000000..69474f0 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Green Alternating.css @@ -0,0 +1,7 @@ +@import url("Steel on Green.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/steelIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Steel on Green No Names Alt.css b/Swift/resources/themes/Default/Variants/Steel on Green No Names Alt.css new file mode 100644 index 0000000..6fc5606 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Green No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Steel on Green Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Steel on Green No Names.css b/Swift/resources/themes/Default/Variants/Steel on Green No Names.css new file mode 100644 index 0000000..f07264b --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Green No Names.css @@ -0,0 +1,2 @@ +@import url("Steel on Green.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Steel on Green.css b/Swift/resources/themes/Default/Variants/Steel on Green.css new file mode 100644 index 0000000..800dc6b --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Green.css @@ -0,0 +1,97 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#a9a9a9; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/steelIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/steelCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/steelCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/steelCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/steelBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/steelBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/steelCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/steelCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#ececec; + border-bottom:1px solid #fff; +} + + + +/*incoming */ + +.incomingItem .timeStamp { + color:#9ecf35; +} + + +.incomingItem .myBubble .indicator { + background:url("../images/greenIndicator.png") no-repeat top left; +} + +.incomingItem .timeStamp { + color:#9ecf35; +} + +.incomingItem .tableBubble .tl { + background:url("../images/greenCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/greenCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/greenCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/greenBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/greenBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/greenCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/greenCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#e2efc4; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Steel on Red Alternating.css b/Swift/resources/themes/Default/Variants/Steel on Red Alternating.css new file mode 100644 index 0000000..64a783b --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Red Alternating.css @@ -0,0 +1,7 @@ +@import url("Steel on Red.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/steelIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Steel on Red No Names Alt.css b/Swift/resources/themes/Default/Variants/Steel on Red No Names Alt.css new file mode 100644 index 0000000..995f329 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Red No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Steel on Red Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Steel on Red No Names.css b/Swift/resources/themes/Default/Variants/Steel on Red No Names.css new file mode 100644 index 0000000..b5e622e --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Red No Names.css @@ -0,0 +1,2 @@ +@import url("Steel on Red.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Steel on Red.css b/Swift/resources/themes/Default/Variants/Steel on Red.css new file mode 100644 index 0000000..922c6ef --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Red.css @@ -0,0 +1,89 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#a9a9a9; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/steelIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/steelCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/steelCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/steelCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/steelBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/steelBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/steelCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/steelCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#ececec; + border-bottom:1px solid #fff; +} + + +/*incoming */ + +.incomingItem .timeStamp { + color:#f88f8f; +} + +.incomingItem .myBubble .indicator { + background:url("../images/redIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/redCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/redCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/redCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/redBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/redBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/redCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/redCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#ffdada; + border-bottom:1px solid #fff; +} diff --git a/Swift/resources/themes/Default/Variants/Steel on Yellow Alternating.css b/Swift/resources/themes/Default/Variants/Steel on Yellow Alternating.css new file mode 100644 index 0000000..0249230 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Yellow Alternating.css @@ -0,0 +1,7 @@ +@import url("Steel on Yellow.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/steelIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Steel on Yellow No Names Alt.css b/Swift/resources/themes/Default/Variants/Steel on Yellow No Names Alt.css new file mode 100644 index 0000000..9ab928c --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Yellow No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Steel on Yellow Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Steel on Yellow No Names.css b/Swift/resources/themes/Default/Variants/Steel on Yellow No Names.css new file mode 100644 index 0000000..ecf7861 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Yellow No Names.css @@ -0,0 +1,2 @@ +@import url("Steel on Yellow.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Steel on Yellow.css b/Swift/resources/themes/Default/Variants/Steel on Yellow.css new file mode 100644 index 0000000..2d91510 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Steel on Yellow.css @@ -0,0 +1,92 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#a9a9a9; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/steelIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/steelCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/steelCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/steelCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/steelBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/steelBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/steelCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/steelCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#ececec; + border-bottom:1px solid #fff; +} + + + +/*incoming */ + +.incomingItem .timeStamp { + color:#bdb410; +} + +.incomingItem .myBubble .indicator { + background:url("../images/yellowIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/yellowCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/yellowCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/yellowCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/yellowBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/yellowBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/yellowCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/yellowCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#f4f0a7; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Yellow on Blue Alternating.css b/Swift/resources/themes/Default/Variants/Yellow on Blue Alternating.css new file mode 100644 index 0000000..361856d --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Blue Alternating.css @@ -0,0 +1,7 @@ +@import url("Yellow on Blue.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/yellowIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Yellow on Blue No Names Alt.css b/Swift/resources/themes/Default/Variants/Yellow on Blue No Names Alt.css new file mode 100644 index 0000000..2e31a7c --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Blue No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Yellow on Blue Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Yellow on Blue No Names.css b/Swift/resources/themes/Default/Variants/Yellow on Blue No Names.css new file mode 100644 index 0000000..808377f --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Blue No Names.css @@ -0,0 +1,2 @@ +@import url("Yellow on Blue.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Yellow on Blue.css b/Swift/resources/themes/Default/Variants/Yellow on Blue.css new file mode 100644 index 0000000..7e745e9 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Blue.css @@ -0,0 +1,91 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#bdb410; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/yellowIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/yellowCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/yellowCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/yellowCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/yellowBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/yellowBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/yellowCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/yellowCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#f4f0a7; + border-bottom:1px solid #fff; +} + + +/*incoming */ + +.incomingItem .timeStamp { + color:#7fc5f8; +} + +.incomingItem .myBubble .indicator { + background:url("../images/blueIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/blueCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/blueCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/blueCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/blueBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/blueBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/blueCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/blueCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#ddf0fe; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Yellow on Green Alternating.css b/Swift/resources/themes/Default/Variants/Yellow on Green Alternating.css new file mode 100644 index 0000000..cb88dfb --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Green Alternating.css @@ -0,0 +1,7 @@ +@import url("Yellow on Green.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/yellowIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Yellow on Green No Names Alt.css b/Swift/resources/themes/Default/Variants/Yellow on Green No Names Alt.css new file mode 100644 index 0000000..24fe8ef --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Green No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Yellow on Green Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Yellow on Green No Names.css b/Swift/resources/themes/Default/Variants/Yellow on Green No Names.css new file mode 100644 index 0000000..0c7d12b --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Green No Names.css @@ -0,0 +1,2 @@ +@import url("Yellow on Green.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Yellow on Green.css b/Swift/resources/themes/Default/Variants/Yellow on Green.css new file mode 100644 index 0000000..de4afc6 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Green.css @@ -0,0 +1,96 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#bdb410; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/yellowIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/yellowCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/yellowCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/yellowCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/yellowBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/yellowBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/yellowCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/yellowCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#f4f0a7; + border-bottom:1px solid #fff; +} + + +/*incoming */ + +.incomingItem .timeStamp { + color:#9ecf35; +} + + +.incomingItem .myBubble .indicator { + background:url("../images/greenIndicator.png") no-repeat top left; +} + +.incomingItem .timeStamp { + color:#9ecf35; +} + +.incomingItem .tableBubble .tl { + background:url("../images/greenCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/greenCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/greenCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/greenBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/greenBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/greenCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/greenCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#e2efc4; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Yellow on Red Alternating.css b/Swift/resources/themes/Default/Variants/Yellow on Red Alternating.css new file mode 100644 index 0000000..592b8c4 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Red Alternating.css @@ -0,0 +1,7 @@ +@import url("Yellow on Red.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/yellowIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Yellow on Red No Names Alt.css b/Swift/resources/themes/Default/Variants/Yellow on Red No Names Alt.css new file mode 100644 index 0000000..fe464d9 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Red No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Yellow on Red Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Yellow on Red No Names.css b/Swift/resources/themes/Default/Variants/Yellow on Red No Names.css new file mode 100644 index 0000000..f35c8a2 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Red No Names.css @@ -0,0 +1,2 @@ +@import url("Yellow on Red.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Yellow on Red.css b/Swift/resources/themes/Default/Variants/Yellow on Red.css new file mode 100644 index 0000000..f73f0d0 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Red.css @@ -0,0 +1,91 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#bdb410; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/yellowIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/yellowCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/yellowCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/yellowCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/yellowBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/yellowBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/yellowCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/yellowCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#f4f0a7; + border-bottom:1px solid #fff; +} + + +/*incoming */ + +.incomingItem .timeStamp { + color:#f88f8f; +} + +.incomingItem .myBubble .indicator { + background:url("../images/redIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/redCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/redCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/redCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/redBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/redBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/redCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/redCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#ffdada; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/Variants/Yellow on Steel Alternating.css b/Swift/resources/themes/Default/Variants/Yellow on Steel Alternating.css new file mode 100644 index 0000000..a019487 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Steel Alternating.css @@ -0,0 +1,7 @@ +@import url("Yellow on Steel.css"); +@import url("../alternating.css"); + + +.outgoingItem .myBubble .indicator { + background:url("../images/yellowIndicator2.png") no-repeat top left; +} diff --git a/Swift/resources/themes/Default/Variants/Yellow on Steel No Names Alt.css b/Swift/resources/themes/Default/Variants/Yellow on Steel No Names Alt.css new file mode 100644 index 0000000..273bcbb --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Steel No Names Alt.css @@ -0,0 +1,2 @@ +@import url("Yellow on Steel Alternating.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Yellow on Steel No Names.css b/Swift/resources/themes/Default/Variants/Yellow on Steel No Names.css new file mode 100644 index 0000000..1f8d314 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Steel No Names.css @@ -0,0 +1,2 @@ +@import url("Yellow on Steel.css"); +@import url("../noname.css"); diff --git a/Swift/resources/themes/Default/Variants/Yellow on Steel.css b/Swift/resources/themes/Default/Variants/Yellow on Steel.css new file mode 100644 index 0000000..680f0c8 --- /dev/null +++ b/Swift/resources/themes/Default/Variants/Yellow on Steel.css @@ -0,0 +1,91 @@ +@import url("../main.css"); + +/* outgoing */ + + +.outgoingItem .timeStamp { + color:#bdb410; +} + +.outgoingItem .myBubble .indicator { + background:url("../images/yellowIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("../images/yellowCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("../images/yellowCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("../images/yellowCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("../images/yellowBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("../images/yellowBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("../images/yellowCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("../images/yellowCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#f4f0a7; + border-bottom:1px solid #fff; +} + + +/*incoming */ + +.incomingItem .timeStamp { + color:#a9a9a9; +} + +.incomingItem .myBubble .indicator { + background:url("../images/steelIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("../images/steelCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("../images/steelCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("../images/steelCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("../images/steelBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("../images/steelBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("../images/steelCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("../images/steelCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#ececec; + border-bottom:1px solid #fff; +} + + diff --git a/Swift/resources/themes/Default/alternating.css b/Swift/resources/themes/Default/alternating.css new file mode 100644 index 0000000..2b21147 --- /dev/null +++ b/Swift/resources/themes/Default/alternating.css @@ -0,0 +1,16 @@ + +.outgoingItem .avatar { + float:right; +} + +.outgoingItem .indicator { + float:right; + position:relative; + left:11px; + top:8px; +} + +.myBubble { + margin-right:40px; +} + diff --git a/Swift/resources/themes/Default/images/DummyContact.png b/Swift/resources/themes/Default/images/DummyContact.png new file mode 100755 index 0000000..5149ea5 Binary files /dev/null and b/Swift/resources/themes/Default/images/DummyContact.png differ diff --git a/Swift/resources/themes/Default/images/alert.png b/Swift/resources/themes/Default/images/alert.png new file mode 100755 index 0000000..ad59ebc Binary files /dev/null and b/Swift/resources/themes/Default/images/alert.png differ diff --git a/Swift/resources/themes/Default/images/blueBackground.gif b/Swift/resources/themes/Default/images/blueBackground.gif new file mode 100755 index 0000000..1aad572 Binary files /dev/null and b/Swift/resources/themes/Default/images/blueBackground.gif differ diff --git a/Swift/resources/themes/Default/images/blueBackground.png b/Swift/resources/themes/Default/images/blueBackground.png new file mode 100644 index 0000000..c3eecf5 Binary files /dev/null and b/Swift/resources/themes/Default/images/blueBackground.png differ diff --git a/Swift/resources/themes/Default/images/blueCurves.gif b/Swift/resources/themes/Default/images/blueCurves.gif new file mode 100755 index 0000000..90e3823 Binary files /dev/null and b/Swift/resources/themes/Default/images/blueCurves.gif differ diff --git a/Swift/resources/themes/Default/images/blueCurves.png b/Swift/resources/themes/Default/images/blueCurves.png new file mode 100644 index 0000000..7a6afe1 Binary files /dev/null and b/Swift/resources/themes/Default/images/blueCurves.png differ diff --git a/Swift/resources/themes/Default/images/blueIndicator.gif b/Swift/resources/themes/Default/images/blueIndicator.gif new file mode 100755 index 0000000..3a1b40a Binary files /dev/null and b/Swift/resources/themes/Default/images/blueIndicator.gif differ diff --git a/Swift/resources/themes/Default/images/blueIndicator.png b/Swift/resources/themes/Default/images/blueIndicator.png new file mode 100644 index 0000000..29b65cb Binary files /dev/null and b/Swift/resources/themes/Default/images/blueIndicator.png differ diff --git a/Swift/resources/themes/Default/images/blueIndicator2.png b/Swift/resources/themes/Default/images/blueIndicator2.png new file mode 100644 index 0000000..d7c3621 Binary files /dev/null and b/Swift/resources/themes/Default/images/blueIndicator2.png differ diff --git a/Swift/resources/themes/Default/images/blueIndicatorAlt.gif b/Swift/resources/themes/Default/images/blueIndicatorAlt.gif new file mode 100644 index 0000000..aaacb89 Binary files /dev/null and b/Swift/resources/themes/Default/images/blueIndicatorAlt.gif differ diff --git a/Swift/resources/themes/Default/images/greenBackground.gif b/Swift/resources/themes/Default/images/greenBackground.gif new file mode 100755 index 0000000..a11a52d Binary files /dev/null and b/Swift/resources/themes/Default/images/greenBackground.gif differ diff --git a/Swift/resources/themes/Default/images/greenBackground.png b/Swift/resources/themes/Default/images/greenBackground.png new file mode 100644 index 0000000..dfeb36e Binary files /dev/null and b/Swift/resources/themes/Default/images/greenBackground.png differ diff --git a/Swift/resources/themes/Default/images/greenCurves.gif b/Swift/resources/themes/Default/images/greenCurves.gif new file mode 100755 index 0000000..165892a Binary files /dev/null and b/Swift/resources/themes/Default/images/greenCurves.gif differ diff --git a/Swift/resources/themes/Default/images/greenCurves.png b/Swift/resources/themes/Default/images/greenCurves.png new file mode 100644 index 0000000..13fae75 Binary files /dev/null and b/Swift/resources/themes/Default/images/greenCurves.png differ diff --git a/Swift/resources/themes/Default/images/greenIndicator.gif b/Swift/resources/themes/Default/images/greenIndicator.gif new file mode 100755 index 0000000..b6409c7 Binary files /dev/null and b/Swift/resources/themes/Default/images/greenIndicator.gif differ diff --git a/Swift/resources/themes/Default/images/greenIndicator.png b/Swift/resources/themes/Default/images/greenIndicator.png new file mode 100644 index 0000000..381db82 Binary files /dev/null and b/Swift/resources/themes/Default/images/greenIndicator.png differ diff --git a/Swift/resources/themes/Default/images/greenIndicator2.png b/Swift/resources/themes/Default/images/greenIndicator2.png new file mode 100644 index 0000000..1dedb31 Binary files /dev/null and b/Swift/resources/themes/Default/images/greenIndicator2.png differ diff --git a/Swift/resources/themes/Default/images/greenIndicatorAlt.gif b/Swift/resources/themes/Default/images/greenIndicatorAlt.gif new file mode 100644 index 0000000..3ccbc23 Binary files /dev/null and b/Swift/resources/themes/Default/images/greenIndicatorAlt.gif differ diff --git a/Swift/resources/themes/Default/images/redBackground.gif b/Swift/resources/themes/Default/images/redBackground.gif new file mode 100755 index 0000000..ce1443e Binary files /dev/null and b/Swift/resources/themes/Default/images/redBackground.gif differ diff --git a/Swift/resources/themes/Default/images/redBackground.png b/Swift/resources/themes/Default/images/redBackground.png new file mode 100644 index 0000000..bbacbc7 Binary files /dev/null and b/Swift/resources/themes/Default/images/redBackground.png differ diff --git a/Swift/resources/themes/Default/images/redCurves.gif b/Swift/resources/themes/Default/images/redCurves.gif new file mode 100755 index 0000000..55e496d Binary files /dev/null and b/Swift/resources/themes/Default/images/redCurves.gif differ diff --git a/Swift/resources/themes/Default/images/redCurves.png b/Swift/resources/themes/Default/images/redCurves.png new file mode 100644 index 0000000..3e7065a Binary files /dev/null and b/Swift/resources/themes/Default/images/redCurves.png differ diff --git a/Swift/resources/themes/Default/images/redIndicator.gif b/Swift/resources/themes/Default/images/redIndicator.gif new file mode 100755 index 0000000..58e189c Binary files /dev/null and b/Swift/resources/themes/Default/images/redIndicator.gif differ diff --git a/Swift/resources/themes/Default/images/redIndicator.png b/Swift/resources/themes/Default/images/redIndicator.png new file mode 100644 index 0000000..9c906a9 Binary files /dev/null and b/Swift/resources/themes/Default/images/redIndicator.png differ diff --git a/Swift/resources/themes/Default/images/redIndicator2.png b/Swift/resources/themes/Default/images/redIndicator2.png new file mode 100644 index 0000000..1f625a0 Binary files /dev/null and b/Swift/resources/themes/Default/images/redIndicator2.png differ diff --git a/Swift/resources/themes/Default/images/redIndicatorAlt.gif b/Swift/resources/themes/Default/images/redIndicatorAlt.gif new file mode 100644 index 0000000..1f9c4f1 Binary files /dev/null and b/Swift/resources/themes/Default/images/redIndicatorAlt.gif differ diff --git a/Swift/resources/themes/Default/images/silverBackground.gif b/Swift/resources/themes/Default/images/silverBackground.gif new file mode 100755 index 0000000..b2798a4 Binary files /dev/null and b/Swift/resources/themes/Default/images/silverBackground.gif differ diff --git a/Swift/resources/themes/Default/images/silverCurves.gif b/Swift/resources/themes/Default/images/silverCurves.gif new file mode 100755 index 0000000..b7bca30 Binary files /dev/null and b/Swift/resources/themes/Default/images/silverCurves.gif differ diff --git a/Swift/resources/themes/Default/images/steelBackground.gif b/Swift/resources/themes/Default/images/steelBackground.gif new file mode 100755 index 0000000..c292710 Binary files /dev/null and b/Swift/resources/themes/Default/images/steelBackground.gif differ diff --git a/Swift/resources/themes/Default/images/steelBackground.png b/Swift/resources/themes/Default/images/steelBackground.png new file mode 100644 index 0000000..b1180d3 Binary files /dev/null and b/Swift/resources/themes/Default/images/steelBackground.png differ diff --git a/Swift/resources/themes/Default/images/steelCurves.gif b/Swift/resources/themes/Default/images/steelCurves.gif new file mode 100755 index 0000000..663c5c3 Binary files /dev/null and b/Swift/resources/themes/Default/images/steelCurves.gif differ diff --git a/Swift/resources/themes/Default/images/steelCurves.png b/Swift/resources/themes/Default/images/steelCurves.png new file mode 100644 index 0000000..e1ddeb0 Binary files /dev/null and b/Swift/resources/themes/Default/images/steelCurves.png differ diff --git a/Swift/resources/themes/Default/images/steelHeading.jpg b/Swift/resources/themes/Default/images/steelHeading.jpg new file mode 100755 index 0000000..a319c7e Binary files /dev/null and b/Swift/resources/themes/Default/images/steelHeading.jpg differ diff --git a/Swift/resources/themes/Default/images/steelIndicator.gif b/Swift/resources/themes/Default/images/steelIndicator.gif new file mode 100755 index 0000000..0d91eed Binary files /dev/null and b/Swift/resources/themes/Default/images/steelIndicator.gif differ diff --git a/Swift/resources/themes/Default/images/steelIndicator.png b/Swift/resources/themes/Default/images/steelIndicator.png new file mode 100644 index 0000000..48a3af5 Binary files /dev/null and b/Swift/resources/themes/Default/images/steelIndicator.png differ diff --git a/Swift/resources/themes/Default/images/steelIndicator2.png b/Swift/resources/themes/Default/images/steelIndicator2.png new file mode 100644 index 0000000..1a34ac7 Binary files /dev/null and b/Swift/resources/themes/Default/images/steelIndicator2.png differ diff --git a/Swift/resources/themes/Default/images/steelIndicatorAlt.gif b/Swift/resources/themes/Default/images/steelIndicatorAlt.gif new file mode 100644 index 0000000..5d7686d Binary files /dev/null and b/Swift/resources/themes/Default/images/steelIndicatorAlt.gif differ diff --git a/Swift/resources/themes/Default/images/typing-left.png b/Swift/resources/themes/Default/images/typing-left.png new file mode 100755 index 0000000..e5448a5 Binary files /dev/null and b/Swift/resources/themes/Default/images/typing-left.png differ diff --git a/Swift/resources/themes/Default/images/typing-right.png b/Swift/resources/themes/Default/images/typing-right.png new file mode 100755 index 0000000..1e997d4 Binary files /dev/null and b/Swift/resources/themes/Default/images/typing-right.png differ diff --git a/Swift/resources/themes/Default/images/yellowBackground.gif b/Swift/resources/themes/Default/images/yellowBackground.gif new file mode 100755 index 0000000..adcdb5d Binary files /dev/null and b/Swift/resources/themes/Default/images/yellowBackground.gif differ diff --git a/Swift/resources/themes/Default/images/yellowBackground.png b/Swift/resources/themes/Default/images/yellowBackground.png new file mode 100644 index 0000000..ea79d06 Binary files /dev/null and b/Swift/resources/themes/Default/images/yellowBackground.png differ diff --git a/Swift/resources/themes/Default/images/yellowCurves.gif b/Swift/resources/themes/Default/images/yellowCurves.gif new file mode 100755 index 0000000..c8bf931 Binary files /dev/null and b/Swift/resources/themes/Default/images/yellowCurves.gif differ diff --git a/Swift/resources/themes/Default/images/yellowCurves.png b/Swift/resources/themes/Default/images/yellowCurves.png new file mode 100644 index 0000000..b4133ba Binary files /dev/null and b/Swift/resources/themes/Default/images/yellowCurves.png differ diff --git a/Swift/resources/themes/Default/images/yellowHeading.jpg b/Swift/resources/themes/Default/images/yellowHeading.jpg new file mode 100755 index 0000000..bd6f049 Binary files /dev/null and b/Swift/resources/themes/Default/images/yellowHeading.jpg differ diff --git a/Swift/resources/themes/Default/images/yellowIndicator.gif b/Swift/resources/themes/Default/images/yellowIndicator.gif new file mode 100755 index 0000000..537414c Binary files /dev/null and b/Swift/resources/themes/Default/images/yellowIndicator.gif differ diff --git a/Swift/resources/themes/Default/images/yellowIndicator.png b/Swift/resources/themes/Default/images/yellowIndicator.png new file mode 100644 index 0000000..bfaf230 Binary files /dev/null and b/Swift/resources/themes/Default/images/yellowIndicator.png differ diff --git a/Swift/resources/themes/Default/images/yellowIndicator2.png b/Swift/resources/themes/Default/images/yellowIndicator2.png new file mode 100644 index 0000000..c59fe2b Binary files /dev/null and b/Swift/resources/themes/Default/images/yellowIndicator2.png differ diff --git a/Swift/resources/themes/Default/images/yellowIndicatorAlt.gif b/Swift/resources/themes/Default/images/yellowIndicatorAlt.gif new file mode 100644 index 0000000..f3cd7b0 Binary files /dev/null and b/Swift/resources/themes/Default/images/yellowIndicatorAlt.gif differ diff --git a/Swift/resources/themes/Default/images/yellowTL.png b/Swift/resources/themes/Default/images/yellowTL.png new file mode 100644 index 0000000..2bdfa65 Binary files /dev/null and b/Swift/resources/themes/Default/images/yellowTL.png differ diff --git a/Swift/resources/themes/Default/images/yellowTR.png b/Swift/resources/themes/Default/images/yellowTR.png new file mode 100644 index 0000000..1aff191 Binary files /dev/null and b/Swift/resources/themes/Default/images/yellowTR.png differ diff --git a/Swift/resources/themes/Default/incoming_icon.png b/Swift/resources/themes/Default/incoming_icon.png new file mode 100755 index 0000000..7080fd6 Binary files /dev/null and b/Swift/resources/themes/Default/incoming_icon.png differ diff --git a/Swift/resources/themes/Default/main.css b/Swift/resources/themes/Default/main.css new file mode 100755 index 0000000..c2ce2d5 --- /dev/null +++ b/Swift/resources/themes/Default/main.css @@ -0,0 +1,292 @@ +* { + word-wrap: break-word; + word-break:break-word; +} + +#header1 { + position: fixed; + top: 0px; + left: 0px; + right: 0px; + margin: 0; + padding: 10px; + overflow: auto; + color: white; + font-family: Lucida Grande; + text-align: center; + font-size: 10px; + font-weight: regular; + background: rgba(0,0,0,.65); + z-index: 999; +} + +#heading { + position: fixed; + top: 0px; + left: 0px; + margin: 0; + padding: 5px; + font-weight: regular; + background-color:#fbfbed; + z-index: 999; + width:100%; + height:45px; + border-bottom:2px solid #d5d5d5; + background:url("images/steelHeading.jpg") repeat-x top left; + +} + +#heading .conversationIncomingIcon { + position:absolute; + left:5px; + top:5px; +} + +#heading .conversationIncomingIcon img { + width:48px; + height:48px; +} + +#heading .conversationWith { + position:relative; + left:60px; + margin:5px 0 0 0; + font: bold 16px Myriad Pro, Myriad, Lucida Grande, Trebuchet MS, Arial; + overflow:hide; +} + +#heading .conversationTime { + position:relative; + left:60px; + color:#6d6d6d; + font: bold 10px Myriad Pro, Myriad, Lucida Grande, Trebuchet MS, Arial; +} + +body { + margin-top: 65px; + background-color: white; + color: black; +} + +.status_container { + font: 10px Myriad, Lucida Grande, Arial; +} + + +body { +} + +.followUp { + clear:right; + height:1px; + font-size:1px; + line-height:1px; + margin:4px 0 4px 0; +} + +.chatItem { + opacity:0.96; +} + +.tableBubble { + width:100%; +} + +.tableBubble .tl { + height:8px; +} + +.tableBubble .tr { + width:8px; + height:8px; +} + +.message { + padding:0 1em 0 1.25em; + word-wrap: break-word; +} + +.tableBubble .message { + font-size:11px; +} + +.tableBubble .message img { + vertical-align:middle; +} + +.tableBubble .messageRight { + width:1px; +} + +.tableBubble .bl { + height:10px; +} + +.tableBubble .br { + width:8px; + height:10px; +} + +.tableBubble .timeStamp { + margin:2px; + margin-left:7px; + text-align:right; + float:right; +} + +.myBubble .indicator { + position:absolute; + top:8px; + left:0; + width:13px; + height:11px; +} + +.myBubble { + position:relative; + padding-left:10px; + margin-left:33px; + margin-right:10px; +} + +.chatItem .avatar { + width:26px; + height:26px; + float:left; +} + +/****** STatus ******/ + +.statusMessage { + opacity:0.8; + color:#676767; +} + +.statusMessage .myBubble .indicator { + background:url("images/steelIndicator.png") no-repeat top left; +} + +.statusMessage .tableBubble .tl { + background:url("images/steelCurves.png") no-repeat top left; +} + +.statusMessage .tableBubble .tr { + background:url("images/steelCurves.png") no-repeat top right; +} + +.statusMessage .tableBubble .head { + background:url("images/steelCurves.png") no-repeat -10px 0; +} + +.statusMessage .tableBubble .message { + background:url("images/steelBackground.png") repeat-y top left; +} + +.statusMessage .tableBubble .messageRight { + background:url("images/steelBackground.png") repeat-y top right; +} + +.statusMessage .tableBubble .bl { + background:url("images/steelCurves.png") no-repeat bottom left; +} + +.statusMessage .tableBubble .br { + background:url("images/steelCurves.png") no-repeat bottom right; +} + +.statusMessage .followUp { + background-color:#f4f0a7; + border-bottom:1px solid #fff; +} + +.statusMessage .timeStamp { + color:#676767; +} + + +/*incoming */ + +.incomingItem .myBubble .indicator { + background:url("images/yellowIndicator.png") no-repeat top left; +} + +.incomingItem .tableBubble .tl { + background:url("images/yellowCurves.png") no-repeat top left; +} + +.incomingItem .tableBubble .tr { + background:url("images/yellowCurves.png") no-repeat top right; +} + +.incomingItem .tableBubble .head { + background:url("images/yellowCurves.png") no-repeat -10px 0; +} + +.incomingItem .tableBubble .message { + background:url("images/yellowBackground.png") repeat-y top left; +} + +.incomingItem .tableBubble .messageRight { + background:url("images/yellowBackground.png") repeat-y top right; +} + +.incomingItem .tableBubble .bl { + background:url("images/yellowCurves.png") no-repeat bottom left; +} + +.incomingItem .tableBubble .br { + background:url("images/yellowCurves.png") no-repeat bottom right; +} + +.incomingItem .followUp { + background-color:#f4f0a7; + border-bottom:1px solid #fff; +} + +.incomingItem .timeStamp { + color:#bdb410; +} + +/* outgoing */ + + +.outgoingItem .myBubble .indicator { + background:url("images/greenIndicator.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tl { + background:url("images/greenCurves.png") no-repeat top left; +} + +.outgoingItem .tableBubble .tr { + background:url("images/greenCurves.png") no-repeat top right; +} + +.outgoingItem .tableBubble .head { + background:url("images/greenCurves.png") no-repeat -10px 0; +} + +.outgoingItem .tableBubble .message { + background:url("images/greenBackground.png") repeat-y top left; +} + +.outgoingItem .tableBubble .messageRight { + background:url("images/greenBackground.png") repeat-y top right; +} + +.outgoingItem .tableBubble .bl { + background:url("images/greenCurves.png") no-repeat bottom left; +} + +.outgoingItem .tableBubble .br { + background:url("images/greenCurves.png") no-repeat bottom right; +} + +.outgoingItem .followUp { + background-color:#e2efc4; + border-bottom:1px solid #fff; +} + +.outgoingItem .timeStamp { + color:#9ecf35; +} diff --git a/Swift/resources/themes/Default/noname.css b/Swift/resources/themes/Default/noname.css new file mode 100644 index 0000000..9d905a9 --- /dev/null +++ b/Swift/resources/themes/Default/noname.css @@ -0,0 +1,3 @@ +.name { + display:none; +} diff --git a/Swift/resources/themes/Default/outgoing_icon.png b/Swift/resources/themes/Default/outgoing_icon.png new file mode 100755 index 0000000..7080fd6 Binary files /dev/null and b/Swift/resources/themes/Default/outgoing_icon.png differ diff --git a/Swiften/Events/MessageEvent.h b/Swiften/Events/MessageEvent.h index 27eecaf..0f061d1 100644 --- a/Swiften/Events/MessageEvent.h +++ b/Swiften/Events/MessageEvent.h @@ -5,6 +5,7 @@ #include "Swiften/Elements/Message.h" +#include #include namespace Swift { diff --git a/resources/MacOSX/Swift.icns b/resources/MacOSX/Swift.icns deleted file mode 100644 index 09227d0..0000000 Binary files a/resources/MacOSX/Swift.icns and /dev/null differ diff --git a/resources/Windows/Swift.ico b/resources/Windows/Swift.ico deleted file mode 100644 index 7b41da9..0000000 Binary files a/resources/Windows/Swift.ico and /dev/null differ diff --git a/resources/Windows/Swift.rc b/resources/Windows/Swift.rc deleted file mode 100644 index 9e96951..0000000 --- a/resources/Windows/Swift.rc +++ /dev/null @@ -1 +0,0 @@ -IDI_ICON1 ICON DISCARDABLE "Swift.ico" diff --git a/resources/icons/avatar.png b/resources/icons/avatar.png deleted file mode 100644 index 00374a6..0000000 Binary files a/resources/icons/avatar.png and /dev/null differ diff --git a/resources/icons/certificate.png b/resources/icons/certificate.png deleted file mode 100644 index 6111b8e..0000000 Binary files a/resources/icons/certificate.png and /dev/null differ diff --git a/resources/icons/error.png b/resources/icons/error.png deleted file mode 100755 index 3d9eca3..0000000 Binary files a/resources/icons/error.png and /dev/null differ diff --git a/resources/icons/new-chat.png b/resources/icons/new-chat.png deleted file mode 100644 index ca79895..0000000 Binary files a/resources/icons/new-chat.png and /dev/null differ diff --git a/resources/icons/tray-standard.png b/resources/icons/tray-standard.png deleted file mode 100644 index 00374a6..0000000 Binary files a/resources/icons/tray-standard.png and /dev/null differ diff --git a/resources/logo/coming-soon.svg b/resources/logo/coming-soon.svg deleted file mode 100644 index ce242d3..0000000 --- a/resources/logo/coming-soon.svg +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - Swift - Coming soon ... - - diff --git a/resources/logo/logo-icon-128.png b/resources/logo/logo-icon-128.png deleted file mode 100644 index c6ac4d2..0000000 Binary files a/resources/logo/logo-icon-128.png and /dev/null differ diff --git a/resources/logo/logo-icon-512.png b/resources/logo/logo-icon-512.png deleted file mode 100644 index b0ccb25..0000000 Binary files a/resources/logo/logo-icon-512.png and /dev/null differ diff --git a/resources/logo/logo-icon-64.png b/resources/logo/logo-icon-64.png deleted file mode 100644 index 4180575..0000000 Binary files a/resources/logo/logo-icon-64.png and /dev/null differ diff --git a/resources/logo/logo-icon.svg b/resources/logo/logo-icon.svg deleted file mode 100644 index 63f1035..0000000 --- a/resources/logo/logo-icon.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/resources/logo/logo-original.svg b/resources/logo/logo-original.svg deleted file mode 100644 index 75472a8..0000000 --- a/resources/logo/logo-original.svg +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - image/svg+xml - - - - - - - - diff --git a/resources/logo/logo-shaded-text.256.png b/resources/logo/logo-shaded-text.256.png deleted file mode 100644 index 5605ad0..0000000 Binary files a/resources/logo/logo-shaded-text.256.png and /dev/null differ diff --git a/resources/logo/logo-shaded-text.svg b/resources/logo/logo-shaded-text.svg deleted file mode 100644 index 68192e9..0000000 --- a/resources/logo/logo-shaded-text.svg +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - Swift - - diff --git a/resources/logo/logo.svg b/resources/logo/logo.svg deleted file mode 100644 index c0576e6..0000000 --- a/resources/logo/logo.svg +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - image/svg+xml - - - - - - - - diff --git a/resources/themes/Default/Demo.html b/resources/themes/Default/Demo.html deleted file mode 100755 index 6078ad1..0000000 --- a/resources/themes/Default/Demo.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - -
-
- - - - -
- %sender% -
-
- - - - - - - - - - - - - -
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. -
Torrey @ 4:55 am
-
-
- testing 1 -
%sender% @ %time%
-
-
-
- testing 123 -
%sender% @ %time%
-
-
-
- testing 123testing 123testing 123testing 123 - testing 123testing 123 -
%sender% @ %time%
-
-
-
-
-
- -
- - - - -
- %sender% -
-
- - - - - - - - - - - - - -
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas aliquam sapien. Aliquam sed erat eu leo bibendum egestas. Praesent mauris. Quisque eget eros et neque scelerisque convallis. Phasellus orci. Pellentesque interdum tellus a erat. venenatis tristique. -
Torrey @ 4:55 am
-
-
-
-
- -
- - \ No newline at end of file diff --git a/resources/themes/Default/Header.html b/resources/themes/Default/Header.html deleted file mode 100755 index b97bbb3..0000000 --- a/resources/themes/Default/Header.html +++ /dev/null @@ -1,5 +0,0 @@ -
-
-
%chatName%
-
Conversation began %timeOpened%
-
\ No newline at end of file diff --git a/resources/themes/Default/Incoming/Content.html b/resources/themes/Default/Incoming/Content.html deleted file mode 100755 index 2946716..0000000 --- a/resources/themes/Default/Incoming/Content.html +++ /dev/null @@ -1,30 +0,0 @@ -
- - - - -
- -
-
- - - - - - - - - - - - - -
- %message% -
%sender% @ %time%
- -
-
-
-
diff --git a/resources/themes/Default/Incoming/Context.html b/resources/themes/Default/Incoming/Context.html deleted file mode 100755 index b1aca27..0000000 --- a/resources/themes/Default/Incoming/Context.html +++ /dev/null @@ -1,30 +0,0 @@ -
- - - - -
- -
-
- - - - - - - - - - - - - -
- %message% -
%sender% @ %time%
- -
-
-
-
diff --git a/resources/themes/Default/Incoming/NextContent.html b/resources/themes/Default/Incoming/NextContent.html deleted file mode 100755 index 4aec8ab..0000000 --- a/resources/themes/Default/Incoming/NextContent.html +++ /dev/null @@ -1,10 +0,0 @@ -
-
-
- - %message% -
%time%
-
- -
- diff --git a/resources/themes/Default/Incoming/NextContext.html b/resources/themes/Default/Incoming/NextContext.html deleted file mode 100755 index 18b8dc4..0000000 --- a/resources/themes/Default/Incoming/NextContext.html +++ /dev/null @@ -1,7 +0,0 @@ -
-
- - %message% -
%time%
-
- diff --git a/resources/themes/Default/Incoming/buddy_icon.png b/resources/themes/Default/Incoming/buddy_icon.png deleted file mode 100644 index 1d9f5f3..0000000 Binary files a/resources/themes/Default/Incoming/buddy_icon.png and /dev/null differ diff --git a/resources/themes/Default/LICENSE.txt b/resources/themes/Default/LICENSE.txt deleted file mode 100644 index 2eee1ee..0000000 --- a/resources/themes/Default/LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -The images, css and html is dual licensed under the BSD and AFL license. -The source files for the bubbles can be found at http://www.itorrey.com/adiumx/ - -The fading javascript is not covered in this license. The code is fadomatic and is covered under its own license as set by its author. - -BSD LICENSE -Copyright (c) 2007, Torrey Rice/Renkoo℠ All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the Torrey Rice and Renkoo nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Renkoo is a service mark of Renkoo, Inc. - -http://www.opensource.org/licenses/bsd-license.php - - - -# Larry Rosen has ceased to use or recommend any version # of the Academic Free License below version 2.1 The Academic Free License v. 2.1 This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: Licensed under the Academic Free License version 2.1 1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following: a) to reproduce the Original Work in copies; b) to prepare derivative works ("Derivative Works") based upon the Original Work; c) to distribute copies of the Original Work and Derivative Works to the public; d) to perform the Original Work publicly; and e) to display the Original Work publicly. 2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works. 3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work. 4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license. 5) This section intentionally omitted. 6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. 7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer. 8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. 9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. 10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. 11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. Å0á0°Ï 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License. 12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. 13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. 14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. 15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner. \ No newline at end of file diff --git a/resources/themes/Default/Outgoing/Content.html b/resources/themes/Default/Outgoing/Content.html deleted file mode 100755 index beb57f0..0000000 --- a/resources/themes/Default/Outgoing/Content.html +++ /dev/null @@ -1,30 +0,0 @@ -
- - - - -
- -
-
- - - - - - - - - - - - - -
- %message% -
%sender% @ %time%
- -
-
-
-
diff --git a/resources/themes/Default/Outgoing/Context.html b/resources/themes/Default/Outgoing/Context.html deleted file mode 100755 index 7822cac..0000000 --- a/resources/themes/Default/Outgoing/Context.html +++ /dev/null @@ -1,31 +0,0 @@ -
- - - - -
- -
-
- - - - - - - - - - - - - -
- - %message% -
%sender% @ %time%
- -
-
-
-
diff --git a/resources/themes/Default/Outgoing/NextContent.html b/resources/themes/Default/Outgoing/NextContent.html deleted file mode 100755 index 4367197..0000000 --- a/resources/themes/Default/Outgoing/NextContent.html +++ /dev/null @@ -1,9 +0,0 @@ -
-
-
- %message% -
%time%
-
- -
- diff --git a/resources/themes/Default/Outgoing/NextContext.html b/resources/themes/Default/Outgoing/NextContext.html deleted file mode 100755 index 1f84771..0000000 --- a/resources/themes/Default/Outgoing/NextContext.html +++ /dev/null @@ -1,6 +0,0 @@ -
-
- %message% -
%time%
-
- diff --git a/resources/themes/Default/Outgoing/buddy_icon.png b/resources/themes/Default/Outgoing/buddy_icon.png deleted file mode 100644 index 1d9f5f3..0000000 Binary files a/resources/themes/Default/Outgoing/buddy_icon.png and /dev/null differ diff --git a/resources/themes/Default/Status.html b/resources/themes/Default/Status.html deleted file mode 100755 index b8168e8..0000000 --- a/resources/themes/Default/Status.html +++ /dev/null @@ -1,27 +0,0 @@ -
- - - - -
-
- - - - - - - - - - - - - -
- %message% -
%time%
-
-
-
-
diff --git a/resources/themes/Default/Template.html b/resources/themes/Default/Template.html deleted file mode 100755 index 15f208c..0000000 --- a/resources/themes/Default/Template.html +++ /dev/null @@ -1,366 +0,0 @@ - - - - - - - - - - - - - -%@ -
-
-%@ -
- - diff --git a/resources/themes/Default/Variants/Blue on Green Alternating.css b/resources/themes/Default/Variants/Blue on Green Alternating.css deleted file mode 100644 index 5b910eb..0000000 --- a/resources/themes/Default/Variants/Blue on Green Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Blue on Green.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/blueIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Blue on Green No Names Alt.css b/resources/themes/Default/Variants/Blue on Green No Names Alt.css deleted file mode 100644 index ebad314..0000000 --- a/resources/themes/Default/Variants/Blue on Green No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Blue on Green Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Blue on Green No Names.css b/resources/themes/Default/Variants/Blue on Green No Names.css deleted file mode 100644 index 2a0902c..0000000 --- a/resources/themes/Default/Variants/Blue on Green No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Blue on Green.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Blue on Green.css b/resources/themes/Default/Variants/Blue on Green.css deleted file mode 100644 index 361c8c6..0000000 --- a/resources/themes/Default/Variants/Blue on Green.css +++ /dev/null @@ -1,90 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#7fc5f8; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/blueIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/blueCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/blueCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/blueCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/blueBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/blueBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/blueCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/blueCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#ddf0fe; - border-bottom:1px solid #fff; -} - -/*incoming */ - -.incomingItem .myBubble .indicator { - background:url("../images/greenIndicator.png") no-repeat top left; -} - -.incomingItem .timeStamp { - color:#9ecf35; -} - -.incomingItem .tableBubble .tl { - background:url("../images/greenCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/greenCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/greenCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/greenBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/greenBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/greenCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/greenCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#e2efc4; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Blue on Red Alternating.css b/resources/themes/Default/Variants/Blue on Red Alternating.css deleted file mode 100644 index 5481c10..0000000 --- a/resources/themes/Default/Variants/Blue on Red Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Blue on Red.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/blueIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Blue on Red No Names Alt.css b/resources/themes/Default/Variants/Blue on Red No Names Alt.css deleted file mode 100644 index 9818a6c..0000000 --- a/resources/themes/Default/Variants/Blue on Red No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Blue on Red Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Blue on Red No Names.css b/resources/themes/Default/Variants/Blue on Red No Names.css deleted file mode 100644 index 3ac8c9a..0000000 --- a/resources/themes/Default/Variants/Blue on Red No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Blue on Red.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Blue on Red.css b/resources/themes/Default/Variants/Blue on Red.css deleted file mode 100644 index 0717920..0000000 --- a/resources/themes/Default/Variants/Blue on Red.css +++ /dev/null @@ -1,89 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#7fc5f8; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/blueIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/blueCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/blueCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/blueCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/blueBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/blueBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/blueCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/blueCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#ddf0fe; - border-bottom:1px solid #fff; -} - - -/*incoming */ - -.incomingItem .timeStamp { - color:#f88f8f; -} - -.incomingItem .myBubble .indicator { - background:url("../images/redIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/redCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/redCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/redCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/redBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/redBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/redCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/redCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#ffdada; - border-bottom:1px solid #fff; -} diff --git a/resources/themes/Default/Variants/Blue on Steel Alternating.css b/resources/themes/Default/Variants/Blue on Steel Alternating.css deleted file mode 100644 index 8473d1f..0000000 --- a/resources/themes/Default/Variants/Blue on Steel Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Blue on Steel.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/blueIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Blue on Steel No Names Alt.css b/resources/themes/Default/Variants/Blue on Steel No Names Alt.css deleted file mode 100644 index 1925d5c..0000000 --- a/resources/themes/Default/Variants/Blue on Steel No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Blue on Steel Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Blue on Steel No Names.css b/resources/themes/Default/Variants/Blue on Steel No Names.css deleted file mode 100644 index 573aa58..0000000 --- a/resources/themes/Default/Variants/Blue on Steel No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Blue on Steel.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Blue on Steel.css b/resources/themes/Default/Variants/Blue on Steel.css deleted file mode 100644 index 48ab03d..0000000 --- a/resources/themes/Default/Variants/Blue on Steel.css +++ /dev/null @@ -1,91 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#7fc5f8; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/blueIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/blueCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/blueCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/blueCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/blueBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/blueBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/blueCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/blueCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#ddf0fe; - border-bottom:1px solid #fff; -} - - -/*incoming */ - -.incomingItem .timeStamp { - color:#a9a9a9; -} - -.incomingItem .myBubble .indicator { - background:url("../images/steelIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/steelCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/steelCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/steelCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/steelBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/steelBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/steelCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/steelCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#ececec; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Blue on Yellow Alternating.css b/resources/themes/Default/Variants/Blue on Yellow Alternating.css deleted file mode 100644 index d7927fc..0000000 --- a/resources/themes/Default/Variants/Blue on Yellow Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Blue on Yellow.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/blueIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Blue on Yellow No Names Alt.css b/resources/themes/Default/Variants/Blue on Yellow No Names Alt.css deleted file mode 100644 index 38d374d..0000000 --- a/resources/themes/Default/Variants/Blue on Yellow No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Blue on Yellow Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Blue on Yellow No Names.css b/resources/themes/Default/Variants/Blue on Yellow No Names.css deleted file mode 100644 index 3fdc8cd..0000000 --- a/resources/themes/Default/Variants/Blue on Yellow No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Blue on Yellow.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Blue on Yellow.css b/resources/themes/Default/Variants/Blue on Yellow.css deleted file mode 100644 index b019b0b..0000000 --- a/resources/themes/Default/Variants/Blue on Yellow.css +++ /dev/null @@ -1,91 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#7fc5f8; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/blueIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/blueCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/blueCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/blueCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/blueBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/blueBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/blueCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/blueCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#ddf0fe; - border-bottom:1px solid #fff; -} - - -/*incoming */ - -.incomingItem .timeStamp { - color:#bdb410; -} - -.incomingItem .myBubble .indicator { - background:url("../images/yellowIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/yellowCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/yellowCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/yellowCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/yellowBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/yellowBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/yellowCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/yellowCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#f4f0a7; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Green on Blue Alternating.css b/resources/themes/Default/Variants/Green on Blue Alternating.css deleted file mode 100644 index 272c0d0..0000000 --- a/resources/themes/Default/Variants/Green on Blue Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Green on Blue.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/greenIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Green on Blue No Names Alt.css b/resources/themes/Default/Variants/Green on Blue No Names Alt.css deleted file mode 100644 index 973f91a..0000000 --- a/resources/themes/Default/Variants/Green on Blue No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Green on Blue Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Green on Blue No Names.css b/resources/themes/Default/Variants/Green on Blue No Names.css deleted file mode 100644 index 0d92eb0..0000000 --- a/resources/themes/Default/Variants/Green on Blue No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Green on Blue.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Green on Blue.css b/resources/themes/Default/Variants/Green on Blue.css deleted file mode 100644 index 7185f4f..0000000 --- a/resources/themes/Default/Variants/Green on Blue.css +++ /dev/null @@ -1,91 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#9ecf35; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/greenIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/greenCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/greenCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/greenCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/greenBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/greenBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/greenCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/greenCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#e2efc4; - border-bottom:1px solid #fff; -} - - -/*incoming */ - -.incomingItem .timeStamp { - color:#7fc5f8; -} - -.incomingItem .myBubble .indicator { - background:url("../images/blueIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/blueCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/blueCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/blueCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/blueBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/blueBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/blueCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/blueCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#ddf0fe; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Green on Red Alternating.css b/resources/themes/Default/Variants/Green on Red Alternating.css deleted file mode 100644 index e656dc0..0000000 --- a/resources/themes/Default/Variants/Green on Red Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Green on Red.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/greenIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Green on Red No Names Alt.css b/resources/themes/Default/Variants/Green on Red No Names Alt.css deleted file mode 100644 index 5fd2482..0000000 --- a/resources/themes/Default/Variants/Green on Red No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Green on Red Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Green on Red No Names.css b/resources/themes/Default/Variants/Green on Red No Names.css deleted file mode 100644 index 23dae81..0000000 --- a/resources/themes/Default/Variants/Green on Red No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Green on Red.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Green on Red.css b/resources/themes/Default/Variants/Green on Red.css deleted file mode 100644 index cdf38b3..0000000 --- a/resources/themes/Default/Variants/Green on Red.css +++ /dev/null @@ -1,91 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#9ecf35; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/greenIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/greenCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/greenCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/greenCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/greenBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/greenBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/greenCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/greenCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#e2efc4; - border-bottom:1px solid #fff; -} - - -/*incoming */ - -.incomingItem .timeStamp { - color:#f88f8f; -} - -.incomingItem .myBubble .indicator { - background:url("../images/redIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/redCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/redCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/redCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/redBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/redBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/redCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/redCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#ffdada; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Green on Steel Alternating.css b/resources/themes/Default/Variants/Green on Steel Alternating.css deleted file mode 100644 index 3c14f7f..0000000 --- a/resources/themes/Default/Variants/Green on Steel Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Green on Steel.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/greenIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Green on Steel No Names Alt.css b/resources/themes/Default/Variants/Green on Steel No Names Alt.css deleted file mode 100644 index cfd6bb9..0000000 --- a/resources/themes/Default/Variants/Green on Steel No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Green on Steel Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Green on Steel No Names.css b/resources/themes/Default/Variants/Green on Steel No Names.css deleted file mode 100644 index 41bc9de..0000000 --- a/resources/themes/Default/Variants/Green on Steel No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Green on Steel.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Green on Steel.css b/resources/themes/Default/Variants/Green on Steel.css deleted file mode 100644 index 30a78a0..0000000 --- a/resources/themes/Default/Variants/Green on Steel.css +++ /dev/null @@ -1,91 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#9ecf35; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/greenIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/greenCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/greenCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/greenCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/greenBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/greenBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/greenCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/greenCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#e2efc4; - border-bottom:1px solid #fff; -} - - -/*incoming */ - -.incomingItem .timeStamp { - color:#a9a9a9; -} - -.incomingItem .myBubble .indicator { - background:url("../images/steelIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/steelCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/steelCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/steelCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/steelBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/steelBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/steelCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/steelCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#ececec; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Green on Yellow Alternating.css b/resources/themes/Default/Variants/Green on Yellow Alternating.css deleted file mode 100644 index d0553e8..0000000 --- a/resources/themes/Default/Variants/Green on Yellow Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Green on Yellow.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/greenIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Green on Yellow No Names Alt.css b/resources/themes/Default/Variants/Green on Yellow No Names Alt.css deleted file mode 100644 index 27adc33..0000000 --- a/resources/themes/Default/Variants/Green on Yellow No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Green on Yellow Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Green on Yellow No Names.css b/resources/themes/Default/Variants/Green on Yellow No Names.css deleted file mode 100644 index 8c8cb28..0000000 --- a/resources/themes/Default/Variants/Green on Yellow No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Green on Yellow.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Green on Yellow.css b/resources/themes/Default/Variants/Green on Yellow.css deleted file mode 100644 index d7f64d3..0000000 --- a/resources/themes/Default/Variants/Green on Yellow.css +++ /dev/null @@ -1,91 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#9ecf35; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/greenIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/greenCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/greenCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/greenCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/greenBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/greenBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/greenCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/greenCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#e2efc4; - border-bottom:1px solid #fff; -} - - -/*incoming */ - -.incomingItem .timeStamp { - color:#bdb410; -} - -.incomingItem .myBubble .indicator { - background:url("../images/yellowIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/yellowCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/yellowCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/yellowCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/yellowBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/yellowBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/yellowCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/yellowCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#f4f0a7; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Red on Blue Alternating.css b/resources/themes/Default/Variants/Red on Blue Alternating.css deleted file mode 100644 index 5d241fb..0000000 --- a/resources/themes/Default/Variants/Red on Blue Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Red on Blue.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/redIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Red on Blue No Names Alt.css b/resources/themes/Default/Variants/Red on Blue No Names Alt.css deleted file mode 100644 index 2e80935..0000000 --- a/resources/themes/Default/Variants/Red on Blue No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Red on Blue Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Red on Blue No Names.css b/resources/themes/Default/Variants/Red on Blue No Names.css deleted file mode 100644 index da98b5c..0000000 --- a/resources/themes/Default/Variants/Red on Blue No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Red on Blue.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Red on Blue.css b/resources/themes/Default/Variants/Red on Blue.css deleted file mode 100644 index f6e646c..0000000 --- a/resources/themes/Default/Variants/Red on Blue.css +++ /dev/null @@ -1,90 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#f88f8f; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/redIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/redCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/redCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/redCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/redBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/redBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/redCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/redCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#ffdada; - border-bottom:1px solid #fff; -} - - - -/*incoming */ - -.incomingItem .timeStamp { - color:#7fc5f8; -} - -.incomingItem .myBubble .indicator { - background:url("../images/blueIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/blueCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/blueCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/blueCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/blueBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/blueBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/blueCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/blueCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#ddf0fe; - border-bottom:1px solid #fff; -} diff --git a/resources/themes/Default/Variants/Red on Green Alternating.css b/resources/themes/Default/Variants/Red on Green Alternating.css deleted file mode 100644 index db8effa..0000000 --- a/resources/themes/Default/Variants/Red on Green Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Red on Green.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/redIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Red on Green No Names Alt.css b/resources/themes/Default/Variants/Red on Green No Names Alt.css deleted file mode 100644 index 9a230f2..0000000 --- a/resources/themes/Default/Variants/Red on Green No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Red on Green Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Red on Green No Names.css b/resources/themes/Default/Variants/Red on Green No Names.css deleted file mode 100644 index 1bbc2a5..0000000 --- a/resources/themes/Default/Variants/Red on Green No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Red on Green.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Red on Green.css b/resources/themes/Default/Variants/Red on Green.css deleted file mode 100644 index 0e7c12b..0000000 --- a/resources/themes/Default/Variants/Red on Green.css +++ /dev/null @@ -1,95 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#f88f8f; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/redIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/redCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/redCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/redCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/redBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/redBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/redCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/redCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#ffdada; - border-bottom:1px solid #fff; -} - -/*incoming */ - -.incomingItem .timeStamp { - color:#9ecf35; -} - - -.incomingItem .myBubble .indicator { - background:url("../images/greenIndicator.png") no-repeat top left; -} - -.incomingItem .timeStamp { - color:#9ecf35; -} - -.incomingItem .tableBubble .tl { - background:url("../images/greenCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/greenCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/greenCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/greenBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/greenBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/greenCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/greenCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#e2efc4; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Red on Steel Alternating.css b/resources/themes/Default/Variants/Red on Steel Alternating.css deleted file mode 100644 index ad7eb15..0000000 --- a/resources/themes/Default/Variants/Red on Steel Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Red on Steel.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/redIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Red on Steel No Names Alt.css b/resources/themes/Default/Variants/Red on Steel No Names Alt.css deleted file mode 100644 index 9c6ab55..0000000 --- a/resources/themes/Default/Variants/Red on Steel No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Red on Steel Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Red on Steel No Names.css b/resources/themes/Default/Variants/Red on Steel No Names.css deleted file mode 100644 index aa2b60a..0000000 --- a/resources/themes/Default/Variants/Red on Steel No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Red on Steel.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Red on Steel.css b/resources/themes/Default/Variants/Red on Steel.css deleted file mode 100644 index 8a39df2..0000000 --- a/resources/themes/Default/Variants/Red on Steel.css +++ /dev/null @@ -1,93 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#f88f8f; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/redIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/redCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/redCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/redCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/redBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/redBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/redCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/redCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#ffdada; - border-bottom:1px solid #fff; -} - - - - -/*incoming */ - -.incomingItem .timeStamp { - color:#a9a9a9; -} - -.incomingItem .myBubble .indicator { - background:url("../images/steelIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/steelCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/steelCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/steelCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/steelBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/steelBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/steelCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/steelCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#ececec; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Red on Yellow Alternating.css b/resources/themes/Default/Variants/Red on Yellow Alternating.css deleted file mode 100644 index b264d7d..0000000 --- a/resources/themes/Default/Variants/Red on Yellow Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Red on Yellow.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/redIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Red on Yellow No Names Alt.css b/resources/themes/Default/Variants/Red on Yellow No Names Alt.css deleted file mode 100644 index dc4394e..0000000 --- a/resources/themes/Default/Variants/Red on Yellow No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Red on Yellow Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Red on Yellow No Names.css b/resources/themes/Default/Variants/Red on Yellow No Names.css deleted file mode 100644 index 9ca44ec..0000000 --- a/resources/themes/Default/Variants/Red on Yellow No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Red on Yellow.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Red on Yellow.css b/resources/themes/Default/Variants/Red on Yellow.css deleted file mode 100644 index f2dc5a0..0000000 --- a/resources/themes/Default/Variants/Red on Yellow.css +++ /dev/null @@ -1,91 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#f88f8f; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/redIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/redCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/redCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/redCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/redBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/redBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/redCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/redCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#ffdada; - border-bottom:1px solid #fff; -} - - - - -/*incoming */ - -.incomingItem .timeStamp { - color:#bdb410; -} - -.incomingItem .myBubble .indicator { - background:url("../images/yellowIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/yellowCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/yellowCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/yellowCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/yellowBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/yellowBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/yellowCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/yellowCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#f4f0a7; - border-bottom:1px solid #fff; -} diff --git a/resources/themes/Default/Variants/Steel on Blue Alternating.css b/resources/themes/Default/Variants/Steel on Blue Alternating.css deleted file mode 100644 index 8c15ec2..0000000 --- a/resources/themes/Default/Variants/Steel on Blue Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Steel on Blue.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/steelIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Steel on Blue No Names Alt.css b/resources/themes/Default/Variants/Steel on Blue No Names Alt.css deleted file mode 100644 index 7edfcb1..0000000 --- a/resources/themes/Default/Variants/Steel on Blue No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Steel on Blue Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Steel on Blue No Names.css b/resources/themes/Default/Variants/Steel on Blue No Names.css deleted file mode 100644 index f7058b9..0000000 --- a/resources/themes/Default/Variants/Steel on Blue No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Steel on Blue.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Steel on Blue.css b/resources/themes/Default/Variants/Steel on Blue.css deleted file mode 100644 index 6203dc2..0000000 --- a/resources/themes/Default/Variants/Steel on Blue.css +++ /dev/null @@ -1,92 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#a9a9a9; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/steelIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/steelCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/steelCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/steelCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/steelBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/steelBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/steelCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/steelCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#ececec; - border-bottom:1px solid #fff; -} - - - -/*incoming */ - -.incomingItem .timeStamp { - color:#7fc5f8; -} - -.incomingItem .myBubble .indicator { - background:url("../images/blueIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/blueCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/blueCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/blueCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/blueBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/blueBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/blueCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/blueCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#ddf0fe; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Steel on Green Alternating.css b/resources/themes/Default/Variants/Steel on Green Alternating.css deleted file mode 100644 index 69474f0..0000000 --- a/resources/themes/Default/Variants/Steel on Green Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Steel on Green.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/steelIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Steel on Green No Names Alt.css b/resources/themes/Default/Variants/Steel on Green No Names Alt.css deleted file mode 100644 index 6fc5606..0000000 --- a/resources/themes/Default/Variants/Steel on Green No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Steel on Green Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Steel on Green No Names.css b/resources/themes/Default/Variants/Steel on Green No Names.css deleted file mode 100644 index f07264b..0000000 --- a/resources/themes/Default/Variants/Steel on Green No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Steel on Green.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Steel on Green.css b/resources/themes/Default/Variants/Steel on Green.css deleted file mode 100644 index 800dc6b..0000000 --- a/resources/themes/Default/Variants/Steel on Green.css +++ /dev/null @@ -1,97 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#a9a9a9; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/steelIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/steelCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/steelCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/steelCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/steelBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/steelBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/steelCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/steelCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#ececec; - border-bottom:1px solid #fff; -} - - - -/*incoming */ - -.incomingItem .timeStamp { - color:#9ecf35; -} - - -.incomingItem .myBubble .indicator { - background:url("../images/greenIndicator.png") no-repeat top left; -} - -.incomingItem .timeStamp { - color:#9ecf35; -} - -.incomingItem .tableBubble .tl { - background:url("../images/greenCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/greenCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/greenCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/greenBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/greenBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/greenCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/greenCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#e2efc4; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Steel on Red Alternating.css b/resources/themes/Default/Variants/Steel on Red Alternating.css deleted file mode 100644 index 64a783b..0000000 --- a/resources/themes/Default/Variants/Steel on Red Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Steel on Red.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/steelIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Steel on Red No Names Alt.css b/resources/themes/Default/Variants/Steel on Red No Names Alt.css deleted file mode 100644 index 995f329..0000000 --- a/resources/themes/Default/Variants/Steel on Red No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Steel on Red Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Steel on Red No Names.css b/resources/themes/Default/Variants/Steel on Red No Names.css deleted file mode 100644 index b5e622e..0000000 --- a/resources/themes/Default/Variants/Steel on Red No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Steel on Red.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Steel on Red.css b/resources/themes/Default/Variants/Steel on Red.css deleted file mode 100644 index 922c6ef..0000000 --- a/resources/themes/Default/Variants/Steel on Red.css +++ /dev/null @@ -1,89 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#a9a9a9; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/steelIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/steelCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/steelCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/steelCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/steelBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/steelBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/steelCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/steelCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#ececec; - border-bottom:1px solid #fff; -} - - -/*incoming */ - -.incomingItem .timeStamp { - color:#f88f8f; -} - -.incomingItem .myBubble .indicator { - background:url("../images/redIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/redCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/redCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/redCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/redBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/redBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/redCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/redCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#ffdada; - border-bottom:1px solid #fff; -} diff --git a/resources/themes/Default/Variants/Steel on Yellow Alternating.css b/resources/themes/Default/Variants/Steel on Yellow Alternating.css deleted file mode 100644 index 0249230..0000000 --- a/resources/themes/Default/Variants/Steel on Yellow Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Steel on Yellow.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/steelIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Steel on Yellow No Names Alt.css b/resources/themes/Default/Variants/Steel on Yellow No Names Alt.css deleted file mode 100644 index 9ab928c..0000000 --- a/resources/themes/Default/Variants/Steel on Yellow No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Steel on Yellow Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Steel on Yellow No Names.css b/resources/themes/Default/Variants/Steel on Yellow No Names.css deleted file mode 100644 index ecf7861..0000000 --- a/resources/themes/Default/Variants/Steel on Yellow No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Steel on Yellow.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Steel on Yellow.css b/resources/themes/Default/Variants/Steel on Yellow.css deleted file mode 100644 index 2d91510..0000000 --- a/resources/themes/Default/Variants/Steel on Yellow.css +++ /dev/null @@ -1,92 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#a9a9a9; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/steelIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/steelCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/steelCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/steelCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/steelBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/steelBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/steelCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/steelCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#ececec; - border-bottom:1px solid #fff; -} - - - -/*incoming */ - -.incomingItem .timeStamp { - color:#bdb410; -} - -.incomingItem .myBubble .indicator { - background:url("../images/yellowIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/yellowCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/yellowCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/yellowCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/yellowBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/yellowBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/yellowCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/yellowCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#f4f0a7; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Yellow on Blue Alternating.css b/resources/themes/Default/Variants/Yellow on Blue Alternating.css deleted file mode 100644 index 361856d..0000000 --- a/resources/themes/Default/Variants/Yellow on Blue Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Yellow on Blue.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/yellowIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Yellow on Blue No Names Alt.css b/resources/themes/Default/Variants/Yellow on Blue No Names Alt.css deleted file mode 100644 index 2e31a7c..0000000 --- a/resources/themes/Default/Variants/Yellow on Blue No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Yellow on Blue Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Yellow on Blue No Names.css b/resources/themes/Default/Variants/Yellow on Blue No Names.css deleted file mode 100644 index 808377f..0000000 --- a/resources/themes/Default/Variants/Yellow on Blue No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Yellow on Blue.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Yellow on Blue.css b/resources/themes/Default/Variants/Yellow on Blue.css deleted file mode 100644 index 7e745e9..0000000 --- a/resources/themes/Default/Variants/Yellow on Blue.css +++ /dev/null @@ -1,91 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#bdb410; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/yellowIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/yellowCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/yellowCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/yellowCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/yellowBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/yellowBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/yellowCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/yellowCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#f4f0a7; - border-bottom:1px solid #fff; -} - - -/*incoming */ - -.incomingItem .timeStamp { - color:#7fc5f8; -} - -.incomingItem .myBubble .indicator { - background:url("../images/blueIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/blueCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/blueCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/blueCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/blueBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/blueBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/blueCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/blueCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#ddf0fe; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Yellow on Green Alternating.css b/resources/themes/Default/Variants/Yellow on Green Alternating.css deleted file mode 100644 index cb88dfb..0000000 --- a/resources/themes/Default/Variants/Yellow on Green Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Yellow on Green.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/yellowIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Yellow on Green No Names Alt.css b/resources/themes/Default/Variants/Yellow on Green No Names Alt.css deleted file mode 100644 index 24fe8ef..0000000 --- a/resources/themes/Default/Variants/Yellow on Green No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Yellow on Green Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Yellow on Green No Names.css b/resources/themes/Default/Variants/Yellow on Green No Names.css deleted file mode 100644 index 0c7d12b..0000000 --- a/resources/themes/Default/Variants/Yellow on Green No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Yellow on Green.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Yellow on Green.css b/resources/themes/Default/Variants/Yellow on Green.css deleted file mode 100644 index de4afc6..0000000 --- a/resources/themes/Default/Variants/Yellow on Green.css +++ /dev/null @@ -1,96 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#bdb410; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/yellowIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/yellowCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/yellowCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/yellowCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/yellowBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/yellowBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/yellowCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/yellowCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#f4f0a7; - border-bottom:1px solid #fff; -} - - -/*incoming */ - -.incomingItem .timeStamp { - color:#9ecf35; -} - - -.incomingItem .myBubble .indicator { - background:url("../images/greenIndicator.png") no-repeat top left; -} - -.incomingItem .timeStamp { - color:#9ecf35; -} - -.incomingItem .tableBubble .tl { - background:url("../images/greenCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/greenCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/greenCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/greenBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/greenBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/greenCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/greenCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#e2efc4; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Yellow on Red Alternating.css b/resources/themes/Default/Variants/Yellow on Red Alternating.css deleted file mode 100644 index 592b8c4..0000000 --- a/resources/themes/Default/Variants/Yellow on Red Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Yellow on Red.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/yellowIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Yellow on Red No Names Alt.css b/resources/themes/Default/Variants/Yellow on Red No Names Alt.css deleted file mode 100644 index fe464d9..0000000 --- a/resources/themes/Default/Variants/Yellow on Red No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Yellow on Red Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Yellow on Red No Names.css b/resources/themes/Default/Variants/Yellow on Red No Names.css deleted file mode 100644 index f35c8a2..0000000 --- a/resources/themes/Default/Variants/Yellow on Red No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Yellow on Red.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Yellow on Red.css b/resources/themes/Default/Variants/Yellow on Red.css deleted file mode 100644 index f73f0d0..0000000 --- a/resources/themes/Default/Variants/Yellow on Red.css +++ /dev/null @@ -1,91 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#bdb410; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/yellowIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/yellowCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/yellowCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/yellowCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/yellowBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/yellowBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/yellowCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/yellowCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#f4f0a7; - border-bottom:1px solid #fff; -} - - -/*incoming */ - -.incomingItem .timeStamp { - color:#f88f8f; -} - -.incomingItem .myBubble .indicator { - background:url("../images/redIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/redCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/redCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/redCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/redBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/redBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/redCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/redCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#ffdada; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/Variants/Yellow on Steel Alternating.css b/resources/themes/Default/Variants/Yellow on Steel Alternating.css deleted file mode 100644 index a019487..0000000 --- a/resources/themes/Default/Variants/Yellow on Steel Alternating.css +++ /dev/null @@ -1,7 +0,0 @@ -@import url("Yellow on Steel.css"); -@import url("../alternating.css"); - - -.outgoingItem .myBubble .indicator { - background:url("../images/yellowIndicator2.png") no-repeat top left; -} diff --git a/resources/themes/Default/Variants/Yellow on Steel No Names Alt.css b/resources/themes/Default/Variants/Yellow on Steel No Names Alt.css deleted file mode 100644 index 273bcbb..0000000 --- a/resources/themes/Default/Variants/Yellow on Steel No Names Alt.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Yellow on Steel Alternating.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Yellow on Steel No Names.css b/resources/themes/Default/Variants/Yellow on Steel No Names.css deleted file mode 100644 index 1f8d314..0000000 --- a/resources/themes/Default/Variants/Yellow on Steel No Names.css +++ /dev/null @@ -1,2 +0,0 @@ -@import url("Yellow on Steel.css"); -@import url("../noname.css"); diff --git a/resources/themes/Default/Variants/Yellow on Steel.css b/resources/themes/Default/Variants/Yellow on Steel.css deleted file mode 100644 index 680f0c8..0000000 --- a/resources/themes/Default/Variants/Yellow on Steel.css +++ /dev/null @@ -1,91 +0,0 @@ -@import url("../main.css"); - -/* outgoing */ - - -.outgoingItem .timeStamp { - color:#bdb410; -} - -.outgoingItem .myBubble .indicator { - background:url("../images/yellowIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("../images/yellowCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("../images/yellowCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("../images/yellowCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("../images/yellowBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("../images/yellowBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("../images/yellowCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("../images/yellowCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#f4f0a7; - border-bottom:1px solid #fff; -} - - -/*incoming */ - -.incomingItem .timeStamp { - color:#a9a9a9; -} - -.incomingItem .myBubble .indicator { - background:url("../images/steelIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("../images/steelCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("../images/steelCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("../images/steelCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("../images/steelBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("../images/steelBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("../images/steelCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("../images/steelCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#ececec; - border-bottom:1px solid #fff; -} - - diff --git a/resources/themes/Default/alternating.css b/resources/themes/Default/alternating.css deleted file mode 100644 index 2b21147..0000000 --- a/resources/themes/Default/alternating.css +++ /dev/null @@ -1,16 +0,0 @@ - -.outgoingItem .avatar { - float:right; -} - -.outgoingItem .indicator { - float:right; - position:relative; - left:11px; - top:8px; -} - -.myBubble { - margin-right:40px; -} - diff --git a/resources/themes/Default/images/DummyContact.png b/resources/themes/Default/images/DummyContact.png deleted file mode 100755 index 5149ea5..0000000 Binary files a/resources/themes/Default/images/DummyContact.png and /dev/null differ diff --git a/resources/themes/Default/images/alert.png b/resources/themes/Default/images/alert.png deleted file mode 100755 index ad59ebc..0000000 Binary files a/resources/themes/Default/images/alert.png and /dev/null differ diff --git a/resources/themes/Default/images/blueBackground.gif b/resources/themes/Default/images/blueBackground.gif deleted file mode 100755 index 1aad572..0000000 Binary files a/resources/themes/Default/images/blueBackground.gif and /dev/null differ diff --git a/resources/themes/Default/images/blueBackground.png b/resources/themes/Default/images/blueBackground.png deleted file mode 100644 index c3eecf5..0000000 Binary files a/resources/themes/Default/images/blueBackground.png and /dev/null differ diff --git a/resources/themes/Default/images/blueCurves.gif b/resources/themes/Default/images/blueCurves.gif deleted file mode 100755 index 90e3823..0000000 Binary files a/resources/themes/Default/images/blueCurves.gif and /dev/null differ diff --git a/resources/themes/Default/images/blueCurves.png b/resources/themes/Default/images/blueCurves.png deleted file mode 100644 index 7a6afe1..0000000 Binary files a/resources/themes/Default/images/blueCurves.png and /dev/null differ diff --git a/resources/themes/Default/images/blueIndicator.gif b/resources/themes/Default/images/blueIndicator.gif deleted file mode 100755 index 3a1b40a..0000000 Binary files a/resources/themes/Default/images/blueIndicator.gif and /dev/null differ diff --git a/resources/themes/Default/images/blueIndicator.png b/resources/themes/Default/images/blueIndicator.png deleted file mode 100644 index 29b65cb..0000000 Binary files a/resources/themes/Default/images/blueIndicator.png and /dev/null differ diff --git a/resources/themes/Default/images/blueIndicator2.png b/resources/themes/Default/images/blueIndicator2.png deleted file mode 100644 index d7c3621..0000000 Binary files a/resources/themes/Default/images/blueIndicator2.png and /dev/null differ diff --git a/resources/themes/Default/images/blueIndicatorAlt.gif b/resources/themes/Default/images/blueIndicatorAlt.gif deleted file mode 100644 index aaacb89..0000000 Binary files a/resources/themes/Default/images/blueIndicatorAlt.gif and /dev/null differ diff --git a/resources/themes/Default/images/greenBackground.gif b/resources/themes/Default/images/greenBackground.gif deleted file mode 100755 index a11a52d..0000000 Binary files a/resources/themes/Default/images/greenBackground.gif and /dev/null differ diff --git a/resources/themes/Default/images/greenBackground.png b/resources/themes/Default/images/greenBackground.png deleted file mode 100644 index dfeb36e..0000000 Binary files a/resources/themes/Default/images/greenBackground.png and /dev/null differ diff --git a/resources/themes/Default/images/greenCurves.gif b/resources/themes/Default/images/greenCurves.gif deleted file mode 100755 index 165892a..0000000 Binary files a/resources/themes/Default/images/greenCurves.gif and /dev/null differ diff --git a/resources/themes/Default/images/greenCurves.png b/resources/themes/Default/images/greenCurves.png deleted file mode 100644 index 13fae75..0000000 Binary files a/resources/themes/Default/images/greenCurves.png and /dev/null differ diff --git a/resources/themes/Default/images/greenIndicator.gif b/resources/themes/Default/images/greenIndicator.gif deleted file mode 100755 index b6409c7..0000000 Binary files a/resources/themes/Default/images/greenIndicator.gif and /dev/null differ diff --git a/resources/themes/Default/images/greenIndicator.png b/resources/themes/Default/images/greenIndicator.png deleted file mode 100644 index 381db82..0000000 Binary files a/resources/themes/Default/images/greenIndicator.png and /dev/null differ diff --git a/resources/themes/Default/images/greenIndicator2.png b/resources/themes/Default/images/greenIndicator2.png deleted file mode 100644 index 1dedb31..0000000 Binary files a/resources/themes/Default/images/greenIndicator2.png and /dev/null differ diff --git a/resources/themes/Default/images/greenIndicatorAlt.gif b/resources/themes/Default/images/greenIndicatorAlt.gif deleted file mode 100644 index 3ccbc23..0000000 Binary files a/resources/themes/Default/images/greenIndicatorAlt.gif and /dev/null differ diff --git a/resources/themes/Default/images/redBackground.gif b/resources/themes/Default/images/redBackground.gif deleted file mode 100755 index ce1443e..0000000 Binary files a/resources/themes/Default/images/redBackground.gif and /dev/null differ diff --git a/resources/themes/Default/images/redBackground.png b/resources/themes/Default/images/redBackground.png deleted file mode 100644 index bbacbc7..0000000 Binary files a/resources/themes/Default/images/redBackground.png and /dev/null differ diff --git a/resources/themes/Default/images/redCurves.gif b/resources/themes/Default/images/redCurves.gif deleted file mode 100755 index 55e496d..0000000 Binary files a/resources/themes/Default/images/redCurves.gif and /dev/null differ diff --git a/resources/themes/Default/images/redCurves.png b/resources/themes/Default/images/redCurves.png deleted file mode 100644 index 3e7065a..0000000 Binary files a/resources/themes/Default/images/redCurves.png and /dev/null differ diff --git a/resources/themes/Default/images/redIndicator.gif b/resources/themes/Default/images/redIndicator.gif deleted file mode 100755 index 58e189c..0000000 Binary files a/resources/themes/Default/images/redIndicator.gif and /dev/null differ diff --git a/resources/themes/Default/images/redIndicator.png b/resources/themes/Default/images/redIndicator.png deleted file mode 100644 index 9c906a9..0000000 Binary files a/resources/themes/Default/images/redIndicator.png and /dev/null differ diff --git a/resources/themes/Default/images/redIndicator2.png b/resources/themes/Default/images/redIndicator2.png deleted file mode 100644 index 1f625a0..0000000 Binary files a/resources/themes/Default/images/redIndicator2.png and /dev/null differ diff --git a/resources/themes/Default/images/redIndicatorAlt.gif b/resources/themes/Default/images/redIndicatorAlt.gif deleted file mode 100644 index 1f9c4f1..0000000 Binary files a/resources/themes/Default/images/redIndicatorAlt.gif and /dev/null differ diff --git a/resources/themes/Default/images/silverBackground.gif b/resources/themes/Default/images/silverBackground.gif deleted file mode 100755 index b2798a4..0000000 Binary files a/resources/themes/Default/images/silverBackground.gif and /dev/null differ diff --git a/resources/themes/Default/images/silverCurves.gif b/resources/themes/Default/images/silverCurves.gif deleted file mode 100755 index b7bca30..0000000 Binary files a/resources/themes/Default/images/silverCurves.gif and /dev/null differ diff --git a/resources/themes/Default/images/steelBackground.gif b/resources/themes/Default/images/steelBackground.gif deleted file mode 100755 index c292710..0000000 Binary files a/resources/themes/Default/images/steelBackground.gif and /dev/null differ diff --git a/resources/themes/Default/images/steelBackground.png b/resources/themes/Default/images/steelBackground.png deleted file mode 100644 index b1180d3..0000000 Binary files a/resources/themes/Default/images/steelBackground.png and /dev/null differ diff --git a/resources/themes/Default/images/steelCurves.gif b/resources/themes/Default/images/steelCurves.gif deleted file mode 100755 index 663c5c3..0000000 Binary files a/resources/themes/Default/images/steelCurves.gif and /dev/null differ diff --git a/resources/themes/Default/images/steelCurves.png b/resources/themes/Default/images/steelCurves.png deleted file mode 100644 index e1ddeb0..0000000 Binary files a/resources/themes/Default/images/steelCurves.png and /dev/null differ diff --git a/resources/themes/Default/images/steelHeading.jpg b/resources/themes/Default/images/steelHeading.jpg deleted file mode 100755 index a319c7e..0000000 Binary files a/resources/themes/Default/images/steelHeading.jpg and /dev/null differ diff --git a/resources/themes/Default/images/steelIndicator.gif b/resources/themes/Default/images/steelIndicator.gif deleted file mode 100755 index 0d91eed..0000000 Binary files a/resources/themes/Default/images/steelIndicator.gif and /dev/null differ diff --git a/resources/themes/Default/images/steelIndicator.png b/resources/themes/Default/images/steelIndicator.png deleted file mode 100644 index 48a3af5..0000000 Binary files a/resources/themes/Default/images/steelIndicator.png and /dev/null differ diff --git a/resources/themes/Default/images/steelIndicator2.png b/resources/themes/Default/images/steelIndicator2.png deleted file mode 100644 index 1a34ac7..0000000 Binary files a/resources/themes/Default/images/steelIndicator2.png and /dev/null differ diff --git a/resources/themes/Default/images/steelIndicatorAlt.gif b/resources/themes/Default/images/steelIndicatorAlt.gif deleted file mode 100644 index 5d7686d..0000000 Binary files a/resources/themes/Default/images/steelIndicatorAlt.gif and /dev/null differ diff --git a/resources/themes/Default/images/typing-left.png b/resources/themes/Default/images/typing-left.png deleted file mode 100755 index e5448a5..0000000 Binary files a/resources/themes/Default/images/typing-left.png and /dev/null differ diff --git a/resources/themes/Default/images/typing-right.png b/resources/themes/Default/images/typing-right.png deleted file mode 100755 index 1e997d4..0000000 Binary files a/resources/themes/Default/images/typing-right.png and /dev/null differ diff --git a/resources/themes/Default/images/yellowBackground.gif b/resources/themes/Default/images/yellowBackground.gif deleted file mode 100755 index adcdb5d..0000000 Binary files a/resources/themes/Default/images/yellowBackground.gif and /dev/null differ diff --git a/resources/themes/Default/images/yellowBackground.png b/resources/themes/Default/images/yellowBackground.png deleted file mode 100644 index ea79d06..0000000 Binary files a/resources/themes/Default/images/yellowBackground.png and /dev/null differ diff --git a/resources/themes/Default/images/yellowCurves.gif b/resources/themes/Default/images/yellowCurves.gif deleted file mode 100755 index c8bf931..0000000 Binary files a/resources/themes/Default/images/yellowCurves.gif and /dev/null differ diff --git a/resources/themes/Default/images/yellowCurves.png b/resources/themes/Default/images/yellowCurves.png deleted file mode 100644 index b4133ba..0000000 Binary files a/resources/themes/Default/images/yellowCurves.png and /dev/null differ diff --git a/resources/themes/Default/images/yellowHeading.jpg b/resources/themes/Default/images/yellowHeading.jpg deleted file mode 100755 index bd6f049..0000000 Binary files a/resources/themes/Default/images/yellowHeading.jpg and /dev/null differ diff --git a/resources/themes/Default/images/yellowIndicator.gif b/resources/themes/Default/images/yellowIndicator.gif deleted file mode 100755 index 537414c..0000000 Binary files a/resources/themes/Default/images/yellowIndicator.gif and /dev/null differ diff --git a/resources/themes/Default/images/yellowIndicator.png b/resources/themes/Default/images/yellowIndicator.png deleted file mode 100644 index bfaf230..0000000 Binary files a/resources/themes/Default/images/yellowIndicator.png and /dev/null differ diff --git a/resources/themes/Default/images/yellowIndicator2.png b/resources/themes/Default/images/yellowIndicator2.png deleted file mode 100644 index c59fe2b..0000000 Binary files a/resources/themes/Default/images/yellowIndicator2.png and /dev/null differ diff --git a/resources/themes/Default/images/yellowIndicatorAlt.gif b/resources/themes/Default/images/yellowIndicatorAlt.gif deleted file mode 100644 index f3cd7b0..0000000 Binary files a/resources/themes/Default/images/yellowIndicatorAlt.gif and /dev/null differ diff --git a/resources/themes/Default/images/yellowTL.png b/resources/themes/Default/images/yellowTL.png deleted file mode 100644 index 2bdfa65..0000000 Binary files a/resources/themes/Default/images/yellowTL.png and /dev/null differ diff --git a/resources/themes/Default/images/yellowTR.png b/resources/themes/Default/images/yellowTR.png deleted file mode 100644 index 1aff191..0000000 Binary files a/resources/themes/Default/images/yellowTR.png and /dev/null differ diff --git a/resources/themes/Default/incoming_icon.png b/resources/themes/Default/incoming_icon.png deleted file mode 100755 index 7080fd6..0000000 Binary files a/resources/themes/Default/incoming_icon.png and /dev/null differ diff --git a/resources/themes/Default/main.css b/resources/themes/Default/main.css deleted file mode 100755 index c2ce2d5..0000000 --- a/resources/themes/Default/main.css +++ /dev/null @@ -1,292 +0,0 @@ -* { - word-wrap: break-word; - word-break:break-word; -} - -#header1 { - position: fixed; - top: 0px; - left: 0px; - right: 0px; - margin: 0; - padding: 10px; - overflow: auto; - color: white; - font-family: Lucida Grande; - text-align: center; - font-size: 10px; - font-weight: regular; - background: rgba(0,0,0,.65); - z-index: 999; -} - -#heading { - position: fixed; - top: 0px; - left: 0px; - margin: 0; - padding: 5px; - font-weight: regular; - background-color:#fbfbed; - z-index: 999; - width:100%; - height:45px; - border-bottom:2px solid #d5d5d5; - background:url("images/steelHeading.jpg") repeat-x top left; - -} - -#heading .conversationIncomingIcon { - position:absolute; - left:5px; - top:5px; -} - -#heading .conversationIncomingIcon img { - width:48px; - height:48px; -} - -#heading .conversationWith { - position:relative; - left:60px; - margin:5px 0 0 0; - font: bold 16px Myriad Pro, Myriad, Lucida Grande, Trebuchet MS, Arial; - overflow:hide; -} - -#heading .conversationTime { - position:relative; - left:60px; - color:#6d6d6d; - font: bold 10px Myriad Pro, Myriad, Lucida Grande, Trebuchet MS, Arial; -} - -body { - margin-top: 65px; - background-color: white; - color: black; -} - -.status_container { - font: 10px Myriad, Lucida Grande, Arial; -} - - -body { -} - -.followUp { - clear:right; - height:1px; - font-size:1px; - line-height:1px; - margin:4px 0 4px 0; -} - -.chatItem { - opacity:0.96; -} - -.tableBubble { - width:100%; -} - -.tableBubble .tl { - height:8px; -} - -.tableBubble .tr { - width:8px; - height:8px; -} - -.message { - padding:0 1em 0 1.25em; - word-wrap: break-word; -} - -.tableBubble .message { - font-size:11px; -} - -.tableBubble .message img { - vertical-align:middle; -} - -.tableBubble .messageRight { - width:1px; -} - -.tableBubble .bl { - height:10px; -} - -.tableBubble .br { - width:8px; - height:10px; -} - -.tableBubble .timeStamp { - margin:2px; - margin-left:7px; - text-align:right; - float:right; -} - -.myBubble .indicator { - position:absolute; - top:8px; - left:0; - width:13px; - height:11px; -} - -.myBubble { - position:relative; - padding-left:10px; - margin-left:33px; - margin-right:10px; -} - -.chatItem .avatar { - width:26px; - height:26px; - float:left; -} - -/****** STatus ******/ - -.statusMessage { - opacity:0.8; - color:#676767; -} - -.statusMessage .myBubble .indicator { - background:url("images/steelIndicator.png") no-repeat top left; -} - -.statusMessage .tableBubble .tl { - background:url("images/steelCurves.png") no-repeat top left; -} - -.statusMessage .tableBubble .tr { - background:url("images/steelCurves.png") no-repeat top right; -} - -.statusMessage .tableBubble .head { - background:url("images/steelCurves.png") no-repeat -10px 0; -} - -.statusMessage .tableBubble .message { - background:url("images/steelBackground.png") repeat-y top left; -} - -.statusMessage .tableBubble .messageRight { - background:url("images/steelBackground.png") repeat-y top right; -} - -.statusMessage .tableBubble .bl { - background:url("images/steelCurves.png") no-repeat bottom left; -} - -.statusMessage .tableBubble .br { - background:url("images/steelCurves.png") no-repeat bottom right; -} - -.statusMessage .followUp { - background-color:#f4f0a7; - border-bottom:1px solid #fff; -} - -.statusMessage .timeStamp { - color:#676767; -} - - -/*incoming */ - -.incomingItem .myBubble .indicator { - background:url("images/yellowIndicator.png") no-repeat top left; -} - -.incomingItem .tableBubble .tl { - background:url("images/yellowCurves.png") no-repeat top left; -} - -.incomingItem .tableBubble .tr { - background:url("images/yellowCurves.png") no-repeat top right; -} - -.incomingItem .tableBubble .head { - background:url("images/yellowCurves.png") no-repeat -10px 0; -} - -.incomingItem .tableBubble .message { - background:url("images/yellowBackground.png") repeat-y top left; -} - -.incomingItem .tableBubble .messageRight { - background:url("images/yellowBackground.png") repeat-y top right; -} - -.incomingItem .tableBubble .bl { - background:url("images/yellowCurves.png") no-repeat bottom left; -} - -.incomingItem .tableBubble .br { - background:url("images/yellowCurves.png") no-repeat bottom right; -} - -.incomingItem .followUp { - background-color:#f4f0a7; - border-bottom:1px solid #fff; -} - -.incomingItem .timeStamp { - color:#bdb410; -} - -/* outgoing */ - - -.outgoingItem .myBubble .indicator { - background:url("images/greenIndicator.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tl { - background:url("images/greenCurves.png") no-repeat top left; -} - -.outgoingItem .tableBubble .tr { - background:url("images/greenCurves.png") no-repeat top right; -} - -.outgoingItem .tableBubble .head { - background:url("images/greenCurves.png") no-repeat -10px 0; -} - -.outgoingItem .tableBubble .message { - background:url("images/greenBackground.png") repeat-y top left; -} - -.outgoingItem .tableBubble .messageRight { - background:url("images/greenBackground.png") repeat-y top right; -} - -.outgoingItem .tableBubble .bl { - background:url("images/greenCurves.png") no-repeat bottom left; -} - -.outgoingItem .tableBubble .br { - background:url("images/greenCurves.png") no-repeat bottom right; -} - -.outgoingItem .followUp { - background-color:#e2efc4; - border-bottom:1px solid #fff; -} - -.outgoingItem .timeStamp { - color:#9ecf35; -} diff --git a/resources/themes/Default/noname.css b/resources/themes/Default/noname.css deleted file mode 100644 index 9d905a9..0000000 --- a/resources/themes/Default/noname.css +++ /dev/null @@ -1,3 +0,0 @@ -.name { - display:none; -} diff --git a/resources/themes/Default/outgoing_icon.png b/resources/themes/Default/outgoing_icon.png deleted file mode 100755 index 7080fd6..0000000 Binary files a/resources/themes/Default/outgoing_icon.png and /dev/null differ -- cgit v0.10.2-6-g49f6