xtras/mathuaerknedam 22:7eb3d10657a0: tweak link underlines, adj...

commits at adium.im commits at adium.im
Tue May 19 14:29:46 UTC 2009


details:	http://hg.adium.im/xtras/mathuaerknedam/rev/7eb3d10657a0
revision:	22:7eb3d10657a0
author:		mathuaerknedam
date:		Tue May 19 09:29:31 2009 -0500

tweak link underlines, adjust width of times in time-icon and alternating, and force line-breaking in lines without nice linebreaks.

diffstat:

 SO3e.AdiumMessageStyle/Contents/Resources/Mockup-SpecialCases.html |   2 +-
 SO3e.AdiumMessageStyle/Contents/Resources/Variants/Alternating.css |  14 ++++--
 SO3e.AdiumMessageStyle/Contents/Resources/Variants/Classic.css     |   4 +-
 SO3e.AdiumMessageStyle/Contents/Resources/Variants/Compact.css     |  12 ++++--
 SO3e.AdiumMessageStyle/Contents/Resources/Variants/Icon-Time1.css  |  12 ++++--
 SO3e.AdiumMessageStyle/Contents/Resources/Variants/Icon-Time2.css  |  12 ++++--
 SO3e.AdiumMessageStyle/Contents/Resources/Variants/Time-Icon.css   |  14 ++++--
 7 files changed, 45 insertions(+), 25 deletions(-)

diffs (231 lines):

diff -r cc47a3c98499 -r 7eb3d10657a0 SO3e.AdiumMessageStyle/Contents/Resources/Mockup-SpecialCases.html
--- a/SO3e.AdiumMessageStyle/Contents/Resources/Mockup-SpecialCases.html	Thu May 07 18:55:26 2009 -0500
+++ b/SO3e.AdiumMessageStyle/Contents/Resources/Mockup-SpecialCases.html	Tue May 19 09:29:31 2009 -0500
@@ -7,7 +7,7 @@
 	</title>
 
 	<style type="text/css">
-		@import url( "./Variants/Classic.css" );
+		@import url( "./Variants/Time-Icon.css" );
 
 		body
 		{
diff -r cc47a3c98499 -r 7eb3d10657a0 SO3e.AdiumMessageStyle/Contents/Resources/Variants/Alternating.css
--- a/SO3e.AdiumMessageStyle/Contents/Resources/Variants/Alternating.css	Thu May 07 18:55:26 2009 -0500
+++ b/SO3e.AdiumMessageStyle/Contents/Resources/Variants/Alternating.css	Tue May 19 09:29:31 2009 -0500
@@ -11,6 +11,8 @@
 	margin: 0px;
 	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255 ,255, 1)), to(rgba(208, 208, 208, 1))) fixed repeat-x;
 	-webkit-background-size: auto;
+	word-wrap: break-word;
+	word-break: break-word;
 }
 
 #Chat
@@ -250,7 +252,7 @@
 	left: 54px;
 	margin-top: 1px;
 	font-size: .9em;
-	width: 5em;
+	width: 4.5em;
 	text-align: right;
 	white-space: nowrap;
 	overflow: hidden;
@@ -307,18 +309,20 @@
 a:link
 {
 	color: inherit;
-	border-bottom: 1px solid;
-	text-decoration: none;
+	//border-bottom: 1px solid;
+	text-decoration: underline;
 }
 
 a:hover
 {
-	border-bottom: 2px solid;
+	//border-bottom: 2px solid;
+	border-bottom: 1px solid;
 }
 
 a:active
 {
-	border-bottom: 3px double;
+	//border-bottom: 3px double;
+	border-bottom: 2px solid;
 }
 
 img.fullSizeImage
diff -r cc47a3c98499 -r 7eb3d10657a0 SO3e.AdiumMessageStyle/Contents/Resources/Variants/Classic.css
--- a/SO3e.AdiumMessageStyle/Contents/Resources/Variants/Classic.css	Thu May 07 18:55:26 2009 -0500
+++ b/SO3e.AdiumMessageStyle/Contents/Resources/Variants/Classic.css	Tue May 19 09:29:31 2009 -0500
@@ -9,10 +9,10 @@
 body
 {
 	margin: 0px;
+	background: -webkit-gradient(linear, left top, left bottom, from(rgba(149, 175, 219, 1)), to(rgba(255, 255 ,255, 1))) fixed repeat-x;
+	-webkit-background-size: 100%;
 	word-wrap: break-word;
 	word-break: break-word;
-	background: -webkit-gradient(linear, left top, left bottom, from(rgba(149, 175, 219, 1)), to(rgba(255, 255 ,255, 1))) fixed repeat-x;
-	-webkit-background-size: 100%;
 }
 
 #Chat
diff -r cc47a3c98499 -r 7eb3d10657a0 SO3e.AdiumMessageStyle/Contents/Resources/Variants/Compact.css
--- a/SO3e.AdiumMessageStyle/Contents/Resources/Variants/Compact.css	Thu May 07 18:55:26 2009 -0500
+++ b/SO3e.AdiumMessageStyle/Contents/Resources/Variants/Compact.css	Tue May 19 09:29:31 2009 -0500
@@ -11,6 +11,8 @@
 	margin: 0px;
 	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255 ,255, 1)), to(rgba(208, 208, 208, 1))) fixed repeat-x;
 	-webkit-background-size: auto;
