xtras/mathuaerknedam 276:c831c9e11bac: Gone Dark: give the date ...
commits at adium.im
commits at adium.im
Mon Nov 30 21:25:27 UTC 2009
details: http://hg.adium.im/xtras/mathuaerknedam/rev/c831c9e11bac
revision: 276:c831c9e11bac
author: mathuaerknedam
date: Tue Nov 24 10:03:20 2009 -0600
Gone Dark: give the date separator the focus background if it is immediately preceded by a focus element.
Subject: xtras/mathuaerknedam 277:3262b08b4fed: Gone Dark: give timestamps 6px left padding so that message text doesn't crowd them.
details: http://hg.adium.im/xtras/mathuaerknedam/rev/3262b08b4fed
revision: 277:3262b08b4fed
author: mathuaerknedam
date: Tue Nov 24 10:04:38 2009 -0600
Gone Dark: give timestamps 6px left padding so that message text doesn't crowd them.
Subject: xtras/mathuaerknedam 278:6ac1ece8c20f: yMous: give the date separator focus styling if it is immediately preceded by a focus-styled element.
details: http://hg.adium.im/xtras/mathuaerknedam/rev/6ac1ece8c20f
revision: 278:6ac1ece8c20f
author: mathuaerknedam
date: Mon Nov 30 11:36:38 2009 -0600
yMous: give the date separator focus styling if it is immediately preceded by a focus-styled element.
Subject: xtras/mathuaerknedam 279:2b7b95763dab: minimal_mod: give the date separator focus styling if it is immediately preceded by a focus-styled element.
details: http://hg.adium.im/xtras/mathuaerknedam/rev/2b7b95763dab
revision: 279:2b7b95763dab
author: mathuaerknedam
date: Mon Nov 30 11:36:57 2009 -0600
minimal_mod: give the date separator focus styling if it is immediately preceded by a focus-styled element.
Subject: xtras/mathuaerknedam 280:fe21655f9262: Gone Dark: Create 'standard' variant much like the nogloss-standard variant, and split all 'standard' image/color styling into that file, just like all of the other variants. For some reason it was in main.css, and then overridden by every other variant.
details: http://hg.adium.im/xtras/mathuaerknedam/rev/fe21655f9262
revision: 280:fe21655f9262
author: mathuaerknedam
date: Mon Nov 30 15:22:02 2009 -0600
Gone Dark: Create 'standard' variant much like the nogloss-standard variant, and split all 'standard' image/color styling into that file, just like all of the other variants. For some reason it was in main.css, and then overridden by every other variant.
Subject: xtras/mathuaerknedam 281:8ec46d58eb56: Gone Dark: quote image paths.
details: http://hg.adium.im/xtras/mathuaerknedam/rev/8ec46d58eb56
revision: 281:8ec46d58eb56
author: mathuaerknedam
date: Mon Nov 30 15:24:28 2009 -0600
Gone Dark: quote image paths.
Subject: xtras/mathuaerknedam 282:2a3689694078: Gone Dark: Add mention highlighting to the rest of the (not-standard) variants.
details: http://hg.adium.im/xtras/mathuaerknedam/rev/2a3689694078
revision: 282:2a3689694078
author: mathuaerknedam
date: Mon Nov 30 15:25:18 2009 -0600
Gone Dark: Add mention highlighting to the rest of the (not-standard) variants.
diffs (505 lines):
diff -r 6e9d0591d017 -r 2a3689694078 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Cosmic.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Cosmic.css Mon Nov 23 14:29:11 2009 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Cosmic.css Mon Nov 30 15:25:18 2009 -0600
@@ -2,7 +2,7 @@
body
{
- background: url(../images/backgroundCosmic.jpg) repeat-y center top #000 fixed;
+ background: url('../images/backgroundCosmic.jpg') repeat-y center top #000 fixed;
}
.x-message1 .x-userName,
@@ -37,7 +37,7 @@
#x-headerImage
{
- background: url(../images/backgroundUserImageCosmic.png) no-repeat;
+ background: url('../images/backgroundUserImageCosmic.png') no-repeat;
}
.x-message1 a
@@ -60,4 +60,10 @@
color: #f0f0f0;
}
-
+.mention .x-content
+{
+ background:
+ -webkit-gradient(linear, left top, right top, from(rgba(255, 87, 171, 1)), color-stop(.1, rgba(255, 87, 171, 1)), to(rgba(32, 32, 32, 1))) no-repeat,
+ -webkit-gradient(linear, left top, right top, from(rgba(32, 32, 32, 1)), to(rgba(32, 32, 32, .8)));
+ -webkit-background-size: 48px 100%, 100% 100%;
+}
diff -r 6e9d0591d017 -r 2a3689694078 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Crimson.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Crimson.css Mon Nov 23 14:29:11 2009 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Crimson.css Mon Nov 30 15:25:18 2009 -0600
@@ -2,7 +2,7 @@
body
{
- background: url(../images/backgroundCrimson.jpg) repeat-y center top #000 fixed;
+ background: url('../images/backgroundCrimson.jpg') repeat-y center top #000 fixed;
}
.x-message1 .x-userName,
@@ -32,7 +32,7 @@
#x-headerImage
{
- background: url(../images/backgroundUserImageCrimson.png) no-repeat;
+ background: url('../images/backgroundUserImageCrimson.png') no-repeat;
}
.x-message1 a
@@ -55,5 +55,10 @@
color: #f0151f;
}
-
-
+.mention .x-content
+{
+ background:
+ -webkit-gradient(linear, left top, right top, from(rgba(225, 0, 11, 1)), color-stop(.1, rgba(225, 0, 11, 1)), to(rgba(32, 32, 32, 1))) no-repeat,
+ -webkit-gradient(linear, left top, right top, from(rgba(32, 32, 32, 1)), to(rgba(32, 32, 32, .8)));
+ -webkit-background-size: 48px 100%, 100% 100%;
+}
diff -r 6e9d0591d017 -r 2a3689694078 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Delaware Punch.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Delaware Punch.css Mon Nov 23 14:29:11 2009 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Delaware Punch.css Mon Nov 30 15:25:18 2009 -0600
@@ -2,7 +2,7 @@
body
{
- background: url(../images/backgroundDelaware.jpg) repeat-y center top #000 fixed;
+ background: url('../images/backgroundDelaware.jpg') repeat-y center top #000 fixed;
}
.x-message1 .x-userName,
@@ -37,7 +37,7 @@
#x-headerImage
{
- background: url(../images/backgroundUserImageDelaware.png) no-repeat;
+ background: url('../images/backgroundUserImageDelaware.png') no-repeat;
}
.x-message1 a
@@ -60,3 +60,10 @@
color: #fff0c0;
}
+.mention .x-content
+{
+ background:
+ -webkit-gradient(linear, left top, right top, from(rgba(178, 69, 115, 1)), color-stop(.1, rgba(178, 69, 115, 1)), to(rgba(32, 32, 32, 1))) no-repeat,
+ -webkit-gradient(linear, left top, right top, from(rgba(32, 32, 32, 1)), to(rgba(32, 32, 32, .8)));
+ -webkit-background-size: 48px 100%, 100% 100%;
+}
diff -r 6e9d0591d017 -r 2a3689694078 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Lava Flow.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Lava Flow.css Mon Nov 23 14:29:11 2009 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Lava Flow.css Mon Nov 30 15:25:18 2009 -0600
@@ -2,7 +2,7 @@
body
{
- background: url(../images/backgroundLava.jpg) repeat-y center top #000 fixed;
+ background: url('../images/backgroundLava.jpg') repeat-y center top #000 fixed;
}
.x-message1 .x-userName,
@@ -37,7 +37,7 @@
#x-headerImage
{
- background: url(../images/backgroundUserImageLava.png) no-repeat;
+ background: url('../images/backgroundUserImageLava.png') no-repeat;
}
.x-message1 a
@@ -60,5 +60,10 @@
color: #ff5b31;
}
-
-
+.mention .x-content
+{
+ background:
+ -webkit-gradient(linear, left top, right top, from(rgba(237, 178, 0, 1)), color-stop(.1, rgba(237, 178, 0, 1)), to(rgba(32, 32, 32, 1))) no-repeat,
+ -webkit-gradient(linear, left top, right top, from(rgba(32, 32, 32, 1)), to(rgba(32, 32, 32, .8)));
+ -webkit-background-size: 48px 100%, 100% 100%;
+}
diff -r 6e9d0591d017 -r 2a3689694078 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Mutation.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Mutation.css Mon Nov 23 14:29:11 2009 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Mutation.css Mon Nov 30 15:25:18 2009 -0600
@@ -2,7 +2,7 @@
body
{
- background: url(../images/backgroundMutation.jpg) repeat-y center top #000 fixed;
+ background: url('../images/backgroundMutation.jpg') repeat-y center top #000 fixed;
}
.x-message1 .x-userName,
@@ -37,7 +37,7 @@
#x-headerImage
{
- background: url(../images/backgroundUserImageMutation.png) no-repeat;
+ background: url('../images/backgroundUserImageMutation.png') no-repeat;
}
.x-message1 a
@@ -60,4 +60,10 @@
color: #ffc863;
}
-
+.mention .x-content
+{
+ background:
+ -webkit-gradient(linear, left top, right top, from(rgba(180, 223, 0, 1)), color-stop(.1, rgba(180, 223, 0, 1)), to(rgba(32, 32, 32, 1))) no-repeat,
+ -webkit-gradient(linear, left top, right top, from(rgba(32, 32, 32, 1)), to(rgba(32, 32, 32, .8)));
+ -webkit-background-size: 48px 100%, 100% 100%;
+}
diff -r 6e9d0591d017 -r 2a3689694078 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Standard.css
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Standard.css Mon Nov 30 15:25:18 2009 -0600
@@ -0,0 +1,69 @@
+ at import url('../main.css');
+
+body
+{
+ background: url('../images/backgroundStandard.jpg') repeat-y center top #000 fixed;
+}
+
+.x-message1 .x-userName,
+.x-message1 .x-date
+{
+ color: #86ce4c;
+}
+
+.x-message2 .x-userName,
+.x-message2 .x-date
+{
+ color: #42b6ff;
+}
+
+.x-content
+{
+ border-top: 3px solid #86ce4c;
+ border-bottom: 1px solid #86ce4c;
+}
+
+.x-message2 .x-content
+{
+ border-top: 3px solid #42b6ff;
+ border-bottom: 1px solid #42b6ff;
+}
+
+
+#x-headerChatStarted h2
+{
+ color: #86ce4c;
+}
+
+#x-headerImage
+{
+ background: url('../images/backgroundUserImageStandard.png') no-repeat;
+}
+
+.x-message1 a
+{
+ color: #b4fe2b;
+}
+
+.x-message1 a:hover
+{
+ color: #f2fd0d;
+}
+
+.x-message2 a
+{
+ color: #42b6ff;
+}
+
+.x-message2 a:hover
+{
+ color: #73DDFE;
+}
+
+.mention .x-content
+{
+ background:
+ -webkit-gradient(linear, left top, right top, from(rgba(134, 206, 76, 1)), color-stop(.1, rgba(134, 206, 76, 1)), to(rgba(32, 32, 32, 1))) no-repeat,
+ -webkit-gradient(linear, left top, right top, from(rgba(32, 32, 32, 1)), to(rgba(32, 32, 32, .8)));
+ -webkit-background-size: 48px 100%, 100% 100%;
+}
diff -r 6e9d0591d017 -r 2a3689694078 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Steel.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Steel.css Mon Nov 23 14:29:11 2009 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Steel.css Mon Nov 30 15:25:18 2009 -0600
@@ -2,7 +2,7 @@
body
{
- background: url(../images/backgroundSteel.jpg) repeat-y center top #000 fixed;
+ background: url('../images/backgroundSteel.jpg') repeat-y center top #000 fixed;
}
.x-message1 .x-userName,
@@ -32,7 +32,7 @@
#x-headerImage
{
- background: url(../images/backgroundUserImageSteel.png) no-repeat;
+ background: url('../images/backgroundUserImageSteel.png') no-repeat;
}
.x-message1 a
@@ -55,4 +55,10 @@
color: #c5d6e1;
}
-
+.mention .x-content
+{
+ background:
+ -webkit-gradient(linear, left top, right top, from(rgba(86, 138, 168, 1)), color-stop(.1, rgba(86, 138, 168, 1)), to(rgba(32, 32, 32, 1))) no-repeat,
+ -webkit-gradient(linear, left top, right top, from(rgba(32, 32, 32, 1)), to(rgba(32, 32, 32, .8)));
+ -webkit-background-size: 48px 100%, 100% 100%;
+}
diff -r 6e9d0591d017 -r 2a3689694078 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Undersea.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Undersea.css Mon Nov 23 14:29:11 2009 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/Undersea.css Mon Nov 30 15:25:18 2009 -0600
@@ -2,7 +2,7 @@
body
{
- background: url(../images/backgroundUndersea.jpg) repeat-y center top #000 fixed;
+ background: url('../images/backgroundUndersea.jpg') repeat-y center top #000 fixed;
}
.x-message1 .x-userName,
@@ -37,7 +37,7 @@
#x-headerImage
{
- background: url(../images/backgroundUserImageUndersea.png) no-repeat;
+ background: url('../images/backgroundUserImageUndersea.png') no-repeat;
}
.x-message1 a
@@ -60,4 +60,10 @@
color: #cfecff;
}
-
+.mention .x-content
+{
+ background:
+ -webkit-gradient(linear, left top, right top, from(rgba(0, 161, 255, 1)), color-stop(.1, rgba(0, 161, 255, 1)), to(rgba(32, 32, 32, 1))) no-repeat,
+ -webkit-gradient(linear, left top, right top, from(rgba(32, 32, 32, 1)), to(rgba(32, 32, 32, .8)));
+ -webkit-background-size: 48px 100%, 100% 100%;
+}
diff -r 6e9d0591d017 -r 2a3689694078 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Standard.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Standard.css Mon Nov 23 14:29:11 2009 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/Variants/no gloss - Standard.css Mon Nov 30 15:25:18 2009 -0600
@@ -1,15 +1,6 @@
- at import url('../main.css');
+ at import url('Standard.css');
.x-gloss
{
background-image: none;
}
-
-.mention .x-content
-{
- background:
- -webkit-gradient(linear, left top, right top, from(rgba(134, 206, 76, 1)), color-stop(.1, rgba(134, 206, 76, 1)), to(rgba(32, 32, 32, 1))) no-repeat,
- -webkit-gradient(linear, left top, right top, from(rgba(32, 32, 32, 1)), to(rgba(32, 32, 32, .8)));
- -webkit-background-size: 48px 100%, 100% 100%;
-}
-
diff -r 6e9d0591d017 -r 2a3689694078 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/images/background.jpg
Binary file Gone Dark ☿.AdiumMessageStyle/Contents/Resources/images/background.jpg has changed
diff -r 6e9d0591d017 -r 2a3689694078 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/images/backgroundStandard.jpg
Binary file Gone Dark ☿.AdiumMessageStyle/Contents/Resources/images/backgroundStandard.jpg has changed
diff -r 6e9d0591d017 -r 2a3689694078 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/images/backgroundUserImage.png
Binary file Gone Dark ☿.AdiumMessageStyle/Contents/Resources/images/backgroundUserImage.png has changed
diff -r 6e9d0591d017 -r 2a3689694078 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/images/backgroundUserImageStandard.png
Binary file Gone Dark ☿.AdiumMessageStyle/Contents/Resources/images/backgroundUserImageStandard.png has changed
diff -r 6e9d0591d017 -r 2a3689694078 Gone Dark ☿.AdiumMessageStyle/Contents/Resources/main.css
--- a/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/main.css Mon Nov 23 14:29:11 2009 -0600
+++ b/Gone Dark ☿.AdiumMessageStyle/Contents/Resources/main.css Mon Nov 30 15:25:18 2009 -0600
@@ -2,7 +2,6 @@
{
margin: 0;
padding: 0;
- background: url(images/background.jpg) repeat-y center top #000 fixed;
}
#Chat
@@ -20,7 +19,7 @@
position: fixed;
top: 0;
width: 100%;
- background: url(images/backgroundHeader.png) repeat-x top;
+ background: url('images/backgroundHeader.png') repeat-x top;
z-index: 100;
}
@@ -49,7 +48,6 @@
#x-headerImage
{
- background: url(images/backgroundUserImage.png) no-repeat;
width: 32px;
height: 32px;
margin-left: 20px;
@@ -69,7 +67,6 @@
#x-headerChatStarted h2
{
- color: #86ce4c;
font-size: 19px;
font-weight: bold;
margin: 0;
@@ -102,37 +99,22 @@
text-shadow: 0px 1px 2px #000;
}
-.x-message1 .x-userName,
-.x-message1 .x-date
-{
- color: #86ce4c;
-
-}
-
.x-content
{
- border-top: 3px solid #86ce4c;
- border-bottom: 1px solid #86ce4c;
color: #fff;
line-height: 1.3em;
- background: url(images/transGrey.png);
+ background: url('images/transGrey.png');
word-wrap: break-word;
}
.x-message1 a
{
- color: #b4fe2b;
text-decoration: underline;
}
-.x-message1 a:hover
-{
- color: #f2fd0d;
-}
-
.x-gloss
{
- background: url(images/gloss.png) no-repeat center 4px;
+ background: url('images/gloss.png') no-repeat center 4px;
}
.x-contentText
@@ -145,13 +127,13 @@
.x-divider
{
- background: url(images/divider.png) repeat-x center;
+ background: url('images/divider.png') repeat-x center;
height: 2px;
}
.x-shadow
{
- background: url(images/messageShadow.png) repeat-x top;
+ background: url('images/messageShadow.png') repeat-x top;
height: 9px;
}
@@ -161,27 +143,15 @@
font-size: .9em;
margin-right: 20px;
padding-top: 6px;
+ padding-left: 6px;
text-shadow: #000 1px 1px 0px;
}
-.x-message2 .x-userName,
-.x-message2 .x-date
-{
- color: #42b6ff;
-}
-
.x-message2 a
{
- color: #42b6ff;
text-decoration: underline;
}
-.x-message2 .x-content
-{
- border-top: 3px solid #42b6ff;
- border-bottom: 1px solid #42b6ff;
-}
-
.x-status
{
color: hsla(0, 0%, 100%, .7);
@@ -214,6 +184,11 @@
background-color: hsla(0, 0%, 100%, .5);
}
+.focus + .date_separator:not(.focus)
+{
+ background-color: hsla(0, 0%, 100%, .5);
+}
+
.focus .x-service
{
color: hsla(0, 0%, 100%, .7);
diff -r 6e9d0591d017 -r 2a3689694078 minimal_mod ☿.AdiumMessageStyle/Contents/Resources/main.css
--- a/minimal_mod ☿.AdiumMessageStyle/Contents/Resources/main.css Mon Nov 23 14:29:11 2009 -0600
+++ b/minimal_mod ☿.AdiumMessageStyle/Contents/Resources/main.css Mon Nov 30 15:25:18 2009 -0600
@@ -285,7 +285,8 @@
}
.focus.x-container,
-.focus.x-container_next
+.focus.x-container_next,
+.focus + .x-container.date_separator:not(.focus)
{
background: -webkit-gradient(linear, left top, right bottom, from(rgba(0, 0 ,0, .1)), to(rgba(255, 255, 255, .1)));
}
diff -r 6e9d0591d017 -r 2a3689694078 yMous ☿.AdiumMessageStyle/Contents/Resources/Variants/_Themes/_BaseM.css
--- a/yMous ☿.AdiumMessageStyle/Contents/Resources/Variants/_Themes/_BaseM.css Mon Nov 23 14:29:11 2009 -0600
+++ b/yMous ☿.AdiumMessageStyle/Contents/Resources/Variants/_Themes/_BaseM.css Mon Nov 30 15:25:18 2009 -0600
@@ -125,7 +125,8 @@
background-color: hsla(0, 0%, 75%, 1) !important;
}
-.focus .x-focus
+.focus .x-focus,
+.focus + .date_separator:not(.focus) .x-focus
{
background: hsla(0, 0%, 18%, 1);
}
diff -r 6e9d0591d017 -r 2a3689694078 yMous ☿.AdiumMessageStyle/Contents/Resources/Variants/_Themes/_BaseS.css
--- a/yMous ☿.AdiumMessageStyle/Contents/Resources/Variants/_Themes/_BaseS.css Mon Nov 23 14:29:11 2009 -0600
+++ b/yMous ☿.AdiumMessageStyle/Contents/Resources/Variants/_Themes/_BaseS.css Mon Nov 30 15:25:18 2009 -0600
@@ -125,7 +125,8 @@
background-color: hsla(0, 0%, 25%, 1) !important;
}
-.focus .x-focus
+.focus .x-focus,
+.focus + .date_separator:not(.focus) .x-focus
{
background: hsla(0, 0%, 83%, 1);
}
More information about the commits
mailing list