xtras/mathuaerknedam 398:80bdc55dc2d5: Gone Dark: lost of misc i...

commits at adium.im commits at adium.im
Thu Mar 4 04:51:18 UTC 2010


details:	http://hg.adium.im/xtras/mathuaerknedam/rev/80bdc55dc2d5
revision:	398:80bdc55dc2d5
author:		mathuaerknedam
date:		Wed Mar 03 22:50:40 2010 -0600

Gone Dark: lost of misc improvements. Cleanup after partial rewrite.

diffs (truncated from 1501 to 1000 lines):

diff -r 48522ad842fe -r 80bdc55dc2d5 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Header.html
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Header.html	Wed Mar 03 01:22:44 2010 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Header.html	Wed Mar 03 22:50:40 2010 -0600
@@ -2,13 +2,12 @@
 
 		#Chat
 		{
-			padding-top: 50px;
+			padding-top: 45px;
 		}
 
 	</style>
 
 <div id="x-header">
-	<div id="x-headerImage"><img width="32px" height="32px" src="%incomingIconPath%"></div>
-	<div id="x-headerChatStarted">chatting with<h2>%chatName%</h2></div>
+	<div id="x-headerImage"><img src="%incomingIconPath%"></div>
+	<div id="x-headerChatStarted">chatting with<div class="x-chatname">%chatName%</div></div>
 </div>
-<!-- <div id="headerSpace"></div> -->
diff -r 48522ad842fe -r 80bdc55dc2d5 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Incoming/Content.html
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Incoming/Content.html	Wed Mar 03 01:22:44 2010 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Incoming/Content.html	Wed Mar 03 22:50:40 2010 -0600
@@ -9,6 +9,5 @@
 				<div id="insert"></div>
 			</div>
 		</div>
-		<div class="x-shadow"></div>
 	</div>
 <!-- End chat box -->
diff -r 48522ad842fe -r 80bdc55dc2d5 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Incoming/Context.html
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Incoming/Context.html	Wed Mar 03 01:22:44 2010 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Incoming/Context.html	Wed Mar 03 22:50:40 2010 -0600
@@ -9,6 +9,5 @@
 				<div id="insert"></div>
 			</div>
 		</div>
-		<div class="x-shadow"></div>
 	</div>
 <!-- End chat box -->
diff -r 48522ad842fe -r 80bdc55dc2d5 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Outgoing/Content.html
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Outgoing/Content.html	Wed Mar 03 01:22:44 2010 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Outgoing/Content.html	Wed Mar 03 22:50:40 2010 -0600
@@ -9,6 +9,5 @@
 				<div id="insert"></div>
 			</div>
 		</div>
-		<div class="x-shadow"></div>
 	</div>
 <!-- End chat box -->
diff -r 48522ad842fe -r 80bdc55dc2d5 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Outgoing/Context.html
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Outgoing/Context.html	Wed Mar 03 01:22:44 2010 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Outgoing/Context.html	Wed Mar 03 22:50:40 2010 -0600
@@ -9,7 +9,6 @@
 				<div id="insert"></div>
 			</div>
 		</div>
-		<div class="x-shadow"></div>
 	</div>
 
 <!-- End chat box -->
