xtras/mathuaerknedam 531:05504d7c458d: Smooth Operator: to compl...
commits at adium.im
commits at adium.im
Sun Oct 31 23:03:26 UTC 2010
details: http://hg.adium.im/xtras/mathuaerknedam/rev/05504d7c458d
revision: 531:05504d7c458d
author: mathuaerknedam
date: Sun Oct 31 18:03:13 2010 -0500
Smooth Operator: to complement the downward arrow indicating the first message of lost focus, add an upward arrow at the bottom of the chat for those situations when the down-arrow has scrolled offscreen. Also switch to shaftless arrows to save a bit of space.
diffs (205 lines):
diff -r ef62dac74de9 -r 05504d7c458d Smooth Operator ☿.AdiumMessageStyle/Contents/Info.plist
--- a/Smooth Operator ☿.AdiumMessageStyle/Contents/Info.plist Tue Oct 19 21:06:51 2010 -0500
+++ b/Smooth Operator ☿.AdiumMessageStyle/Contents/Info.plist Sun Oct 31 18:03:13 2010 -0500
@@ -3,9 +3,9 @@
<plist version="1.0">
<dict>
<key>CFBundleVersion</key>
- <string>2.0☿</string>
+ <string>2.0.1☿</string>
<key>CFBundleGetInfoString</key>
- <string>2.0☿</string>
+ <string>2.0.1☿</string>
<key>XtraBundleVersion</key>
<string>1</string>
<key>MessageViewVersion</key>
diff -r ef62dac74de9 -r 05504d7c458d Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Mockup-SpecialCases.html
--- a/Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Mockup-SpecialCases.html Tue Oct 19 21:06:51 2010 -0500
+++ b/Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Mockup-SpecialCases.html Sun Oct 31 18:03:13 2010 -0500
@@ -7,7 +7,7 @@
</title>
<style type="text/css">
- @import url( "./Variants/time-icon.css" );
+ @import url( "./Variants/classic.css" );
body
{
@@ -347,7 +347,6 @@
<span class="x-mark"></span>
<span class="x-message">Gotta run; catch ya later <a href="http://slashdot.org">;) </a></span>
</span>
- <span id="insert"></span>
</div>
<div class="incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: blue;">
@@ -363,10 +362,9 @@
</span>
</div>
+<span id="insert"></span>
</div>
-<hr id="focus" style="position: absolute; top: 424px;">
-
<script src="./Footer.js" type="text/javascript" charset="utf-8"></script>
</body>
diff -r ef62dac74de9 -r 05504d7c458d Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Mockup.html
--- a/Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Mockup.html Tue Oct 19 21:06:51 2010 -0500
+++ b/Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Mockup.html Sun Oct 31 18:03:13 2010 -0500
@@ -204,13 +204,11 @@
<span class="x-mark">‣</span>
<span class="x-message">Gotta run; catch ya later <a href="http://slashdot.org">;) </a></span>
</span>
- <span id="insert"></span>
</div>
+<span id="insert"></span>
</div>
-<hr id="focus" style="position: absolute; top: 394px;">
-
<script src="./Footer.js" type="text/javascript" charset="utf-8"></script>
</body>
diff -r ef62dac74de9 -r 05504d7c458d Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Alternating.css
--- a/Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Alternating.css Tue Oct 19 21:06:51 2010 -0500
+++ b/Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Alternating.css Sun Oct 31 18:03:13 2010 -0500
@@ -28,10 +28,22 @@
{
position: absolute;
font-family: AppleGothic;
- margin-top: -11px;
+ margin-top: -8px;
right: 5px;
font-size: 9px;
- content: "\2b07";
+ content: "\25bc";
+ color: rgba(64, 64, 64, 1);
+ text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
+}
+
+.firstFocus ~ #insert:after
+{
+ position: absolute;
+ font-family: AppleGothic;
+ margin-top: -3px;
+ right: 5px;
+ font-size: 9px;
+ content: "\25b2";
color: rgba(64, 64, 64, 1);
text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
}
diff -r ef62dac74de9 -r 05504d7c458d Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Classic.css
--- a/Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Classic.css Tue Oct 19 21:06:51 2010 -0500
+++ b/Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Classic.css Sun Oct 31 18:03:13 2010 -0500
@@ -24,10 +24,22 @@
{
position: absolute;
font-family: AppleGothic;
- margin-top: -15px;
+ margin-top: -12px;
right: 5px;
font-size: 9px;
- content: "\2b07";
+ content: "\25bc";
+ color: rgba(64, 64, 64, 1);
+ text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
+}
+
+.firstFocus ~ #insert:after
+{
+ position: absolute;
+ font-family: AppleGothic;
+ margin-top: -1px;
+ right: 5px;
+ font-size: 9px;
+ content: "\25b2";
color: rgba(64, 64, 64, 1);
text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
}
diff -r ef62dac74de9 -r 05504d7c458d Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Compact.css
--- a/Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Compact.css Tue Oct 19 21:06:51 2010 -0500
+++ b/Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Compact.css Sun Oct 31 18:03:13 2010 -0500
@@ -24,10 +24,22 @@
{
position: absolute;
font-family: AppleGothic;
- margin-top: -11px;
+ margin-top: -8px;
right: 5px;
font-size: 9px;
- content: "\2b07";
+ content: "\25bc";
+ color: rgba(64, 64, 64, 1);
+ text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
+}
+
+.firstFocus ~ #insert:after
+{
+ position: absolute;
+ font-family: AppleGothic;
+ margin-top: -3px;
+ right: 5px;
+ font-size: 9px;
+ content: "\25b2";
color: rgba(64, 64, 64, 1);
text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
}
diff -r ef62dac74de9 -r 05504d7c458d Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Icon-Time.css
--- a/Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Icon-Time.css Tue Oct 19 21:06:51 2010 -0500
+++ b/Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Icon-Time.css Sun Oct 31 18:03:13 2010 -0500
@@ -23,10 +23,22 @@
{
position: absolute;
font-family: AppleGothic;
- margin-top: -11px;
+ margin-top: -8px;
right: 5px;
font-size: 9px;
- content: "\2b07";
+ content: "\25bc";
+ color: rgba(64, 64, 64, 1);
+ text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
+}
+
+.firstFocus ~ #insert:after
+{
+ position: absolute;
+ font-family: AppleGothic;
+ margin-top: -3px;
+ right: 5px;
+ font-size: 9px;
+ content: "\25b2";
color: rgba(64, 64, 64, 1);
text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
}
diff -r ef62dac74de9 -r 05504d7c458d Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Time-Icon.css
--- a/Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Time-Icon.css Tue Oct 19 21:06:51 2010 -0500
+++ b/Smooth Operator ☿.AdiumMessageStyle/Contents/Resources/Variants/Time-Icon.css Sun Oct 31 18:03:13 2010 -0500
@@ -23,10 +23,22 @@
{
position: absolute;
font-family: AppleGothic;
- margin-top: -11px;
+ margin-top: -8px;
right: 5px;
font-size: 9px;
- content: "\2b07";
+ content: "\25bc";
+ color: rgba(64, 64, 64, 1);
+ text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
+}
+
+.firstFocus ~ #insert:after
+{
+ position: absolute;
+ font-family: AppleGothic;
+ margin-top: -3px;
+ right: 5px;
+ font-size: 9px;
+ content: "\25b2";
color: rgba(64, 64, 64, 1);
text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
}
More information about the commits
mailing list