xtras/mathuaerknedam 590:135321e1dc7b: minimal_mod: fix the prev...

commits at adium.im commits at adium.im
Thu Sep 29 13:57:36 UTC 2011


details:	http://hg.adium.im/xtras/mathuaerknedam/rev/135321e1dc7b
revision:	590:135321e1dc7b
branch:		(none)
author:		mathuaerknedam
date:		Wed Aug 17 09:19:29 2011 -0500

minimal_mod: fix the previous;y broken check for hising the header on scroll.
Subject: xtras/mathuaerknedam 591:f81f228ba9a5: minimal_mod: Add a singleline variant with alternating per-message backgrounds. Modularize the css to minimize setting CSS in places we don't need or will have to override.

details:	http://hg.adium.im/xtras/mathuaerknedam/rev/f81f228ba9a5
revision:	591:f81f228ba9a5
branch:		(none)
author:		mathuaerknedam
date:		Thu Sep 29 08:56:52 2011 -0500

minimal_mod: Add a singleline variant with alternating per-message backgrounds. Modularize the css to minimize setting CSS in places we don't need or will have to override.

diffs (truncated from 3200 to 1000 lines):

diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Footer.html
--- a/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Footer.html	Wed Aug 10 14:41:09 2011 -0500
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Footer.html	Thu Sep 29 08:56:52 2011 -0500
@@ -1,13 +1,1 @@
-<script type="text/javascript">
-
-	// Hide the header when the user scrolls up (using the same calc as nearBottom).
-	function twiddleHeader() {
-		if ( d_container.scrollTop >= ( d_chat.offsetHeight - ( window.innerHeight * 1.2 ) ) ) {
-			document.getElementById('x-header').style.display = 'block';
-		} else {
-			document.getElementById('x-header').style.display = 'none';
-		}
-	}
-
-	document.getElementById('wrap').addEventListener("scroll", twiddleHeader, false);
-</script>
+<script src="./Footer.js" type="text/javascript" charset="utf-8"></script>
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Footer.js
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Footer.js	Thu Sep 29 08:56:52 2011 -0500
@@ -0,0 +1,10 @@
+// Hide the header when the user scrolls up (using the same calc as nearBottom).
+function twiddleHeader() {
+	if ( document.body.scrollTop >= ( document.body.offsetHeight - ( window.innerHeight * 1.2 ) ) ) {
+		document.getElementById('x-header').style.display = 'block';
+	} else {
+		document.getElementById('x-header').style.display = 'none';
+	}
+}
+
+window.addEventListener("scroll", twiddleHeader, false);
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Mockup.html
--- a/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Mockup.html	Wed Aug 10 14:41:09 2011 -0500
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Mockup.html	Thu Sep 29 08:56:52 2011 -0500
@@ -6,8 +6,7 @@
 	</title>
 
 	<style type="text/css" media="screen,print">
