dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #21620
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 10276: Message cosmetic fix
------------------------------------------------------------
revno: 10276
committer: Lars Helge Øverland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Sun 2013-03-17 15:36:26 +0100
message:
Message cosmetic fix
modified:
dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/css/widgets.css
dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/macros.vm
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/css/widgets.css'
--- dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/css/widgets.css 2013-03-16 05:57:01 +0000
+++ dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/css/widgets.css 2013-03-17 14:36:26 +0000
@@ -761,15 +761,17 @@
/* Messages used for sharing */
/*----------------------------------------------------------------------------*/
-.message * { margin: 0; padding: 0; }
-.message {
- border: 1px solid #002a80;
- border-radius: 5px;
+.message
+{
+ border: 1px solid #ccc;
+ border-radius: 3px;
width: 450px;
- padding: 5px;
- margin-bottom: 4px;
+ padding: 9px;
+ margin-bottom: 8px;
}
-.message-info {
- background-color: #eee;
+.message-info
+{
+ background-color: #f3f3f3;
+ color: #222;
}
=== modified file 'dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/macros.vm'
--- dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/macros.vm 2013-03-16 05:57:01 +0000
+++ dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/macros.vm 2013-03-17 14:36:26 +0000
@@ -362,9 +362,9 @@
#macro( sharingCreateNotification $type )
<div class="message message-info">
#if( $security.canCreatePublic( $type ) )
- <p><img src="../icons/function-about-dhis2.png" width="18" height="18" style="float: left; padding-right: 3px;"/> $i18n.getString("object_will_created_public")</p>
+ $i18n.getString("object_will_created_public")
#elseif( $security.canCreatePrivate( $type ) )
- <p><img src="../icons/function-about-dhis2.png" width="18" height="18" style="float: left; padding-right: 3px;"/> $i18n.getString("object_will_created_private")</p>
+ $i18n.getString("object_will_created_private")
#end
</div>
#end