diff -r 48522ad842fe -r 80bdc55dc2d5 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Styles/Main.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Styles/Main.css	Wed Mar 03 01:22:44 2010 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Styles/Main.css	Wed Mar 03 22:50:40 2010 -0600
@@ -1,5 +1,3 @@
-
-
 body
 {
 	margin: 0px;
@@ -10,18 +8,16 @@
 {
 	overflow: hidden;
 	padding-top: 4px;
-	/*padding-bottom: 6px;*/
 	margin-bottom: 0px;
 }
 
 #x-header
 {
 	display: block;
-	height: 50px;
+	height: 45px;
 	position: fixed;
 	top: 0;
 	width: 100%;
-
 	z-index: 100;
 	opacity: 1;
 	-webkit-transition: opacity .1s linear;
@@ -40,10 +36,7 @@
 
 #topic #topicEdit
 {
-
 	-webkit-background-size: 100% 100%;
-
-
 	position: fixed;
 	left: 0px;
 	right: 0px;
@@ -52,29 +45,35 @@
 	padding-top: 8px;
 	padding-bottom: 8px;
 	line-height: 1.3em;
-
 }
 
 #x-headerImage
 {
 	width: 32px;
 	height: 32px;
-	margin-left: 20px;
-	margin-top: 4px;
+	position: absolute;
+	left: 20px;
+	top: 4px;
 	padding: 3px;
 	float: left;
+	-webkit-border-radius: 4px;
+}
+
+#x-headerImage img
+{
+	width: 32px;
+	height: 32px;
 }
 
 #x-headerChatStarted
 {
-
 	font-size: 10px;
-	float: left;
-	margin-left: 10px;
-	margin-top: 6px;
+	position: absolute;
+	left: 68px;
+	top: 6px;
 }
 
-#x-headerChatStarted h2
+#x-headerChatStarted .x-chatname
 {
 	font-size: 19px;
 	font-weight: bold;
@@ -94,7 +93,6 @@
 	margin-left: 20px;
 	margin-right: 20px;
 	margin-bottom: -3px;
-
 }
 
 .x-service
@@ -103,15 +101,11 @@
 	right: 20px;
 	margin-top: .5em;
 	font-size: .8em;
-
-
 }
 
 .x-content
 {
-
 	line-height: 1.3em;
-
 	word-wrap: break-word;
 }
 
@@ -120,11 +114,6 @@
 	text-decoration: underline;
 }
 
-.x-gloss
-{
-
-}
-
 .x-contentText
 {
 	padding-top: 5px;
@@ -135,16 +124,9 @@
 
 .x-divider
 {
-
 	margin-bottom -1px;
 }
 
-.x-shadow
-{
-
-	height: 9px;
-}
-
 .x-date
 {
 	float: right;
@@ -152,7 +134,6 @@
 	margin-right: 20px;
 	padding-top: 6px;
 	padding-left: 6px;
-
 }
 
 .x-message2 a
@@ -162,7 +143,6 @@
 
 .x-status
 {
-
 	text-align: center;
 	padding-top: 4px;
 	padding-bottom: .3em;
@@ -172,12 +152,6 @@
 	font-weight: bold;
 }
 
-.x-status a,
-#x-header a
-{
-
-}
-
 .x-context
 {
 	opacity: .6;
@@ -188,47 +162,21 @@
 	width:auto;
 }
 
-.focus
-{
-
-}
-
 .focus .focus
 {
 	background-color: none;
 }
 
-.focus .x-service
-{
-
-}
-
-.focus.x-status
-{
-
-
-}
-
 .history.x-status
 {
 	opacity: .6;
 }
 
-.x-content
-{
-
-}
-
 #Chat > div:last-of-type
 {
 	padding-bottom: 15px;
 }
 
-.x-shadow
-{
-	display: none;
-}
-
 .message:not(.x-divider)
 {
 	padding-bottom: 9px;
diff -r 48522ad842fe -r 80bdc55dc2d5 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Styles/Polarized.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Styles/Polarized.css	Wed Mar 03 01:22:44 2010 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Styles/Polarized.css	Wed Mar 03 22:50:40 2010 -0600
@@ -1,108 +1,20 @@
 @import url("./Main.css");
 
-body
-{
-
-
-}
-
-#Chat
-{
-
-
-
-
-}
-
-#x-header
-{
-
-
-
-
-
-	background: url("../images/Polarized/backgroundHeader.png") repeat-x top;
-
-
-
-}
-
-#x-header:hover
-{
-
-}
-
-#topic #x-header
-{
-
-
-}
-
+#x-header,
 #topic #topicEdit
 {
 	background: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 248, 248, .8)), color-stop(.65, rgba(255, 255, 255, .95)), color-stop(.75, rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 1)));
-
-
 	color: #888;
-
-
-
-
-
-
-
-
 	-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, .7);
 }
 