-		@import url( "./main.css" );
-		@import url( "./Variants/SenderColor.css" );
+		@import url( "./Variants/SingleLine Alternating.css" );
 
 		body
 		{
@@ -18,12 +17,9 @@
 	</style>
 </head>
 
-<body onload="initStyle();" style="">
+<body>
 
 <div id="topic" title="1.3.6 http://adium.im || Adium VV? See http://adium.im/blog/2009/08/pidgin-2-6-0-and-adium-vv/ || #adium-devl for development talk || Paste into http://paste.lisp.org/new/adium">
-	<style type="text/css">
-		@import url(./Styles/Topic.css);
-	</style>
 	<div id="x-header">
 		<span id="topicEdit" ondblclick="this.setAttribute('contentEditable', true); this.focus();">1.3.6 http://adium.im || Adium VV? See http://adium.im/blog/2009/08/pidgin-2-6-0-and-adium-vv/ || #adium-devl for development talk || Paste into http://paste.lisp.org/new/adium</span>
 	</div>
@@ -231,5 +227,7 @@
 <div id="insert"></div>
 </div>
 
+<script src="./Footer.js" type="text/javascript" charset="utf-8"></script>
+
 </body>
 </html>
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Styles/Alternating.css
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Styles/Alternating.css	Thu Sep 29 08:56:52 2011 -0500
@@ -0,0 +1,27 @@
+#Chat > div:nth-child(odd)
+{
+	background-color: hsla(215, 80%, 80%, .2) !important;
+}
+
+.focus .x-sender
+{
+	background: rgba(0, 255, 0, .04);
+}
+
+.message:not(.history) .x-sender
+{
+	color: hsla(0, 0%, 0%, 1) !important;
+}
+
+.message.history .x-sender
+{
+	color: hsla(0, 0%, 75%, 1) !important;
+}
+
+.x-icon,
+.x-sender,
+.x-message,
+.x-time
+{
+	border-top: none;
+}
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Styles/Base.css
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Styles/Base.css	Thu Sep 29 08:56:52 2011 -0500
@@ -0,0 +1,237 @@
+/*
+---------------------------------------------------------------------------
+  PROJECT: 	Adium Message Style
+
+FILE NAME: 	minimal_mod.AdiumMessageStyle
+
+	 NAME: 	minimal_mod
+				[http://caenim.com/public/minimal_mod.AdiumMessageStyle.zip]
+
+ DESIGNER: 	John Muhl [http://caenim.com/]
+
+  CREATED: 	2005.04.25 [first local version]
+
+REVISIONS: 	1.0.2005.05.03 [first public version]
+				new image background image [back_l.png]
+				changed default font to Lucida Grande
+				removed all existing color variants
+				created 67 new color variants (lots contributed by amy b.)
+				removed consecutive message timestamp
+				changed sender name to ALL CAPS
+				changed all colors to "web safe"
+				increased user icons to 36x36 px
+				adjusted line height in messages
+				adjusted line height between sender and initial message
+				minor adjustments to text padding in messages
+
+				1.1.2005.09.18
+				very (VERY!) minor changes to the line height & hyperlink decoration
+				corrected a few errors in the variants (fixes contributed by amy b.)
+
+				1.2.2005.10.04
+				corrected zany user icon placement throughout:
+				fixed problem where user icons appeared diagonally
+				fixed vertical alignment problems with user icons
+				decreased user icon size to 24x24 px
+				removed forceable capitalization of user names
+				fixed vertical alignment problem in the status message
+
+				1.3.2005.11.18
+				added service indicator to initial time stamp
+				lightened the dotted line between messages
+				removed all reference to specific typefaces; improves compatibility with Adium and user selected fonts
+				more minor changes to hyperlink decoration
+				updated: Black vs ... color variants
+				updated: Blue vs ... color variants
+				updated: Green vs ... color variants
+				updated: Grey vs ... color variants
+				updated: Orange vs ... color variants
+				updated: Pink vs ... color variants
+				updated: Purple vs ... color variants
+				updated: Red vs ... color variants
+				updated: White vs ... color variants
+				updated: Yellow vs ... color variants
+				added a "Conversation started at ... " header
+
+			1.4.2006.06.06
+			fixed problem with six digit time stamps
+			removed a bunch of cruft; thanks to Catfish_Man for the catch
+
+	 TODO: 	wait for new issues to arise via users or personal use.
+				update for user with XtrasManager [currently does not work with message styles].
+				hyperlink decoration tweaks [?].
+
+ BASED ON: 	Minimal Adium Message Style [default package 0.8 b12 version]
+				check http://www.adiumxtras.com/index.php?a=xtras&xtra_id=1576 for full credits
+---------------------------------------------------------------------------
+*/
+
+body
+{
+	color: rgba(48, 48, 48, 1);
+	margin: 0;
+	word-wrap: break-word;
+	word-break: break-word;
+}
+
+#Chat
+{
+	overflow: hidden;
+	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255 ,255, .5)), to(rgba(255, 255, 255, .9)));
+}
+
+a
+{
+	border-bottom: 1px dashed;
+	text-decoration: none;
+}
+
+a:hover
+{
+	border-bottom: 1px solid;
+}
+
+.x-container.message.showIcons:not([src*="buddy_icon.png"]):not(.consecutive),
+.message.action + .x-container.message.consecutive.showIcons:not([src*="buddy_icon.png"]),
+.message.action.showIcons:not([src*="buddy_icon.png"])
+{
+	min-height: 29px;
+}
+
+.message:not(.consecutive) .x-message,
+.message.action + .message.consecutive .x-message
+{
+	padding-top: 4px;
+}
+
+.message:not(.action) + .message.consecutive:not(.action) .x-message
+{
+	padding-top: 2px;
+}
+
+.message:not(.action) + .consecutive.message.showIcons:not(.action) img[src*="buddy_icon.png"] + .x-message
+{
+	margin-left: 30px;
+}
+
+.x-sender
+{
+	font-weight: bold;
+	font-size: 1.1em;
+	overflow: hidden;
+}
+
+.x-time
+{
+	text-align: right;
+	font-size: .9em;
+}
+
+.history .x-message,
+.groupchat .status .x-message,
+.groupchat .event .x-message,
+.groupchat .status a,
+.groupchat .event a,
+.x-time
+{
+	color: rgba(160, 160, 160, 1);
+}
+
+.history img.x-buddyicon,
+.history img.emoticon
+{
+	opacity: .3;
+}
+
+img:not(.x-buddyicon)
+{
+	vertical-align: middle;
+	top: -3px;
+}
+
+img.scaledToFitImage
+{
+	width: auto;
+}
+
+.history .x-message a
+{
+	color: rgba(152, 152, 152, 1);
+}
+
+#x-header
+{
+	position: fixed;
+		top: 0px;
+		left: 0px;
+		right: 0px;
+	margin: 0px;
+	padding: 5px;
+	overflow: auto;
+	color: white;
+	text-align: center;
+	font-size: 1em;
+	background: rgba(0, 0, 0, .75);
+	z-index: 999;
+}
+
+#x-header:hover #topicEdit
+{
+	min-height: 1em;
+	display: block;
+}
+
+#x-header a
+{
+	color: white;
+}
+
+.status .x-buddyicon,
+.status .x-sender,
+.event .x-buddyicon,
+.event .x-sender,
+.message:not(.action) + .consecutive:not(.action) .x-buddyicon,
+.message:not(.action) + .consecutive:not(.action) .x-sender,
+.message:not(.action) + .consecutive:not(.action) .x-time,
+img[src*="buddy_icon.png"]
+{
+	display: none;
+}
+
+
+/* ACTION */
+
+.action .x-sender,
+.action .x-message,
+.x-filetransfer .x-sender,
+.x-filetransfer .x-message
+{
+	font-style: italic !important;
+}
+
+.actionMessageUserName
+{
+	display: none;
+}
+
+.actionMessageBody:after
+{
+	content: "";
+}
+
+.actionMessageBody:before
+{
+	content: "";
+}
+
+.x-filetransfer .x-sender,
+.x-filetransfer .x-message
+{
+	display: inline;
+}
+
+.x-filetransfer .x-buttons
+{
+	padding-top: 4px;
+}
+
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Styles/Normal.css
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Styles/Normal.css	Thu Sep 29 08:56:52 2011 -0500
@@ -0,0 +1,109 @@
+.x-container
+{
+	padding-left: 16px;
+	padding-right: 8px;
+	padding-bottom: 2px;
+}
+
+.x-container:not(.consecutive),
+.message.action + .x-container.consecutive,
+.message.action
+{
+	padding-top: 4px;
+	border-top: 1px dotted rgba(0, 0, 0, .2);
+}
+
+.x-time
+{
+	float: right;
+	padding-left: 6px;
+}
+
+.mention
+{
+	background:
+		-webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .75)), to(rgba(0, 0, 0, .75))) 0px 0px no-repeat;
+	-webkit-background-size: 10px 100%;
+}
+
+.focus
+{
+	background: url("./images/vert.png") repeat;
+}
+
+.focus:not(.consecutive),
+.focus.action,
+.message.action + .focus.consecutive
+{
+	border-top: none !important;
+	margin-top: 1px;
+}
+
+.x-container.focus + .x-container:not(.focus)
+{
+	border-top: none !important;
+	margin-top: 1px;
+}
+
+.focus .x-time
+{
+	color: rgba(136, 136, 136, 1);
+}
+
+.focus.mention
+{
+	background:
+		-webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .75)), to(rgba(0, 0, 0, .75))) 0px 0px no-repeat,
+		url("./images/vert.png") repeat;
+	-webkit-background-size: 10px 100%, 2px 100%;
+}
+
+.history.mention
+{
+	background:
+		-webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .2)), to(rgba(0, 0, 0, .2))) 0px 0px no-repeat;
+}
+
+img.x-buddyicon
+{
+	position: absolute;
+	left: 16px;
+	margin-top: 2px;
+	margin-right: 6px;
+	padding-bottom: 8px;
+	width: 24px;
+	height: 24px;
+}
+
+.hideIcons img.x-buddyicon
+{
+	display: none;
+}
+
+.showIcons.x-container.action:not([src*="buddy_icon.png"]),
+.showIcons.x-container.x-filetransfer:not([src*="buddy_icon.png"])
+{
+	padding-left: 46px;
+}
+
+.action .x-sender,
+.action .x-message,
+.x-filetransfer .x-sender,
+.x-filetransfer .x-message
+{
+	display: inline;
+	margin-left: 0px !important;
+}
+
+.action.consecutive .x-message
+{
+	padding-top: 3px;
+}
+
+.message:not(.hideIcons):not([src*="buddy_icon.png"]) .x-time,
+.message:not(.hideIcons):not([src*="buddy_icon.png"]) .x-sender,
+.message:not(.hideIcons):not([src*="buddy_icon.png"]) .x-message
+{
+	margin-left: 30px;
+}
+
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Styles/SenderColor.css
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Styles/SenderColor.css	Thu Sep 29 08:56:52 2011 -0500
@@ -0,0 +1,10 @@
+.history img.x-buddyicon
+{
+	opacity: .8;
+}
+
+.history img.emoticon
+{
+	opacity: .6;
+}
+
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Styles/SingleLine.css
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Styles/SingleLine.css	Thu Sep 29 08:56:52 2011 -0500
@@ -0,0 +1,102 @@
+#Chat
+{
+	display: table;
+}
+
+.x-container
+{
+	padding-left: 0px;
+	padding-right: 0px;
+	padding-top: 0px;
+	padding-bottom: 0px;
+}
+
+#insert,
+.message,
+.status,
+.event
+{
+	display: table-row;
+}
+
+.x-icon,
+.x-sender,
+.x-message,
+.x-time
+{
+	display: table-cell !important;
+	border-top: 1px solid rgba(0, 0, 0, .1);
+	padding-top: 4px;
+	padding-bottom: 2px;
+	margin-left: 0px !important;
+}
+
+.x-sender,
+.x-time
+{
+	text-overflow: ellipsis;
+	white-space: nowrap;
+}
+
+.x-sender
+{
+	max-width: 10.2em;
+	padding-right: 4px;
+	padding-left: 4px;
+}
+
+.status .x-sender:after,
+.event .x-sender:after
+{
+	color: rgb(192, 192, 192) !important;
+	content: "<-->";
+}
+
+.x-time
+{
+	padding-left: 16px;
+	padding-right: 4px;
+}
+
+.x-message
+{
+	padding-right: 8px;
+	padding-left: 4px;
+	width: 100%;
+}
+
+#insert
+{
+	padding-bottom: 2px;
+}
+
+.x-buddyicon
+{
+	display: none !important;
+}
+
+.focus,
+.focus.mention,
+.mention,
+.mention.history
+{
+	background: none;
+}
+
+.mention .x-time
+{
+	background:
+		-webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .75)), to(rgba(0, 0, 0, .75))) 0px 0px no-repeat;
+	-webkit-background-size: 10px 100%;
+}
+
+.focus .x-sender
+{
+	background: rgba(240, 240, 240, .5);
+}
+
+.action .x-sender,
+.x-filetransfer .x-sender
+{
+	text-align: right;
+}
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Blue.css
--- a/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Blue.css	Wed Aug 10 14:41:09 2011 -0500
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Blue.css	Thu Sep 29 08:56:52 2011 -0500
@@ -1,3 +1,7 @@
+ at charset "utf-8";
+
+ at import url(../Styles/Main.css);
+
 .incoming:not(.history) .x-sender,
 .incoming:not(.history) a,
 #Chat:not(.groupchat) .status .x-message,
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Green.css
--- a/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Green.css	Wed Aug 10 14:41:09 2011 -0500
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Green.css	Thu Sep 29 08:56:52 2011 -0500
@@ -1,1 +1,1 @@
-.incoming:not(.history) .x-sender,
.incoming:not(.history) a,
#Chat:not(.groupchat) .status .x-message,
#Chat:not(.groupchat) .status a,
#Chat:not(.groupchat) .event .x-message,
#Chat:not(.groupchat) .event a
{
	color: hsla(120, 100%, 35%, 1) !important;
}