+	word-wrap: break-word;
+	word-break: break-word;
 }
 
 #Chat
@@ -233,18 +235,20 @@
 a:link
 {
 	color: inherit;
-	border-bottom: 1px solid;
-	text-decoration: none;
+	//border-bottom: 1px solid;
+	text-decoration: underline;
 }
 
 a:hover
 {
-	border-bottom: 2px solid;
+	//border-bottom: 2px solid;
+	border-bottom: 1px solid;
 }
 
 a:active
 {
-	border-bottom: 3px double;
+	//border-bottom: 3px double;
+	border-bottom: 2px solid;
 }
 
 img.fullSizeImage
diff -r cc47a3c98499 -r 7eb3d10657a0 SO3e.AdiumMessageStyle/Contents/Resources/Variants/Icon-Time1.css
--- a/SO3e.AdiumMessageStyle/Contents/Resources/Variants/Icon-Time1.css	Thu May 07 18:55:26 2009 -0500
+++ b/SO3e.AdiumMessageStyle/Contents/Resources/Variants/Icon-Time1.css	Tue May 19 09:29:31 2009 -0500
@@ -11,6 +11,8 @@
 	margin: 0px;
 	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255 ,255, 1)), to(rgba(208, 208, 208, 1))) fixed repeat-x;
 	-webkit-background-size: 100%;
+	word-wrap: break-word;
+	word-break: break-word;
 }
 
 #Chat
@@ -352,18 +354,20 @@
 a:link
 {
 	color: inherit;
-	border-bottom: 1px solid;
-	text-decoration: none;
+	//border-bottom: 1px solid;
+	text-decoration: underline;
 }
 
 a:hover
 {
-	border-bottom: 2px solid;
+	//border-bottom: 2px solid;
+	border-bottom: 1px solid;
 }
 
 a:active
 {
-	border-bottom: 3px double;
+	//border-bottom: 3px double;
+	border-bottom: 2px solid;
 }
 
 img.fullSizeImage
diff -r cc47a3c98499 -r 7eb3d10657a0 SO3e.AdiumMessageStyle/Contents/Resources/Variants/Icon-Time2.css
--- a/SO3e.AdiumMessageStyle/Contents/Resources/Variants/Icon-Time2.css	Thu May 07 18:55:26 2009 -0500
+++ b/SO3e.AdiumMessageStyle/Contents/Resources/Variants/Icon-Time2.css	Tue May 19 09:29:31 2009 -0500
@@ -11,6 +11,8 @@
 	margin: 0px;
 	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255 ,255, 1)), to(rgba(208, 208, 208, 1))) fixed repeat-x;
 	-webkit-background-size: 100%;
+	word-wrap: break-word;
+	word-break: break-word;
 }
 
 #Chat
@@ -359,18 +361,20 @@
 a:link
 {
 	color: inherit;
-	border-bottom: 1px solid;
-	text-decoration: none;
+	//border-bottom: 1px solid;
+	text-decoration: underline;
 }
 
 a:hover
 {
-	border-bottom: 2px solid;
+	//border-bottom: 2px solid;
+	border-bottom: 1px solid;
 }
 
 a:active
 {
-	border-bottom: 3px double;
+	//border-bottom: 3px double;
+	border-bottom: 2px solid;
 }
 
 img.fullSizeImage
diff -r cc47a3c98499 -r 7eb3d10657a0 SO3e.AdiumMessageStyle/Contents/Resources/Variants/Time-Icon.css
--- a/SO3e.AdiumMessageStyle/Contents/Resources/Variants/Time-Icon.css	Thu May 07 18:55:26 2009 -0500
+++ b/SO3e.AdiumMessageStyle/Contents/Resources/Variants/Time-Icon.css	Tue May 19 09:29:31 2009 -0500
@@ -11,6 +11,8 @@
 	margin: 0px;
 	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255 ,255, 1)), to(rgba(208, 208, 208, 1))) fixed repeat-x;
 	-webkit-background-size: auto;
+	word-wrap: break-word;
+	word-break: break-word;
 }
 
 #Chat
@@ -238,7 +240,7 @@
 	left: 12px;
 	margin-top: 1px;
 	font-size: .9em;
-	width: 5em;
+	width: 4.5em;
 	text-align: right;
 	white-space: nowrap;
 	overflow: hidden;
@@ -295,18 +297,20 @@
 a:link
 {
 	color: inherit;
-	border-bottom: 1px solid;
-	text-decoration: none;
+	//border-bottom: 1px solid;
+	text-decoration: underline;
 }
 
 a:hover
 {
-	border-bottom: 2px solid;
+	//border-bottom: 2px solid;
+	border-bottom: 1px solid;
 }
 
 a:active
 {
-	border-bottom: 3px double;
+	//border-bottom: 3px double;
+	border-bottom: 2px solid;
 }
 
 img.fullSizeImage




More information about the commits mailing list