-#x-headerImage
-{
-
-
-
-
-
-
-}
-
-#x-headerChatStarted
-{
-	color: #888;
-
-
-
-
-}
-
-#x-headerChatStarted h2
-{
-
-
-
-
-}
-
-#x-headerSpace
-{
-
-}
-
 .x-userName
 {
-
-
-
-
-
 	text-shadow: 0px -1px 5px #fff;
 }
 
 .x-service
 {
-
-
-
-
 	color: hsla(0, 0%, 0%, .4);
 	text-shadow: 0px 1px 2px #fff;
 }
@@ -110,66 +22,27 @@
 .x-content
 {
 	color: #222;
-
-	background: url("../images/Polarized/transGrey.png");
-
-}
-
-.x-message1 a
-{
-
+	background: rgba(255, 255, 255, .55);
 }
 
 .x-gloss
 {
-	background: url("../images/Polarized/gloss.png") no-repeat center top;
-}
-
-.x-contentText
-{
-
-
-
-
+	background: url("../images/glossPolarized.png") no-repeat center top;
 }
 
 .x-divider
 {
 	border-top: 2px groove rgba(255, 255, 255, .7);
-
-}
-
-.x-shadow
-{
-	background: url("../images/Polarized/messageShadow.png") repeat-x top;
-
 }
 
 .x-date
 {
-
-
-
-
-
 	text-shadow: #fff 1px 1px 0px;
 }
 
-.x-message2 a
-{
-
-}
-
 .x-status
 {
 	color: hsla(0, 0%, 0%, .7);
-
-
-
-
-
-
-
 }
 
 .x-status a,
@@ -178,26 +51,11 @@
 	color: rgb(88, 88, 88);
 }
 
-.x-context
-{
-
-}
-
-img.scaledToFitImage
-{
-
-}
-
 .focus
 {
 	background-color: hsla(0, 0%, 0%, .2);
 }
 
-.focus .focus
-{
-
-}
-
 .focus .x-service
 {
 	color: hsla(0, 0%, 0%, .7);
@@ -209,28 +67,8 @@
 	color: hsla(0, 0%, 0%, .9);
 }
 
-.history.x-status
-{
-
-}
-
 .x-content
 {
 	-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, .3);
 }
 
-#Chat > div:last-of-type
-{
-
-}
-
-.x-shadow
-{
-
-}
-
-.message:not(.x-divider)
-{
-
-}
-
diff -r 48522ad842fe -r 80bdc55dc2d5 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Styles/Regular.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Styles/Regular.css	Wed Mar 03 01:22:44 2010 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Styles/Regular.css	Wed Mar 03 22:50:40 2010 -0600
@@ -1,108 +1,21 @@
 @import url("./Main.css");
 
-body
-{
-
-
-}
-
-#Chat
-{
-
-
-
-
-}
-
-#x-header
-{
-
-
-
-
-
-	background: url("../images/backgroundHeader.png") repeat-x  top;
-
-
-
-}
-
-#x-header:hover
-{
-
-}
-
-#topic #x-header
-{
-
-
-}
-
+#x-header,
 #topic #topicEdit
 {
 	background: -webkit-gradient(linear, left top, left bottom, from(rgba(72, 72, 72, 1)), color-stop(.45, rgba(40, 40, 40, 1)), color-stop(.5, rgba(0, 0, 0, .9)), to(rgba(24, 24, 24, 1)));
-
 	border-bottom: 1px solid rgba(64, 64, 64, .9);
 	color: #ccc;
-
-
-
-
-
-
-
-
 	-webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, .5);
 }
 
-#x-headerImage
-{
-
-
-
-
-
-
-}
-
-#x-headerChatStarted
-{
-	color: #ccc;
-
-
-
-
-}
-
-#x-headerChatStarted h2
-{
-
-
-
-
-}
-
-#x-headerSpace
-{
-
-}
-
 .x-userName
 {
-
-
-
-
-
 	text-shadow: 0px -1px 5px #000;
 }
 
 .x-service
 {
-
-
-
-
 	color: hsla(0, 0%, 100%, .4);
 	text-shadow: 0px 1px 2px #000;
 }