.outgoing:not(.history) .x-sender,
.outgoing:not(.history) a
{
	color: hsla(0, 0%, 0%, 1) !important;
}

.history.incoming .x-sender,
.history.incoming a,
#Chat:not(.groupchat) .history.status .x-message,
#Chat:not(.groupchat) .history.status a,
#Chat:not(.groupchat) .history.event .x-message,
#Chat:not(.groupchat) .history.event a
{
	color: hsla(120, 50%, 70%, 1) !important;
}

.history.outgoing .x-sender,
.history.outgoing a
{
	color: hsla(0, 0%, 70%, 1) !important;
}
\ No newline at end of file
+ at charset "utf-8";

@import url(../Styles/Main.css);

.incoming:not(.history) .x-sender,
.incoming:not(.history) a,
#Chat:not(.groupchat) .status .x-message,
#Chat:not(.groupchat) .status a,
#Chat:not(.groupchat) .event .x-message,
#Chat:not(.groupchat) .event a
{
	color: hsla(120, 100%, 35%, 1) !important;
}

.outgoing:not(.history) .x-sender,
.outgoing:not(.history) a
{
	color: hsla(0, 0%, 0%, 1) !important;
}

.history.incoming .x-sender,
.history.incoming a,
#Chat:not(.groupchat) .history.status .x-message,
#Chat:not(.groupchat) .history.status a,
#Chat:not(.groupchat) .history.event .x-message,
#Chat:not(.groupchat) .history.event a
{
	color: hsla(120, 50%, 70%, 1) !important;
}

