oxjs/examples/ui/mouse_events/css/example.css

64 lines
1.3 KiB
CSS
Raw Normal View History

2012-04-14 10:12:09 +00:00
#clear {
position: absolute;
left: 256px;
right: 0px;
2012-04-15 12:21:15 +00:00
height: 14px;
padding: 2px 0 0 2px;
2012-04-14 10:23:32 +00:00
cursor: pointer;
2012-04-14 10:12:09 +00:00
}
#log {
position: absolute;
left: 256px;
top: 16px;
right: 0;
bottom: 0;
2012-04-14 10:23:32 +00:00
border-width: 0;
2012-04-14 10:12:09 +00:00
overflow-y: auto;
}
#target {
position: absolute;
left: 0;
top: 0;
bottom: 0;
2012-04-14 10:23:32 +00:00
width: 253px;
2012-04-15 12:21:15 +00:00
padding: 2px 0 0 2px;
2012-04-14 10:23:32 +00:00
border-width: 0;
2012-04-15 12:21:15 +00:00
font-weight: bold;
2012-04-14 10:23:32 +00:00
cursor: crosshair;
2012-04-15 19:56:39 +00:00
}
2013-12-04 22:44:56 +00:00
.OxThemeOxlight #clear {
2012-04-15 19:56:39 +00:00
background: rgb(240, 240, 240);
}
2013-12-04 22:44:56 +00:00
.OxThemeOxlight #log {
2012-04-15 19:56:39 +00:00
border-top: 1px solid rgb(208, 208, 208);
background: rgb(255, 255, 255);
}
2013-12-04 22:44:56 +00:00
.OxThemeOxlight #target {
2012-04-15 19:56:39 +00:00
border-right: 1px solid rgb(208, 208, 208);
background: rgb(224, 224, 224);
}
2013-12-04 22:44:56 +00:00
.OxThemeOxmedium #clear {
background: rgb(144, 144, 144);
}
.OxThemeOxmedium #log {
border-top: 1px solid rgb(112, 112, 112);
background: rgb(160, 160, 160);
}
.OxThemeOxmedium #target {
border-right: 1px solid rgb(112, 112, 112);
background: rgb(128, 128, 128);
}
.OxThemeOxdark #clear {
2012-04-15 19:56:39 +00:00
background: rgb(16, 16, 16);
}
2013-12-04 22:44:56 +00:00
.OxThemeOxdark #log {
2012-04-15 19:56:39 +00:00
border-top: 1px solid rgb(48, 48, 48);
background: rgb(0, 0, 0)
}
2013-12-04 22:44:56 +00:00
.OxThemeOxdark #target {
2012-04-15 19:56:39 +00:00
border-right: 1px solid rgb(48, 48, 48);
background: rgb(32, 32, 32);
2012-04-14 10:12:09 +00:00
}