From 318a5922cf5c23c9e43832a70d485263d12846c5 Mon Sep 17 00:00:00 2001 From: Michael Wiebusch Date: Wed, 31 Jul 2013 16:27:31 +0200 Subject: [PATCH] test --- layout/testgui.css | 231 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 231 insertions(+) create mode 100644 layout/testgui.css diff --git a/layout/testgui.css b/layout/testgui.css new file mode 100644 index 0000000..5f40b92 --- /dev/null +++ b/layout/testgui.css @@ -0,0 +1,231 @@ + + +.td_solid { + + border-style : solid; + +} + +.sensorAreaTable { + + border-style: dashed; + +} + + + +#debug { + position:absolute; + top:100px; + left:800px; + width:220px; + padding:10px; + background:#fee; + margin:0px; +} + + +#fileSelection { + float:left; + position:relative; + width:700px; + min-height:50px; + padding:10px; + margin:50px 0 0 20px; + border:2px solid #EEAA00; + border-radius:20px; + background:white; + box-shadow: 0 0 5px 5px #aaa, 0 0 4px 1px #ea0 inset; +} + +#roterBereich { + clear:both; + float:left; + position:relative; + width:320px; + padding:10px; + margin:50px 10px 0 20px ; + border:2px solid #EE0000; + border-radius:20px; + background:white; + box-shadow: 0 0 5px 5px #aaa, 0 0 4px 1px red inset; +} + +#blauerBereich { + float:left; + position:relative; + width:320px; + padding:10px; + margin:50px 10px 0 20px; + border:2px solid #0000EE; + border-radius:20px; + background:white; + box-shadow: 0 0 5px 5px #aaa, 0 0 4px 1px blue inset; + } + +input[type="text"] +{ + font-size:10px; + height:20px; + width:90px; + text-align:right; + padding-right:5px; + background:#fff; +} + + + +.stdbutton +{ + width:100px; + height:25px; +} + + +table.registers { + border-collapse:collapse; + border:0; + cursor:default; +} + + +table.registers td { + border: 2px solid white; + height:25px; +} + +table.fields { + background:#dea; + border-collapse:collapse; + border:hidden; + cursor:default; + +} + +table.fields td { + border:solid white; + border-width:2px 0; + border-collapse:collapse; + height:25px; +} + +table.registers>tbody>tr>td:nth-child(2) { + background:lightgrey; + } + + +.fieldError +{ +background:red; +} + +.fileLevel +{ +background:#CCFFCC; +//background:#dea; +} + +.fileLevel1 +{ +background:#CCFFFF; +} + +.fileLevel2 +{ +background:#CCCCFF; +} + +.fileLevel3 +{ +background:#FFCCFF; +} + +.fileLevel4 +{ +background:#FFCCCC; +} + +.fileLevel5 +{ +background:#FFFFCC; +} + +.fileLevel6 +{ +background:#FFFFFF; +} + +table.fields td.button_move, table.registers td.button_move, .button_move { + background:orange; + cursor:pointer; + text-align:center; + color:white; + font-weight:bold; + width:25px; + border:2px solid white; +} + + +table.fields td.button_move_deac { + background:grey; + cursor:normal; + text-align:center; + color:black; + font-weight:bold; + width:25px; + border:2px solid white; +} + +.regheader { + background:lightgrey; + font-variant:small-caps; +} + +.bitfield { + background:#dea; + visibility:collapse; +} + +table.registers td.fieldcontainer { + margin:0; + padding:0; + border:0; +} + +table.registers tr td:first-child { + cursor:pointer; + } + +table.registers tr td:first-child:hover { + background:#ddd; +} + +table.fields tr td:nth-child(3){ + font-family:monospace; + padding-right:10px; + color:#444; +} + +tr.bitfield{ + background:transparent; + cursor:auto; +} + +table.registers tr.bitfield td:first-child{ + background:transparent; + cursor:default; +} + +table.fields td.button_move:hover, table.registers td.button_move:hover { + background:#fb4; +} + +div.header { + font-size:13pt; + position:absolute; + top:-22px; + color:#444; + z-index:-1; + + } + -- 2.43.0