.history.outgoing .x-sender,
.history.outgoing a
{
	color: hsla(0, 0%, 70%, 1) !important;
}
\ No newline at end of file
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Grey.css
--- a/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Grey.css	Wed Aug 10 14:41:09 2011 -0500
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Grey.css	Thu Sep 29 08:56:52 2011 -0500
@@ -1,3 +1,7 @@
+ at charset "utf-8";
+
+ at import url(../Styles/Main.css);
+
 .incoming:not(.history) .x-sender,
 .incoming:not(.history) a,
 #Chat:not(.groupchat) .status .x-message,
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Orange.css
--- a/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Orange.css	Wed Aug 10 14:41:09 2011 -0500
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Orange.css	Thu Sep 29 08:56:52 2011 -0500
@@ -1,3 +1,7 @@
+ at charset "utf-8";
+
+ at import url(../Styles/Main.css);
+
 .incoming:not(.history) .x-sender,
 .incoming:not(.history) a,
 #Chat:not(.groupchat) .status .x-message,
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Pink.css
--- a/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Pink.css	Wed Aug 10 14:41:09 2011 -0500
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Pink.css	Thu Sep 29 08:56:52 2011 -0500
@@ -1,1 +1,1 @@
-.incoming:not(.history) .x-sender,
.incoming:not(.history) a,
#Chat:not(.groupchat) .status .x-message,
#Chat:not(.groupchat) .status a,
#Chat:not(.groupchat) .event .x-message,
#Chat:not(.groupchat) .event a
{
	color: hsla(315, 100%, 65%, 1) !important;
}