@@ -110,66 +23,27 @@
 .x-content
 {
 	color: #fff;
-
-	background: url("../images/transGrey.png");
-
-}
-
-.x-message1 a
-{
-
+	background: rgba(32, 32, 32, .7);
 }
 
 .x-gloss
 {
-	background: url("../images/gloss.png") no-repeat center 4px;
-}
-
-.x-contentText
-{
-
-
-
-
+	background: url("../images/glossRegular.png") no-repeat center 4px;
 }
 
 .x-divider
 {
 	border-top: 2px groove rgba(92, 92, 92, .7);
-
-}
-
-.x-shadow
-{
-	background: url("../images/messageShadow.png") repeat-x  top;
-
 }
 
 .x-date
 {
-
-
-
-
-
 	text-shadow: #000 1px 1px 0px;
 }
 
-.x-message2 a
-{
-
-}
-
 .x-status
 {
 	color: hsla(0, 0%, 100%, .7);
-
-
-
-
-
-
-
 }
 
 .x-status a,
@@ -178,26 +52,11 @@
 	color: rgb(168, 168, 168);
 }
 
-.x-context
-{
-
-}
-
-img.scaledToFitImage
-{
-
-}
-
 .focus
 {
 	background-color: hsla(0, 0%, 100%, .2);
 }
 
-.focus .focus
-{
-
-}
-
 .focus .x-service
 {
 	color: hsla(0, 0%, 100%, .7);
@@ -209,28 +68,8 @@
 	color: hsla(0, 0%, 100%, .9);
 }
 
-.history.x-status
-{
-
-}
-
 .x-content
 {
 	-webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, .5);
 }
 
-#Chat > div:last-of-type
-{
-
-}
-
-.x-shadow
-{
-
-}
-
-.message:not(.x-divider)
-{
-
-}
-
diff -r 48522ad842fe -r 80bdc55dc2d5 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Arctic.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Arctic.css	Wed Mar 03 01:22:44 2010 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Arctic.css	Wed Mar 03 22:50:40 2010 -0600
@@ -2,25 +2,19 @@
 
 body
 {
-	background: url("../images/Polarized/backgroundArctic.jpg") repeat-y center top #000 fixed;
-}
-
-.x-message1 .x-userName,
-.x-message1 .x-date,
-#x-headerChatStarted h2
-{
-	color: #1c5e90;
-}
-
-.x-message2 .x-userName,
-.x-message2 .x-date
-{
-	color: #479cc4;
+	background: url("../images/backgroundArctic.jpg") repeat-y center top #000 fixed;
 }
 
 #x-headerImage
 {
-	background: url("../images/Polarized/backgroundUserImageArctic.png") no-repeat;
+	background: #1c5e90;
+}
+
+#x-headerChatStarted .x-chatname,
+.x-message1 .x-userName,
+.x-message1 .x-date
+{
+	color: #1c5e90;
 }
 
 .x-content
@@ -29,13 +23,6 @@
 	border-bottom: 1px solid #1c5e90;
 }
 
-.x-message2 .x-content
-{
-	border-top: 3px solid #479cc4;
-	border-bottom: 1px solid #479cc4;
-}
-
-
 .x-message1 a
 {
 	color: #15517e;
@@ -46,6 +33,12 @@
 	color: #063456;
 }
 
+.x-message2 .x-userName,
+.x-message2 .x-date
+{
+	color: #479cc4;
+}
+
 .x-message2 a
 {
 	color: #2b7fa6;
@@ -56,6 +49,12 @@
 	color: #18698f;
 }
 
+.x-message2 .x-content
+{
+	border-top: 3px solid #479cc4;
+	border-bottom: 1px solid #479cc4;
+}
+
 .mention .x-content
 {
 	background:
diff -r 48522ad842fe -r 80bdc55dc2d5 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Cosmic.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Cosmic.css	Wed Mar 03 01:22:44 2010 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Cosmic.css	Wed Mar 03 22:50:40 2010 -0600
@@ -5,6 +5,7 @@
 	background: url("../images/backgroundCosmic.jpg") repeat-y center top #000 fixed;
 }
 
+#x-headerChatStarted .x-chatname,
 .x-message1 .x-userName,
 .x-message1 .x-date
 {
@@ -29,15 +30,9 @@
 	border-bottom: 1px solid #ccc;
 }
 
