You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2017/02/28 04:46:34 UTC

svn commit: r1784688 - in /openmeetings/application: branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/ branches/3.2.x/openmeetings-web/src/main/webapp/css/ branches/3.2.x/openmeetings-web/src/main/webapp/css/images...

Author: solomax
Date: Tue Feb 28 04:46:34 2017
New Revision: 1784688

URL: http://svn.apache.org/viewvc?rev=1784688&view=rev
Log:
[OPENMEETINGS-1209] typing indicator is improved

Modified:
    openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/RoomClientPanel.html
    openmeetings/application/branches/3.2.x/openmeetings-web/src/main/webapp/css/images/typing.gif
    openmeetings/application/branches/3.2.x/openmeetings-web/src/main/webapp/css/room.css
    openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/RoomClientPanel.html
    openmeetings/application/trunk/openmeetings-web/src/main/webapp/css/images/typing.gif
    openmeetings/application/trunk/openmeetings-web/src/main/webapp/css/room.css

Modified: openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/RoomClientPanel.html
URL: http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/RoomClientPanel.html?rev=1784688&r1=1784687&r2=1784688&view=diff
==============================================================================
--- openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/RoomClientPanel.html (original)
+++ openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/RoomClientPanel.html Tue Feb 28 04:46:34 2017
@@ -7,9 +7,9 @@
   to you under the Apache License, Version 2.0 (the
   "License"); you may not use this file except in compliance
   with the License.  You may obtain a copy of the License at
-  
+
       http://www.apache.org/licenses/LICENSE-2.0
-    	  
+
   Unless required by applicable law or agreed to in writing,
   software distributed under the License is distributed on an
   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -23,7 +23,7 @@
 	<span wicket:id="status" class="ui-icon align-right"></span>
 	<span wicket:id="refresh"></span>
 	<div wicket:id="name" class="user name"></div>
-	<span class="ui-icon align-right typing-activity"></span>
+	<span class="ui-icon align-right typing-activity big"></span>
 	<span class="ui-icon align-right clickable audio-activity" wicket:message="title:372"></span>
 	<div wicket:id="actions" class="user actions">
 		<span wicket:id="icons"></span>

Modified: openmeetings/application/branches/3.2.x/openmeetings-web/src/main/webapp/css/images/typing.gif
URL: http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/webapp/css/images/typing.gif?rev=1784688&r1=1784687&r2=1784688&view=diff
==============================================================================
Binary files - no diff available.

Modified: openmeetings/application/branches/3.2.x/openmeetings-web/src/main/webapp/css/room.css
URL: http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/webapp/css/room.css?rev=1784688&r1=1784687&r2=1784688&view=diff
==============================================================================
--- openmeetings/application/branches/3.2.x/openmeetings-web/src/main/webapp/css/room.css (original)
+++ openmeetings/application/branches/3.2.x/openmeetings-web/src/main/webapp/css/room.css Tue Feb 28 04:46:34 2017
@@ -158,6 +158,9 @@
 .room.sidebar.left .user.list .user .ui-icon {
 	background-size: 16px;
 }
+.room.sidebar.left .user.list .user .ui-icon.big {
+	background-size: 32px;
+}
 .audio-activity.ui-icon {
 	opacity: 0.2;
 	background-image: url(images/speaking.png);

Modified: openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/RoomClientPanel.html
URL: http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/RoomClientPanel.html?rev=1784688&r1=1784687&r2=1784688&view=diff
==============================================================================
--- openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/RoomClientPanel.html (original)
+++ openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/RoomClientPanel.html Tue Feb 28 04:46:34 2017
@@ -7,9 +7,9 @@
   to you under the Apache License, Version 2.0 (the
   "License"); you may not use this file except in compliance
   with the License.  You may obtain a copy of the License at
-  
+
       http://www.apache.org/licenses/LICENSE-2.0
-    	  
+
   Unless required by applicable law or agreed to in writing,
   software distributed under the License is distributed on an
   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -23,7 +23,7 @@
 	<span wicket:id="status" class="ui-icon align-right"></span>
 	<span wicket:id="refresh"></span>
 	<div wicket:id="name" class="user name"></div>
-	<span class="ui-icon align-right typing-activity"></span>
+	<span class="ui-icon align-right typing-activity big"></span>
 	<span class="ui-icon align-right clickable audio-activity" wicket:message="title:372"></span>
 	<div wicket:id="actions" class="user actions">
 		<span wicket:id="icons"></span>

Modified: openmeetings/application/trunk/openmeetings-web/src/main/webapp/css/images/typing.gif
URL: http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/webapp/css/images/typing.gif?rev=1784688&r1=1784687&r2=1784688&view=diff
==============================================================================
Binary files - no diff available.

Modified: openmeetings/application/trunk/openmeetings-web/src/main/webapp/css/room.css
URL: http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/webapp/css/room.css?rev=1784688&r1=1784687&r2=1784688&view=diff
==============================================================================
--- openmeetings/application/trunk/openmeetings-web/src/main/webapp/css/room.css (original)
+++ openmeetings/application/trunk/openmeetings-web/src/main/webapp/css/room.css Tue Feb 28 04:46:34 2017
@@ -158,6 +158,9 @@
 .room.sidebar.left .user.list .user .ui-icon {
 	background-size: 16px;
 }
+.room.sidebar.left .user.list .user .ui-icon.big {
+	background-size: 32px;
+}
 .audio-activity.ui-icon {
 	opacity: 0.2;
 	background-image: url(images/speaking.png);