Commit 8b062fe993e06687dae6662e961689d4abb257ae

Authored by kevin_fourie
1 parent e524fd03

Merged from STABLE trunk...

KTS-1779
"UI issue on workflow action page. "
Fixed.

Reviewed By: Conrad

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/branches/3.3.3-Release-Branch@6379 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 34 additions and 121 deletions
resources/css/kt-framing.css
... ... @@ -1234,15 +1234,14 @@ a.main_nav_item {
1234 1234  
1235 1235  
1236 1236 .ktBlock {
1237   - padding: 0.1em 1em;
1238   - /*border-right: 1px solid #c5c5c5;*/
1239   - /*background-color: #fcfcfc;*/
1240   - margin: 1em 0;
1241   - position:relative;
  1237 + padding: 0 1em;
  1238 + border: 1px solid #c5c5c5;
  1239 + background-color: #fcfcfc;
  1240 + margin: 0.5em 0;
1242 1241 }
1243 1242  
1244 1243  
1245   -.ktInfo, .ktError {
  1244 +.ktBlock, .ktInfo, .ktError {
1246 1245 background-repeat: repeat-x;
1247 1246 background-position: top left;
1248 1247 }
... ... @@ -1255,12 +1254,14 @@ a.main_nav_item {
1255 1254 background-image: url(../../resources/graphics/dashlet-gradient-error.gif);
1256 1255 }
1257 1256  
  1257 +#dashboard-container-left .ktBlock,
1258 1258 #dashboard-container-left .ktInfo,
1259 1259 #dashboard-container-left .ktError,
  1260 +#dashboard-container-right .ktBlock,
1260 1261 #dashboard-container-right .ktInfo,
1261 1262 #dashboard-container-right .ktError
1262 1263 {
1263   - -moz-border-radius: 15px;
  1264 + -moz-border-radius: 15px;
1264 1265 }
1265 1266 #dashboardBox {
1266 1267 width: 80%
... ... @@ -1290,12 +1291,6 @@ a.main_nav_item {
1290 1291 margin: 0.5em;
1291 1292 }
1292 1293  
1293   -.outerContainer{
1294   - height: 450px;
1295   - overflow: auto;
1296   - margin-bottom: 20px;
1297   -}
1298   -
1299 1294 /* ========== kt actions
1300 1295  
1301 1296 These are used to mark up various different "actions" (e.g. cut, copy, delete).
... ... @@ -1419,139 +1414,73 @@ The text will be hidden for screen view. The generic fahrner-ish approach comes
1419 1414 /* background-color: #ddf; */
1420 1415 }
1421 1416  
1422   -.dashboard_block_topleft {
  1417 +#dashboard_block_topleft {
1423 1418 position: absolute;
1424   - width: 35px;
1425   - height: 36px;
  1419 + width: 40px;
  1420 + height: 40px;
1426 1421 top: 0px;
1427 1422 left: 0px;
1428   - background: url(../graphics/dashlet_topleft.png) top left no-repeat;
1429   - z-index:-1;
1430 1423 }
1431 1424  
1432   -.dashboard_block_toprepeat {
  1425 +#dashboard_block_toprepeat {
1433 1426 position: absolute;
1434   - width: 90%;
1435   - height: 36px;
  1427 + width: 95%;
  1428 + height: 3px;
1436 1429 top: 0px;
1437 1430 left: 30px;
1438   - background: white url(../graphics/dashlet_toprepeat.png) top left repeat-x;
1439   - z-index:-1;
1440 1431 }
1441 1432  
1442   -.dashboard_block_topright {
  1433 +#dashboard_block_topright {
1443 1434 position: absolute;
1444   - width: 35px;
1445   - height: 36px;
  1435 + width: 40px;
  1436 + height: 40px;
1446 1437 top: 0px;
1447 1438 right: 0px;
1448   - background: url(../graphics/dashlet_topright.png) top right no-repeat;
1449   - z-index:-1;
1450 1439 }
1451 1440  
1452   -.dashboard_block_leftrepeat_top {
  1441 +#dashboard_block_leftrepeat {
1453 1442 position: absolute;
1454   - width: 13px;
1455   - height: 50%;
1456   - top: 5px;
1457   - left: 0px;
1458   - background: white url(../graphics/dashlet_leftrepeat.png) top left repeat-y;
1459   - z-index:-1;
1460   -}
1461   -
1462   -.dashboard_block_leftrepeat_bottom {
1463   - position: absolute;
1464   - width: 13px;
1465   - height: 50%;
1466   - bottom: 10px;
  1443 + width: 3px;
  1444 + height: 95%;
  1445 + top: 30px;
1467 1446 left: 0px;
1468   - background: white url(../graphics/dashlet_leftrepeat.png) top left repeat-y;
1469   - z-index:-1;
1470 1447 }
1471 1448  
1472   -.dashboard_block_bottomleft {
  1449 +#dashboard_block_bottomleft {
1473 1450 position: absolute;
1474 1451 width: 40px;
1475 1452 height: 40px;
1476 1453 bottom: 0px;
1477 1454 left: 0px;
1478   - background: url(../graphics/dashlet_bottomleft.png) bottom left no-repeat;
1479   - z-index:-1;
1480 1455 }
1481 1456  
1482   -.dashboard_block_bottomrepeat {
  1457 +#dashboard_block_bottomrepeat {
1483 1458 position: absolute;
1484   - width: 90%;
1485   - height: 13px;
  1459 + width: 95%;
  1460 + height: 3px;
1486 1461 bottom: 0px;
1487 1462 left: 30px;
1488   - background: white url(../graphics/dashlet_bottomrepeat.png) bottom left repeat-x;
1489   - z-index:-1;
1490 1463 }
1491 1464  
1492   -.dashboard_block_bottomright {
  1465 +#dashboard_block_bottomright {
1493 1466 position: absolute;
1494 1467 width: 40px;
1495 1468 height: 40px;
1496 1469 bottom: 0px;
1497 1470 right: 0px;
1498   - background: url(../graphics/dashlet_bottomright.png) bottom right no-repeat;
1499   - z-index:-1;
1500 1471 }
1501 1472  
1502   -.dashboard_block_rightrepeat_top {
  1473 +#dashboard_block_rightrepeat {
1503 1474 position: absolute;
1504   - width: 13px;
1505   - height: 50%;
1506   - top: 5px;
1507   - right: 0px;
1508   - background: white url(../graphics/dashlet_rightrepeat.png) top right repeat-y;
1509   - z-index:-1;
1510   - overflow:hidden;
1511   -}
1512   -
1513   -.dashboard_block_rightrepeat_bottom {
1514   - position: absolute;
1515   - width: 13px;
1516   - height: 50%;
1517   - bottom: 10px;
  1475 + width: 3px;
  1476 + height: 95%;
  1477 + top: 30px;
1518 1478 right: 0px;
1519   - background: white url(../graphics/dashlet_rightrepeat.png) bottom right repeat-y;
1520   - z-index:-1;
1521   - overflow:hidden;
1522   -}
1523   -
1524   -.dashboard_block_rightrepeat_top {
1525   - min-height: 70px;
1526   -}
1527   -
1528   -.dashboard_block.rolled-up .dashboard_block_rightrepeat_top
1529   -{
1530   - display: none;
1531   -}
1532   -
1533   -.dashboard_block.rolled-up .dashboard_block_rightrepeat_bottom
1534   -{
1535   - display: none;
1536   -}
1537   -
1538   -.dashboard_block.rolled-up .dashboard_block_leftrepeat_top
1539   -{
1540   - display: none;
1541   -}
1542   -
1543   -.dashboard_block.rolled-up .dashboard_block_leftrepeat_bottom
1544   -{
1545   - display: none;
1546 1479 }
1547 1480  
1548 1481 .dashboard_block {
1549 1482 width: 100%;
1550   - /*background-color: #fdd;*/
1551   -}
1552   -
1553   -.dashboard_block_empty{
1554   - border:none;
  1483 +/* background-color: #fdd; */
1555 1484 }
1556 1485  
1557 1486 #copyrightbarBorder {
... ... @@ -1805,15 +1734,13 @@ hr {
1805 1734 {
1806 1735 float: right;
1807 1736 text-align: right;
1808   - margin: 0.2em 0em 0 0;
  1737 + margin: 0.75em 0em 0 0;
1809 1738 z-index: 100;
1810 1739 }
1811 1740  
1812 1741 .dashboard_block_handle
1813 1742 {
1814 1743 cursor: pointer;
1815   - margin: 0.2em -0.5em 0.5em 0;
1816   - font-size:small;
1817 1744 }
1818 1745  
1819 1746 .dashboard_block.rolled-up .dashboard_block_body
... ... @@ -1821,17 +1748,9 @@ hr {
1821 1748 display: none;
1822 1749 }
1823 1750  
1824   -.ktBlock .dashboard_block_body
1825   -{
1826   - z-index:99;
1827   - margin: 8px 0 10px 0;
1828   - background-color:#FFFFFF;
1829   -}
1830   -
1831   -.dashboard_block .dashboard_block_body .edit_action
  1751 +.dashboard_block .dashboard_block_body
1832 1752 {
1833 1753 z-index:99;
1834   - background-color:#FFFFFF;
1835 1754 }
1836 1755  
1837 1756 /* actions */
... ... @@ -1868,15 +1787,9 @@ hr {
1868 1787 #content .dashboard_block.rolled-up h2
1869 1788 {
1870 1789 border-bottom-width: 0px;
1871   - padding-bottom: 10px;
  1790 + padding-bottom: 0px;
1872 1791 }
1873 1792  
1874   -#content .ktBlock h2
1875   -{
1876   - border-bottom-width: 0px;
1877   - color: #FFFFFF;
1878   - font-size: small;
1879   -}
1880 1793  
1881 1794 #content .dashboard_block.closed
1882 1795 {
... ...