.outgoing:not(.history) .x-sender,
.outgoing:not(.history) a
{
	color: hsla(0, 0%, 0%, 1) !important;
}

.history.incoming .x-sender,
.history.incoming a,
#Chat:not(.groupchat) .history.status .x-message,
#Chat:not(.groupchat) .history.status a,
#Chat:not(.groupchat) .history.event .x-message,
#Chat:not(.groupchat) .history.event a
{
	color: hsla(315, 80%, 82%, 1) !important;
}

.history.outgoing .x-sender,
.history.outgoing a
{
	color: hsla(0, 0%, 70%, 1) !important;
}
\ No newline at end of file
+ at charset "utf-8";

@import url(../Styles/Main.css);

.incoming:not(.history) .x-sender,
.incoming:not(.history) a,
#Chat:not(.groupchat) .status .x-message,
#Chat:not(.groupchat) .status a,
#Chat:not(.groupchat) .event .x-message,
#Chat:not(.groupchat) .event a
{
	color: hsla(315, 100%, 65%, 1) !important;
}

.outgoing:not(.history) .x-sender,
.outgoing:not(.history) a
{
	color: hsla(0, 0%, 0%, 1) !important;
}

.history.incoming .x-sender,
.history.incoming a,
#Chat:not(.groupchat) .history.status .x-message,
#Chat:not(.groupchat) .history.status a,
#Chat:not(.groupchat) .history.event .x-message,
#Chat:not(.groupchat) .history.event a
{
	color: hsla(315, 80%, 82%, 1) !important;
}

