|
From: <ma...@us...> - 2011-06-24 21:26:47
|
Revision: 371
http://openautomation.svn.sourceforge.net/openautomation/?rev=371&view=rev
Author: mayerch
Date: 2011-06-24 21:26:40 +0000 (Fri, 24 Jun 2011)
Log Message:
-----------
Refinement of the "pure" design
Modified Paths:
--------------
CometVisu/trunk/visu/designs/pure/basic.css
CometVisu/trunk/visu/edit_config.html
Modified: CometVisu/trunk/visu/designs/pure/basic.css
===================================================================
--- CometVisu/trunk/visu/designs/pure/basic.css 2011-06-21 20:50:30 UTC (rev 370)
+++ CometVisu/trunk/visu/designs/pure/basic.css 2011-06-24 21:26:40 UTC (rev 371)
@@ -4,7 +4,7 @@
color: white;
font-family: Verdana, Helvetica, sans-serif;
font-family: 'URW Gothic L','Century Gothic','Apple Gothic',Arial,sans-serif;
- font-size: 6mm;
+ font-size: 5mm;
overflow: hidden;
margin:0;
-moz-user-select: none;
@@ -65,27 +65,40 @@
.widget
{
float:left;
- width:48%;
+ width:48%; /* dumb fallback */
+ width: -moz-calc(50% - 0.6em);
+ width: -webkit-calc(50% - 0.6em);
+ width: -o-calc(50% - 0.6em);
+ width: calc(50% - 0.6em);
margin:0.10em;
padding:0.1em;
/* border:yellow 1px solid; */
- border: 1px solid #444;
+ border: none;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
min-height: 2em;
}
+.editmode .widget
+{
+ border: 1px solid #444;
+}
+
.widget .widget
{
- width:98%;
+ width:98%; /* dumb fallback */
+ width: -moz-calc(100% - 0.6em);
+ width: -webkit-calc(100% - 0.6em);
+ width: -o-calc(100% - 0.6em);
+ width: calc(100% - 0.6em);
}
.widget .label,
.widget.info .actor,
.text > div,
.link > a {
- line-height: 2em;
+ padding: 5px;
}
.widget .label
@@ -151,6 +164,7 @@
color: #ff8000;
text-align: right;
width: 49%;
+ padding: 5px;
}
.page
@@ -176,7 +190,7 @@
border-style: solid;
border-width: 1px;
border-color: #fff #666 #666 #fff;
- padding: 5px;
+ padding: 3px;
width: 5em;
float: left;
-moz-border-radius: 5px;
@@ -186,13 +200,6 @@
.switchPressed
{
- border-top: 1px solid #666;
- border-left: 1px solid #666;
- border-right: 1px solid #ccc;
- border-bottom: 1px solid #ccc;
-}
-.switchPressed
-{
border-style: solid;
border-width: 1px;
border-color: #666 #fff #fff #666;
@@ -206,7 +213,7 @@
border-style: solid;
border-width: 1px;
border-color: #444 #666 #666 #444;
- padding: 5px;
+ padding: 3px;
width: 5em;
float: left;
-moz-border-radius: 5px;
Modified: CometVisu/trunk/visu/edit_config.html
===================================================================
--- CometVisu/trunk/visu/edit_config.html 2011-06-21 20:50:30 UTC (rev 370)
+++ CometVisu/trunk/visu/edit_config.html 2011-06-24 21:26:40 UTC (rev 371)
@@ -25,7 +25,7 @@
.loading { display: none; }
</style>
</head>
- <body>
+ <body class="editmode">
<div id="top" class="loading">
<div class="nav_path">-</div>
<hr />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|