-
-#x-headerChatStarted h2
-{
-	color: #ff57ab;
-}
-
 #x-headerImage
 {
-	background: url("../images/backgroundUserImageCosmic.png") no-repeat;
+	background: #ff57ab;
 }
 
 .x-message1 a
diff -r 48522ad842fe -r 80bdc55dc2d5 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Cosmos.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Cosmos.css	Wed Mar 03 01:22:44 2010 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Cosmos.css	Wed Mar 03 22:50:40 2010 -0600
@@ -2,32 +2,19 @@
 
 body
 {
-	background: url("../images/Polarized/backgroundCosmos.jpg") repeat-y center top #000 fixed;
-}
-
-.x-message1 .x-userName,
-.x-message1 .x-date,
-#x-headerChatStarted h2
-{
-	color: #e33a7e;
-}
-
-.x-message2 .x-userName,
-.x-message2 .x-date
-{
-	color: #777;
-}
-
-.x-status
-{
-	color: #000;
-	text-shadow: none;
-	opacity: .4;
+	background: url("../images/backgroundCosmos.jpg") repeat-y center top #000 fixed;
 }
 
 #x-headerImage
 {
-	background: url("../images/Polarized/backgroundUserImageCosmos.png") no-repeat;
+	background: #e33a7e;
+}
+
+#x-headerChatStarted .x-chatname,
+.x-message1 .x-userName,
+.x-message1 .x-date
+{
+	color: #e33a7e;
 }
 
 .x-content
@@ -36,13 +23,6 @@
 	border-bottom: 1px solid #e33a7e;
 }
 
-.x-message2 .x-content
-{
-	border-top: 3px solid #777;
-	border-bottom: 1px solid #777;
-}
-
-
 .x-message1 a
 {
 	color: #ca1960;
@@ -53,6 +33,12 @@
 	color: #aa0346;
 }
 
+.x-message2 .x-userName,
+.x-message2 .x-date
+{
+	color: #777;
+}
+
 .x-message2 a
 {
 	color: #555;
@@ -63,6 +49,12 @@
 	color: #222;
 }
 
+.x-message2 .x-content
+{
+	border-top: 3px solid #777;
+	border-bottom: 1px solid #777;
+}
+
 .mention .x-content
 {
 	background:
diff -r 48522ad842fe -r 80bdc55dc2d5 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Crimson.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Crimson.css	Wed Mar 03 01:22:44 2010 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Crimson.css	Wed Mar 03 22:50:40 2010 -0600
@@ -5,9 +5,9 @@
 	background: url("../images/backgroundCrimson.jpg") repeat-y center top #000 fixed;
 }
 
+#x-headerChatStarted .x-chatname,
 .x-message1 .x-userName,
-.x-message1 .x-date,
-#x-headerChatStarted h2
+.x-message1 .x-date
 {
 	color: #e1000b;
 }
@@ -32,7 +32,7 @@
 
 #x-headerImage
 {
-	background: url("../images/backgroundUserImageCrimson.png") no-repeat;
+	background: #e1000b;
 }
 
 .x-message1 a
diff -r 48522ad842fe -r 80bdc55dc2d5 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Delaware Punch.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Delaware Punch.css	Wed Mar 03 01:22:44 2010 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Delaware Punch.css	Wed Mar 03 22:50:40 2010 -0600
@@ -5,6 +5,7 @@
 	background: url("../images/backgroundDelaware.jpg") repeat-y center top #000 fixed;
 }
 
+#x-headerChatStarted .x-chatname,
 .x-message1 .x-userName,
 .x-message1 .x-date
 {
@@ -29,15 +30,9 @@
 	border-bottom: 1px solid #d2c599;
 }
 
-
-#x-headerChatStarted h2
-{
-	color: #b24573;
-}
-
 #x-headerImage
 {
-	background: url("../images/backgroundUserImageDelaware.png") no-repeat;
+	background: #b24573;
 }
 
 .x-message1 a
diff -r 48522ad842fe -r 80bdc55dc2d5 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Firelight.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Firelight.css	Wed Mar 03 01:22:44 2010 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Firelight.css	Wed Mar 03 22:50:40 2010 -0600
@@ -2,32 +2,19 @@
 
 body


More information about the commits mailing list