.history.outgoing .x-sender,
.history.outgoing a
{
	color: hsla(0, 0%, 70%, 1) !important;
}
\ No newline at end of file
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Purple.css
--- a/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Purple.css	Wed Aug 10 14:41:09 2011 -0500
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Purple.css	Thu Sep 29 08:56:52 2011 -0500
@@ -1,1 +1,1 @@
-.incoming:not(.history) .x-sender,
.incoming:not(.history) a,
#Chat:not(.groupchat) .status .x-message,
#Chat:not(.groupchat) .status a,
#Chat:not(.groupchat) .event .x-message,
#Chat:not(.groupchat) .event a
{
	color: hsla(276, 100%, 40%, 1) !important;
}

.outgoing:not(.history) .x-sender,
.outgoing:not(.history) a
{
	color: hsla(0, 0%, 0%, 1) !important;
}

.history.incoming .x-sender,
.history.incoming a,
#Chat:not(.groupchat) .history.status .x-message,
#Chat:not(.groupchat) .history.status a,
#Chat:not(.groupchat) .history.event .x-message,
#Chat:not(.groupchat) .history.event a
{
	color: hsla(276, 60%, 82%, 1) !important;
}

.history.outgoing .x-sender,
.history.outgoing a
{
	color: hsla(0, 0%, 70%, 1) !important;
}
\ No newline at end of file
+ at charset "utf-8";

@import url(../Styles/Main.css);

.incoming:not(.history) .x-sender,
.incoming:not(.history) a,
#Chat:not(.groupchat) .status .x-message,
#Chat:not(.groupchat) .status a,
#Chat:not(.groupchat) .event .x-message,
#Chat:not(.groupchat) .event a
{
	color: hsla(276, 100%, 40%, 1) !important;
}

.outgoing:not(.history) .x-sender,
.outgoing:not(.history) a
{
	color: hsla(0, 0%, 0%, 1) !important;
}

.history.incoming .x-sender,
.history.incoming a,
#Chat:not(.groupchat) .history.status .x-message,
#Chat:not(.groupchat) .history.status a,
#Chat:not(.groupchat) .history.event .x-message,
#Chat:not(.groupchat) .history.event a
{
	color: hsla(276, 60%, 82%, 1) !important;
}

.history.outgoing .x-sender,
.history.outgoing a
{
	color: hsla(0, 0%, 70%, 1) !important;
}
\ No newline at end of file
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Red.css
--- a/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Red.css	Wed Aug 10 14:41:09 2011 -0500
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Black vs Red.css	Thu Sep 29 08:56:52 2011 -0500
@@ -1,3 +1,7 @@
+ at charset "utf-8";
+
+ at import url(../Styles/Main.css);
+
 .incoming:not(.history) .x-sender,
 .incoming:not(.history) a,
 #Chat:not(.groupchat) .status .x-message,
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Black.css
--- a/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Black.css	Wed Aug 10 14:41:09 2011 -0500
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Black.css	Thu Sep 29 08:56:52 2011 -0500
@@ -1,3 +1,7 @@
+ at charset "utf-8";
+
+ at import url(../Styles/Main.css);
+
 .incoming:not(.history) .x-sender,
 .incoming:not(.history) a,
 #Chat:not(.groupchat) .status .x-message,
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Green.css
--- a/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Green.css	Wed Aug 10 14:41:09 2011 -0500
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Green.css	Thu Sep 29 08:56:52 2011 -0500
@@ -1,1 +1,1 @@
-.incoming:not(.history) .x-sender,
.incoming:not(.history) a,
#Chat:not(.groupchat) .status .x-message,
#Chat:not(.groupchat) .status a,
#Chat:not(.groupchat) .event .x-message,
#Chat:not(.groupchat) .event a
{
	color: hsla(120, 100%, 35%, 1) !important;
}

.outgoing:not(.history) .x-sender,
.outgoing:not(.history) a
{
	color: hsla(210, 100%, 50%, 1) !important;
}

.history.incoming .x-sender,
.history.incoming a,
#Chat:not(.groupchat) .history.status .x-message,
#Chat:not(.groupchat) .history.status a,
#Chat:not(.groupchat) .history.event .x-message,
#Chat:not(.groupchat) .history.event a
{
	color: hsla(120, 50%, 70%, 1) !important;
}

.history.outgoing .x-sender,
.history.outgoing a
{
	color: hsla(210, 80%, 80%, 1) !important;
}
\ No newline at end of file
+ at charset "utf-8";

@import url(../Styles/Main.css);

.incoming:not(.history) .x-sender,
.incoming:not(.history) a,
#Chat:not(.groupchat) .status .x-message,
#Chat:not(.groupchat) .status a,
#Chat:not(.groupchat) .event .x-message,
#Chat:not(.groupchat) .event a
{
	color: hsla(120, 100%, 35%, 1) !important;
}

.outgoing:not(.history) .x-sender,
.outgoing:not(.history) a
{
	color: hsla(210, 100%, 50%, 1) !important;
}

.history.incoming .x-sender,
.history.incoming a,
#Chat:not(.groupchat) .history.status .x-message,
#Chat:not(.groupchat) .history.status a,
#Chat:not(.groupchat) .history.event .x-message,
#Chat:not(.groupchat) .history.event a
{
	color: hsla(120, 50%, 70%, 1) !important;
}

.history.outgoing .x-sender,
.history.outgoing a
{
	color: hsla(210, 80%, 80%, 1) !important;
}
\ No newline at end of file
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Grey.css
--- a/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Grey.css	Wed Aug 10 14:41:09 2011 -0500
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Grey.css	Thu Sep 29 08:56:52 2011 -0500
@@ -1,3 +1,7 @@
+ at charset "utf-8";
+
+ at import url(../Styles/Main.css);
+
 .incoming:not(.history) .x-sender,
 .incoming:not(.history) a,
 #Chat:not(.groupchat) .status .x-message,
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Orange.css
--- a/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Orange.css	Wed Aug 10 14:41:09 2011 -0500
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Orange.css	Thu Sep 29 08:56:52 2011 -0500
@@ -1,3 +1,7 @@
+ at charset "utf-8";
+
+ at import url(../Styles/Main.css);
+
 .incoming:not(.history) .x-sender,
 .incoming:not(.history) a,
 #Chat:not(.groupchat) .status .x-message,
diff -r ccbe2faa0f5b -r f81f228ba9a5 Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Pink.css
--- a/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Pink.css	Wed Aug 10 14:41:09 2011 -0500
+++ b/Resources/Message Styles/minimal_mod.AdiumMessageStyle/Contents/Resources/Variants/Blue vs Pink.css	Thu Sep 29 08:56:52 2011 -0500
@@ -1,1 +1,1 @@
-.incoming:not(.history) .x-sender,
.incoming:not(.history) a,
#Chat:not(.groupchat) .status .x-message,
#Chat:not(.groupchat) .status a,
#Chat:not(.groupchat) .event .x-message,
#Chat:not(.groupchat) .event a
{
	color: hsla(315, 100%, 65%, 1) !important;
}

.outgoing:not(.history) .x-sender,
.outgoing:not(.history) a
{
	color: hsla(210, 100%, 50%, 1) !important;
}

.history.incoming .x-sender,
.history.incoming a,
#Chat:not(.groupchat) .history.status .x-message,
#Chat:not(.groupchat) .history.status a,
#Chat:not(.groupchat) .history.event .x-message,
#Chat:not(.groupchat) .history.event a
{
	color: hsla(315, 80%, 82%, 1) !important;
}

.history.outgoing .x-sender,
.history.outgoing a
{
	color: hsla(210, 80%, 80%, 1) !important;
}
\ No newline at end of file
+ at charset "utf-8";

@import url(../Styles/Main.css);

.incoming:not(.history) .x-sender,
.incoming:not(.history) a,
#Chat:not(.groupchat) .status .x-message,
#Chat:not(.groupchat) .status a,
#Chat:not(.groupchat) .event .x-message,
#Chat:not(.groupchat) .event a
{
	color: hsla(315, 100%, 65%, 1) !important;
}

.outgoing:not(.history) .x-sender,
.outgoing:not(.history) a
{
	color: hsla(210, 100%, 50%, 1) !important;
}

.history.incoming .x-sender,
.history.incoming a,
#Chat:not(.groupchat) .history.status .x-message,
#Chat:not(.groupchat) .history.status a,
#Chat:not(.groupchat) .history.event .x-message,
#Chat:not(.groupchat) .history.event a
{




More information about the commits mailing list